blob: d67fdf48b1fa00dd371f064e6492cb3d6cd1fb08 [file] [log] [blame]
Damien Miller7acefbb2014-07-18 14:11:24 +10001/* $OpenBSD: channels.c,v 1.336 2014/07/15 15:54:14 millert 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>
Damien Millera7a73ee2006-08-05 11:37:59 +100059#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100060#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100061#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110062#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100063#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100064#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Damien Millerb84886b2008-05-19 15:05:07 +100066#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100067#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "ssh1.h"
70#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000072#include "log.h"
73#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100074#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100078#include "key.h"
79#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110080#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Ben Lindstrome9c99912001-06-09 00:41:05 +000082/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller5428f641999-11-25 11:54:57 +110084/*
85 * Pointer to an array containing all allocated channels. The array is
86 * dynamically extended as needed.
87 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000088static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller5428f641999-11-25 11:54:57 +110090/*
91 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000092 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110093 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100094static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller5428f641999-11-25 11:54:57 +110096/*
97 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000098 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110099 */
Damien Miller5e953212001-01-30 09:14:00 +1100100static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Ben Lindstrome9c99912001-06-09 00:41:05 +0000103/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
Damien Miller5428f641999-11-25 11:54:57 +1100105/*
106 * Data structure for storing which hosts are permitted for forward requests.
107 * The local sides of any remote forwards are stored in this array to prevent
108 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
109 * network (which might be behind a firewall).
110 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000111/* XXX: streamlocal wants a path instead of host:port */
112/* Overload host_to_connect; we could just make this match Forward */
113/* XXX - can we use listen_host instead of listen_path? */
Damien Miller95def091999-11-25 00:26:21 +1100114typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000115 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000116 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000117 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000118 char *listen_path; /* Remote side should listen path. */
119 int listen_port; /* Remote side should listen port. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120} ForwardPermission;
121
Damien Miller9b439df2006-07-24 14:04:00 +1000122/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000123static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000124
Damien Miller9b439df2006-07-24 14:04:00 +1000125/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000126static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000127
128/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000130
131/* Number of permitted host/port pair in the array permitted by the admin. */
132static int num_adm_permitted_opens = 0;
133
Darren Tucker1338b9e2011-10-02 18:57:35 +1100134/* special-case port number meaning allow any port */
135#define FWD_PERMIT_ANY_PORT 0
136
Damien Miller5428f641999-11-25 11:54:57 +1100137/*
138 * If this is true, all opens are permitted. This is the case on the server
139 * on which we have to trust the client anyway, and the user could do
140 * anything after logging in anyway.
141 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142static int all_opens_permitted = 0;
143
Ben Lindstrome9c99912001-06-09 00:41:05 +0000144
145/* -- X11 forwarding */
146
147/* Maximum number of fake X11 displays to try. */
148#define MAX_DISPLAYS 1000
149
Damien Miller13390022005-07-06 09:44:19 +1000150/* Saved X11 local (client) display. */
151static char *x11_saved_display = NULL;
152
Ben Lindstrome9c99912001-06-09 00:41:05 +0000153/* Saved X11 authentication protocol name. */
154static char *x11_saved_proto = NULL;
155
156/* Saved X11 authentication data. This is the real data. */
157static char *x11_saved_data = NULL;
158static u_int x11_saved_data_len = 0;
159
160/*
161 * Fake X11 authentication data. This is what the server will be sending us;
162 * we should replace any occurrences of this by the real data.
163 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100164static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000165static u_int x11_fake_data_len;
166
167
168/* -- agent forwarding */
169
170#define NUM_SOCKS 10
171
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000172/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000173static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000174
Ben Lindstrome9c99912001-06-09 00:41:05 +0000175/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000176static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000177
Damien Millerbd740252008-05-19 15:37:09 +1000178/* non-blocking connect helpers */
179static int connect_next(struct channel_connect *);
180static void channel_connect_ctx_free(struct channel_connect *);
181
Ben Lindstrome9c99912001-06-09 00:41:05 +0000182/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000183
184Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100185channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000186{
187 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000188
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000189 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100190 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000191 return NULL;
192 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000193 c = channels[id];
194 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100195 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000196 return NULL;
197 }
198 return c;
199}
200
Damien Miller5428f641999-11-25 11:54:57 +1100201/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100202 * Returns the channel if it is allowed to receive protocol messages.
203 * Private channels, like listening sockets, may not receive messages.
204 */
205Channel *
206channel_lookup(int id)
207{
208 Channel *c;
209
210 if ((c = channel_by_id(id)) == NULL)
211 return (NULL);
212
Damien Millerd62f2ca2006-03-26 13:57:41 +1100213 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100214 case SSH_CHANNEL_X11_OPEN:
215 case SSH_CHANNEL_LARVAL:
216 case SSH_CHANNEL_CONNECTING:
217 case SSH_CHANNEL_DYNAMIC:
218 case SSH_CHANNEL_OPENING:
219 case SSH_CHANNEL_OPEN:
220 case SSH_CHANNEL_INPUT_DRAINING:
221 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller36187092013-06-10 13:07:11 +1000222 case SSH_CHANNEL_ABANDONED:
Damien Millerd47c62a2005-12-13 19:33:57 +1100223 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100224 }
225 logit("Non-public channel %d, type %d.", id, c->type);
226 return (NULL);
227}
228
229/*
Damien Millere247cc42000-05-07 12:03:14 +1000230 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000231 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100232 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000233static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100234channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000235 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Damien Miller95def091999-11-25 00:26:21 +1100237 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100238 channel_max_fd = MAX(channel_max_fd, rfd);
239 channel_max_fd = MAX(channel_max_fd, wfd);
240 channel_max_fd = MAX(channel_max_fd, efd);
241
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100242 if (rfd != -1)
243 fcntl(rfd, F_SETFD, FD_CLOEXEC);
244 if (wfd != -1 && wfd != rfd)
245 fcntl(wfd, F_SETFD, FD_CLOEXEC);
246 if (efd != -1 && efd != rfd && efd != wfd)
247 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000248
Damien Miller6f83b8e2000-05-02 09:23:45 +1000249 c->rfd = rfd;
250 c->wfd = wfd;
251 c->sock = (rfd == wfd) ? rfd : -1;
252 c->efd = efd;
253 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100254
Darren Tuckered3cdc02008-06-16 23:29:18 +1000255 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000256 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000257#ifdef _AIX
258 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000259 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000260#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100261
Damien Miller69b69aa2000-10-28 14:19:58 +1100262 /* enable nonblocking mode */
263 if (nonblock) {
264 if (rfd != -1)
265 set_nonblock(rfd);
266 if (wfd != -1)
267 set_nonblock(wfd);
268 if (efd != -1)
269 set_nonblock(efd);
270 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271}
272
273/*
274 * Allocate a new channel object and set its type and socket. This will cause
275 * remote_name to be freed.
276 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000277Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000278channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000279 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000280{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000281 int found;
282 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000283 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Damien Miller95def091999-11-25 00:26:21 +1100285 /* Do initial allocation if this is the first call. */
286 if (channels_alloc == 0) {
287 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100288 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100289 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000290 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100291 }
292 /* Try to find a free slot where to put the new channel. */
293 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100295 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000296 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100297 break;
298 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000299 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100300 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100301 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000302 if (channels_alloc > 10000)
303 fatal("channel_new: internal error: channels_alloc %d "
304 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100305 channels = xrealloc(channels, channels_alloc + 10,
306 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000307 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100308 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100309 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000310 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100311 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000312 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100313 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100314 buffer_init(&c->input);
315 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000316 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100317 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000318 c->listening_addr = NULL;
319 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100320 c->ostate = CHAN_OUTPUT_OPEN;
321 c->istate = CHAN_INPUT_OPEN;
322 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000323 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000324 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100325 c->self = found;
326 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000327 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000328 c->local_window = window;
329 c->local_window_max = window;
330 c->local_consumed = 0;
331 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100332 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000333 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000334 c->remote_window = 0;
335 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000336 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100337 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000338 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100339 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000340 c->open_confirm = NULL;
341 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000342 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100343 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000344 c->filter_ctx = NULL;
345 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100346 c->ctl_chan = -1;
347 c->mux_rcb = NULL;
348 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000349 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100350 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000351 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100352 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000353 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000355
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000356static int
357channel_find_maxfd(void)
358{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000359 u_int i;
360 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000361 Channel *c;
362
363 for (i = 0; i < channels_alloc; i++) {
364 c = channels[i];
365 if (c != NULL) {
366 max = MAX(max, c->rfd);
367 max = MAX(max, c->wfd);
368 max = MAX(max, c->efd);
369 }
370 }
371 return max;
372}
373
374int
375channel_close_fd(int *fdp)
376{
377 int ret = 0, fd = *fdp;
378
379 if (fd != -1) {
380 ret = close(fd);
381 *fdp = -1;
382 if (fd == channel_max_fd)
383 channel_max_fd = channel_find_maxfd();
384 }
385 return ret;
386}
387
Damien Miller6f83b8e2000-05-02 09:23:45 +1000388/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000389static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000390channel_close_fds(Channel *c)
391{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000392 channel_close_fd(&c->sock);
393 channel_close_fd(&c->rfd);
394 channel_close_fd(&c->wfd);
395 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000396}
397
398/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000399void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000400channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000402 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000403 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000404 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000405
406 for (n = 0, i = 0; i < channels_alloc; i++)
407 if (channels[i])
408 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000409 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000410 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000411
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000412 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000413 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000414 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000415
Damien Miller6f83b8e2000-05-02 09:23:45 +1000416 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000417 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000418 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000419 buffer_free(&c->input);
420 buffer_free(&c->output);
421 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000422 free(c->remote_name);
423 c->remote_name = NULL;
424 free(c->path);
425 c->path = NULL;
426 free(c->listening_addr);
427 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000428 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
429 if (cc->abandon_cb != NULL)
430 cc->abandon_cb(c, cc->ctx);
431 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100432 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000433 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000434 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000435 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
436 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000437 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000438 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439}
440
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000442channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000444 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445
Ben Lindstrom601e4362001-06-21 03:19:23 +0000446 for (i = 0; i < channels_alloc; i++)
447 if (channels[i] != NULL)
448 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449}
450
451/*
452 * Closes the sockets/fds of all channels. This is used to close extra file
453 * descriptors after a fork.
454 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000455void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000456channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000457{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000458 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000459
460 for (i = 0; i < channels_alloc; i++)
461 if (channels[i] != NULL)
462 channel_close_fds(channels[i]);
463}
464
465/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000466 * Stop listening to channels.
467 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000468void
469channel_stop_listening(void)
470{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000471 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000472 Channel *c;
473
474 for (i = 0; i < channels_alloc; i++) {
475 c = channels[i];
476 if (c != NULL) {
477 switch (c->type) {
478 case SSH_CHANNEL_AUTH_SOCKET:
479 case SSH_CHANNEL_PORT_LISTENER:
480 case SSH_CHANNEL_RPORT_LISTENER:
481 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000482 case SSH_CHANNEL_UNIX_LISTENER:
483 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000484 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000485 channel_free(c);
486 break;
487 }
488 }
489 }
490}
491
492/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000493 * Returns true if no channel has too much buffered data, and false if one or
494 * more channel is overfull.
495 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000496int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000497channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000498{
499 u_int i;
500 Channel *c;
501
502 for (i = 0; i < channels_alloc; i++) {
503 c = channels[i];
504 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000505#if 0
506 if (!compat20 &&
507 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100508 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000509 c->self, buffer_len(&c->input));
510 return 0;
511 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000512#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000514 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000515 c->self, buffer_len(&c->output),
516 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517 return 0;
518 }
519 }
520 }
521 return 1;
522}
523
524/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000525int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000526channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000527{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000528 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000529 Channel *c;
530
531 for (i = 0; i < channels_alloc; i++) {
532 c = channels[i];
533 if (c == NULL)
534 continue;
535 switch (c->type) {
536 case SSH_CHANNEL_X11_LISTENER:
537 case SSH_CHANNEL_PORT_LISTENER:
538 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100539 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000540 case SSH_CHANNEL_CLOSED:
541 case SSH_CHANNEL_AUTH_SOCKET:
542 case SSH_CHANNEL_DYNAMIC:
543 case SSH_CHANNEL_CONNECTING:
544 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000545 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000546 case SSH_CHANNEL_UNIX_LISTENER:
547 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000548 continue;
549 case SSH_CHANNEL_LARVAL:
550 if (!compat20)
551 fatal("cannot happen: SSH_CHANNEL_LARVAL");
552 continue;
553 case SSH_CHANNEL_OPENING:
554 case SSH_CHANNEL_OPEN:
555 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100556 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557 return 1;
558 case SSH_CHANNEL_INPUT_DRAINING:
559 case SSH_CHANNEL_OUTPUT_DRAINING:
560 if (!compat13)
561 fatal("cannot happen: OUT_DRAIN");
562 return 1;
563 default:
564 fatal("channel_still_open: bad channel type %d", c->type);
565 /* NOTREACHED */
566 }
567 }
568 return 0;
569}
570
571/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000572int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000573channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000574{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000575 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000576 Channel *c;
577
578 for (i = 0; i < channels_alloc; i++) {
579 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000580 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000581 continue;
582 switch (c->type) {
583 case SSH_CHANNEL_CLOSED:
584 case SSH_CHANNEL_DYNAMIC:
585 case SSH_CHANNEL_X11_LISTENER:
586 case SSH_CHANNEL_PORT_LISTENER:
587 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100588 case SSH_CHANNEL_MUX_LISTENER:
589 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000590 case SSH_CHANNEL_OPENING:
591 case SSH_CHANNEL_CONNECTING:
592 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000593 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000594 case SSH_CHANNEL_UNIX_LISTENER:
595 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000596 continue;
597 case SSH_CHANNEL_LARVAL:
598 case SSH_CHANNEL_AUTH_SOCKET:
599 case SSH_CHANNEL_OPEN:
600 case SSH_CHANNEL_X11_OPEN:
601 return i;
602 case SSH_CHANNEL_INPUT_DRAINING:
603 case SSH_CHANNEL_OUTPUT_DRAINING:
604 if (!compat13)
605 fatal("cannot happen: OUT_DRAIN");
606 return i;
607 default:
608 fatal("channel_find_open: bad channel type %d", c->type);
609 /* NOTREACHED */
610 }
611 }
612 return -1;
613}
614
615
616/*
617 * Returns a message describing the currently open forwarded connections,
618 * suitable for sending to the client. The message contains crlf pairs for
619 * newlines.
620 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000621char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000622channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623{
624 Buffer buffer;
625 Channel *c;
626 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000627 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000628
629 buffer_init(&buffer);
630 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
631 buffer_append(&buffer, buf, strlen(buf));
632 for (i = 0; i < channels_alloc; i++) {
633 c = channels[i];
634 if (c == NULL)
635 continue;
636 switch (c->type) {
637 case SSH_CHANNEL_X11_LISTENER:
638 case SSH_CHANNEL_PORT_LISTENER:
639 case SSH_CHANNEL_RPORT_LISTENER:
640 case SSH_CHANNEL_CLOSED:
641 case SSH_CHANNEL_AUTH_SOCKET:
642 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000643 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100644 case SSH_CHANNEL_MUX_CLIENT:
645 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000646 case SSH_CHANNEL_UNIX_LISTENER:
647 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648 continue;
649 case SSH_CHANNEL_LARVAL:
650 case SSH_CHANNEL_OPENING:
651 case SSH_CHANNEL_CONNECTING:
652 case SSH_CHANNEL_DYNAMIC:
653 case SSH_CHANNEL_OPEN:
654 case SSH_CHANNEL_X11_OPEN:
655 case SSH_CHANNEL_INPUT_DRAINING:
656 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000657 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100658 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 c->self, c->remote_name,
660 c->type, c->remote_id,
661 c->istate, buffer_len(&c->input),
662 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100663 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664 buffer_append(&buffer, buf, strlen(buf));
665 continue;
666 default:
667 fatal("channel_open_message: bad channel type %d", c->type);
668 /* NOTREACHED */
669 }
670 }
671 buffer_append(&buffer, "\0", 1);
672 cp = xstrdup(buffer_ptr(&buffer));
673 buffer_free(&buffer);
674 return cp;
675}
676
677void
678channel_send_open(int id)
679{
680 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000681
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000683 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000684 return;
685 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000686 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000687 packet_start(SSH2_MSG_CHANNEL_OPEN);
688 packet_put_cstring(c->ctype);
689 packet_put_int(c->self);
690 packet_put_int(c->local_window);
691 packet_put_int(c->local_maxpacket);
692 packet_send();
693}
694
695void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000696channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000698 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000699
Ben Lindstrome9c99912001-06-09 00:41:05 +0000700 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000701 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000702 return;
703 }
Damien Miller0e220db2004-06-15 10:34:08 +1000704 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 packet_start(SSH2_MSG_CHANNEL_REQUEST);
706 packet_put_int(c->remote_id);
707 packet_put_cstring(service);
708 packet_put_char(wantconfirm);
709}
Damien Miller4f7becb2006-03-26 14:10:14 +1100710
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711void
Damien Millerb84886b2008-05-19 15:05:07 +1000712channel_register_status_confirm(int id, channel_confirm_cb *cb,
713 channel_confirm_abandon_cb *abandon_cb, void *ctx)
714{
715 struct channel_confirm *cc;
716 Channel *c;
717
718 if ((c = channel_lookup(id)) == NULL)
719 fatal("channel_register_expect: %d: bad id", id);
720
Damien Miller6c81fee2013-11-08 12:19:55 +1100721 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000722 cc->cb = cb;
723 cc->abandon_cb = abandon_cb;
724 cc->ctx = ctx;
725 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
726}
727
728void
Damien Millerd530f5f2010-05-21 14:57:10 +1000729channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730{
731 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000732
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100734 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735 return;
736 }
Damien Millerb84886b2008-05-19 15:05:07 +1000737 c->open_confirm = fn;
738 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739}
Damien Miller4f7becb2006-03-26 14:10:14 +1100740
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741void
Damien Miller39eda6e2005-11-05 14:52:50 +1100742channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000743{
Damien Millerd47c62a2005-12-13 19:33:57 +1100744 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000745
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000747 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748 return;
749 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000750 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100751 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752}
Damien Miller4f7becb2006-03-26 14:10:14 +1100753
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754void
755channel_cancel_cleanup(int id)
756{
Damien Millerd47c62a2005-12-13 19:33:57 +1100757 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000758
Ben Lindstrome9c99912001-06-09 00:41:05 +0000759 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000760 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761 return;
762 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000763 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100764 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765}
Damien Miller4f7becb2006-03-26 14:10:14 +1100766
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767void
Damien Miller077b2382005-12-31 16:22:32 +1100768channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000769 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770{
771 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000772
Ben Lindstrome9c99912001-06-09 00:41:05 +0000773 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000774 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775 return;
776 }
Damien Miller077b2382005-12-31 16:22:32 +1100777 c->input_filter = ifn;
778 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000779 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000780 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000781}
782
783void
784channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000785 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000786{
787 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000788
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
790 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000791 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000792 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100793 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000794 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
795 packet_put_int(c->remote_id);
796 packet_put_int(c->local_window);
797 packet_send();
798}
799
Damien Miller5428f641999-11-25 11:54:57 +1100800/*
Damien Millerb38eff82000-04-01 11:09:21 +1000801 * 'channel_pre*' are called just before select() to add any bits relevant to
802 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100803 */
Damien Millerb38eff82000-04-01 11:09:21 +1000804/*
805 * 'channel_post*': perform any appropriate operations for channels which
806 * have events pending.
807 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100808typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000809chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
810chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
811
Damien Miller8473dd82006-07-24 14:08:32 +1000812/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000813static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100814channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
816 FD_SET(c->sock, readset);
817}
818
Damien Miller8473dd82006-07-24 14:08:32 +1000819/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000820static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100821channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000822{
823 debug3("channel %d: waiting for connection", c->self);
824 FD_SET(c->sock, writeset);
825}
826
Ben Lindstrombba81212001-06-25 05:01:22 +0000827static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100828channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000829{
830 if (buffer_len(&c->input) < packet_get_maxsize())
831 FD_SET(c->sock, readset);
832 if (buffer_len(&c->output) > 0)
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(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
Damien Millerde6987c2002-01-22 23:20:40 +1100839 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000840
Damien Miller33b13562000-04-04 14:38:59 +1000841 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100842 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000843 buffer_len(&c->input) < limit &&
844 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000845 FD_SET(c->rfd, readset);
846 if (c->ostate == CHAN_OUTPUT_OPEN ||
847 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
848 if (buffer_len(&c->output) > 0) {
849 FD_SET(c->wfd, writeset);
850 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000851 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000852 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
853 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000854 else
855 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000856 }
857 }
858 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000859 if (compat20 && c->efd != -1 &&
860 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000861 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
862 buffer_len(&c->extended) > 0)
863 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000864 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
865 (c->extended_usage == CHAN_EXTENDED_READ ||
866 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000867 buffer_len(&c->extended) < c->remote_window)
868 FD_SET(c->efd, readset);
869 }
Damien Miller0e220db2004-06-15 10:34:08 +1000870 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000871}
872
Damien Miller8473dd82006-07-24 14:08:32 +1000873/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000874static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100875channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000876{
877 if (buffer_len(&c->input) == 0) {
878 packet_start(SSH_MSG_CHANNEL_CLOSE);
879 packet_put_int(c->remote_id);
880 packet_send();
881 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000882 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000883 }
884}
885
Damien Miller8473dd82006-07-24 14:08:32 +1000886/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000887static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100888channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000889{
890 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000891 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000892 else
Damien Millerb38eff82000-04-01 11:09:21 +1000893 FD_SET(c->sock, writeset);
894}
895
896/*
897 * This is a special state for X11 authentication spoofing. An opened X11
898 * connection (when authentication spoofing is being done) remains in this
899 * state until the first packet has been completely read. The authentication
900 * data in that packet is then substituted by the real data if it matches the
901 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000902 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000903 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000904 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000905static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000906x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000907{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000908 u_char *ucp;
909 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000910
911 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000912 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000913 return 0;
914
915 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100916 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000917 if (ucp[0] == 0x42) { /* Byte order MSB first. */
918 proto_len = 256 * ucp[6] + ucp[7];
919 data_len = 256 * ucp[8] + ucp[9];
920 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
921 proto_len = ucp[6] + 256 * ucp[7];
922 data_len = ucp[8] + 256 * ucp[9];
923 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000924 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100925 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000926 return -1;
927 }
928
929 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000930 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000931 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
932 return 0;
933
934 /* Check if authentication protocol matches. */
935 if (proto_len != strlen(x11_saved_proto) ||
936 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000937 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000938 return -1;
939 }
940 /* Check if authentication data matches our fake data. */
941 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000942 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000943 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000944 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000945 return -1;
946 }
947 /* Check fake data length */
948 if (x11_fake_data_len != x11_saved_data_len) {
949 error("X11 fake_data_len %d != saved_data_len %d",
950 x11_fake_data_len, x11_saved_data_len);
951 return -1;
952 }
953 /*
954 * Received authentication protocol and data match
955 * our fake data. Substitute the fake data with real
956 * data.
957 */
958 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
959 x11_saved_data, x11_saved_data_len);
960 return 1;
961}
962
Ben Lindstrombba81212001-06-25 05:01:22 +0000963static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100964channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000965{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000966 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000967
Damien Millerb38eff82000-04-01 11:09:21 +1000968 if (ret == 1) {
969 /* Start normal processing for the channel. */
970 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000971 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000972 } else if (ret == -1) {
973 /*
974 * We have received an X11 connection that has bad
975 * authentication information.
976 */
Damien Miller996acd22003-04-09 20:59:48 +1000977 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000978 buffer_clear(&c->input);
979 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000980 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000981 c->sock = -1;
982 c->type = SSH_CHANNEL_CLOSED;
983 packet_start(SSH_MSG_CHANNEL_CLOSE);
984 packet_put_int(c->remote_id);
985 packet_send();
986 }
987}
988
Ben Lindstrombba81212001-06-25 05:01:22 +0000989static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100990channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000991{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000992 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000993
994 /* c->force_drain = 1; */
995
Damien Millerb38eff82000-04-01 11:09:21 +1000996 if (ret == 1) {
997 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100998 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000999 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001000 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +10001001 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +11001002 chan_read_failed(c);
1003 buffer_clear(&c->input);
1004 chan_ibuf_empty(c);
1005 buffer_clear(&c->output);
1006 /* for proto v1, the peer will send an IEOF */
1007 if (compat20)
1008 chan_write_failed(c);
1009 else
1010 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +10001011 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001012 }
1013}
1014
Damien Millere1537f92010-01-26 13:26:22 +11001015static void
1016channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1017{
Damien Millerd530f5f2010-05-21 14:57:10 +10001018 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001019 buffer_check_alloc(&c->input, CHAN_RBUF))
1020 FD_SET(c->rfd, readset);
1021 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1022 /* clear buffer immediately (discard any partial packet) */
1023 buffer_clear(&c->input);
1024 chan_ibuf_empty(c);
1025 /* Start output drain. XXX just kill chan? */
1026 chan_rcvd_oclose(c);
1027 }
1028 if (c->ostate == CHAN_OUTPUT_OPEN ||
1029 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1030 if (buffer_len(&c->output) > 0)
1031 FD_SET(c->wfd, writeset);
1032 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1033 chan_obuf_empty(c);
1034 }
1035}
1036
Ben Lindstromb3921512001-04-11 15:57:50 +00001037/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001038/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001039static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001040channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001041{
Damien Millera10f5612002-09-12 09:49:15 +10001042 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001043 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001044 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001045 struct {
1046 u_int8_t version;
1047 u_int8_t command;
1048 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001049 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001050 } s4_req, s4_rsp;
1051
Ben Lindstromb3921512001-04-11 15:57:50 +00001052 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001053
1054 have = buffer_len(&c->input);
1055 len = sizeof(s4_req);
1056 if (have < len)
1057 return 0;
1058 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001059
1060 need = 1;
1061 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1062 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1063 debug2("channel %d: socks4a request", c->self);
1064 /* ... and needs an extra string (the hostname) */
1065 need = 2;
1066 }
1067 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001068 for (found = 0, i = len; i < have; i++) {
1069 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001070 found++;
1071 if (found == need)
1072 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001073 }
1074 if (i > 1024) {
1075 /* the peer is probably sending garbage */
1076 debug("channel %d: decode socks4: too long",
1077 c->self);
1078 return -1;
1079 }
1080 }
Damien Miller1781f532009-01-28 16:24:41 +11001081 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001082 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001083 buffer_get(&c->input, (char *)&s4_req.version, 1);
1084 buffer_get(&c->input, (char *)&s4_req.command, 1);
1085 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001086 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001087 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001088 p = buffer_ptr(&c->input);
Damien Miller13481292014-02-27 10:18:32 +11001089 if (memchr(p, '\0', have) == NULL)
1090 fatal("channel %d: decode socks4: user not nul terminated",
1091 c->self);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001092 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001093 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001094 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001095 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001096 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001097 c->self, len, have);
1098 strlcpy(username, p, sizeof(username));
1099 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001100
Darren Tuckera627d422013-06-02 07:31:17 +10001101 free(c->path);
1102 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001103 if (need == 1) { /* SOCKS4: one string */
1104 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001105 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001106 } else { /* SOCKS4A: two strings */
1107 have = buffer_len(&c->input);
1108 p = buffer_ptr(&c->input);
1109 len = strlen(p);
1110 debug2("channel %d: decode socks4a: host %s/%d",
1111 c->self, p, len);
1112 len++; /* trailing '\0' */
1113 if (len > have)
1114 fatal("channel %d: decode socks4a: len %d > have %d",
1115 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001116 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001117 error("channel %d: hostname \"%.100s\" too long",
1118 c->self, p);
1119 return -1;
1120 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001121 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001122 buffer_consume(&c->input, len);
1123 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001124 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001125
Damien Millerfbdeece2003-09-02 22:52:31 +10001126 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001127 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001128
Ben Lindstromb3921512001-04-11 15:57:50 +00001129 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001130 debug("channel %d: cannot handle: %s cn %d",
1131 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001132 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001133 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001134 s4_rsp.version = 0; /* vn: 0 for reply */
1135 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001136 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001137 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001138 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001139 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001140}
1141
Darren Tucker46471c92003-07-03 13:55:19 +10001142/* try to decode a socks5 header */
1143#define SSH_SOCKS5_AUTHDONE 0x1000
1144#define SSH_SOCKS5_NOAUTH 0x00
1145#define SSH_SOCKS5_IPV4 0x01
1146#define SSH_SOCKS5_DOMAIN 0x03
1147#define SSH_SOCKS5_IPV6 0x04
1148#define SSH_SOCKS5_CONNECT 0x01
1149#define SSH_SOCKS5_SUCCESS 0x00
1150
Damien Miller8473dd82006-07-24 14:08:32 +10001151/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001152static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001153channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001154{
1155 struct {
1156 u_int8_t version;
1157 u_int8_t command;
1158 u_int8_t reserved;
1159 u_int8_t atyp;
1160 } s5_req, s5_rsp;
1161 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001162 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1163 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001164 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001165
1166 debug2("channel %d: decode socks5", c->self);
1167 p = buffer_ptr(&c->input);
1168 if (p[0] != 0x05)
1169 return -1;
1170 have = buffer_len(&c->input);
1171 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1172 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001173 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001174 return 0;
1175 nmethods = p[1];
1176 if (have < nmethods + 2)
1177 return 0;
1178 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001179 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001180 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001181 found = 1;
1182 break;
1183 }
1184 }
1185 if (!found) {
1186 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1187 c->self);
1188 return -1;
1189 }
1190 buffer_consume(&c->input, nmethods + 2);
1191 buffer_put_char(&c->output, 0x05); /* version */
1192 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1193 FD_SET(c->sock, writeset);
1194 c->flags |= SSH_SOCKS5_AUTHDONE;
1195 debug2("channel %d: socks5 auth done", c->self);
1196 return 0; /* need more */
1197 }
1198 debug2("channel %d: socks5 post auth", c->self);
1199 if (have < sizeof(s5_req)+1)
1200 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001201 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001202 if (s5_req.version != 0x05 ||
1203 s5_req.command != SSH_SOCKS5_CONNECT ||
1204 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001205 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001206 return -1;
1207 }
Darren Tucker47eede72005-03-14 23:08:12 +11001208 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001209 case SSH_SOCKS5_IPV4:
1210 addrlen = 4;
1211 af = AF_INET;
1212 break;
1213 case SSH_SOCKS5_DOMAIN:
1214 addrlen = p[sizeof(s5_req)];
1215 af = -1;
1216 break;
1217 case SSH_SOCKS5_IPV6:
1218 addrlen = 16;
1219 af = AF_INET6;
1220 break;
1221 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001222 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001223 return -1;
1224 }
Damien Miller0f077072006-07-10 22:21:02 +10001225 need = sizeof(s5_req) + addrlen + 2;
1226 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1227 need++;
1228 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001229 return 0;
1230 buffer_consume(&c->input, sizeof(s5_req));
1231 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1232 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001233 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001234 buffer_get(&c->input, (char *)&dest_port, 2);
1235 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001236 free(c->path);
1237 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001238 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001239 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001240 error("channel %d: dynamic request: socks5 hostname "
1241 "\"%.100s\" too long", c->self, dest_addr);
1242 return -1;
1243 }
1244 c->path = xstrdup(dest_addr);
1245 } else {
1246 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1247 return -1;
1248 c->path = xstrdup(ntop);
1249 }
Darren Tucker46471c92003-07-03 13:55:19 +10001250 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001251
Damien Millerfbdeece2003-09-02 22:52:31 +10001252 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001253 c->self, c->path, c->host_port, s5_req.command);
1254
1255 s5_rsp.version = 0x05;
1256 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1257 s5_rsp.reserved = 0; /* ignored */
1258 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001259 dest_port = 0; /* ignored */
1260
Damien Millera0fdce92006-03-26 14:28:50 +11001261 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
Damien Miller13840e02013-09-14 09:49:43 +10001262 buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
Damien Millera0fdce92006-03-26 14:28:50 +11001263 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001264 return 1;
1265}
1266
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001267Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001268channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1269 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001270{
1271 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001272
1273 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1274 port_to_connect);
1275
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001276 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1277 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1278 0, "stdio-forward", /*nonblock*/0);
1279
1280 c->path = xstrdup(host_to_connect);
1281 c->host_port = port_to_connect;
1282 c->listening_port = 0;
1283 c->force_drain = 1;
1284
1285 channel_register_fds(c, in, out, -1, 0, 1, 0);
1286 port_open_helper(c, "direct-tcpip");
1287
1288 return c;
1289}
1290
Ben Lindstromb3921512001-04-11 15:57:50 +00001291/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001292static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001293channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001294{
1295 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001296 u_int have;
1297 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001298
1299 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001300 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001301 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001302 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001303 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001304 /* need more */
1305 FD_SET(c->sock, readset);
1306 return;
1307 }
1308 /* try to guess the protocol */
1309 p = buffer_ptr(&c->input);
1310 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001311 case 0x04:
1312 ret = channel_decode_socks4(c, readset, writeset);
1313 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001314 case 0x05:
1315 ret = channel_decode_socks5(c, readset, writeset);
1316 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001317 default:
1318 ret = -1;
1319 break;
1320 }
1321 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001322 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001323 } else if (ret == 0) {
1324 debug2("channel %d: pre_dynamic: need more", c->self);
1325 /* need more */
1326 FD_SET(c->sock, readset);
1327 } else {
1328 /* switch to the next state */
1329 c->type = SSH_CHANNEL_OPENING;
1330 port_open_helper(c, "direct-tcpip");
1331 }
1332}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001333
Damien Millerb38eff82000-04-01 11:09:21 +10001334/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001335/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001336static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001337channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001338{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001339 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001340 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001341 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001342 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001343 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001344 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001345
1346 if (FD_ISSET(c->sock, readset)) {
1347 debug("X11 connection requested.");
1348 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001349 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001350 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001351 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001352 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001353 channel_close_fd(&c->sock);
1354 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001355 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001356 }
Damien Millerb38eff82000-04-01 11:09:21 +10001357 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001358 if (errno != EINTR && errno != EWOULDBLOCK &&
1359 errno != ECONNABORTED)
1360 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001361 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001362 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001363 return;
1364 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001365 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001366 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001367 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001368 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001369 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001370
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001371 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001372 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001373 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001374 if (compat20) {
1375 packet_start(SSH2_MSG_CHANNEL_OPEN);
1376 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001377 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001378 packet_put_int(nc->local_window_max);
1379 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001380 /* originator ipaddr and port */
1381 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001382 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001383 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001384 } else {
1385 packet_put_int(remote_port);
1386 }
Damien Millerbd483e72000-04-30 10:00:53 +10001387 packet_send();
1388 } else {
1389 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001390 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001391 if (packet_get_protocol_flags() &
1392 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001393 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001394 packet_send();
1395 }
Darren Tuckera627d422013-06-02 07:31:17 +10001396 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001397 }
1398}
1399
Ben Lindstrombba81212001-06-25 05:01:22 +00001400static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001401port_open_helper(Channel *c, char *rtype)
1402{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001403 char buf[1024];
Damien Miller4def1842013-12-29 17:45:26 +11001404 char *local_ipaddr = get_local_ipaddr(c->sock);
Damien Miller0890dc82014-02-24 15:56:07 +11001405 int local_port = c->sock == -1 ? 65536 : get_sock_port(c->sock, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001406 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001407 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001408
Damien Millerd6369432010-02-02 17:02:07 +11001409 if (remote_port == -1) {
1410 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001411 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001412 remote_ipaddr = xstrdup("127.0.0.1");
1413 remote_port = 65535;
1414 }
1415
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001416 snprintf(buf, sizeof buf,
1417 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001418 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001419 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001420 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001421
Darren Tuckera627d422013-06-02 07:31:17 +10001422 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001423 c->remote_name = xstrdup(buf);
1424
1425 if (compat20) {
1426 packet_start(SSH2_MSG_CHANNEL_OPEN);
1427 packet_put_cstring(rtype);
1428 packet_put_int(c->self);
1429 packet_put_int(c->local_window_max);
1430 packet_put_int(c->local_maxpacket);
Damien Miller7acefbb2014-07-18 14:11:24 +10001431 if (strcmp(rtype, "direct-tcpip") == 0) {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001432 /* target host, port */
1433 packet_put_cstring(c->path);
1434 packet_put_int(c->host_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10001435 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1436 /* target path */
1437 packet_put_cstring(c->path);
1438 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1439 /* listen path */
1440 packet_put_cstring(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001441 } else {
1442 /* listen address, port */
1443 packet_put_cstring(c->path);
Damien Miller4def1842013-12-29 17:45:26 +11001444 packet_put_int(local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001445 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001446 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1447 /* reserved for future owner/mode info */
1448 packet_put_cstring("");
1449 } else {
1450 /* originator host and port */
1451 packet_put_cstring(remote_ipaddr);
1452 packet_put_int((u_int)remote_port);
1453 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001454 packet_send();
1455 } else {
1456 packet_start(SSH_MSG_PORT_OPEN);
1457 packet_put_int(c->self);
1458 packet_put_cstring(c->path);
1459 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001460 if (packet_get_protocol_flags() &
1461 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001462 packet_put_cstring(c->remote_name);
1463 packet_send();
1464 }
Darren Tuckera627d422013-06-02 07:31:17 +10001465 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001466 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001467}
1468
Damien Miller5e7fd072005-11-05 14:53:39 +11001469static void
1470channel_set_reuseaddr(int fd)
1471{
1472 int on = 1;
1473
1474 /*
1475 * Set socket options.
1476 * Allow local port reuse in TIME_WAIT.
1477 */
1478 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1479 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1480}
1481
Damien Millerb38eff82000-04-01 11:09:21 +10001482/*
1483 * This socket is listening for connections to a forwarded TCP/IP port.
1484 */
Damien Miller8473dd82006-07-24 14:08:32 +10001485/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001486static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001487channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001488{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001489 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001490 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001491 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001492 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001493 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001494
Damien Millerb38eff82000-04-01 11:09:21 +10001495 if (FD_ISSET(c->sock, readset)) {
1496 debug("Connection to port %d forwarding "
1497 "to %.100s port %d requested.",
1498 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001499
Damien Miller4623a752001-10-10 15:03:58 +10001500 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1501 nextstate = SSH_CHANNEL_OPENING;
1502 rtype = "forwarded-tcpip";
Damien Miller7acefbb2014-07-18 14:11:24 +10001503 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1504 nextstate = SSH_CHANNEL_OPENING;
1505 rtype = "forwarded-streamlocal@openssh.com";
1506 } else if (c->host_port == PORT_STREAMLOCAL) {
1507 nextstate = SSH_CHANNEL_OPENING;
1508 rtype = "direct-streamlocal@openssh.com";
1509 } else if (c->host_port == 0) {
1510 nextstate = SSH_CHANNEL_DYNAMIC;
1511 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001512 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10001513 nextstate = SSH_CHANNEL_OPENING;
1514 rtype = "direct-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001515 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001516
Damien Millerb38eff82000-04-01 11:09:21 +10001517 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001518 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001519 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001520 if (errno != EINTR && errno != EWOULDBLOCK &&
1521 errno != ECONNABORTED)
1522 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001523 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001524 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001525 return;
1526 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001527 if (c->host_port != PORT_STREAMLOCAL)
1528 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001529 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1530 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001531 nc->listening_port = c->listening_port;
1532 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001533 if (c->path != NULL)
1534 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001535
Darren Tucker876045b2010-01-08 17:08:00 +11001536 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001537 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001538 }
1539}
1540
1541/*
1542 * This is the authentication agent socket listening for connections from
1543 * clients.
1544 */
Damien Miller8473dd82006-07-24 14:08:32 +10001545/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001546static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001547channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001548{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001549 Channel *nc;
1550 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001551 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001552 socklen_t addrlen;
1553
1554 if (FD_ISSET(c->sock, readset)) {
1555 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001556 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001557 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001558 error("accept from auth socket: %.100s",
1559 strerror(errno));
1560 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001561 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001562 return;
1563 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001564 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001565 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1566 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001567 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001568 if (compat20) {
1569 packet_start(SSH2_MSG_CHANNEL_OPEN);
1570 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001571 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001572 packet_put_int(c->local_window_max);
1573 packet_put_int(c->local_maxpacket);
1574 } else {
1575 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001576 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001577 }
Damien Millerb38eff82000-04-01 11:09:21 +10001578 packet_send();
1579 }
1580}
1581
Damien Miller8473dd82006-07-24 14:08:32 +10001582/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001583static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001584channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001585{
Damien Millerbd740252008-05-19 15:37:09 +10001586 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001587 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001588
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001589 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001590 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001591 err = errno;
1592 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001593 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001594 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001595 debug("channel %d: connected to %s port %d",
1596 c->self, c->connect_ctx.host, c->connect_ctx.port);
1597 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001598 c->type = SSH_CHANNEL_OPEN;
1599 if (compat20) {
1600 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1601 packet_put_int(c->remote_id);
1602 packet_put_int(c->self);
1603 packet_put_int(c->local_window);
1604 packet_put_int(c->local_maxpacket);
1605 } else {
1606 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1607 packet_put_int(c->remote_id);
1608 packet_put_int(c->self);
1609 }
1610 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001611 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001612 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001613 /* Try next address, if any */
1614 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1615 close(c->sock);
1616 c->sock = c->rfd = c->wfd = sock;
1617 channel_max_fd = channel_find_maxfd();
1618 return;
1619 }
1620 /* Exhausted all addresses */
1621 error("connect_to %.100s port %d: failed.",
1622 c->connect_ctx.host, c->connect_ctx.port);
1623 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001624 if (compat20) {
1625 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1626 packet_put_int(c->remote_id);
1627 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1628 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1629 packet_put_cstring(strerror(err));
1630 packet_put_cstring("");
1631 }
1632 } else {
1633 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1634 packet_put_int(c->remote_id);
1635 }
1636 chan_mark_dead(c);
1637 }
1638 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001639 }
1640}
1641
Damien Miller8473dd82006-07-24 14:08:32 +10001642/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001643static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001644channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001645{
Darren Tucker11327cc2005-03-14 23:22:25 +11001646 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001647 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001648
Damien Miller835284b2007-06-11 13:03:16 +10001649 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1650 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001651 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001652 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001653 if (len < 0 && (errno == EINTR ||
1654 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001655 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001656#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001657 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001658#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001659 if ((!c->isatty && len <= 0) ||
1660 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001661#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001662 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001663 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001664 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001665 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001666 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001667 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001668 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001669 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001670 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001671 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001672 } else {
1673 chan_read_failed(c);
1674 }
1675 return -1;
1676 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001677 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001678 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001679 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001680 chan_read_failed(c);
1681 }
Damien Millerd27b9472005-12-13 19:29:02 +11001682 } else if (c->datagram) {
1683 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001684 } else {
1685 buffer_append(&c->input, buf, len);
1686 }
Damien Millerb38eff82000-04-01 11:09:21 +10001687 }
1688 return 1;
1689}
Damien Miller4f7becb2006-03-26 14:10:14 +11001690
Damien Miller8473dd82006-07-24 14:08:32 +10001691/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001692static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001693channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001694{
Ben Lindstrome229b252001-03-05 06:28:06 +00001695 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001696 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001697 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001698 int len;
1699
1700 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001701 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001702 FD_ISSET(c->wfd, writeset) &&
1703 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001704 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001705 if (c->output_filter != NULL) {
1706 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1707 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001708 if (c->type != SSH_CHANNEL_OPEN)
1709 chan_mark_dead(c);
1710 else
1711 chan_write_failed(c);
1712 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001713 }
1714 } else if (c->datagram) {
1715 buf = data = buffer_get_string(&c->output, &dlen);
1716 } else {
1717 buf = data = buffer_ptr(&c->output);
1718 dlen = buffer_len(&c->output);
1719 }
1720
Damien Millerd27b9472005-12-13 19:29:02 +11001721 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001722 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001723 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001724 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001725 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1726 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001727 return 1;
1728 if (len <= 0) {
1729 if (c->type != SSH_CHANNEL_OPEN)
1730 chan_mark_dead(c);
1731 else
1732 chan_write_failed(c);
1733 return -1;
1734 }
Damien Miller7d457182010-08-05 23:09:48 +10001735 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001736 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001737#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001738 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001739 if (compat20 && c->wfd_isatty)
1740 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001741#endif
Damien Miller077b2382005-12-31 16:22:32 +11001742
1743 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001744 if (len < 0 &&
1745 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001746 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001747 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001748 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001749 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001750 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001751 return -1;
1752 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001753 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001754 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001755 c->type = SSH_CHANNEL_INPUT_DRAINING;
1756 } else {
1757 chan_write_failed(c);
1758 }
1759 return -1;
1760 }
Darren Tucker3980b632009-08-28 11:02:37 +10001761#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001762 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001763 if (tcgetattr(c->wfd, &tio) == 0 &&
1764 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1765 /*
1766 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001767 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001768 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001769 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001770 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001771 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001772 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001773 }
1774 }
Darren Tucker3980b632009-08-28 11:02:37 +10001775#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001776 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001777 }
Damien Miller7d457182010-08-05 23:09:48 +10001778 out:
1779 if (compat20 && olen > 0)
1780 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001781 return 1;
1782}
Damien Miller4f7becb2006-03-26 14:10:14 +11001783
Ben Lindstrombba81212001-06-25 05:01:22 +00001784static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001785channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001786{
Darren Tucker11327cc2005-03-14 23:22:25 +11001787 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001788 int len;
1789
Damien Miller1383bd82000-04-06 12:32:37 +10001790/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001791 if (c->efd != -1) {
1792 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1793 FD_ISSET(c->efd, writeset) &&
1794 buffer_len(&c->extended) > 0) {
1795 len = write(c->efd, buffer_ptr(&c->extended),
1796 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001797 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001798 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001799 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1800 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001801 return 1;
1802 if (len <= 0) {
1803 debug2("channel %d: closing write-efd %d",
1804 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001805 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001806 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001807 buffer_consume(&c->extended, len);
1808 c->local_consumed += len;
1809 }
Damien Miller8853ca52010-06-26 10:00:14 +10001810 } else if (c->efd != -1 &&
1811 (c->extended_usage == CHAN_EXTENDED_READ ||
1812 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001813 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001814 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001815 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001816 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001817 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1818 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001819 return 1;
1820 if (len <= 0) {
1821 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001822 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001823 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001824 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001825 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1826 debug3("channel %d: discard efd",
1827 c->self);
1828 } else
1829 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001830 }
Damien Miller33b13562000-04-04 14:38:59 +10001831 }
1832 }
1833 return 1;
1834}
Damien Miller4f7becb2006-03-26 14:10:14 +11001835
Damien Miller0e220db2004-06-15 10:34:08 +10001836static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001837channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001838{
Ben Lindstromb3921512001-04-11 15:57:50 +00001839 if (c->type == SSH_CHANNEL_OPEN &&
1840 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001841 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001842 c->local_maxpacket*3) ||
1843 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001844 c->local_consumed > 0) {
1845 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1846 packet_put_int(c->remote_id);
1847 packet_put_int(c->local_consumed);
1848 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001849 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001850 c->self, c->local_window,
1851 c->local_consumed);
1852 c->local_window += c->local_consumed;
1853 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001854 }
1855 return 1;
1856}
1857
Ben Lindstrombba81212001-06-25 05:01:22 +00001858static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001859channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001860{
1861 channel_handle_rfd(c, readset, writeset);
1862 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001863 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001864 return;
Damien Miller33b13562000-04-04 14:38:59 +10001865 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001866 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001867}
1868
Damien Millere1537f92010-01-26 13:26:22 +11001869static u_int
1870read_mux(Channel *c, u_int need)
1871{
1872 char buf[CHAN_RBUF];
1873 int len;
1874 u_int rlen;
1875
1876 if (buffer_len(&c->input) < need) {
1877 rlen = need - buffer_len(&c->input);
1878 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1879 if (len <= 0) {
1880 if (errno != EINTR && errno != EAGAIN) {
1881 debug2("channel %d: ctl read<=0 rfd %d len %d",
1882 c->self, c->rfd, len);
1883 chan_read_failed(c);
1884 return 0;
1885 }
1886 } else
1887 buffer_append(&c->input, buf, len);
1888 }
1889 return buffer_len(&c->input);
1890}
1891
1892static void
1893channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1894{
1895 u_int need;
1896 ssize_t len;
1897
1898 if (!compat20)
1899 fatal("%s: entered with !compat20", __func__);
1900
Damien Millerd530f5f2010-05-21 14:57:10 +10001901 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001902 (c->istate == CHAN_INPUT_OPEN ||
1903 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1904 /*
1905 * Don't not read past the precise end of packets to
1906 * avoid disrupting fd passing.
1907 */
1908 if (read_mux(c, 4) < 4) /* read header */
1909 return;
1910 need = get_u32(buffer_ptr(&c->input));
1911#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1912 if (need > CHANNEL_MUX_MAX_PACKET) {
1913 debug2("channel %d: packet too big %u > %u",
1914 c->self, CHANNEL_MUX_MAX_PACKET, need);
1915 chan_rcvd_oclose(c);
1916 return;
1917 }
1918 if (read_mux(c, need + 4) < need + 4) /* read body */
1919 return;
1920 if (c->mux_rcb(c) != 0) {
1921 debug("channel %d: mux_rcb failed", c->self);
1922 chan_mark_dead(c);
1923 return;
1924 }
1925 }
1926
1927 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1928 buffer_len(&c->output) > 0) {
1929 len = write(c->wfd, buffer_ptr(&c->output),
1930 buffer_len(&c->output));
1931 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1932 return;
1933 if (len <= 0) {
1934 chan_mark_dead(c);
1935 return;
1936 }
1937 buffer_consume(&c->output, len);
1938 }
1939}
1940
1941static void
1942channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1943{
1944 Channel *nc;
1945 struct sockaddr_storage addr;
1946 socklen_t addrlen;
1947 int newsock;
1948 uid_t euid;
1949 gid_t egid;
1950
1951 if (!FD_ISSET(c->sock, readset))
1952 return;
1953
1954 debug("multiplexing control connection");
1955
1956 /*
1957 * Accept connection on control socket
1958 */
1959 memset(&addr, 0, sizeof(addr));
1960 addrlen = sizeof(addr);
1961 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1962 &addrlen)) == -1) {
1963 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001964 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001965 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001966 return;
1967 }
1968
1969 if (getpeereid(newsock, &euid, &egid) < 0) {
1970 error("%s getpeereid failed: %s", __func__,
1971 strerror(errno));
1972 close(newsock);
1973 return;
1974 }
1975 if ((euid != 0) && (getuid() != euid)) {
1976 error("multiplex uid mismatch: peer euid %u != uid %u",
1977 (u_int)euid, (u_int)getuid());
1978 close(newsock);
1979 return;
1980 }
1981 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1982 newsock, newsock, -1, c->local_window_max,
1983 c->local_maxpacket, 0, "mux-control", 1);
1984 nc->mux_rcb = c->mux_rcb;
1985 debug3("%s: new mux channel %d fd %d", __func__,
1986 nc->self, nc->sock);
1987 /* establish state */
1988 nc->mux_rcb(nc);
1989 /* mux state transitions must not elicit protocol messages */
1990 nc->flags |= CHAN_LOCAL;
1991}
1992
Damien Miller8473dd82006-07-24 14:08:32 +10001993/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001994static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001995channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001996{
1997 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001998
Damien Millerb38eff82000-04-01 11:09:21 +10001999 /* Send buffered output data to the socket. */
2000 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
2001 len = write(c->sock, buffer_ptr(&c->output),
2002 buffer_len(&c->output));
2003 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11002004 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10002005 else
2006 buffer_consume(&c->output, len);
2007 }
2008}
2009
Ben Lindstrombba81212001-06-25 05:01:22 +00002010static void
Damien Miller33b13562000-04-04 14:38:59 +10002011channel_handler_init_20(void)
2012{
Damien Millerde6987c2002-01-22 23:20:40 +11002013 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002014 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10002015 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002016 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002017 channel_pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2018 channel_pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002019 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002020 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002021 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002022 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11002023 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2024 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002025
Damien Millerde6987c2002-01-22 23:20:40 +11002026 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10002027 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002028 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002029 channel_post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2030 channel_post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002031 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002032 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002033 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002034 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11002035 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2036 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002037}
2038
Ben Lindstrombba81212001-06-25 05:01:22 +00002039static void
Damien Millerb38eff82000-04-01 11:09:21 +10002040channel_handler_init_13(void)
2041{
2042 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2043 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2044 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2045 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2046 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2047 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2048 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002049 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002050 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002051
Damien Millerde6987c2002-01-22 23:20:40 +11002052 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002053 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2054 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2055 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2056 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002057 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002058 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002059}
2060
Ben Lindstrombba81212001-06-25 05:01:22 +00002061static void
Damien Millerb38eff82000-04-01 11:09:21 +10002062channel_handler_init_15(void)
2063{
Damien Millerde6987c2002-01-22 23:20:40 +11002064 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002065 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002066 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;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002069 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002070 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002071
2072 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2073 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2074 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002075 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002076 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002077 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002078}
2079
Ben Lindstrombba81212001-06-25 05:01:22 +00002080static void
Damien Millerb38eff82000-04-01 11:09:21 +10002081channel_handler_init(void)
2082{
2083 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002084
Damien Miller9f0f5c62001-12-21 14:45:46 +11002085 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002086 channel_pre[i] = NULL;
2087 channel_post[i] = NULL;
2088 }
Damien Miller33b13562000-04-04 14:38:59 +10002089 if (compat20)
2090 channel_handler_init_20();
2091 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002092 channel_handler_init_13();
2093 else
2094 channel_handler_init_15();
2095}
2096
Damien Miller3ec27592001-10-12 11:35:04 +10002097/* gc dead channels */
2098static void
2099channel_garbage_collect(Channel *c)
2100{
2101 if (c == NULL)
2102 return;
2103 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002104 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002105 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002106 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002107 c->detach_user(c->self, NULL);
2108 /* if we still have a callback */
2109 if (c->detach_user != NULL)
2110 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002111 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002112 }
2113 if (!chan_is_dead(c, 1))
2114 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002115 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002116 channel_free(c);
2117}
2118
Ben Lindstrombba81212001-06-25 05:01:22 +00002119static void
Damien Millera6508752012-04-22 11:21:10 +10002120channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2121 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002122{
2123 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002124 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002125 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002126 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002127
2128 if (!did_init) {
2129 channel_handler_init();
2130 did_init = 1;
2131 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002132 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002133 if (unpause_secs != NULL)
2134 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002135 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002136 c = channels[i];
2137 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002138 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002139 if (c->delayed) {
2140 if (ftab == channel_pre)
2141 c->delayed = 0;
2142 else
2143 continue;
2144 }
Damien Millera6508752012-04-22 11:21:10 +10002145 if (ftab[c->type] != NULL) {
2146 /*
2147 * Run handlers that are not paused.
2148 */
2149 if (c->notbefore <= now)
2150 (*ftab[c->type])(c, readset, writeset);
2151 else if (unpause_secs != NULL) {
2152 /*
2153 * Collect the time that the earliest
2154 * channel comes off pause.
2155 */
2156 debug3("%s: chan %d: skip for %d more seconds",
2157 __func__, c->self,
2158 (int)(c->notbefore - now));
2159 if (*unpause_secs == 0 ||
2160 (c->notbefore - now) < *unpause_secs)
2161 *unpause_secs = c->notbefore - now;
2162 }
2163 }
Damien Miller3ec27592001-10-12 11:35:04 +10002164 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002165 }
Damien Millera6508752012-04-22 11:21:10 +10002166 if (unpause_secs != NULL && *unpause_secs != 0)
2167 debug3("%s: first channel unpauses in %d seconds",
2168 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002169}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170
Ben Lindstrome9c99912001-06-09 00:41:05 +00002171/*
2172 * Allocate/update select bitmasks and add any bits relevant to channels in
2173 * select bitmasks.
2174 */
Damien Miller4af51302000-04-16 11:18:38 +10002175void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002176channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002177 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002178{
Damien Miller36812092006-03-26 14:22:47 +11002179 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002180
2181 n = MAX(*maxfdp, channel_max_fd);
2182
Damien Miller36812092006-03-26 14:22:47 +11002183 nfdset = howmany(n+1, NFDBITS);
2184 /* Explicitly test here, because xrealloc isn't always called */
2185 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2186 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2187 sz = nfdset * sizeof(fd_mask);
2188
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002189 /* perhaps check sz < nalloc/2 and shrink? */
2190 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002191 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2192 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002193 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002194 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002195 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002196 memset(*readsetp, 0, sz);
2197 memset(*writesetp, 0, sz);
2198
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002199 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002200 channel_handler(channel_pre, *readsetp, *writesetp,
2201 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002202}
2203
Ben Lindstrome9c99912001-06-09 00:41:05 +00002204/*
2205 * After select, perform any appropriate operations for channels which have
2206 * events pending.
2207 */
Damien Miller4af51302000-04-16 11:18:38 +10002208void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002209channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002210{
Damien Millera6508752012-04-22 11:21:10 +10002211 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002212}
2213
Ben Lindstrome9c99912001-06-09 00:41:05 +00002214
Damien Miller5e953212001-01-30 09:14:00 +11002215/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002216void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002217channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002218{
Damien Millerb38eff82000-04-01 11:09:21 +10002219 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002220 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002221
Damien Miller95def091999-11-25 00:26:21 +11002222 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002223 c = channels[i];
2224 if (c == NULL)
2225 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002226
Ben Lindstrome9c99912001-06-09 00:41:05 +00002227 /*
2228 * We are only interested in channels that can have buffered
2229 * incoming data.
2230 */
Damien Miller34132e52000-01-14 15:45:46 +11002231 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002232 if (c->type != SSH_CHANNEL_OPEN &&
2233 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002234 continue;
2235 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002236 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002237 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002238 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002239 if (compat20 &&
2240 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002241 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002242 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002243 continue;
2244 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002245
Damien Miller95def091999-11-25 00:26:21 +11002246 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002247 if ((c->istate == CHAN_INPUT_OPEN ||
2248 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2249 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002250 if (c->datagram) {
2251 if (len > 0) {
2252 u_char *data;
2253 u_int dlen;
2254
2255 data = buffer_get_string(&c->input,
2256 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002257 if (dlen > c->remote_window ||
2258 dlen > c->remote_maxpacket) {
2259 debug("channel %d: datagram "
2260 "too big for channel",
2261 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002262 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002263 continue;
2264 }
Damien Millerd27b9472005-12-13 19:29:02 +11002265 packet_start(SSH2_MSG_CHANNEL_DATA);
2266 packet_put_int(c->remote_id);
2267 packet_put_string(data, dlen);
2268 packet_send();
2269 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002270 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002271 }
2272 continue;
2273 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002274 /*
2275 * Send some data for the other side over the secure
2276 * connection.
2277 */
Damien Miller33b13562000-04-04 14:38:59 +10002278 if (compat20) {
2279 if (len > c->remote_window)
2280 len = c->remote_window;
2281 if (len > c->remote_maxpacket)
2282 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002283 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002284 if (packet_is_interactive()) {
2285 if (len > 1024)
2286 len = 512;
2287 } else {
2288 /* Keep the packets at reasonable size. */
2289 if (len > packet_get_maxsize()/2)
2290 len = packet_get_maxsize()/2;
2291 }
Damien Miller95def091999-11-25 00:26:21 +11002292 }
Damien Millerb38eff82000-04-01 11:09:21 +10002293 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002294 packet_start(compat20 ?
2295 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002296 packet_put_int(c->remote_id);
2297 packet_put_string(buffer_ptr(&c->input), len);
2298 packet_send();
2299 buffer_consume(&c->input, len);
2300 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002301 }
2302 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002303 if (compat13)
2304 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002305 /*
2306 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002307 * tell peer, that we will not send more data: send IEOF.
2308 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002309 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002310 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002311 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2312 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002313 else
2314 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002315 }
Damien Miller33b13562000-04-04 14:38:59 +10002316 /* Send extended data, i.e. stderr */
2317 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002318 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002319 c->remote_window > 0 &&
2320 (len = buffer_len(&c->extended)) > 0 &&
2321 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002322 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002323 c->self, c->remote_window, buffer_len(&c->extended),
2324 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002325 if (len > c->remote_window)
2326 len = c->remote_window;
2327 if (len > c->remote_maxpacket)
2328 len = c->remote_maxpacket;
2329 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2330 packet_put_int(c->remote_id);
2331 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2332 packet_put_string(buffer_ptr(&c->extended), len);
2333 packet_send();
2334 buffer_consume(&c->extended, len);
2335 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002336 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002337 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002338 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002339}
2340
Ben Lindstrome9c99912001-06-09 00:41:05 +00002341
2342/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002343
2344/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002345void
Damien Miller630d6f42002-01-22 23:17:30 +11002346channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002347{
Damien Miller34132e52000-01-14 15:45:46 +11002348 int id;
Damien Miller633de332014-05-15 13:48:26 +10002349 const u_char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002350 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002351 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002352
Damien Miller95def091999-11-25 00:26:21 +11002353 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002354 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002355 c = channel_lookup(id);
2356 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002357 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002358
Damien Miller95def091999-11-25 00:26:21 +11002359 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002360 if (c->type != SSH_CHANNEL_OPEN &&
2361 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002362 return;
2363
Damien Miller95def091999-11-25 00:26:21 +11002364 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002365 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002366 win_len = data_len;
2367 if (c->datagram)
2368 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002369
Damien Millera04ad492004-01-21 11:02:09 +11002370 /*
2371 * Ignore data for protocol > 1.3 if output end is no longer open.
2372 * For protocol 2 the sending side is reducing its window as it sends
2373 * data, so we must 'fake' consumption of the data in order to ensure
2374 * that window updates are sent back. Otherwise the connection might
2375 * deadlock.
2376 */
2377 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2378 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002379 c->local_window -= win_len;
2380 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002381 }
Damien Millera04ad492004-01-21 11:02:09 +11002382 return;
2383 }
2384
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002385 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002386 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002387 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002388 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002389 }
Damien Miller7d457182010-08-05 23:09:48 +10002390 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002391 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002392 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002393 return;
2394 }
Damien Miller7d457182010-08-05 23:09:48 +10002395 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002396 }
Damien Millerd27b9472005-12-13 19:29:02 +11002397 if (c->datagram)
2398 buffer_put_string(&c->output, data, data_len);
2399 else
2400 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002401 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002402}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002403
Damien Millerd79b4242006-03-31 23:11:44 +11002404/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002405void
Damien Miller630d6f42002-01-22 23:17:30 +11002406channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002407{
2408 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002409 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002410 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002411 Channel *c;
2412
2413 /* Get the channel number and verify it. */
2414 id = packet_get_int();
2415 c = channel_lookup(id);
2416
2417 if (c == NULL)
2418 packet_disconnect("Received extended_data for bad channel %d.", id);
2419 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002420 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002421 return;
2422 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002423 if (c->flags & CHAN_EOF_RCVD) {
2424 if (datafellows & SSH_BUG_EXTEOF)
2425 debug("channel %d: accepting ext data after eof", id);
2426 else
2427 packet_disconnect("Received extended_data after EOF "
2428 "on channel %d.", id);
2429 }
Damien Miller33b13562000-04-04 14:38:59 +10002430 tcode = packet_get_int();
2431 if (c->efd == -1 ||
2432 c->extended_usage != CHAN_EXTENDED_WRITE ||
2433 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002434 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002435 return;
2436 }
2437 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002438 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002439 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002440 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002441 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002442 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002443 return;
2444 }
Damien Millerd3444942000-09-30 14:20:03 +11002445 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002446 c->local_window -= data_len;
2447 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002448 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002449}
2450
Damien Millerd79b4242006-03-31 23:11:44 +11002451/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002452void
Damien Miller630d6f42002-01-22 23:17:30 +11002453channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002454{
2455 int id;
2456 Channel *c;
2457
Damien Millerb38eff82000-04-01 11:09:21 +10002458 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002459 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002460 c = channel_lookup(id);
2461 if (c == NULL)
2462 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2463 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002464
2465 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002466 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002467 debug("channel %d: FORCE input drain", c->self);
2468 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002469 if (buffer_len(&c->input) == 0)
2470 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002471 }
2472
Damien Millerb38eff82000-04-01 11:09:21 +10002473}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002474
Damien Millerd79b4242006-03-31 23:11:44 +11002475/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002476void
Damien Miller630d6f42002-01-22 23:17:30 +11002477channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002478{
Damien Millerb38eff82000-04-01 11:09:21 +10002479 int id;
2480 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481
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 close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002487
2488 /*
2489 * Send a confirmation that we have closed the channel and no more
2490 * data is coming for it.
2491 */
Damien Miller95def091999-11-25 00:26:21 +11002492 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002493 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002494 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002495
Damien Miller5428f641999-11-25 11:54:57 +11002496 /*
2497 * If the channel is in closed state, we have sent a close request,
2498 * and the other side will eventually respond with a confirmation.
2499 * Thus, we cannot free the channel here, because then there would be
2500 * no-one to receive the confirmation. The channel gets freed when
2501 * the confirmation arrives.
2502 */
Damien Millerb38eff82000-04-01 11:09:21 +10002503 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002504 /*
2505 * Not a closed channel - mark it as draining, which will
2506 * cause it to be freed later.
2507 */
Damien Miller76765c02002-01-22 23:21:15 +11002508 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002509 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002510 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002511}
2512
Damien Millerb38eff82000-04-01 11:09:21 +10002513/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002514/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002515void
Damien Miller630d6f42002-01-22 23:17:30 +11002516channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517{
Damien Millerb38eff82000-04-01 11:09:21 +10002518 int id = packet_get_int();
2519 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002520
Damien Miller48b03fc2002-01-22 23:11:40 +11002521 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002522 if (c == NULL)
2523 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2524 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002525}
2526
Damien Millerd79b4242006-03-31 23:11:44 +11002527/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002528void
Damien Miller630d6f42002-01-22 23:17:30 +11002529channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002530{
2531 int id = packet_get_int();
2532 Channel *c = channel_lookup(id);
2533
Damien Miller48b03fc2002-01-22 23:11:40 +11002534 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002535 if (c == NULL)
2536 packet_disconnect("Received close confirmation for "
2537 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002538 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002539 packet_disconnect("Received close confirmation for "
2540 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002541 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002542}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002543
Damien Millerd79b4242006-03-31 23:11:44 +11002544/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002545void
Damien Miller630d6f42002-01-22 23:17:30 +11002546channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002547{
Damien Millerb38eff82000-04-01 11:09:21 +10002548 int id, remote_id;
2549 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002550
Damien Millerb38eff82000-04-01 11:09:21 +10002551 id = packet_get_int();
2552 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002553
Damien Millerb38eff82000-04-01 11:09:21 +10002554 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2555 packet_disconnect("Received open confirmation for "
2556 "non-opening channel %d.", id);
2557 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002558 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002559 c->remote_id = remote_id;
2560 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002561
2562 if (compat20) {
2563 c->remote_window = packet_get_int();
2564 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002565 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002566 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002567 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002568 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002569 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002570 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002571 c->remote_window, c->remote_maxpacket);
2572 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002573 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002574}
2575
Ben Lindstrombba81212001-06-25 05:01:22 +00002576static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002577reason2txt(int reason)
2578{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002579 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002580 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2581 return "administratively prohibited";
2582 case SSH2_OPEN_CONNECT_FAILED:
2583 return "connect failed";
2584 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2585 return "unknown channel type";
2586 case SSH2_OPEN_RESOURCE_SHORTAGE:
2587 return "resource shortage";
2588 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002589 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002590}
2591
Damien Millerd79b4242006-03-31 23:11:44 +11002592/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002593void
Damien Miller630d6f42002-01-22 23:17:30 +11002594channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002595{
Kevin Steves12057502001-02-05 14:54:34 +00002596 int id, reason;
2597 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002598 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002599
Damien Millerb38eff82000-04-01 11:09:21 +10002600 id = packet_get_int();
2601 c = channel_lookup(id);
2602
2603 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2604 packet_disconnect("Received open failure for "
2605 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002606 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002607 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002608 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002609 msg = packet_get_string(NULL);
2610 lang = packet_get_string(NULL);
2611 }
Damien Miller996acd22003-04-09 20:59:48 +10002612 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002613 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002614 free(msg);
2615 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002616 if (c->open_confirm) {
2617 debug2("callback start");
2618 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2619 debug2("callback done");
2620 }
Damien Miller33b13562000-04-04 14:38:59 +10002621 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002622 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002623 /* Schedule the channel for cleanup/deletion. */
2624 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002625}
2626
Damien Millerd79b4242006-03-31 23:11:44 +11002627/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002628void
Damien Miller630d6f42002-01-22 23:17:30 +11002629channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002630{
2631 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002632 int id;
2633 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002634
2635 if (!compat20)
2636 return;
2637
2638 /* Get the channel number and verify it. */
2639 id = packet_get_int();
2640 c = channel_lookup(id);
2641
Damien Millerd47c62a2005-12-13 19:33:57 +11002642 if (c == NULL) {
2643 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002644 return;
2645 }
2646 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002647 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002648 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002649 c->remote_window += adjust;
2650}
2651
Damien Millerd79b4242006-03-31 23:11:44 +11002652/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002653void
Damien Miller630d6f42002-01-22 23:17:30 +11002654channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002655{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002656 Channel *c = NULL;
2657 u_short host_port;
2658 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002659 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002660
Ben Lindstrome9c99912001-06-09 00:41:05 +00002661 remote_id = packet_get_int();
2662 host = packet_get_string(NULL);
2663 host_port = packet_get_int();
2664
2665 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2666 originator_string = packet_get_string(NULL);
2667 } else {
2668 originator_string = xstrdup("unknown (remote did not supply name)");
2669 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002670 packet_check_eom();
Damien Miller7acefbb2014-07-18 14:11:24 +10002671 c = channel_connect_to_port(host, host_port,
Damien Millerbd740252008-05-19 15:37:09 +10002672 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002673 free(originator_string);
2674 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002675 if (c == NULL) {
2676 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2677 packet_put_int(remote_id);
2678 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002679 } else
2680 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002681}
2682
Damien Millerb84886b2008-05-19 15:05:07 +10002683/* ARGSUSED */
2684void
2685channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2686{
2687 Channel *c;
2688 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002689 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002690
2691 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002692 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002693
Damien Miller16a73072008-12-08 09:55:25 +11002694 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002695 packet_check_eom();
2696
Damien Miller16a73072008-12-08 09:55:25 +11002697 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002698
Damien Miller16a73072008-12-08 09:55:25 +11002699 if ((c = channel_lookup(id)) == NULL) {
2700 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002701 return;
2702 }
2703 ;
2704 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2705 return;
2706 cc->cb(type, c, cc->ctx);
2707 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11002708 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002709 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +10002710}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002711
Ben Lindstrome9c99912001-06-09 00:41:05 +00002712/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002713
Ben Lindstrom908afed2001-10-03 17:34:59 +00002714void
2715channel_set_af(int af)
2716{
2717 IPv4or6 = af;
2718}
2719
Damien Millerf6dff7c2011-09-22 21:38:52 +10002720
2721/*
2722 * Determine whether or not a port forward listens to loopback, the
2723 * specified address or wildcard. On the client, a specified bind
2724 * address will always override gateway_ports. On the server, a
2725 * gateway_ports of 1 (``yes'') will override the client's specification
2726 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2727 * will bind to whatever address the client asked for.
2728 *
2729 * Special-case listen_addrs are:
2730 *
2731 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2732 * "" (empty string), "*" -> wildcard v4/v6
2733 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10002734 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10002735 */
2736static const char *
2737channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10002738 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002739{
2740 const char *addr = NULL;
2741 int wildcard = 0;
2742
2743 if (listen_addr == NULL) {
2744 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10002745 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002746 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002747 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002748 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2749 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2750 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10002751 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002752 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11002753 /*
2754 * Notify client if they requested a specific listen
2755 * address and it was overridden.
2756 */
2757 if (*listen_addr != '\0' &&
2758 strcmp(listen_addr, "0.0.0.0") != 0 &&
2759 strcmp(listen_addr, "*") != 0) {
2760 packet_send_debug("Forwarding listen address "
2761 "\"%s\" overridden by server "
2762 "GatewayPorts", listen_addr);
2763 }
Damien Miller602943d2014-07-04 08:59:41 +10002764 } else if (strcmp(listen_addr, "localhost") != 0 ||
2765 strcmp(listen_addr, "127.0.0.1") == 0 ||
2766 strcmp(listen_addr, "::1") == 0) {
2767 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10002768 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10002769 }
2770 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
2771 strcmp(listen_addr, "::1") == 0) {
2772 /*
2773 * If a specific IPv4/IPv6 localhost address has been
2774 * requested then accept it even if gateway_ports is in
2775 * effect. This allows the client to prefer IPv4 or IPv6.
2776 */
2777 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002778 }
2779 if (wildcardp != NULL)
2780 *wildcardp = wildcard;
2781 return addr;
2782}
2783
Damien Millerb16461c2002-01-22 23:29:22 +11002784static int
Damien Miller7acefbb2014-07-18 14:11:24 +10002785channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd,
2786 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002787{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002788 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002789 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002790 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002791 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002792 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002793 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002794
Damien Millerb16461c2002-01-22 23:29:22 +11002795 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10002796 fwd->listen_host : fwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002797 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002798
Damien Millerb16461c2002-01-22 23:29:22 +11002799 if (host == NULL) {
2800 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002801 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002802 }
Damien Miller9576ac42009-01-28 16:30:33 +11002803 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002804 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002805 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002806 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002807
Damien Millerf6dff7c2011-09-22 21:38:52 +10002808 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10002809 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
2810 is_client, fwd_opts);
2811 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002812 type, wildcard, (addr == NULL) ? "NULL" : addr);
2813
2814 /*
Damien Miller34132e52000-01-14 15:45:46 +11002815 * getaddrinfo returns a loopback address if the hostname is
2816 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002817 */
Damien Miller34132e52000-01-14 15:45:46 +11002818 memset(&hints, 0, sizeof(hints));
2819 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002820 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002821 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10002822 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002823 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2824 if (addr == NULL) {
2825 /* This really shouldn't happen */
2826 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002827 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002828 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002829 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11002830 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002831 }
Damien Millera7270302005-07-06 09:36:05 +10002832 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002833 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002834 if (allocated_listen_port != NULL)
2835 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002836 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002837 switch (ai->ai_family) {
2838 case AF_INET:
2839 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2840 sin_port;
2841 break;
2842 case AF_INET6:
2843 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2844 sin6_port;
2845 break;
2846 default:
Damien Miller34132e52000-01-14 15:45:46 +11002847 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002848 }
2849 /*
2850 * If allocating a port for -R forwards, then use the
2851 * same port for all address families.
2852 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002853 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002854 allocated_listen_port != NULL && *allocated_listen_port > 0)
2855 *lport_p = htons(*allocated_listen_port);
2856
Damien Miller34132e52000-01-14 15:45:46 +11002857 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2858 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10002859 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11002860 continue;
2861 }
2862 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002863 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002864 if (sock < 0) {
2865 /* this is no error since kernel may not support ipv6 */
2866 verbose("socket: %.100s", strerror(errno));
2867 continue;
2868 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002869
2870 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002871 if (ai->ai_family == AF_INET6)
2872 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002873
Damien Miller4bf648f2009-02-14 16:28:21 +11002874 debug("Local forwarding listening on %s port %s.",
2875 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002876
Damien Miller34132e52000-01-14 15:45:46 +11002877 /* Bind the socket to the address. */
2878 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2879 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002880 if (!ai->ai_next)
2881 error("bind: %.100s", strerror(errno));
2882 else
2883 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002884
Damien Miller34132e52000-01-14 15:45:46 +11002885 close(sock);
2886 continue;
2887 }
2888 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002889 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002890 error("listen: %.100s", strerror(errno));
2891 close(sock);
2892 continue;
2893 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002894
2895 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10002896 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11002897 * record what we got.
2898 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002899 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002900 allocated_listen_port != NULL &&
2901 *allocated_listen_port == 0) {
2902 *allocated_listen_port = get_sock_port(sock, 1);
2903 debug("Allocated listen port %d",
2904 *allocated_listen_port);
2905 }
2906
Damien Miller34132e52000-01-14 15:45:46 +11002907 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002908 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002909 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002910 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002911 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10002912 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002913 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10002914 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11002915 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2916 c->listening_port = *allocated_listen_port;
2917 else
Damien Miller7acefbb2014-07-18 14:11:24 +10002918 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002919 success = 1;
2920 }
2921 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10002922 error("%s: cannot listen to port: %d", __func__,
2923 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002924 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002925 return success;
Damien Miller95def091999-11-25 00:26:21 +11002926}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002927
Damien Miller7acefbb2014-07-18 14:11:24 +10002928static int
2929channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
2930 struct ForwardOptions *fwd_opts)
2931{
2932 struct sockaddr_un sunaddr;
2933 const char *path;
2934 Channel *c;
2935 int port, sock;
2936 mode_t omask;
2937
2938 switch (type) {
2939 case SSH_CHANNEL_UNIX_LISTENER:
2940 if (fwd->connect_path != NULL) {
2941 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
2942 error("Local connecting path too long: %s",
2943 fwd->connect_path);
2944 return 0;
2945 }
2946 path = fwd->connect_path;
2947 port = PORT_STREAMLOCAL;
2948 } else {
2949 if (fwd->connect_host == NULL) {
2950 error("No forward host name.");
2951 return 0;
2952 }
2953 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
2954 error("Forward host name too long.");
2955 return 0;
2956 }
2957 path = fwd->connect_host;
2958 port = fwd->connect_port;
2959 }
2960 break;
2961 case SSH_CHANNEL_RUNIX_LISTENER:
2962 path = fwd->listen_path;
2963 port = PORT_STREAMLOCAL;
2964 break;
2965 default:
2966 error("%s: unexpected channel type %d", __func__, type);
2967 return 0;
2968 }
2969
2970 if (fwd->listen_path == NULL) {
2971 error("No forward path name.");
2972 return 0;
2973 }
2974 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
2975 error("Local listening path too long: %s", fwd->listen_path);
2976 return 0;
2977 }
2978
2979 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
2980
2981 /* Start a Unix domain listener. */
2982 omask = umask(fwd_opts->streamlocal_bind_mask);
2983 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
2984 fwd_opts->streamlocal_bind_unlink);
2985 umask(omask);
2986 if (sock < 0)
2987 return 0;
2988
2989 debug("Local forwarding listening on path %s.", fwd->listen_path);
2990
2991 /* Allocate a channel number for the socket. */
2992 c = channel_new("unix listener", type, sock, sock, -1,
2993 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
2994 0, "unix listener", 1);
2995 c->path = xstrdup(path);
2996 c->host_port = port;
2997 c->listening_port = PORT_STREAMLOCAL;
2998 c->listening_addr = xstrdup(fwd->listen_path);
2999 return 1;
3000}
3001
3002static int
3003channel_cancel_rport_listener_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003004{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003005 u_int i;
3006 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003007
Darren Tucker47eede72005-03-14 23:08:12 +11003008 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003009 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003010 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3011 continue;
3012 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3013 debug2("%s: close channel %d", __func__, i);
3014 channel_free(c);
3015 found = 1;
3016 }
3017 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003018
Damien Millerf6dff7c2011-09-22 21:38:52 +10003019 return (found);
3020}
3021
Damien Miller7acefbb2014-07-18 14:11:24 +10003022static int
3023channel_cancel_rport_listener_streamlocal(const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003024{
3025 u_int i;
3026 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003027
3028 for (i = 0; i < channels_alloc; i++) {
3029 Channel *c = channels[i];
3030 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3031 continue;
3032 if (c->path == NULL)
3033 continue;
3034 if (strcmp(c->path, path) == 0) {
3035 debug2("%s: close channel %d", __func__, i);
3036 channel_free(c);
3037 found = 1;
3038 }
3039 }
3040
3041 return (found);
3042}
3043
3044int
3045channel_cancel_rport_listener(struct Forward *fwd)
3046{
3047 if (fwd->listen_path != NULL)
3048 return channel_cancel_rport_listener_streamlocal(fwd->listen_path);
3049 else
3050 return channel_cancel_rport_listener_tcpip(fwd->listen_host, fwd->listen_port);
3051}
3052
3053static int
3054channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport,
3055 int cport, struct ForwardOptions *fwd_opts)
3056{
3057 u_int i;
3058 int found = 0;
3059 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003060
3061 for (i = 0; i < channels_alloc; i++) {
3062 Channel *c = channels[i];
3063 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3064 continue;
Damien Millerff773642011-09-22 21:39:48 +10003065 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003066 continue;
Damien Millerff773642011-09-22 21:39:48 +10003067 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3068 /* skip dynamic forwardings */
3069 if (c->host_port == 0)
3070 continue;
3071 } else {
3072 if (c->host_port != cport)
3073 continue;
3074 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003075 if ((c->listening_addr == NULL && addr != NULL) ||
3076 (c->listening_addr != NULL && addr == NULL))
3077 continue;
3078 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003079 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10003080 channel_free(c);
3081 found = 1;
3082 }
3083 }
3084
3085 return (found);
3086}
3087
Damien Miller7acefbb2014-07-18 14:11:24 +10003088static int
3089channel_cancel_lport_listener_streamlocal(const char *path)
3090{
3091 u_int i;
3092 int found = 0;
3093
3094 if (path == NULL) {
3095 error("%s: no path specified.", __func__);
3096 return 0;
3097 }
3098
3099 for (i = 0; i < channels_alloc; i++) {
3100 Channel *c = channels[i];
3101 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3102 continue;
3103 if (c->listening_addr == NULL)
3104 continue;
3105 if (strcmp(c->listening_addr, path) == 0) {
3106 debug2("%s: close channel %d", __func__, i);
3107 channel_free(c);
3108 found = 1;
3109 }
3110 }
3111
3112 return (found);
3113}
3114
3115int
3116channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
3117{
3118 if (fwd->listen_path != NULL)
3119 return channel_cancel_lport_listener_streamlocal(fwd->listen_path);
3120 else
3121 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3122}
3123
Damien Millerb16461c2002-01-22 23:29:22 +11003124/* protocol local port fwd, used by ssh (and sshd in v1) */
3125int
Damien Miller7acefbb2014-07-18 14:11:24 +10003126channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003127{
Damien Miller7acefbb2014-07-18 14:11:24 +10003128 if (fwd->listen_path != NULL) {
3129 return channel_setup_fwd_listener_streamlocal(
3130 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3131 } else {
3132 return channel_setup_fwd_listener_tcpip(SSH_CHANNEL_PORT_LISTENER,
3133 fwd, NULL, fwd_opts);
3134 }
Damien Millerb16461c2002-01-22 23:29:22 +11003135}
3136
3137/* protocol v2 remote port fwd, used by sshd */
3138int
Damien Miller7acefbb2014-07-18 14:11:24 +10003139channel_setup_remote_fwd_listener(struct Forward *fwd,
3140 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003141{
Damien Miller7acefbb2014-07-18 14:11:24 +10003142 if (fwd->listen_path != NULL) {
3143 return channel_setup_fwd_listener_streamlocal(
3144 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3145 } else {
3146 return channel_setup_fwd_listener_tcpip(
3147 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3148 fwd_opts);
3149 }
Damien Millerb16461c2002-01-22 23:29:22 +11003150}
3151
Damien Miller5428f641999-11-25 11:54:57 +11003152/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003153 * Translate the requested rfwd listen host to something usable for
3154 * this server.
3155 */
3156static const char *
3157channel_rfwd_bind_host(const char *listen_host)
3158{
3159 if (listen_host == NULL) {
3160 if (datafellows & SSH_BUG_RFWD_ADDR)
3161 return "127.0.0.1";
3162 else
3163 return "localhost";
3164 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3165 if (datafellows & SSH_BUG_RFWD_ADDR)
3166 return "0.0.0.0";
3167 else
3168 return "";
3169 } else
3170 return listen_host;
3171}
3172
3173/*
Damien Miller5428f641999-11-25 11:54:57 +11003174 * Initiate forwarding of connections to port "port" on remote host through
3175 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003176 * Returns handle (index) for updating the dynamic listen port with
3177 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003178 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003179int
Damien Miller7acefbb2014-07-18 14:11:24 +10003180channel_request_remote_forwarding(struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003181{
Darren Tucker68afb8c2011-10-02 18:59:03 +11003182 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003183
Damien Miller95def091999-11-25 00:26:21 +11003184 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10003185 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10003186 packet_start(SSH2_MSG_GLOBAL_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003187 if (fwd->listen_path != NULL) {
3188 packet_put_cstring("streamlocal-forward@openssh.com");
3189 packet_put_char(1); /* boolean: want reply */
3190 packet_put_cstring(fwd->listen_path);
3191 } else {
3192 packet_put_cstring("tcpip-forward");
3193 packet_put_char(1); /* boolean: want reply */
3194 packet_put_cstring(channel_rfwd_bind_host(fwd->listen_host));
3195 packet_put_int(fwd->listen_port);
3196 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003197 packet_send();
3198 packet_write_wait();
3199 /* Assume that server accepts the request */
3200 success = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003201 } else if (fwd->listen_path == NULL) {
Damien Miller33b13562000-04-04 14:38:59 +10003202 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003203 packet_put_int(fwd->listen_port);
3204 packet_put_cstring(fwd->connect_host);
3205 packet_put_int(fwd->connect_port);
Damien Miller33b13562000-04-04 14:38:59 +10003206 packet_send();
3207 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003208
3209 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003210 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003211 switch (type) {
3212 case SSH_SMSG_SUCCESS:
3213 success = 1;
3214 break;
3215 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003216 break;
3217 default:
3218 /* Unknown packet */
3219 packet_disconnect("Protocol error for port forward request:"
3220 "received packet type %d.", type);
3221 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003222 } else {
3223 logit("Warning: Server does not support remote stream local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11003224 }
3225 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003226 /* Record that connection to this host/port is permitted. */
3227 permitted_opens = xrealloc(permitted_opens,
3228 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003229 idx = num_permitted_opens++;
Damien Miller7acefbb2014-07-18 14:11:24 +10003230 if (fwd->connect_path != NULL) {
3231 permitted_opens[idx].host_to_connect =
3232 xstrdup(fwd->connect_path);
3233 permitted_opens[idx].port_to_connect =
3234 PORT_STREAMLOCAL;
3235 } else {
3236 permitted_opens[idx].host_to_connect =
3237 xstrdup(fwd->connect_host);
3238 permitted_opens[idx].port_to_connect =
3239 fwd->connect_port;
3240 }
3241 if (fwd->listen_path != NULL) {
3242 permitted_opens[idx].listen_host = NULL;
3243 permitted_opens[idx].listen_path =
3244 xstrdup(fwd->listen_path);
3245 permitted_opens[idx].listen_port = PORT_STREAMLOCAL;
3246 } else {
3247 permitted_opens[idx].listen_host =
3248 fwd->listen_host ? xstrdup(fwd->listen_host) : NULL;
3249 permitted_opens[idx].listen_path = NULL;
3250 permitted_opens[idx].listen_port = fwd->listen_port;
3251 }
Damien Miller33b13562000-04-04 14:38:59 +10003252 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003253 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003254}
3255
Damien Miller4b3ed642014-07-02 15:29:40 +10003256static int
3257open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003258 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003259{
3260 if (allowed_open->host_to_connect == NULL)
3261 return 0;
3262 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3263 allowed_open->port_to_connect != requestedport)
3264 return 0;
3265 if (strcmp(allowed_open->host_to_connect, requestedhost) != 0)
3266 return 0;
3267 return 1;
3268}
3269
3270/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003271 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003272 * we don't support FWD_PERMIT_ANY_PORT and
3273 * need to translate between the configured-host (listen_host)
3274 * and what we've sent to the remote server (channel_rfwd_bind_host)
3275 */
3276static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003277open_listen_match_tcpip(ForwardPermission *allowed_open,
3278 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003279{
3280 const char *allowed_host;
3281
3282 if (allowed_open->host_to_connect == NULL)
3283 return 0;
3284 if (allowed_open->listen_port != requestedport)
3285 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003286 if (!translate && allowed_open->listen_host == NULL &&
3287 requestedhost == NULL)
3288 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003289 allowed_host = translate ?
3290 channel_rfwd_bind_host(allowed_open->listen_host) :
3291 allowed_open->listen_host;
3292 if (allowed_host == NULL ||
3293 strcmp(allowed_host, requestedhost) != 0)
3294 return 0;
3295 return 1;
3296}
3297
Damien Miller7acefbb2014-07-18 14:11:24 +10003298static int
3299open_listen_match_streamlocal(ForwardPermission *allowed_open,
3300 const char *requestedpath)
3301{
3302 if (allowed_open->host_to_connect == NULL)
3303 return 0;
3304 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3305 return 0;
3306 if (allowed_open->listen_path == NULL ||
3307 strcmp(allowed_open->listen_path, requestedpath) != 0)
3308 return 0;
3309 return 1;
3310}
3311
Damien Miller5428f641999-11-25 11:54:57 +11003312/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003313 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003314 * local side.
3315 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003316static int
3317channel_request_rforward_cancel_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003318{
3319 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003320
3321 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003322 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003323
3324 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003325 if (open_listen_match_tcpip(&permitted_opens[i], host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003326 break;
3327 }
3328 if (i >= num_permitted_opens) {
3329 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003330 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003331 }
3332 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3333 packet_put_cstring("cancel-tcpip-forward");
3334 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003335 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003336 packet_put_int(port);
3337 packet_send();
3338
Damien Miller4b3ed642014-07-02 15:29:40 +10003339 permitted_opens[i].listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003340 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003341 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003342 permitted_opens[i].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003343 free(permitted_opens[i].listen_host);
3344 permitted_opens[i].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003345 permitted_opens[i].listen_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003346
3347 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003348}
3349
3350/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003351 * Request cancellation of remote forwarding of Unix domain socket
3352 * path from local side.
3353 */
3354static int
3355channel_request_rforward_cancel_streamlocal(const char *path)
3356{
3357 int i;
3358
3359 if (!compat20)
3360 return -1;
3361
3362 for (i = 0; i < num_permitted_opens; i++) {
3363 if (open_listen_match_streamlocal(&permitted_opens[i], path))
3364 break;
3365 }
3366 if (i >= num_permitted_opens) {
3367 debug("%s: requested forward not found", __func__);
3368 return -1;
3369 }
3370 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3371 packet_put_cstring("cancel-streamlocal-forward@openssh.com");
3372 packet_put_char(0);
3373 packet_put_cstring(path);
3374 packet_send();
3375
3376 permitted_opens[i].listen_port = 0;
3377 permitted_opens[i].port_to_connect = 0;
3378 free(permitted_opens[i].host_to_connect);
3379 permitted_opens[i].host_to_connect = NULL;
3380 permitted_opens[i].listen_host = NULL;
3381 free(permitted_opens[i].listen_path);
3382 permitted_opens[i].listen_path = NULL;
3383
3384 return 0;
3385}
3386
3387/*
3388 * Request cancellation of remote forwarding of a connection from local side.
3389 */
3390int
3391channel_request_rforward_cancel(struct Forward *fwd)
3392{
3393 if (fwd->listen_path != NULL) {
3394 return (channel_request_rforward_cancel_streamlocal(
3395 fwd->listen_path));
3396 } else {
3397 return (channel_request_rforward_cancel_tcpip(fwd->listen_host,
3398 fwd->listen_port ? fwd->listen_port : fwd->allocated_port));
3399 }
3400}
3401
3402/*
Damien Miller5428f641999-11-25 11:54:57 +11003403 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3404 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003405 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003406 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003407int
Damien Miller7acefbb2014-07-18 14:11:24 +10003408channel_input_port_forward_request(int is_root, struct ForwardOptions *fwd_opts)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003409{
Darren Tuckere7d4b192006-07-12 22:17:10 +10003410 int success = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003411 struct Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003412
Damien Miller95def091999-11-25 00:26:21 +11003413 /* Get arguments from the packet. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003414 memset(&fwd, 0, sizeof(fwd));
3415 fwd.listen_port = packet_get_int();
3416 fwd.connect_host = packet_get_string(NULL);
3417 fwd.connect_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003418
Damien Millerbac2d8a2000-09-05 16:13:06 +11003419#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003420 /*
3421 * Check that an unprivileged user is not trying to forward a
3422 * privileged port.
3423 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003424 if (fwd.listen_port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003425 packet_disconnect(
3426 "Requested forwarding of port %d but user is not root.",
Damien Miller7acefbb2014-07-18 14:11:24 +10003427 fwd.listen_port);
3428 if (fwd.connect_port == 0)
Darren Tucker9189ff82003-07-03 13:52:04 +10003429 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003430#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003431
Damien Miller0bc1bd82000-11-13 22:57:25 +11003432 /* Initiate forwarding */
Damien Miller7acefbb2014-07-18 14:11:24 +10003433 success = channel_setup_local_fwd_listener(&fwd, fwd_opts);
Damien Miller95def091999-11-25 00:26:21 +11003434
3435 /* Free the argument string. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003436 free(fwd.connect_host);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003437
3438 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003439}
3440
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003441/*
3442 * Permits opening to any host/port if permitted_opens[] is empty. This is
3443 * usually called by the server, because the user could connect to any port
3444 * anyway, and the server has no way to know but to trust the client anyway.
3445 */
3446void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003447channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003448{
3449 if (num_permitted_opens == 0)
3450 all_opens_permitted = 1;
3451}
3452
Ben Lindstroma3700052001-04-05 23:26:32 +00003453void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003454channel_add_permitted_opens(char *host, int port)
3455{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003456 debug("allow port forwarding to host %s port %d", host, port);
3457
Damien Miller232cfb12010-06-26 09:50:30 +10003458 permitted_opens = xrealloc(permitted_opens,
3459 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003460 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3461 permitted_opens[num_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003462 permitted_opens[num_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003463 permitted_opens[num_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003464 permitted_opens[num_permitted_opens].listen_port = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003465 num_permitted_opens++;
3466
3467 all_opens_permitted = 0;
3468}
3469
Darren Tucker68afb8c2011-10-02 18:59:03 +11003470/*
3471 * Update the listen port for a dynamic remote forward, after
3472 * the actual 'newport' has been allocated. If 'newport' < 0 is
3473 * passed then they entry will be invalidated.
3474 */
3475void
3476channel_update_permitted_opens(int idx, int newport)
3477{
3478 if (idx < 0 || idx >= num_permitted_opens) {
3479 debug("channel_update_permitted_opens: index out of range:"
3480 " %d num_permitted_opens %d", idx, num_permitted_opens);
3481 return;
3482 }
3483 debug("%s allowed port %d for forwarding to host %s port %d",
3484 newport > 0 ? "Updating" : "Removing",
3485 newport,
3486 permitted_opens[idx].host_to_connect,
3487 permitted_opens[idx].port_to_connect);
3488 if (newport >= 0) {
3489 permitted_opens[idx].listen_port =
3490 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3491 } else {
3492 permitted_opens[idx].listen_port = 0;
3493 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003494 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003495 permitted_opens[idx].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003496 free(permitted_opens[idx].listen_host);
3497 permitted_opens[idx].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003498 free(permitted_opens[idx].listen_path);
3499 permitted_opens[idx].listen_path = NULL;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003500 }
3501}
3502
Damien Millera765cf42006-07-24 14:08:13 +10003503int
Damien Miller9b439df2006-07-24 14:04:00 +10003504channel_add_adm_permitted_opens(char *host, int port)
3505{
Damien Millera765cf42006-07-24 14:08:13 +10003506 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003507
Damien Miller232cfb12010-06-26 09:50:30 +10003508 permitted_adm_opens = xrealloc(permitted_adm_opens,
3509 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003510 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3511 = xstrdup(host);
3512 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003513 permitted_adm_opens[num_adm_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003514 permitted_adm_opens[num_adm_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003515 permitted_adm_opens[num_adm_permitted_opens].listen_port = 0;
Damien Millera765cf42006-07-24 14:08:13 +10003516 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003517}
3518
3519void
Damien Millerc6081482012-04-22 11:18:53 +10003520channel_disable_adm_local_opens(void)
3521{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003522 channel_clear_adm_permitted_opens();
3523 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3524 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3525 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003526}
3527
3528void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003529channel_clear_permitted_opens(void)
3530{
3531 int i;
3532
Damien Miller4b3ed642014-07-02 15:29:40 +10003533 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003534 free(permitted_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003535 free(permitted_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003536 free(permitted_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003537 }
Darren Tuckera627d422013-06-02 07:31:17 +10003538 free(permitted_opens);
3539 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003540 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003541}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003542
Damien Miller9b439df2006-07-24 14:04:00 +10003543void
3544channel_clear_adm_permitted_opens(void)
3545{
3546 int i;
3547
Damien Miller4b3ed642014-07-02 15:29:40 +10003548 for (i = 0; i < num_adm_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003549 free(permitted_adm_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003550 free(permitted_adm_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003551 free(permitted_adm_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003552 }
Darren Tuckera627d422013-06-02 07:31:17 +10003553 free(permitted_adm_opens);
3554 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003555 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003556}
3557
Darren Tuckere7140f22008-06-10 23:01:51 +10003558void
3559channel_print_adm_permitted_opens(void)
3560{
Damien Miller6ef17492008-07-16 22:42:06 +10003561 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003562
Damien Millerb53d8a12009-01-28 16:13:04 +11003563 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003564 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003565 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003566 return;
3567 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003568 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003569 if (permitted_adm_opens[i].host_to_connect == NULL)
3570 printf(" none");
3571 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003572 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3573 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003574 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003575}
3576
Darren Tucker1338b9e2011-10-02 18:57:35 +11003577/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3578int
3579permitopen_port(const char *p)
3580{
3581 int port;
3582
3583 if (strcmp(p, "*") == 0)
3584 return FWD_PERMIT_ANY_PORT;
3585 if ((port = a2port(p)) > 0)
3586 return port;
3587 return -1;
3588}
3589
Damien Millerbd740252008-05-19 15:37:09 +10003590/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003591static int
Damien Millerbd740252008-05-19 15:37:09 +10003592connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003593{
Damien Millerbd740252008-05-19 15:37:09 +10003594 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003595 struct sockaddr_un *sunaddr;
3596 char ntop[NI_MAXHOST], strport[MAX(NI_MAXSERV,sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003597
Damien Millerbd740252008-05-19 15:37:09 +10003598 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003599 switch (cctx->ai->ai_family) {
3600 case AF_UNIX:
3601 /* unix:pathname instead of host:port */
3602 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3603 strlcpy(ntop, "unix", sizeof(ntop));
3604 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3605 break;
3606 case AF_INET:
3607 case AF_INET6:
3608 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3609 ntop, sizeof(ntop), strport, sizeof(strport),
3610 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3611 error("connect_next: getnameinfo failed");
3612 continue;
3613 }
3614 break;
3615 default:
Damien Miller34132e52000-01-14 15:45:46 +11003616 continue;
3617 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003618 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3619 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003620 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003621 error("socket: %.100s", strerror(errno));
3622 else
3623 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003624 continue;
3625 }
Damien Miller232711f2004-06-15 10:35:30 +10003626 if (set_nonblock(sock) == -1)
3627 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003628 if (connect(sock, cctx->ai->ai_addr,
3629 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3630 debug("connect_next: host %.100s ([%.100s]:%s): "
3631 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003632 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003633 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003634 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003635 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003636 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003637 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003638 if (cctx->ai->ai_family != AF_UNIX)
3639 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003640 debug("connect_next: host %.100s ([%.100s]:%s) "
3641 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3642 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10003643 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003644 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003645 return -1;
3646}
Damien Millerb38eff82000-04-01 11:09:21 +10003647
Damien Millerbd740252008-05-19 15:37:09 +10003648static void
3649channel_connect_ctx_free(struct channel_connect *cctx)
3650{
Darren Tuckera627d422013-06-02 07:31:17 +10003651 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003652 if (cctx->aitop) {
3653 if (cctx->aitop->ai_family == AF_UNIX)
3654 free(cctx->aitop);
3655 else
3656 freeaddrinfo(cctx->aitop);
3657 }
Damien Miller1d2c4562014-02-04 11:18:20 +11003658 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003659}
3660
Damien Miller7acefbb2014-07-18 14:11:24 +10003661/* Return CONNECTING channel to remote host:port or local socket path */
Damien Millerbd740252008-05-19 15:37:09 +10003662static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003663connect_to(const char *name, int port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003664{
3665 struct addrinfo hints;
3666 int gaierr;
3667 int sock = -1;
3668 char strport[NI_MAXSERV];
3669 struct channel_connect cctx;
3670 Channel *c;
3671
Damien Miller2bcb8662008-07-12 17:12:29 +10003672 memset(&cctx, 0, sizeof(cctx));
Damien Miller7acefbb2014-07-18 14:11:24 +10003673
3674 if (port == PORT_STREAMLOCAL) {
3675 struct sockaddr_un *sunaddr;
3676 struct addrinfo *ai;
3677
3678 if (strlen(name) > sizeof(sunaddr->sun_path)) {
3679 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
3680 return (NULL);
3681 }
3682
3683 /*
3684 * Fake up a struct addrinfo for AF_UNIX connections.
3685 * channel_connect_ctx_free() must check ai_family
3686 * and use free() not freeaddirinfo() for AF_UNIX.
3687 */
3688 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
3689 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
3690 ai->ai_addr = (struct sockaddr *)(ai + 1);
3691 ai->ai_addrlen = sizeof(*sunaddr);
3692 ai->ai_family = AF_UNIX;
3693 ai->ai_socktype = SOCK_STREAM;
3694 ai->ai_protocol = PF_UNSPEC;
3695 sunaddr = (struct sockaddr_un *)ai->ai_addr;
3696 sunaddr->sun_family = AF_UNIX;
3697 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
3698 cctx.aitop = ai;
3699 } else {
3700 memset(&hints, 0, sizeof(hints));
3701 hints.ai_family = IPv4or6;
3702 hints.ai_socktype = SOCK_STREAM;
3703 snprintf(strport, sizeof strport, "%d", port);
3704 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx.aitop)) != 0) {
3705 error("connect_to %.100s: unknown host (%s)", name,
3706 ssh_gai_strerror(gaierr));
3707 return NULL;
3708 }
Damien Millerbd740252008-05-19 15:37:09 +10003709 }
3710
Damien Miller7acefbb2014-07-18 14:11:24 +10003711 cctx.host = xstrdup(name);
Damien Millerbd740252008-05-19 15:37:09 +10003712 cctx.port = port;
3713 cctx.ai = cctx.aitop;
3714
3715 if ((sock = connect_next(&cctx)) == -1) {
3716 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10003717 name, port, strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003718 channel_connect_ctx_free(&cctx);
3719 return NULL;
3720 }
3721 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3722 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3723 c->connect_ctx = cctx;
3724 return c;
3725}
3726
3727Channel *
Damien Miller4b3ed642014-07-02 15:29:40 +10003728channel_connect_by_listen_address(const char *listen_host,
3729 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003730{
3731 int i;
3732
3733 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003734 if (open_listen_match_tcpip(&permitted_opens[i], listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10003735 listen_port, 1)) {
Damien Millerbd740252008-05-19 15:37:09 +10003736 return connect_to(
3737 permitted_opens[i].host_to_connect,
3738 permitted_opens[i].port_to_connect, ctype, rname);
3739 }
3740 }
3741 error("WARNING: Server requests forwarding for unknown listen_port %d",
3742 listen_port);
3743 return NULL;
3744}
3745
Damien Miller7acefbb2014-07-18 14:11:24 +10003746Channel *
3747channel_connect_by_listen_path(const char *path, char *ctype, char *rname)
3748{
3749 int i;
3750
3751 for (i = 0; i < num_permitted_opens; i++) {
3752 if (open_listen_match_streamlocal(&permitted_opens[i], path)) {
3753 return connect_to(
3754 permitted_opens[i].host_to_connect,
3755 permitted_opens[i].port_to_connect, ctype, rname);
3756 }
3757 }
3758 error("WARNING: Server requests forwarding for unknown path %.100s",
3759 path);
3760 return NULL;
3761}
3762
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003763/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003764Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003765channel_connect_to_port(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003766{
Damien Miller9b439df2006-07-24 14:04:00 +10003767 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003768
3769 permit = all_opens_permitted;
3770 if (!permit) {
3771 for (i = 0; i < num_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003772 if (open_match(&permitted_opens[i], host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003773 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003774 break;
3775 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003776 }
Damien Miller9b439df2006-07-24 14:04:00 +10003777
3778 if (num_adm_permitted_opens > 0) {
3779 permit_adm = 0;
3780 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003781 if (open_match(&permitted_adm_opens[i], host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10003782 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003783 break;
3784 }
Damien Miller9b439df2006-07-24 14:04:00 +10003785 }
3786
3787 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003788 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003789 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003790 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003791 }
Damien Millerbd740252008-05-19 15:37:09 +10003792 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003793}
3794
Damien Miller7acefbb2014-07-18 14:11:24 +10003795/* Check if connecting to that path is permitted and connect. */
3796Channel *
3797channel_connect_to_path(const char *path, char *ctype, char *rname)
3798{
3799 int i, permit, permit_adm = 1;
3800
3801 permit = all_opens_permitted;
3802 if (!permit) {
3803 for (i = 0; i < num_permitted_opens; i++)
3804 if (open_match(&permitted_opens[i], path, PORT_STREAMLOCAL)) {
3805 permit = 1;
3806 break;
3807 }
3808 }
3809
3810 if (num_adm_permitted_opens > 0) {
3811 permit_adm = 0;
3812 for (i = 0; i < num_adm_permitted_opens; i++)
3813 if (open_match(&permitted_adm_opens[i], path, PORT_STREAMLOCAL)) {
3814 permit_adm = 1;
3815 break;
3816 }
3817 }
3818
3819 if (!permit || !permit_adm) {
3820 logit("Received request to connect to path %.100s, "
3821 "but the request was denied.", path);
3822 return NULL;
3823 }
3824 return connect_to(path, PORT_STREAMLOCAL, ctype, rname);
3825}
3826
Damien Miller0e220db2004-06-15 10:34:08 +10003827void
3828channel_send_window_changes(void)
3829{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003830 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003831 struct winsize ws;
3832
3833 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003834 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003835 channels[i]->type != SSH_CHANNEL_OPEN)
3836 continue;
3837 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3838 continue;
3839 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003840 packet_put_int((u_int)ws.ws_col);
3841 packet_put_int((u_int)ws.ws_row);
3842 packet_put_int((u_int)ws.ws_xpixel);
3843 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003844 packet_send();
3845 }
3846}
3847
Ben Lindstrome9c99912001-06-09 00:41:05 +00003848/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003849
Damien Miller5428f641999-11-25 11:54:57 +11003850/*
3851 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003852 * Returns 0 and a suitable display number for the DISPLAY variable
3853 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003854 */
Kevin Steves366298c2001-12-19 17:58:01 +00003855int
Damien Miller95c249f2002-02-05 12:11:34 +11003856x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003857 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003858{
Damien Millere7378562001-12-21 14:58:35 +11003859 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003860 int display_number, sock;
3861 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003862 struct addrinfo hints, *ai, *aitop;
3863 char strport[NI_MAXSERV];
3864 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003865
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003866 if (chanids == NULL)
3867 return -1;
3868
Damien Millera34a28b1999-12-14 10:47:15 +11003869 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003870 display_number < MAX_DISPLAYS;
3871 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003872 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003873 memset(&hints, 0, sizeof(hints));
3874 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003875 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003876 hints.ai_socktype = SOCK_STREAM;
3877 snprintf(strport, sizeof strport, "%d", port);
3878 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003879 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003880 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003881 }
Damien Miller34132e52000-01-14 15:45:46 +11003882 for (ai = aitop; ai; ai = ai->ai_next) {
3883 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3884 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003885 sock = socket(ai->ai_family, ai->ai_socktype,
3886 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003887 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003888 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3889#ifdef EPFNOSUPPORT
3890 && (errno != EPFNOSUPPORT)
3891#endif
3892 ) {
Damien Millere2192732000-01-17 13:22:55 +11003893 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003894 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003895 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003896 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003897 debug("x11_create_display_inet: Socket family %d not supported",
3898 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003899 continue;
3900 }
Damien Miller34132e52000-01-14 15:45:46 +11003901 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003902 if (ai->ai_family == AF_INET6)
3903 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003904 if (x11_use_localhost)
3905 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003906 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003907 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003908 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003909
Damien Miller34132e52000-01-14 15:45:46 +11003910 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003911 close(socks[n]);
3912 }
3913 num_socks = 0;
3914 break;
3915 }
3916 socks[num_socks++] = sock;
3917 if (num_socks == NUM_SOCKS)
3918 break;
Damien Miller95def091999-11-25 00:26:21 +11003919 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003920 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003921 if (num_socks > 0)
3922 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003923 }
Damien Miller95def091999-11-25 00:26:21 +11003924 if (display_number >= MAX_DISPLAYS) {
3925 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003926 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003927 }
Damien Miller95def091999-11-25 00:26:21 +11003928 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003929 for (n = 0; n < num_socks; n++) {
3930 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003931 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003932 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003933 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003934 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003935 }
Damien Miller95def091999-11-25 00:26:21 +11003936 }
Damien Miller34132e52000-01-14 15:45:46 +11003937
Damien Miller34132e52000-01-14 15:45:46 +11003938 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003939 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003940 for (n = 0; n < num_socks; n++) {
3941 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003942 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003943 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3944 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003945 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003946 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003947 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003948 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003949 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003950
Kevin Steves366298c2001-12-19 17:58:01 +00003951 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003952 *display_numberp = display_number;
3953 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003954}
3955
Ben Lindstrombba81212001-06-25 05:01:22 +00003956static int
Damien Miller819dbb62009-01-21 16:46:26 +11003957connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003958{
Damien Miller95def091999-11-25 00:26:21 +11003959 int sock;
3960 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003961
Damien Miller3afe3752001-12-21 12:39:51 +11003962 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3963 if (sock < 0)
3964 error("socket: %.100s", strerror(errno));
3965 memset(&addr, 0, sizeof(addr));
3966 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003967 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003968 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003969 return sock;
3970 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003971 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3972 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003973}
3974
Damien Miller819dbb62009-01-21 16:46:26 +11003975static int
3976connect_local_xsocket(u_int dnr)
3977{
3978 char buf[1024];
3979 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3980 return connect_local_xsocket_path(buf);
3981}
3982
Damien Millerbd483e72000-04-30 10:00:53 +10003983int
3984x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003985{
Damien Miller57c4e872006-03-31 23:11:07 +11003986 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003987 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003988 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003989 struct addrinfo hints, *ai, *aitop;
3990 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003991 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003992
Damien Miller95def091999-11-25 00:26:21 +11003993 /* Try to open a socket for the local X server. */
3994 display = getenv("DISPLAY");
3995 if (!display) {
3996 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003997 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003998 }
Damien Miller5428f641999-11-25 11:54:57 +11003999 /*
4000 * Now we decode the value of the DISPLAY variable and make a
4001 * connection to the real X server.
4002 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004003
Damien Miller819dbb62009-01-21 16:46:26 +11004004 /* Check if the display is from launchd. */
4005#ifdef __APPLE__
4006 if (strncmp(display, "/tmp/launch", 11) == 0) {
4007 sock = connect_local_xsocket_path(display);
4008 if (sock < 0)
4009 return -1;
4010
4011 /* OK, we now have a connection to the display. */
4012 return sock;
4013 }
4014#endif
Damien Miller5428f641999-11-25 11:54:57 +11004015 /*
4016 * Check if it is a unix domain socket. Unix domain displays are in
4017 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4018 */
Damien Miller95def091999-11-25 00:26:21 +11004019 if (strncmp(display, "unix:", 5) == 0 ||
4020 display[0] == ':') {
4021 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11004022 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004023 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004024 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004025 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004026 }
4027 /* Create a socket. */
4028 sock = connect_local_xsocket(display_number);
4029 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004030 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004031
4032 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004033 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004034 }
Damien Miller5428f641999-11-25 11:54:57 +11004035 /*
4036 * Connect to an inet socket. The DISPLAY value is supposedly
4037 * hostname:d[.s], where hostname may also be numeric IP address.
4038 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004039 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004040 cp = strchr(buf, ':');
4041 if (!cp) {
4042 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004043 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004044 }
Damien Miller95def091999-11-25 00:26:21 +11004045 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11004046 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11004047 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004048 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004049 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004050 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004051 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004052
Damien Miller34132e52000-01-14 15:45:46 +11004053 /* Look up the host address */
4054 memset(&hints, 0, sizeof(hints));
4055 hints.ai_family = IPv4or6;
4056 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004057 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004058 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004059 error("%.100s: unknown host. (%s)", buf,
4060 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004061 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004062 }
Damien Miller34132e52000-01-14 15:45:46 +11004063 for (ai = aitop; ai; ai = ai->ai_next) {
4064 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004065 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004066 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004067 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004068 continue;
4069 }
4070 /* Connect it to the display. */
4071 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004072 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004073 6000 + display_number, strerror(errno));
4074 close(sock);
4075 continue;
4076 }
4077 /* Success */
4078 break;
Damien Miller34132e52000-01-14 15:45:46 +11004079 }
Damien Miller34132e52000-01-14 15:45:46 +11004080 freeaddrinfo(aitop);
4081 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11004082 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11004083 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004084 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004085 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004086 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004087 return sock;
4088}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004089
Damien Millerbd483e72000-04-30 10:00:53 +10004090/*
4091 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
4092 * the remote channel number. We should do whatever we want, and respond
4093 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
4094 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004095
Damien Miller8473dd82006-07-24 14:08:32 +10004096/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10004097void
Damien Miller630d6f42002-01-22 23:17:30 +11004098x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10004099{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004100 Channel *c = NULL;
4101 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10004102 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10004103
4104 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004105
4106 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00004107
4108 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004109 remote_host = packet_get_string(NULL);
4110 } else {
4111 remote_host = xstrdup("unknown (remote did not supply name)");
4112 }
Damien Miller48b03fc2002-01-22 23:11:40 +11004113 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10004114
4115 /* Obtain a connection to the real X display. */
4116 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004117 if (sock != -1) {
4118 /* Allocate a channel for this connection. */
4119 c = channel_new("connected x11 socket",
4120 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
4121 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11004122 c->remote_id = remote_id;
4123 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004124 }
Darren Tuckera627d422013-06-02 07:31:17 +10004125 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004126 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10004127 /* Send refusal to the remote host. */
4128 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004129 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10004130 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10004131 /* Send a confirmation to the remote host. */
4132 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004133 packet_put_int(remote_id);
4134 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10004135 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004136 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004137}
4138
Damien Miller69b69aa2000-10-28 14:19:58 +11004139/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10004140/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11004141void
Damien Miller630d6f42002-01-22 23:17:30 +11004142deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11004143{
4144 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00004145
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00004146 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11004147 case SSH_SMSG_AGENT_OPEN:
4148 error("Warning: ssh server tried agent forwarding.");
4149 break;
4150 case SSH_SMSG_X11_OPEN:
4151 error("Warning: ssh server tried X11 forwarding.");
4152 break;
4153 default:
Damien Miller630d6f42002-01-22 23:17:30 +11004154 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11004155 break;
4156 }
Damien Miller5eb137c2005-12-31 16:19:53 +11004157 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11004158 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
4159 packet_put_int(rchan);
4160 packet_send();
4161}
4162
Damien Miller5428f641999-11-25 11:54:57 +11004163/*
4164 * Requests forwarding of X11 connections, generates fake authentication
4165 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004166 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004167 */
Damien Miller4af51302000-04-16 11:18:38 +10004168void
Damien Miller17e7ed02005-06-17 12:54:33 +10004169x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10004170 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004171{
Ben Lindstrom46c16222000-12-22 01:43:59 +00004172 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004173 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004174 char *new_data;
4175 int screen_number;
4176 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10004177 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004178
Damien Millerf92c0792005-07-06 09:45:26 +10004179 if (x11_saved_display == NULL)
4180 x11_saved_display = xstrdup(disp);
4181 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004182 error("x11_request_forwarding_with_spoofing: different "
4183 "$DISPLAY already forwarded");
4184 return;
4185 }
4186
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004187 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004188 if (cp)
4189 cp = strchr(cp, '.');
4190 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004191 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004192 else
4193 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004194
Damien Miller13390022005-07-06 09:44:19 +10004195 if (x11_saved_proto == NULL) {
4196 /* Save protocol name. */
4197 x11_saved_proto = xstrdup(proto);
4198 /*
Damien Miller46d38de2005-07-17 17:02:09 +10004199 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10004200 * of the same length.
4201 */
4202 x11_saved_data = xmalloc(data_len);
4203 x11_fake_data = xmalloc(data_len);
4204 for (i = 0; i < data_len; i++) {
4205 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4206 fatal("x11_request_forwarding: bad "
4207 "authentication data: %.100s", data);
4208 if (i % 4 == 0)
4209 rnd = arc4random();
4210 x11_saved_data[i] = value;
4211 x11_fake_data[i] = rnd & 0xff;
4212 rnd >>= 8;
4213 }
4214 x11_saved_data_len = data_len;
4215 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004216 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004217
Damien Miller95def091999-11-25 00:26:21 +11004218 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10004219 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004220
Damien Miller95def091999-11-25 00:26:21 +11004221 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10004222 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10004223 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10004224 packet_put_char(0); /* XXX bool single connection */
4225 } else {
4226 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
4227 }
4228 packet_put_cstring(proto);
4229 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11004230 packet_put_int(screen_number);
4231 packet_send();
4232 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10004233 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004234}
4235
Ben Lindstrome9c99912001-06-09 00:41:05 +00004236
4237/* -- agent forwarding */
4238
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004239/* Sends a message to the server to request authentication fd forwarding. */
4240
Damien Miller4af51302000-04-16 11:18:38 +10004241void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00004242auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004243{
Damien Miller95def091999-11-25 00:26:21 +11004244 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
4245 packet_send();
4246 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004247}