blob: 6db92cbacf833d57675d3c9251e1dd850df063d7 [file] [log] [blame]
djm@openbsd.org48b68ce2014-12-11 08:20:09 +00001/* $OpenBSD: channels.c,v 1.338 2014/12/11 08:20:09 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
djm@openbsd.org48b68ce2014-12-11 08:20:09 +000045#include <sys/param.h>
Damien Miller7acefbb2014-07-18 14:11:24 +100046#include <sys/stat.h>
Damien Millerd7834352006-08-05 12:39:39 +100047#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110048#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100049#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100050#ifdef HAVE_SYS_TIME_H
51# include <sys/time.h>
52#endif
Damien Millerefc04e72006-07-10 20:26:27 +100053
54#include <netinet/in.h>
55#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110056
Darren Tucker39972492006-07-12 22:22:46 +100057#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110058#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100059#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100060#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100061#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100062#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110063#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100064#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100065#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Millerb84886b2008-05-19 15:05:07 +100067#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100068#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "ssh1.h"
71#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "log.h"
74#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100075#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100079#include "key.h"
80#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110081#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Ben Lindstrome9c99912001-06-09 00:41:05 +000083/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller5428f641999-11-25 11:54:57 +110085/*
86 * Pointer to an array containing all allocated channels. The array is
87 * dynamically extended as needed.
88 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000089static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Damien Miller5428f641999-11-25 11:54:57 +110091/*
92 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000093 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110094 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100095static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller5428f641999-11-25 11:54:57 +110097/*
98 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000099 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +1100100 */
Damien Miller5e953212001-01-30 09:14:00 +1100101static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Ben Lindstrome9c99912001-06-09 00:41:05 +0000104/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * Data structure for storing which hosts are permitted for forward requests.
108 * The local sides of any remote forwards are stored in this array to prevent
109 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
110 * network (which might be behind a firewall).
111 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000112/* XXX: streamlocal wants a path instead of host:port */
113/* Overload host_to_connect; we could just make this match Forward */
114/* XXX - can we use listen_host instead of listen_path? */
Damien Miller95def091999-11-25 00:26:21 +1100115typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000116 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000117 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000118 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000119 char *listen_path; /* Remote side should listen path. */
120 int listen_port; /* Remote side should listen port. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121} ForwardPermission;
122
Damien Miller9b439df2006-07-24 14:04:00 +1000123/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000124static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000125
Damien Miller9b439df2006-07-24 14:04:00 +1000126/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000127static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000128
129/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000131
132/* Number of permitted host/port pair in the array permitted by the admin. */
133static int num_adm_permitted_opens = 0;
134
Darren Tucker1338b9e2011-10-02 18:57:35 +1100135/* special-case port number meaning allow any port */
136#define FWD_PERMIT_ANY_PORT 0
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
139 * If this is true, all opens are permitted. This is the case on the server
140 * on which we have to trust the client anyway, and the user could do
141 * anything after logging in anyway.
142 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143static int all_opens_permitted = 0;
144
Ben Lindstrome9c99912001-06-09 00:41:05 +0000145
146/* -- X11 forwarding */
147
148/* Maximum number of fake X11 displays to try. */
149#define MAX_DISPLAYS 1000
150
Damien Miller13390022005-07-06 09:44:19 +1000151/* Saved X11 local (client) display. */
152static char *x11_saved_display = NULL;
153
Ben Lindstrome9c99912001-06-09 00:41:05 +0000154/* Saved X11 authentication protocol name. */
155static char *x11_saved_proto = NULL;
156
157/* Saved X11 authentication data. This is the real data. */
158static char *x11_saved_data = NULL;
159static u_int x11_saved_data_len = 0;
160
161/*
162 * Fake X11 authentication data. This is what the server will be sending us;
163 * we should replace any occurrences of this by the real data.
164 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100165static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000166static u_int x11_fake_data_len;
167
168
169/* -- agent forwarding */
170
171#define NUM_SOCKS 10
172
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000173/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000174static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000175
Ben Lindstrome9c99912001-06-09 00:41:05 +0000176/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000177static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000178
Damien Millerbd740252008-05-19 15:37:09 +1000179/* non-blocking connect helpers */
180static int connect_next(struct channel_connect *);
181static void channel_connect_ctx_free(struct channel_connect *);
182
Ben Lindstrome9c99912001-06-09 00:41:05 +0000183/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000184
185Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100186channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000187{
188 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000189
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000190 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100191 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000192 return NULL;
193 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000194 c = channels[id];
195 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100196 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000197 return NULL;
198 }
199 return c;
200}
201
Damien Miller5428f641999-11-25 11:54:57 +1100202/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100203 * Returns the channel if it is allowed to receive protocol messages.
204 * Private channels, like listening sockets, may not receive messages.
205 */
206Channel *
207channel_lookup(int id)
208{
209 Channel *c;
210
211 if ((c = channel_by_id(id)) == NULL)
212 return (NULL);
213
Damien Millerd62f2ca2006-03-26 13:57:41 +1100214 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100215 case SSH_CHANNEL_X11_OPEN:
216 case SSH_CHANNEL_LARVAL:
217 case SSH_CHANNEL_CONNECTING:
218 case SSH_CHANNEL_DYNAMIC:
219 case SSH_CHANNEL_OPENING:
220 case SSH_CHANNEL_OPEN:
221 case SSH_CHANNEL_INPUT_DRAINING:
222 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller36187092013-06-10 13:07:11 +1000223 case SSH_CHANNEL_ABANDONED:
Damien Millerd47c62a2005-12-13 19:33:57 +1100224 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100225 }
226 logit("Non-public channel %d, type %d.", id, c->type);
227 return (NULL);
228}
229
230/*
Damien Millere247cc42000-05-07 12:03:14 +1000231 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000232 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100233 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000234static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100235channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000236 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237{
Damien Miller95def091999-11-25 00:26:21 +1100238 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100239 channel_max_fd = MAX(channel_max_fd, rfd);
240 channel_max_fd = MAX(channel_max_fd, wfd);
241 channel_max_fd = MAX(channel_max_fd, efd);
242
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100243 if (rfd != -1)
244 fcntl(rfd, F_SETFD, FD_CLOEXEC);
245 if (wfd != -1 && wfd != rfd)
246 fcntl(wfd, F_SETFD, FD_CLOEXEC);
247 if (efd != -1 && efd != rfd && efd != wfd)
248 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000249
Damien Miller6f83b8e2000-05-02 09:23:45 +1000250 c->rfd = rfd;
251 c->wfd = wfd;
252 c->sock = (rfd == wfd) ? rfd : -1;
253 c->efd = efd;
254 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100255
Darren Tuckered3cdc02008-06-16 23:29:18 +1000256 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000257 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000258#ifdef _AIX
259 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000260 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000261#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100262
Damien Miller69b69aa2000-10-28 14:19:58 +1100263 /* enable nonblocking mode */
264 if (nonblock) {
265 if (rfd != -1)
266 set_nonblock(rfd);
267 if (wfd != -1)
268 set_nonblock(wfd);
269 if (efd != -1)
270 set_nonblock(efd);
271 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000272}
273
274/*
275 * Allocate a new channel object and set its type and socket. This will cause
276 * remote_name to be freed.
277 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000278Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000279channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000280 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000281{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000282 int found;
283 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000284 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Do initial allocation if this is the first call. */
287 if (channels_alloc == 0) {
288 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100289 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100290 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000291 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100292 }
293 /* Try to find a free slot where to put the new channel. */
294 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000295 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100296 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000297 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100298 break;
299 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000300 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100301 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100302 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000303 if (channels_alloc > 10000)
304 fatal("channel_new: internal error: channels_alloc %d "
305 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100306 channels = xrealloc(channels, channels_alloc + 10,
307 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000308 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100309 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100310 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000311 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100312 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000313 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100314 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100315 buffer_init(&c->input);
316 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000317 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100318 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000319 c->listening_addr = NULL;
320 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100321 c->ostate = CHAN_OUTPUT_OPEN;
322 c->istate = CHAN_INPUT_OPEN;
323 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000324 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000325 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100326 c->self = found;
327 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000328 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000329 c->local_window = window;
330 c->local_window_max = window;
331 c->local_consumed = 0;
332 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100333 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000334 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000335 c->remote_window = 0;
336 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000337 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100338 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000339 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100340 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000341 c->open_confirm = NULL;
342 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000343 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100344 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000345 c->filter_ctx = NULL;
346 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100347 c->ctl_chan = -1;
348 c->mux_rcb = NULL;
349 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000350 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100351 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000352 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100353 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000354 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000356
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000357static int
358channel_find_maxfd(void)
359{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000360 u_int i;
361 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000362 Channel *c;
363
364 for (i = 0; i < channels_alloc; i++) {
365 c = channels[i];
366 if (c != NULL) {
367 max = MAX(max, c->rfd);
368 max = MAX(max, c->wfd);
369 max = MAX(max, c->efd);
370 }
371 }
372 return max;
373}
374
375int
376channel_close_fd(int *fdp)
377{
378 int ret = 0, fd = *fdp;
379
380 if (fd != -1) {
381 ret = close(fd);
382 *fdp = -1;
383 if (fd == channel_max_fd)
384 channel_max_fd = channel_find_maxfd();
385 }
386 return ret;
387}
388
Damien Miller6f83b8e2000-05-02 09:23:45 +1000389/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000390static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000391channel_close_fds(Channel *c)
392{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000393 channel_close_fd(&c->sock);
394 channel_close_fd(&c->rfd);
395 channel_close_fd(&c->wfd);
396 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000397}
398
399/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000400void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000401channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000403 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000404 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000405 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000406
407 for (n = 0, i = 0; i < channels_alloc; i++)
408 if (channels[i])
409 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000410 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000411 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000412
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000413 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000414 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000415 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000416
Damien Miller6f83b8e2000-05-02 09:23:45 +1000417 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000418 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000419 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000420 buffer_free(&c->input);
421 buffer_free(&c->output);
422 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000423 free(c->remote_name);
424 c->remote_name = NULL;
425 free(c->path);
426 c->path = NULL;
427 free(c->listening_addr);
428 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000429 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
430 if (cc->abandon_cb != NULL)
431 cc->abandon_cb(c, cc->ctx);
432 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100433 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000434 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000435 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000436 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
437 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000438 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000439 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000440}
441
Ben Lindstrome9c99912001-06-09 00:41:05 +0000442void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000443channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000444{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000445 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446
Ben Lindstrom601e4362001-06-21 03:19:23 +0000447 for (i = 0; i < channels_alloc; i++)
448 if (channels[i] != NULL)
449 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000450}
451
452/*
453 * Closes the sockets/fds of all channels. This is used to close extra file
454 * descriptors after a fork.
455 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000456void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000457channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000458{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000459 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000460
461 for (i = 0; i < channels_alloc; i++)
462 if (channels[i] != NULL)
463 channel_close_fds(channels[i]);
464}
465
466/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000467 * Stop listening to channels.
468 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000469void
470channel_stop_listening(void)
471{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000472 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000473 Channel *c;
474
475 for (i = 0; i < channels_alloc; i++) {
476 c = channels[i];
477 if (c != NULL) {
478 switch (c->type) {
479 case SSH_CHANNEL_AUTH_SOCKET:
480 case SSH_CHANNEL_PORT_LISTENER:
481 case SSH_CHANNEL_RPORT_LISTENER:
482 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000483 case SSH_CHANNEL_UNIX_LISTENER:
484 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000485 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000486 channel_free(c);
487 break;
488 }
489 }
490 }
491}
492
493/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000494 * Returns true if no channel has too much buffered data, and false if one or
495 * more channel is overfull.
496 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000497int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000498channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000499{
500 u_int i;
501 Channel *c;
502
503 for (i = 0; i < channels_alloc; i++) {
504 c = channels[i];
505 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000506#if 0
507 if (!compat20 &&
508 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100509 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000510 c->self, buffer_len(&c->input));
511 return 0;
512 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000513#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000515 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000516 c->self, buffer_len(&c->output),
517 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000518 return 0;
519 }
520 }
521 }
522 return 1;
523}
524
525/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000527channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000528{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000529 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000530 Channel *c;
531
532 for (i = 0; i < channels_alloc; i++) {
533 c = channels[i];
534 if (c == NULL)
535 continue;
536 switch (c->type) {
537 case SSH_CHANNEL_X11_LISTENER:
538 case SSH_CHANNEL_PORT_LISTENER:
539 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100540 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000541 case SSH_CHANNEL_CLOSED:
542 case SSH_CHANNEL_AUTH_SOCKET:
543 case SSH_CHANNEL_DYNAMIC:
544 case SSH_CHANNEL_CONNECTING:
545 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000546 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000547 case SSH_CHANNEL_UNIX_LISTENER:
548 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000549 continue;
550 case SSH_CHANNEL_LARVAL:
551 if (!compat20)
552 fatal("cannot happen: SSH_CHANNEL_LARVAL");
553 continue;
554 case SSH_CHANNEL_OPENING:
555 case SSH_CHANNEL_OPEN:
556 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100557 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000558 return 1;
559 case SSH_CHANNEL_INPUT_DRAINING:
560 case SSH_CHANNEL_OUTPUT_DRAINING:
561 if (!compat13)
562 fatal("cannot happen: OUT_DRAIN");
563 return 1;
564 default:
565 fatal("channel_still_open: bad channel type %d", c->type);
566 /* NOTREACHED */
567 }
568 }
569 return 0;
570}
571
572/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000573int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000574channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000575{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000576 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000577 Channel *c;
578
579 for (i = 0; i < channels_alloc; i++) {
580 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000581 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000582 continue;
583 switch (c->type) {
584 case SSH_CHANNEL_CLOSED:
585 case SSH_CHANNEL_DYNAMIC:
586 case SSH_CHANNEL_X11_LISTENER:
587 case SSH_CHANNEL_PORT_LISTENER:
588 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100589 case SSH_CHANNEL_MUX_LISTENER:
590 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000591 case SSH_CHANNEL_OPENING:
592 case SSH_CHANNEL_CONNECTING:
593 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000594 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000595 case SSH_CHANNEL_UNIX_LISTENER:
596 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000597 continue;
598 case SSH_CHANNEL_LARVAL:
599 case SSH_CHANNEL_AUTH_SOCKET:
600 case SSH_CHANNEL_OPEN:
601 case SSH_CHANNEL_X11_OPEN:
602 return i;
603 case SSH_CHANNEL_INPUT_DRAINING:
604 case SSH_CHANNEL_OUTPUT_DRAINING:
605 if (!compat13)
606 fatal("cannot happen: OUT_DRAIN");
607 return i;
608 default:
609 fatal("channel_find_open: bad channel type %d", c->type);
610 /* NOTREACHED */
611 }
612 }
613 return -1;
614}
615
616
617/*
618 * Returns a message describing the currently open forwarded connections,
619 * suitable for sending to the client. The message contains crlf pairs for
620 * newlines.
621 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000622char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000623channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000624{
625 Buffer buffer;
626 Channel *c;
627 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000628 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000629
630 buffer_init(&buffer);
631 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
632 buffer_append(&buffer, buf, strlen(buf));
633 for (i = 0; i < channels_alloc; i++) {
634 c = channels[i];
635 if (c == NULL)
636 continue;
637 switch (c->type) {
638 case SSH_CHANNEL_X11_LISTENER:
639 case SSH_CHANNEL_PORT_LISTENER:
640 case SSH_CHANNEL_RPORT_LISTENER:
641 case SSH_CHANNEL_CLOSED:
642 case SSH_CHANNEL_AUTH_SOCKET:
643 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000644 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100645 case SSH_CHANNEL_MUX_CLIENT:
646 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000647 case SSH_CHANNEL_UNIX_LISTENER:
648 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649 continue;
650 case SSH_CHANNEL_LARVAL:
651 case SSH_CHANNEL_OPENING:
652 case SSH_CHANNEL_CONNECTING:
653 case SSH_CHANNEL_DYNAMIC:
654 case SSH_CHANNEL_OPEN:
655 case SSH_CHANNEL_X11_OPEN:
656 case SSH_CHANNEL_INPUT_DRAINING:
657 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000658 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100659 " #%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 +0000660 c->self, c->remote_name,
661 c->type, c->remote_id,
662 c->istate, buffer_len(&c->input),
663 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100664 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 buffer_append(&buffer, buf, strlen(buf));
666 continue;
667 default:
668 fatal("channel_open_message: bad channel type %d", c->type);
669 /* NOTREACHED */
670 }
671 }
672 buffer_append(&buffer, "\0", 1);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +0000673 cp = xstrdup((char *)buffer_ptr(&buffer));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674 buffer_free(&buffer);
675 return cp;
676}
677
678void
679channel_send_open(int id)
680{
681 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000682
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000684 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685 return;
686 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000687 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688 packet_start(SSH2_MSG_CHANNEL_OPEN);
689 packet_put_cstring(c->ctype);
690 packet_put_int(c->self);
691 packet_put_int(c->local_window);
692 packet_put_int(c->local_maxpacket);
693 packet_send();
694}
695
696void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000697channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000698{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000699 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000700
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000702 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703 return;
704 }
Damien Miller0e220db2004-06-15 10:34:08 +1000705 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706 packet_start(SSH2_MSG_CHANNEL_REQUEST);
707 packet_put_int(c->remote_id);
708 packet_put_cstring(service);
709 packet_put_char(wantconfirm);
710}
Damien Miller4f7becb2006-03-26 14:10:14 +1100711
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712void
Damien Millerb84886b2008-05-19 15:05:07 +1000713channel_register_status_confirm(int id, channel_confirm_cb *cb,
714 channel_confirm_abandon_cb *abandon_cb, void *ctx)
715{
716 struct channel_confirm *cc;
717 Channel *c;
718
719 if ((c = channel_lookup(id)) == NULL)
720 fatal("channel_register_expect: %d: bad id", id);
721
Damien Miller6c81fee2013-11-08 12:19:55 +1100722 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000723 cc->cb = cb;
724 cc->abandon_cb = abandon_cb;
725 cc->ctx = ctx;
726 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
727}
728
729void
Damien Millerd530f5f2010-05-21 14:57:10 +1000730channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731{
732 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000733
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100735 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 return;
737 }
Damien Millerb84886b2008-05-19 15:05:07 +1000738 c->open_confirm = fn;
739 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740}
Damien Miller4f7becb2006-03-26 14:10:14 +1100741
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742void
Damien Miller39eda6e2005-11-05 14:52:50 +1100743channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744{
Damien Millerd47c62a2005-12-13 19:33:57 +1100745 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000746
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000748 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749 return;
750 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000751 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100752 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753}
Damien Miller4f7becb2006-03-26 14:10:14 +1100754
Ben Lindstrome9c99912001-06-09 00:41:05 +0000755void
756channel_cancel_cleanup(int id)
757{
Damien Millerd47c62a2005-12-13 19:33:57 +1100758 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000759
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000761 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762 return;
763 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000764 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100765 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766}
Damien Miller4f7becb2006-03-26 14:10:14 +1100767
Ben Lindstrome9c99912001-06-09 00:41:05 +0000768void
Damien Miller077b2382005-12-31 16:22:32 +1100769channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000770 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771{
772 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000773
Ben Lindstrome9c99912001-06-09 00:41:05 +0000774 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000775 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000776 return;
777 }
Damien Miller077b2382005-12-31 16:22:32 +1100778 c->input_filter = ifn;
779 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000780 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000781 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000782}
783
784void
785channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000786 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000787{
788 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000789
Ben Lindstrome9c99912001-06-09 00:41:05 +0000790 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
791 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000792 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000793 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100794 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000795 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
796 packet_put_int(c->remote_id);
797 packet_put_int(c->local_window);
798 packet_send();
799}
800
Damien Miller5428f641999-11-25 11:54:57 +1100801/*
Damien Millerb38eff82000-04-01 11:09:21 +1000802 * 'channel_pre*' are called just before select() to add any bits relevant to
803 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100804 */
Damien Millerb38eff82000-04-01 11:09:21 +1000805/*
806 * 'channel_post*': perform any appropriate operations for channels which
807 * have events pending.
808 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100809typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000810chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
811chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
812
Damien Miller8473dd82006-07-24 14:08:32 +1000813/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100815channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000816{
817 FD_SET(c->sock, readset);
818}
819
Damien Miller8473dd82006-07-24 14:08:32 +1000820/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000821static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100822channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000823{
824 debug3("channel %d: waiting for connection", c->self);
825 FD_SET(c->sock, writeset);
826}
827
Ben Lindstrombba81212001-06-25 05:01:22 +0000828static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100829channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000830{
831 if (buffer_len(&c->input) < packet_get_maxsize())
832 FD_SET(c->sock, readset);
833 if (buffer_len(&c->output) > 0)
834 FD_SET(c->sock, writeset);
835}
836
Ben Lindstrombba81212001-06-25 05:01:22 +0000837static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100838channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000839{
Damien Millerde6987c2002-01-22 23:20:40 +1100840 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000841
Damien Miller33b13562000-04-04 14:38:59 +1000842 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100843 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000844 buffer_len(&c->input) < limit &&
845 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000846 FD_SET(c->rfd, readset);
847 if (c->ostate == CHAN_OUTPUT_OPEN ||
848 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
849 if (buffer_len(&c->output) > 0) {
850 FD_SET(c->wfd, writeset);
851 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000852 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000853 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
854 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000855 else
856 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000857 }
858 }
859 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000860 if (compat20 && c->efd != -1 &&
861 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000862 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
863 buffer_len(&c->extended) > 0)
864 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000865 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
866 (c->extended_usage == CHAN_EXTENDED_READ ||
867 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000868 buffer_len(&c->extended) < c->remote_window)
869 FD_SET(c->efd, readset);
870 }
Damien Miller0e220db2004-06-15 10:34:08 +1000871 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000872}
873
Damien Miller8473dd82006-07-24 14:08:32 +1000874/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100876channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000877{
878 if (buffer_len(&c->input) == 0) {
879 packet_start(SSH_MSG_CHANNEL_CLOSE);
880 packet_put_int(c->remote_id);
881 packet_send();
882 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000883 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000884 }
885}
886
Damien Miller8473dd82006-07-24 14:08:32 +1000887/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000888static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100889channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000890{
891 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000892 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000893 else
Damien Millerb38eff82000-04-01 11:09:21 +1000894 FD_SET(c->sock, writeset);
895}
896
897/*
898 * This is a special state for X11 authentication spoofing. An opened X11
899 * connection (when authentication spoofing is being done) remains in this
900 * state until the first packet has been completely read. The authentication
901 * data in that packet is then substituted by the real data if it matches the
902 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000903 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000904 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000905 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000906static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000908{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000909 u_char *ucp;
910 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000911
912 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000913 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000914 return 0;
915
916 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100917 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000918 if (ucp[0] == 0x42) { /* Byte order MSB first. */
919 proto_len = 256 * ucp[6] + ucp[7];
920 data_len = 256 * ucp[8] + ucp[9];
921 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
922 proto_len = ucp[6] + 256 * ucp[7];
923 data_len = ucp[8] + 256 * ucp[9];
924 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000925 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100926 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000927 return -1;
928 }
929
930 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000931 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000932 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
933 return 0;
934
935 /* Check if authentication protocol matches. */
936 if (proto_len != strlen(x11_saved_proto) ||
937 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000938 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000939 return -1;
940 }
941 /* Check if authentication data matches our fake data. */
942 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000943 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000944 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000945 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000946 return -1;
947 }
948 /* Check fake data length */
949 if (x11_fake_data_len != x11_saved_data_len) {
950 error("X11 fake_data_len %d != saved_data_len %d",
951 x11_fake_data_len, x11_saved_data_len);
952 return -1;
953 }
954 /*
955 * Received authentication protocol and data match
956 * our fake data. Substitute the fake data with real
957 * data.
958 */
959 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
960 x11_saved_data, x11_saved_data_len);
961 return 1;
962}
963
Ben Lindstrombba81212001-06-25 05:01:22 +0000964static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100965channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000966{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000967 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000968
Damien Millerb38eff82000-04-01 11:09:21 +1000969 if (ret == 1) {
970 /* Start normal processing for the channel. */
971 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000972 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000973 } else if (ret == -1) {
974 /*
975 * We have received an X11 connection that has bad
976 * authentication information.
977 */
Damien Miller996acd22003-04-09 20:59:48 +1000978 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000979 buffer_clear(&c->input);
980 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000981 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000982 c->sock = -1;
983 c->type = SSH_CHANNEL_CLOSED;
984 packet_start(SSH_MSG_CHANNEL_CLOSE);
985 packet_put_int(c->remote_id);
986 packet_send();
987 }
988}
989
Ben Lindstrombba81212001-06-25 05:01:22 +0000990static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100991channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000992{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000993 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000994
995 /* c->force_drain = 1; */
996
Damien Millerb38eff82000-04-01 11:09:21 +1000997 if (ret == 1) {
998 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100999 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001000 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001001 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +10001002 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +11001003 chan_read_failed(c);
1004 buffer_clear(&c->input);
1005 chan_ibuf_empty(c);
1006 buffer_clear(&c->output);
1007 /* for proto v1, the peer will send an IEOF */
1008 if (compat20)
1009 chan_write_failed(c);
1010 else
1011 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +10001012 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001013 }
1014}
1015
Damien Millere1537f92010-01-26 13:26:22 +11001016static void
1017channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1018{
Damien Millerd530f5f2010-05-21 14:57:10 +10001019 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001020 buffer_check_alloc(&c->input, CHAN_RBUF))
1021 FD_SET(c->rfd, readset);
1022 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1023 /* clear buffer immediately (discard any partial packet) */
1024 buffer_clear(&c->input);
1025 chan_ibuf_empty(c);
1026 /* Start output drain. XXX just kill chan? */
1027 chan_rcvd_oclose(c);
1028 }
1029 if (c->ostate == CHAN_OUTPUT_OPEN ||
1030 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1031 if (buffer_len(&c->output) > 0)
1032 FD_SET(c->wfd, writeset);
1033 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1034 chan_obuf_empty(c);
1035 }
1036}
1037
Ben Lindstromb3921512001-04-11 15:57:50 +00001038/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001039/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001040static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001041channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001042{
Damien Millera10f5612002-09-12 09:49:15 +10001043 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001044 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001045 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001046 struct {
1047 u_int8_t version;
1048 u_int8_t command;
1049 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001050 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001051 } s4_req, s4_rsp;
1052
Ben Lindstromb3921512001-04-11 15:57:50 +00001053 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001054
1055 have = buffer_len(&c->input);
1056 len = sizeof(s4_req);
1057 if (have < len)
1058 return 0;
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001059 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001060
1061 need = 1;
1062 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1063 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1064 debug2("channel %d: socks4a request", c->self);
1065 /* ... and needs an extra string (the hostname) */
1066 need = 2;
1067 }
1068 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001069 for (found = 0, i = len; i < have; i++) {
1070 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001071 found++;
1072 if (found == need)
1073 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001074 }
1075 if (i > 1024) {
1076 /* the peer is probably sending garbage */
1077 debug("channel %d: decode socks4: too long",
1078 c->self);
1079 return -1;
1080 }
1081 }
Damien Miller1781f532009-01-28 16:24:41 +11001082 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001083 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001084 buffer_get(&c->input, (char *)&s4_req.version, 1);
1085 buffer_get(&c->input, (char *)&s4_req.command, 1);
1086 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001087 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001088 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001089 p = (char *)buffer_ptr(&c->input);
Damien Miller13481292014-02-27 10:18:32 +11001090 if (memchr(p, '\0', have) == NULL)
1091 fatal("channel %d: decode socks4: user not nul terminated",
1092 c->self);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001093 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001094 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001095 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001096 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001097 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001098 c->self, len, have);
1099 strlcpy(username, p, sizeof(username));
1100 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001101
Darren Tuckera627d422013-06-02 07:31:17 +10001102 free(c->path);
1103 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001104 if (need == 1) { /* SOCKS4: one string */
1105 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001106 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001107 } else { /* SOCKS4A: two strings */
1108 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001109 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001110 len = strlen(p);
1111 debug2("channel %d: decode socks4a: host %s/%d",
1112 c->self, p, len);
1113 len++; /* trailing '\0' */
1114 if (len > have)
1115 fatal("channel %d: decode socks4a: len %d > have %d",
1116 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001117 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001118 error("channel %d: hostname \"%.100s\" too long",
1119 c->self, p);
1120 return -1;
1121 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001122 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001123 buffer_consume(&c->input, len);
1124 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001125 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001126
Damien Millerfbdeece2003-09-02 22:52:31 +10001127 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001128 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001129
Ben Lindstromb3921512001-04-11 15:57:50 +00001130 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001131 debug("channel %d: cannot handle: %s cn %d",
1132 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001133 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001134 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001135 s4_rsp.version = 0; /* vn: 0 for reply */
1136 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001137 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001138 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001139 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001140 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001141}
1142
Darren Tucker46471c92003-07-03 13:55:19 +10001143/* try to decode a socks5 header */
1144#define SSH_SOCKS5_AUTHDONE 0x1000
1145#define SSH_SOCKS5_NOAUTH 0x00
1146#define SSH_SOCKS5_IPV4 0x01
1147#define SSH_SOCKS5_DOMAIN 0x03
1148#define SSH_SOCKS5_IPV6 0x04
1149#define SSH_SOCKS5_CONNECT 0x01
1150#define SSH_SOCKS5_SUCCESS 0x00
1151
Damien Miller8473dd82006-07-24 14:08:32 +10001152/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001153static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001154channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001155{
1156 struct {
1157 u_int8_t version;
1158 u_int8_t command;
1159 u_int8_t reserved;
1160 u_int8_t atyp;
1161 } s5_req, s5_rsp;
1162 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001163 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1164 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001165 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001166
1167 debug2("channel %d: decode socks5", c->self);
1168 p = buffer_ptr(&c->input);
1169 if (p[0] != 0x05)
1170 return -1;
1171 have = buffer_len(&c->input);
1172 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1173 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001174 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001175 return 0;
1176 nmethods = p[1];
1177 if (have < nmethods + 2)
1178 return 0;
1179 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001180 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001181 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001182 found = 1;
1183 break;
1184 }
1185 }
1186 if (!found) {
1187 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1188 c->self);
1189 return -1;
1190 }
1191 buffer_consume(&c->input, nmethods + 2);
1192 buffer_put_char(&c->output, 0x05); /* version */
1193 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1194 FD_SET(c->sock, writeset);
1195 c->flags |= SSH_SOCKS5_AUTHDONE;
1196 debug2("channel %d: socks5 auth done", c->self);
1197 return 0; /* need more */
1198 }
1199 debug2("channel %d: socks5 post auth", c->self);
1200 if (have < sizeof(s5_req)+1)
1201 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001202 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001203 if (s5_req.version != 0x05 ||
1204 s5_req.command != SSH_SOCKS5_CONNECT ||
1205 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001206 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001207 return -1;
1208 }
Darren Tucker47eede72005-03-14 23:08:12 +11001209 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001210 case SSH_SOCKS5_IPV4:
1211 addrlen = 4;
1212 af = AF_INET;
1213 break;
1214 case SSH_SOCKS5_DOMAIN:
1215 addrlen = p[sizeof(s5_req)];
1216 af = -1;
1217 break;
1218 case SSH_SOCKS5_IPV6:
1219 addrlen = 16;
1220 af = AF_INET6;
1221 break;
1222 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001223 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001224 return -1;
1225 }
Damien Miller0f077072006-07-10 22:21:02 +10001226 need = sizeof(s5_req) + addrlen + 2;
1227 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1228 need++;
1229 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001230 return 0;
1231 buffer_consume(&c->input, sizeof(s5_req));
1232 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1233 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001234 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001235 buffer_get(&c->input, (char *)&dest_port, 2);
1236 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001237 free(c->path);
1238 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001239 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001240 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001241 error("channel %d: dynamic request: socks5 hostname "
1242 "\"%.100s\" too long", c->self, dest_addr);
1243 return -1;
1244 }
1245 c->path = xstrdup(dest_addr);
1246 } else {
1247 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1248 return -1;
1249 c->path = xstrdup(ntop);
1250 }
Darren Tucker46471c92003-07-03 13:55:19 +10001251 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001252
Damien Millerfbdeece2003-09-02 22:52:31 +10001253 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001254 c->self, c->path, c->host_port, s5_req.command);
1255
1256 s5_rsp.version = 0x05;
1257 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1258 s5_rsp.reserved = 0; /* ignored */
1259 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001260 dest_port = 0; /* ignored */
1261
Damien Millera0fdce92006-03-26 14:28:50 +11001262 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
Damien Miller13840e02013-09-14 09:49:43 +10001263 buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
Damien Millera0fdce92006-03-26 14:28:50 +11001264 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001265 return 1;
1266}
1267
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001268Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001269channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1270 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001271{
1272 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001273
1274 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1275 port_to_connect);
1276
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001277 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1278 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1279 0, "stdio-forward", /*nonblock*/0);
1280
1281 c->path = xstrdup(host_to_connect);
1282 c->host_port = port_to_connect;
1283 c->listening_port = 0;
1284 c->force_drain = 1;
1285
1286 channel_register_fds(c, in, out, -1, 0, 1, 0);
1287 port_open_helper(c, "direct-tcpip");
1288
1289 return c;
1290}
1291
Ben Lindstromb3921512001-04-11 15:57:50 +00001292/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001293static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001294channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001295{
1296 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001297 u_int have;
1298 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001299
1300 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001301 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001302 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001303 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001304 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001305 /* need more */
1306 FD_SET(c->sock, readset);
1307 return;
1308 }
1309 /* try to guess the protocol */
1310 p = buffer_ptr(&c->input);
1311 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001312 case 0x04:
1313 ret = channel_decode_socks4(c, readset, writeset);
1314 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001315 case 0x05:
1316 ret = channel_decode_socks5(c, readset, writeset);
1317 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001318 default:
1319 ret = -1;
1320 break;
1321 }
1322 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001323 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001324 } else if (ret == 0) {
1325 debug2("channel %d: pre_dynamic: need more", c->self);
1326 /* need more */
1327 FD_SET(c->sock, readset);
1328 } else {
1329 /* switch to the next state */
1330 c->type = SSH_CHANNEL_OPENING;
1331 port_open_helper(c, "direct-tcpip");
1332 }
1333}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001334
Damien Millerb38eff82000-04-01 11:09:21 +10001335/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001336/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001337static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001338channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001339{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001340 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001341 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001342 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001343 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001344 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001345 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001346
1347 if (FD_ISSET(c->sock, readset)) {
1348 debug("X11 connection requested.");
1349 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001350 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001351 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001352 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001353 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001354 channel_close_fd(&c->sock);
1355 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001356 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001357 }
Damien Millerb38eff82000-04-01 11:09:21 +10001358 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001359 if (errno != EINTR && errno != EWOULDBLOCK &&
1360 errno != ECONNABORTED)
1361 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001362 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001363 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001364 return;
1365 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001366 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001367 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001368 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001369 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001370 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001371
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001372 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001373 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001374 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001375 if (compat20) {
1376 packet_start(SSH2_MSG_CHANNEL_OPEN);
1377 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001378 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001379 packet_put_int(nc->local_window_max);
1380 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001381 /* originator ipaddr and port */
1382 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001383 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001384 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001385 } else {
1386 packet_put_int(remote_port);
1387 }
Damien Millerbd483e72000-04-30 10:00:53 +10001388 packet_send();
1389 } else {
1390 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001391 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001392 if (packet_get_protocol_flags() &
1393 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001394 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001395 packet_send();
1396 }
Darren Tuckera627d422013-06-02 07:31:17 +10001397 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001398 }
1399}
1400
Ben Lindstrombba81212001-06-25 05:01:22 +00001401static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001402port_open_helper(Channel *c, char *rtype)
1403{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001404 char buf[1024];
Damien Miller4def1842013-12-29 17:45:26 +11001405 char *local_ipaddr = get_local_ipaddr(c->sock);
Damien Miller0890dc82014-02-24 15:56:07 +11001406 int local_port = c->sock == -1 ? 65536 : get_sock_port(c->sock, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001407 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001408 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001409
Damien Millerd6369432010-02-02 17:02:07 +11001410 if (remote_port == -1) {
1411 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001412 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001413 remote_ipaddr = xstrdup("127.0.0.1");
1414 remote_port = 65535;
1415 }
1416
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001417 snprintf(buf, sizeof buf,
1418 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001419 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001420 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001421 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001422
Darren Tuckera627d422013-06-02 07:31:17 +10001423 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001424 c->remote_name = xstrdup(buf);
1425
1426 if (compat20) {
1427 packet_start(SSH2_MSG_CHANNEL_OPEN);
1428 packet_put_cstring(rtype);
1429 packet_put_int(c->self);
1430 packet_put_int(c->local_window_max);
1431 packet_put_int(c->local_maxpacket);
Damien Miller7acefbb2014-07-18 14:11:24 +10001432 if (strcmp(rtype, "direct-tcpip") == 0) {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001433 /* target host, port */
1434 packet_put_cstring(c->path);
1435 packet_put_int(c->host_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10001436 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1437 /* target path */
1438 packet_put_cstring(c->path);
1439 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1440 /* listen path */
1441 packet_put_cstring(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001442 } else {
1443 /* listen address, port */
1444 packet_put_cstring(c->path);
Damien Miller4def1842013-12-29 17:45:26 +11001445 packet_put_int(local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001446 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001447 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1448 /* reserved for future owner/mode info */
1449 packet_put_cstring("");
1450 } else {
1451 /* originator host and port */
1452 packet_put_cstring(remote_ipaddr);
1453 packet_put_int((u_int)remote_port);
1454 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001455 packet_send();
1456 } else {
1457 packet_start(SSH_MSG_PORT_OPEN);
1458 packet_put_int(c->self);
1459 packet_put_cstring(c->path);
1460 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001461 if (packet_get_protocol_flags() &
1462 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001463 packet_put_cstring(c->remote_name);
1464 packet_send();
1465 }
Darren Tuckera627d422013-06-02 07:31:17 +10001466 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001467 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001468}
1469
Damien Miller5e7fd072005-11-05 14:53:39 +11001470static void
1471channel_set_reuseaddr(int fd)
1472{
1473 int on = 1;
1474
1475 /*
1476 * Set socket options.
1477 * Allow local port reuse in TIME_WAIT.
1478 */
1479 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1480 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1481}
1482
Damien Millerb38eff82000-04-01 11:09:21 +10001483/*
1484 * This socket is listening for connections to a forwarded TCP/IP port.
1485 */
Damien Miller8473dd82006-07-24 14:08:32 +10001486/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001487static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001488channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001489{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001490 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001491 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001492 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001493 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001494 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001495
Damien Millerb38eff82000-04-01 11:09:21 +10001496 if (FD_ISSET(c->sock, readset)) {
1497 debug("Connection to port %d forwarding "
1498 "to %.100s port %d requested.",
1499 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001500
Damien Miller4623a752001-10-10 15:03:58 +10001501 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1502 nextstate = SSH_CHANNEL_OPENING;
1503 rtype = "forwarded-tcpip";
Damien Miller7acefbb2014-07-18 14:11:24 +10001504 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1505 nextstate = SSH_CHANNEL_OPENING;
1506 rtype = "forwarded-streamlocal@openssh.com";
1507 } else if (c->host_port == PORT_STREAMLOCAL) {
1508 nextstate = SSH_CHANNEL_OPENING;
1509 rtype = "direct-streamlocal@openssh.com";
1510 } else if (c->host_port == 0) {
1511 nextstate = SSH_CHANNEL_DYNAMIC;
1512 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001513 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10001514 nextstate = SSH_CHANNEL_OPENING;
1515 rtype = "direct-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001516 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001517
Damien Millerb38eff82000-04-01 11:09:21 +10001518 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001519 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001520 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001521 if (errno != EINTR && errno != EWOULDBLOCK &&
1522 errno != ECONNABORTED)
1523 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001524 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001525 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001526 return;
1527 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001528 if (c->host_port != PORT_STREAMLOCAL)
1529 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001530 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1531 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001532 nc->listening_port = c->listening_port;
1533 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001534 if (c->path != NULL)
1535 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001536
Darren Tucker876045b2010-01-08 17:08:00 +11001537 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001538 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001539 }
1540}
1541
1542/*
1543 * This is the authentication agent socket listening for connections from
1544 * clients.
1545 */
Damien Miller8473dd82006-07-24 14:08:32 +10001546/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001547static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001548channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001549{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001550 Channel *nc;
1551 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001552 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001553 socklen_t addrlen;
1554
1555 if (FD_ISSET(c->sock, readset)) {
1556 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001557 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001558 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001559 error("accept from auth socket: %.100s",
1560 strerror(errno));
1561 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001562 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001563 return;
1564 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001565 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001566 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1567 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001568 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001569 if (compat20) {
1570 packet_start(SSH2_MSG_CHANNEL_OPEN);
1571 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001572 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001573 packet_put_int(c->local_window_max);
1574 packet_put_int(c->local_maxpacket);
1575 } else {
1576 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001577 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001578 }
Damien Millerb38eff82000-04-01 11:09:21 +10001579 packet_send();
1580 }
1581}
1582
Damien Miller8473dd82006-07-24 14:08:32 +10001583/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001584static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001585channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001586{
Damien Millerbd740252008-05-19 15:37:09 +10001587 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001588 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001589
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001590 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001591 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001592 err = errno;
1593 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001594 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001595 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001596 debug("channel %d: connected to %s port %d",
1597 c->self, c->connect_ctx.host, c->connect_ctx.port);
1598 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001599 c->type = SSH_CHANNEL_OPEN;
1600 if (compat20) {
1601 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1602 packet_put_int(c->remote_id);
1603 packet_put_int(c->self);
1604 packet_put_int(c->local_window);
1605 packet_put_int(c->local_maxpacket);
1606 } else {
1607 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1608 packet_put_int(c->remote_id);
1609 packet_put_int(c->self);
1610 }
1611 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001612 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001613 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001614 /* Try next address, if any */
1615 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1616 close(c->sock);
1617 c->sock = c->rfd = c->wfd = sock;
1618 channel_max_fd = channel_find_maxfd();
1619 return;
1620 }
1621 /* Exhausted all addresses */
1622 error("connect_to %.100s port %d: failed.",
1623 c->connect_ctx.host, c->connect_ctx.port);
1624 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001625 if (compat20) {
1626 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1627 packet_put_int(c->remote_id);
1628 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1629 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1630 packet_put_cstring(strerror(err));
1631 packet_put_cstring("");
1632 }
1633 } else {
1634 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1635 packet_put_int(c->remote_id);
1636 }
1637 chan_mark_dead(c);
1638 }
1639 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001640 }
1641}
1642
Damien Miller8473dd82006-07-24 14:08:32 +10001643/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001644static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001645channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001646{
Darren Tucker11327cc2005-03-14 23:22:25 +11001647 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001648 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001649
Damien Miller835284b2007-06-11 13:03:16 +10001650 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1651 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001652 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001653 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001654 if (len < 0 && (errno == EINTR ||
1655 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001656 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001657#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001658 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001659#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001660 if ((!c->isatty && len <= 0) ||
1661 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001662#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001663 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001664 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001665 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001666 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001667 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001668 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001669 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001670 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001671 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001672 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001673 } else {
1674 chan_read_failed(c);
1675 }
1676 return -1;
1677 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001678 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001679 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001680 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001681 chan_read_failed(c);
1682 }
Damien Millerd27b9472005-12-13 19:29:02 +11001683 } else if (c->datagram) {
1684 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001685 } else {
1686 buffer_append(&c->input, buf, len);
1687 }
Damien Millerb38eff82000-04-01 11:09:21 +10001688 }
1689 return 1;
1690}
Damien Miller4f7becb2006-03-26 14:10:14 +11001691
Damien Miller8473dd82006-07-24 14:08:32 +10001692/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001693static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001694channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001695{
Ben Lindstrome229b252001-03-05 06:28:06 +00001696 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001697 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001698 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001699 int len;
1700
1701 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001702 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001703 FD_ISSET(c->wfd, writeset) &&
1704 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001705 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001706 if (c->output_filter != NULL) {
1707 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1708 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001709 if (c->type != SSH_CHANNEL_OPEN)
1710 chan_mark_dead(c);
1711 else
1712 chan_write_failed(c);
1713 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001714 }
1715 } else if (c->datagram) {
1716 buf = data = buffer_get_string(&c->output, &dlen);
1717 } else {
1718 buf = data = buffer_ptr(&c->output);
1719 dlen = buffer_len(&c->output);
1720 }
1721
Damien Millerd27b9472005-12-13 19:29:02 +11001722 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001723 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001724 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001725 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001726 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1727 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001728 return 1;
1729 if (len <= 0) {
1730 if (c->type != SSH_CHANNEL_OPEN)
1731 chan_mark_dead(c);
1732 else
1733 chan_write_failed(c);
1734 return -1;
1735 }
Damien Miller7d457182010-08-05 23:09:48 +10001736 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001737 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001738#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001739 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001740 if (compat20 && c->wfd_isatty)
1741 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001742#endif
Damien Miller077b2382005-12-31 16:22:32 +11001743
1744 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001745 if (len < 0 &&
1746 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001747 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001748 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001749 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001750 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001751 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001752 return -1;
1753 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001754 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001755 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001756 c->type = SSH_CHANNEL_INPUT_DRAINING;
1757 } else {
1758 chan_write_failed(c);
1759 }
1760 return -1;
1761 }
Darren Tucker3980b632009-08-28 11:02:37 +10001762#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001763 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001764 if (tcgetattr(c->wfd, &tio) == 0 &&
1765 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1766 /*
1767 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001768 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001769 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001770 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001771 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001772 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001773 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001774 }
1775 }
Darren Tucker3980b632009-08-28 11:02:37 +10001776#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001777 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001778 }
Damien Miller7d457182010-08-05 23:09:48 +10001779 out:
1780 if (compat20 && olen > 0)
1781 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001782 return 1;
1783}
Damien Miller4f7becb2006-03-26 14:10:14 +11001784
Ben Lindstrombba81212001-06-25 05:01:22 +00001785static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001786channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001787{
Darren Tucker11327cc2005-03-14 23:22:25 +11001788 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001789 int len;
1790
Damien Miller1383bd82000-04-06 12:32:37 +10001791/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001792 if (c->efd != -1) {
1793 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1794 FD_ISSET(c->efd, writeset) &&
1795 buffer_len(&c->extended) > 0) {
1796 len = write(c->efd, buffer_ptr(&c->extended),
1797 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001798 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001799 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001800 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1801 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001802 return 1;
1803 if (len <= 0) {
1804 debug2("channel %d: closing write-efd %d",
1805 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001806 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001807 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001808 buffer_consume(&c->extended, len);
1809 c->local_consumed += len;
1810 }
Damien Miller8853ca52010-06-26 10:00:14 +10001811 } else if (c->efd != -1 &&
1812 (c->extended_usage == CHAN_EXTENDED_READ ||
1813 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001814 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001815 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001816 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001817 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001818 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1819 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001820 return 1;
1821 if (len <= 0) {
1822 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001823 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001824 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001825 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001826 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1827 debug3("channel %d: discard efd",
1828 c->self);
1829 } else
1830 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001831 }
Damien Miller33b13562000-04-04 14:38:59 +10001832 }
1833 }
1834 return 1;
1835}
Damien Miller4f7becb2006-03-26 14:10:14 +11001836
Damien Miller0e220db2004-06-15 10:34:08 +10001837static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001838channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001839{
Ben Lindstromb3921512001-04-11 15:57:50 +00001840 if (c->type == SSH_CHANNEL_OPEN &&
1841 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001842 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001843 c->local_maxpacket*3) ||
1844 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001845 c->local_consumed > 0) {
1846 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1847 packet_put_int(c->remote_id);
1848 packet_put_int(c->local_consumed);
1849 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001850 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001851 c->self, c->local_window,
1852 c->local_consumed);
1853 c->local_window += c->local_consumed;
1854 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001855 }
1856 return 1;
1857}
1858
Ben Lindstrombba81212001-06-25 05:01:22 +00001859static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001860channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001861{
1862 channel_handle_rfd(c, readset, writeset);
1863 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001864 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001865 return;
Damien Miller33b13562000-04-04 14:38:59 +10001866 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001867 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001868}
1869
Damien Millere1537f92010-01-26 13:26:22 +11001870static u_int
1871read_mux(Channel *c, u_int need)
1872{
1873 char buf[CHAN_RBUF];
1874 int len;
1875 u_int rlen;
1876
1877 if (buffer_len(&c->input) < need) {
1878 rlen = need - buffer_len(&c->input);
1879 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1880 if (len <= 0) {
1881 if (errno != EINTR && errno != EAGAIN) {
1882 debug2("channel %d: ctl read<=0 rfd %d len %d",
1883 c->self, c->rfd, len);
1884 chan_read_failed(c);
1885 return 0;
1886 }
1887 } else
1888 buffer_append(&c->input, buf, len);
1889 }
1890 return buffer_len(&c->input);
1891}
1892
1893static void
1894channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1895{
1896 u_int need;
1897 ssize_t len;
1898
1899 if (!compat20)
1900 fatal("%s: entered with !compat20", __func__);
1901
Damien Millerd530f5f2010-05-21 14:57:10 +10001902 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001903 (c->istate == CHAN_INPUT_OPEN ||
1904 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1905 /*
1906 * Don't not read past the precise end of packets to
1907 * avoid disrupting fd passing.
1908 */
1909 if (read_mux(c, 4) < 4) /* read header */
1910 return;
1911 need = get_u32(buffer_ptr(&c->input));
1912#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1913 if (need > CHANNEL_MUX_MAX_PACKET) {
1914 debug2("channel %d: packet too big %u > %u",
1915 c->self, CHANNEL_MUX_MAX_PACKET, need);
1916 chan_rcvd_oclose(c);
1917 return;
1918 }
1919 if (read_mux(c, need + 4) < need + 4) /* read body */
1920 return;
1921 if (c->mux_rcb(c) != 0) {
1922 debug("channel %d: mux_rcb failed", c->self);
1923 chan_mark_dead(c);
1924 return;
1925 }
1926 }
1927
1928 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1929 buffer_len(&c->output) > 0) {
1930 len = write(c->wfd, buffer_ptr(&c->output),
1931 buffer_len(&c->output));
1932 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1933 return;
1934 if (len <= 0) {
1935 chan_mark_dead(c);
1936 return;
1937 }
1938 buffer_consume(&c->output, len);
1939 }
1940}
1941
1942static void
1943channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1944{
1945 Channel *nc;
1946 struct sockaddr_storage addr;
1947 socklen_t addrlen;
1948 int newsock;
1949 uid_t euid;
1950 gid_t egid;
1951
1952 if (!FD_ISSET(c->sock, readset))
1953 return;
1954
1955 debug("multiplexing control connection");
1956
1957 /*
1958 * Accept connection on control socket
1959 */
1960 memset(&addr, 0, sizeof(addr));
1961 addrlen = sizeof(addr);
1962 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1963 &addrlen)) == -1) {
1964 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001965 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001966 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001967 return;
1968 }
1969
1970 if (getpeereid(newsock, &euid, &egid) < 0) {
1971 error("%s getpeereid failed: %s", __func__,
1972 strerror(errno));
1973 close(newsock);
1974 return;
1975 }
1976 if ((euid != 0) && (getuid() != euid)) {
1977 error("multiplex uid mismatch: peer euid %u != uid %u",
1978 (u_int)euid, (u_int)getuid());
1979 close(newsock);
1980 return;
1981 }
1982 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1983 newsock, newsock, -1, c->local_window_max,
1984 c->local_maxpacket, 0, "mux-control", 1);
1985 nc->mux_rcb = c->mux_rcb;
1986 debug3("%s: new mux channel %d fd %d", __func__,
1987 nc->self, nc->sock);
1988 /* establish state */
1989 nc->mux_rcb(nc);
1990 /* mux state transitions must not elicit protocol messages */
1991 nc->flags |= CHAN_LOCAL;
1992}
1993
Damien Miller8473dd82006-07-24 14:08:32 +10001994/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001995static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001996channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001997{
1998 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001999
Damien Millerb38eff82000-04-01 11:09:21 +10002000 /* Send buffered output data to the socket. */
2001 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
2002 len = write(c->sock, buffer_ptr(&c->output),
2003 buffer_len(&c->output));
2004 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11002005 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10002006 else
2007 buffer_consume(&c->output, len);
2008 }
2009}
2010
Ben Lindstrombba81212001-06-25 05:01:22 +00002011static void
Damien Miller33b13562000-04-04 14:38:59 +10002012channel_handler_init_20(void)
2013{
Damien Millerde6987c2002-01-22 23:20:40 +11002014 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002015 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10002016 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002017 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002018 channel_pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2019 channel_pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002020 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002021 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002022 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002023 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11002024 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2025 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002026
Damien Millerde6987c2002-01-22 23:20:40 +11002027 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10002028 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002029 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002030 channel_post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2031 channel_post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002032 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002033 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002034 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002035 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11002036 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2037 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002038}
2039
Ben Lindstrombba81212001-06-25 05:01:22 +00002040static void
Damien Millerb38eff82000-04-01 11:09:21 +10002041channel_handler_init_13(void)
2042{
2043 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2044 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2045 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2046 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2047 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2048 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2049 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002050 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002051 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002052
Damien Millerde6987c2002-01-22 23:20:40 +11002053 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002054 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2055 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2056 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2057 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002058 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002059 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002060}
2061
Ben Lindstrombba81212001-06-25 05:01:22 +00002062static void
Damien Millerb38eff82000-04-01 11:09:21 +10002063channel_handler_init_15(void)
2064{
Damien Millerde6987c2002-01-22 23:20:40 +11002065 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002066 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002067 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2068 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2069 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002070 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002071 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002072
2073 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2074 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2075 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002076 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002077 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002078 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002079}
2080
Ben Lindstrombba81212001-06-25 05:01:22 +00002081static void
Damien Millerb38eff82000-04-01 11:09:21 +10002082channel_handler_init(void)
2083{
2084 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002085
Damien Miller9f0f5c62001-12-21 14:45:46 +11002086 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002087 channel_pre[i] = NULL;
2088 channel_post[i] = NULL;
2089 }
Damien Miller33b13562000-04-04 14:38:59 +10002090 if (compat20)
2091 channel_handler_init_20();
2092 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002093 channel_handler_init_13();
2094 else
2095 channel_handler_init_15();
2096}
2097
Damien Miller3ec27592001-10-12 11:35:04 +10002098/* gc dead channels */
2099static void
2100channel_garbage_collect(Channel *c)
2101{
2102 if (c == NULL)
2103 return;
2104 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002105 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002106 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002107 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002108 c->detach_user(c->self, NULL);
2109 /* if we still have a callback */
2110 if (c->detach_user != NULL)
2111 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002112 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002113 }
2114 if (!chan_is_dead(c, 1))
2115 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002116 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002117 channel_free(c);
2118}
2119
Ben Lindstrombba81212001-06-25 05:01:22 +00002120static void
Damien Millera6508752012-04-22 11:21:10 +10002121channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2122 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002123{
2124 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002125 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002126 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002127 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002128
2129 if (!did_init) {
2130 channel_handler_init();
2131 did_init = 1;
2132 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002133 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002134 if (unpause_secs != NULL)
2135 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002136 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002137 c = channels[i];
2138 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002139 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002140 if (c->delayed) {
2141 if (ftab == channel_pre)
2142 c->delayed = 0;
2143 else
2144 continue;
2145 }
Damien Millera6508752012-04-22 11:21:10 +10002146 if (ftab[c->type] != NULL) {
2147 /*
2148 * Run handlers that are not paused.
2149 */
2150 if (c->notbefore <= now)
2151 (*ftab[c->type])(c, readset, writeset);
2152 else if (unpause_secs != NULL) {
2153 /*
2154 * Collect the time that the earliest
2155 * channel comes off pause.
2156 */
2157 debug3("%s: chan %d: skip for %d more seconds",
2158 __func__, c->self,
2159 (int)(c->notbefore - now));
2160 if (*unpause_secs == 0 ||
2161 (c->notbefore - now) < *unpause_secs)
2162 *unpause_secs = c->notbefore - now;
2163 }
2164 }
Damien Miller3ec27592001-10-12 11:35:04 +10002165 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002166 }
Damien Millera6508752012-04-22 11:21:10 +10002167 if (unpause_secs != NULL && *unpause_secs != 0)
2168 debug3("%s: first channel unpauses in %d seconds",
2169 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002170}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171
Ben Lindstrome9c99912001-06-09 00:41:05 +00002172/*
2173 * Allocate/update select bitmasks and add any bits relevant to channels in
2174 * select bitmasks.
2175 */
Damien Miller4af51302000-04-16 11:18:38 +10002176void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002177channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002178 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002179{
Damien Miller36812092006-03-26 14:22:47 +11002180 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002181
2182 n = MAX(*maxfdp, channel_max_fd);
2183
Damien Miller36812092006-03-26 14:22:47 +11002184 nfdset = howmany(n+1, NFDBITS);
2185 /* Explicitly test here, because xrealloc isn't always called */
2186 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2187 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2188 sz = nfdset * sizeof(fd_mask);
2189
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002190 /* perhaps check sz < nalloc/2 and shrink? */
2191 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002192 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2193 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002194 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002195 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002196 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002197 memset(*readsetp, 0, sz);
2198 memset(*writesetp, 0, sz);
2199
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002200 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002201 channel_handler(channel_pre, *readsetp, *writesetp,
2202 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002203}
2204
Ben Lindstrome9c99912001-06-09 00:41:05 +00002205/*
2206 * After select, perform any appropriate operations for channels which have
2207 * events pending.
2208 */
Damien Miller4af51302000-04-16 11:18:38 +10002209void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002210channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002211{
Damien Millera6508752012-04-22 11:21:10 +10002212 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002213}
2214
Ben Lindstrome9c99912001-06-09 00:41:05 +00002215
Damien Miller5e953212001-01-30 09:14:00 +11002216/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002217void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002218channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002219{
Damien Millerb38eff82000-04-01 11:09:21 +10002220 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002221 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222
Damien Miller95def091999-11-25 00:26:21 +11002223 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002224 c = channels[i];
2225 if (c == NULL)
2226 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002227
Ben Lindstrome9c99912001-06-09 00:41:05 +00002228 /*
2229 * We are only interested in channels that can have buffered
2230 * incoming data.
2231 */
Damien Miller34132e52000-01-14 15:45:46 +11002232 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002233 if (c->type != SSH_CHANNEL_OPEN &&
2234 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002235 continue;
2236 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002237 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002238 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002239 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002240 if (compat20 &&
2241 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002242 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002243 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002244 continue;
2245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002246
Damien Miller95def091999-11-25 00:26:21 +11002247 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002248 if ((c->istate == CHAN_INPUT_OPEN ||
2249 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2250 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002251 if (c->datagram) {
2252 if (len > 0) {
2253 u_char *data;
2254 u_int dlen;
2255
2256 data = buffer_get_string(&c->input,
2257 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002258 if (dlen > c->remote_window ||
2259 dlen > c->remote_maxpacket) {
2260 debug("channel %d: datagram "
2261 "too big for channel",
2262 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002263 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002264 continue;
2265 }
Damien Millerd27b9472005-12-13 19:29:02 +11002266 packet_start(SSH2_MSG_CHANNEL_DATA);
2267 packet_put_int(c->remote_id);
2268 packet_put_string(data, dlen);
2269 packet_send();
2270 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002271 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002272 }
2273 continue;
2274 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002275 /*
2276 * Send some data for the other side over the secure
2277 * connection.
2278 */
Damien Miller33b13562000-04-04 14:38:59 +10002279 if (compat20) {
2280 if (len > c->remote_window)
2281 len = c->remote_window;
2282 if (len > c->remote_maxpacket)
2283 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002284 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002285 if (packet_is_interactive()) {
2286 if (len > 1024)
2287 len = 512;
2288 } else {
2289 /* Keep the packets at reasonable size. */
2290 if (len > packet_get_maxsize()/2)
2291 len = packet_get_maxsize()/2;
2292 }
Damien Miller95def091999-11-25 00:26:21 +11002293 }
Damien Millerb38eff82000-04-01 11:09:21 +10002294 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002295 packet_start(compat20 ?
2296 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002297 packet_put_int(c->remote_id);
2298 packet_put_string(buffer_ptr(&c->input), len);
2299 packet_send();
2300 buffer_consume(&c->input, len);
2301 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002302 }
2303 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002304 if (compat13)
2305 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002306 /*
2307 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002308 * tell peer, that we will not send more data: send IEOF.
2309 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002310 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002311 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002312 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2313 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002314 else
2315 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002316 }
Damien Miller33b13562000-04-04 14:38:59 +10002317 /* Send extended data, i.e. stderr */
2318 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002319 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002320 c->remote_window > 0 &&
2321 (len = buffer_len(&c->extended)) > 0 &&
2322 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002323 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002324 c->self, c->remote_window, buffer_len(&c->extended),
2325 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002326 if (len > c->remote_window)
2327 len = c->remote_window;
2328 if (len > c->remote_maxpacket)
2329 len = c->remote_maxpacket;
2330 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2331 packet_put_int(c->remote_id);
2332 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2333 packet_put_string(buffer_ptr(&c->extended), len);
2334 packet_send();
2335 buffer_consume(&c->extended, len);
2336 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002337 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002338 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002339 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002340}
2341
Ben Lindstrome9c99912001-06-09 00:41:05 +00002342
2343/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002344
2345/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002346void
Damien Miller630d6f42002-01-22 23:17:30 +11002347channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002348{
Damien Miller34132e52000-01-14 15:45:46 +11002349 int id;
Damien Miller633de332014-05-15 13:48:26 +10002350 const u_char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002351 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002352 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002353
Damien Miller95def091999-11-25 00:26:21 +11002354 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002355 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002356 c = channel_lookup(id);
2357 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002358 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002359
Damien Miller95def091999-11-25 00:26:21 +11002360 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002361 if (c->type != SSH_CHANNEL_OPEN &&
2362 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002363 return;
2364
Damien Miller95def091999-11-25 00:26:21 +11002365 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002366 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002367 win_len = data_len;
2368 if (c->datagram)
2369 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002370
Damien Millera04ad492004-01-21 11:02:09 +11002371 /*
2372 * Ignore data for protocol > 1.3 if output end is no longer open.
2373 * For protocol 2 the sending side is reducing its window as it sends
2374 * data, so we must 'fake' consumption of the data in order to ensure
2375 * that window updates are sent back. Otherwise the connection might
2376 * deadlock.
2377 */
2378 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2379 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002380 c->local_window -= win_len;
2381 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002382 }
Damien Millera04ad492004-01-21 11:02:09 +11002383 return;
2384 }
2385
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002386 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002387 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002388 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002389 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002390 }
Damien Miller7d457182010-08-05 23:09:48 +10002391 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002392 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002393 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002394 return;
2395 }
Damien Miller7d457182010-08-05 23:09:48 +10002396 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002397 }
Damien Millerd27b9472005-12-13 19:29:02 +11002398 if (c->datagram)
2399 buffer_put_string(&c->output, data, data_len);
2400 else
2401 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002402 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002403}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002404
Damien Millerd79b4242006-03-31 23:11:44 +11002405/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002406void
Damien Miller630d6f42002-01-22 23:17:30 +11002407channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002408{
2409 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002410 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002411 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002412 Channel *c;
2413
2414 /* Get the channel number and verify it. */
2415 id = packet_get_int();
2416 c = channel_lookup(id);
2417
2418 if (c == NULL)
2419 packet_disconnect("Received extended_data for bad channel %d.", id);
2420 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002421 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002422 return;
2423 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002424 if (c->flags & CHAN_EOF_RCVD) {
2425 if (datafellows & SSH_BUG_EXTEOF)
2426 debug("channel %d: accepting ext data after eof", id);
2427 else
2428 packet_disconnect("Received extended_data after EOF "
2429 "on channel %d.", id);
2430 }
Damien Miller33b13562000-04-04 14:38:59 +10002431 tcode = packet_get_int();
2432 if (c->efd == -1 ||
2433 c->extended_usage != CHAN_EXTENDED_WRITE ||
2434 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002435 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002436 return;
2437 }
2438 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002439 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002440 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002441 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002442 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002443 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002444 return;
2445 }
Damien Millerd3444942000-09-30 14:20:03 +11002446 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002447 c->local_window -= data_len;
2448 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002449 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002450}
2451
Damien Millerd79b4242006-03-31 23:11:44 +11002452/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002453void
Damien Miller630d6f42002-01-22 23:17:30 +11002454channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002455{
2456 int id;
2457 Channel *c;
2458
Damien Millerb38eff82000-04-01 11:09:21 +10002459 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002460 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002461 c = channel_lookup(id);
2462 if (c == NULL)
2463 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2464 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002465
2466 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002467 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002468 debug("channel %d: FORCE input drain", c->self);
2469 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002470 if (buffer_len(&c->input) == 0)
2471 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002472 }
2473
Damien Millerb38eff82000-04-01 11:09:21 +10002474}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002475
Damien Millerd79b4242006-03-31 23:11:44 +11002476/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002477void
Damien Miller630d6f42002-01-22 23:17:30 +11002478channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002479{
Damien Millerb38eff82000-04-01 11:09:21 +10002480 int id;
2481 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002482
Damien Millerb38eff82000-04-01 11:09:21 +10002483 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002484 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002485 c = channel_lookup(id);
2486 if (c == NULL)
2487 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002488
2489 /*
2490 * Send a confirmation that we have closed the channel and no more
2491 * data is coming for it.
2492 */
Damien Miller95def091999-11-25 00:26:21 +11002493 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002494 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002495 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002496
Damien Miller5428f641999-11-25 11:54:57 +11002497 /*
2498 * If the channel is in closed state, we have sent a close request,
2499 * and the other side will eventually respond with a confirmation.
2500 * Thus, we cannot free the channel here, because then there would be
2501 * no-one to receive the confirmation. The channel gets freed when
2502 * the confirmation arrives.
2503 */
Damien Millerb38eff82000-04-01 11:09:21 +10002504 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002505 /*
2506 * Not a closed channel - mark it as draining, which will
2507 * cause it to be freed later.
2508 */
Damien Miller76765c02002-01-22 23:21:15 +11002509 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002510 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002511 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002512}
2513
Damien Millerb38eff82000-04-01 11:09:21 +10002514/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002515/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002516void
Damien Miller630d6f42002-01-22 23:17:30 +11002517channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002518{
Damien Millerb38eff82000-04-01 11:09:21 +10002519 int id = packet_get_int();
2520 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002521
Damien Miller48b03fc2002-01-22 23:11:40 +11002522 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002523 if (c == NULL)
2524 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2525 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002526}
2527
Damien Millerd79b4242006-03-31 23:11:44 +11002528/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002529void
Damien Miller630d6f42002-01-22 23:17:30 +11002530channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002531{
2532 int id = packet_get_int();
2533 Channel *c = channel_lookup(id);
2534
Damien Miller48b03fc2002-01-22 23:11:40 +11002535 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002536 if (c == NULL)
2537 packet_disconnect("Received close confirmation for "
2538 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002539 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002540 packet_disconnect("Received close confirmation for "
2541 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002542 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002543}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002544
Damien Millerd79b4242006-03-31 23:11:44 +11002545/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002546void
Damien Miller630d6f42002-01-22 23:17:30 +11002547channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002548{
Damien Millerb38eff82000-04-01 11:09:21 +10002549 int id, remote_id;
2550 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551
Damien Millerb38eff82000-04-01 11:09:21 +10002552 id = packet_get_int();
2553 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002554
Damien Millerb38eff82000-04-01 11:09:21 +10002555 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2556 packet_disconnect("Received open confirmation for "
2557 "non-opening channel %d.", id);
2558 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002559 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002560 c->remote_id = remote_id;
2561 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002562
2563 if (compat20) {
2564 c->remote_window = packet_get_int();
2565 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002566 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002567 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002568 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002569 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002570 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002571 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002572 c->remote_window, c->remote_maxpacket);
2573 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002574 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002575}
2576
Ben Lindstrombba81212001-06-25 05:01:22 +00002577static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002578reason2txt(int reason)
2579{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002580 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002581 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2582 return "administratively prohibited";
2583 case SSH2_OPEN_CONNECT_FAILED:
2584 return "connect failed";
2585 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2586 return "unknown channel type";
2587 case SSH2_OPEN_RESOURCE_SHORTAGE:
2588 return "resource shortage";
2589 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002590 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002591}
2592
Damien Millerd79b4242006-03-31 23:11:44 +11002593/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002594void
Damien Miller630d6f42002-01-22 23:17:30 +11002595channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002596{
Kevin Steves12057502001-02-05 14:54:34 +00002597 int id, reason;
2598 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002599 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002600
Damien Millerb38eff82000-04-01 11:09:21 +10002601 id = packet_get_int();
2602 c = channel_lookup(id);
2603
2604 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2605 packet_disconnect("Received open failure for "
2606 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002607 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002608 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002609 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002610 msg = packet_get_string(NULL);
2611 lang = packet_get_string(NULL);
2612 }
Damien Miller996acd22003-04-09 20:59:48 +10002613 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002614 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002615 free(msg);
2616 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002617 if (c->open_confirm) {
2618 debug2("callback start");
2619 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2620 debug2("callback done");
2621 }
Damien Miller33b13562000-04-04 14:38:59 +10002622 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002623 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002624 /* Schedule the channel for cleanup/deletion. */
2625 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002626}
2627
Damien Millerd79b4242006-03-31 23:11:44 +11002628/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002629void
Damien Miller630d6f42002-01-22 23:17:30 +11002630channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002631{
2632 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002633 int id;
2634 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002635
2636 if (!compat20)
2637 return;
2638
2639 /* Get the channel number and verify it. */
2640 id = packet_get_int();
2641 c = channel_lookup(id);
2642
Damien Millerd47c62a2005-12-13 19:33:57 +11002643 if (c == NULL) {
2644 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002645 return;
2646 }
2647 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002648 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002649 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002650 c->remote_window += adjust;
2651}
2652
Damien Millerd79b4242006-03-31 23:11:44 +11002653/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002654void
Damien Miller630d6f42002-01-22 23:17:30 +11002655channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002656{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002657 Channel *c = NULL;
2658 u_short host_port;
2659 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002660 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002661
Ben Lindstrome9c99912001-06-09 00:41:05 +00002662 remote_id = packet_get_int();
2663 host = packet_get_string(NULL);
2664 host_port = packet_get_int();
2665
2666 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2667 originator_string = packet_get_string(NULL);
2668 } else {
2669 originator_string = xstrdup("unknown (remote did not supply name)");
2670 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002671 packet_check_eom();
Damien Miller7acefbb2014-07-18 14:11:24 +10002672 c = channel_connect_to_port(host, host_port,
Damien Millerbd740252008-05-19 15:37:09 +10002673 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002674 free(originator_string);
2675 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002676 if (c == NULL) {
2677 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2678 packet_put_int(remote_id);
2679 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002680 } else
2681 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002682}
2683
Damien Millerb84886b2008-05-19 15:05:07 +10002684/* ARGSUSED */
2685void
2686channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2687{
2688 Channel *c;
2689 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002690 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002691
2692 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002693 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002694
Damien Miller16a73072008-12-08 09:55:25 +11002695 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002696 packet_check_eom();
2697
Damien Miller16a73072008-12-08 09:55:25 +11002698 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002699
Damien Miller16a73072008-12-08 09:55:25 +11002700 if ((c = channel_lookup(id)) == NULL) {
2701 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002702 return;
2703 }
2704 ;
2705 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2706 return;
2707 cc->cb(type, c, cc->ctx);
2708 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11002709 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002710 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +10002711}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002712
Ben Lindstrome9c99912001-06-09 00:41:05 +00002713/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002714
Ben Lindstrom908afed2001-10-03 17:34:59 +00002715void
2716channel_set_af(int af)
2717{
2718 IPv4or6 = af;
2719}
2720
Damien Millerf6dff7c2011-09-22 21:38:52 +10002721
2722/*
2723 * Determine whether or not a port forward listens to loopback, the
2724 * specified address or wildcard. On the client, a specified bind
2725 * address will always override gateway_ports. On the server, a
2726 * gateway_ports of 1 (``yes'') will override the client's specification
2727 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2728 * will bind to whatever address the client asked for.
2729 *
2730 * Special-case listen_addrs are:
2731 *
2732 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2733 * "" (empty string), "*" -> wildcard v4/v6
2734 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10002735 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10002736 */
2737static const char *
2738channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10002739 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002740{
2741 const char *addr = NULL;
2742 int wildcard = 0;
2743
2744 if (listen_addr == NULL) {
2745 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10002746 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002747 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002748 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002749 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2750 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2751 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10002752 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002753 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11002754 /*
2755 * Notify client if they requested a specific listen
2756 * address and it was overridden.
2757 */
2758 if (*listen_addr != '\0' &&
2759 strcmp(listen_addr, "0.0.0.0") != 0 &&
2760 strcmp(listen_addr, "*") != 0) {
2761 packet_send_debug("Forwarding listen address "
2762 "\"%s\" overridden by server "
2763 "GatewayPorts", listen_addr);
2764 }
Damien Miller602943d2014-07-04 08:59:41 +10002765 } else if (strcmp(listen_addr, "localhost") != 0 ||
2766 strcmp(listen_addr, "127.0.0.1") == 0 ||
2767 strcmp(listen_addr, "::1") == 0) {
2768 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10002769 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10002770 }
2771 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
2772 strcmp(listen_addr, "::1") == 0) {
2773 /*
2774 * If a specific IPv4/IPv6 localhost address has been
2775 * requested then accept it even if gateway_ports is in
2776 * effect. This allows the client to prefer IPv4 or IPv6.
2777 */
2778 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002779 }
2780 if (wildcardp != NULL)
2781 *wildcardp = wildcard;
2782 return addr;
2783}
2784
Damien Millerb16461c2002-01-22 23:29:22 +11002785static int
Damien Miller7acefbb2014-07-18 14:11:24 +10002786channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd,
2787 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002788{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002789 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002790 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002791 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002792 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002793 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002794 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002795
Damien Millerb16461c2002-01-22 23:29:22 +11002796 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10002797 fwd->listen_host : fwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002798 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002799
Damien Millerb16461c2002-01-22 23:29:22 +11002800 if (host == NULL) {
2801 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002802 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002803 }
Damien Miller9576ac42009-01-28 16:30:33 +11002804 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002805 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002806 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002807 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002808
Damien Millerf6dff7c2011-09-22 21:38:52 +10002809 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10002810 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
2811 is_client, fwd_opts);
2812 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002813 type, wildcard, (addr == NULL) ? "NULL" : addr);
2814
2815 /*
Damien Miller34132e52000-01-14 15:45:46 +11002816 * getaddrinfo returns a loopback address if the hostname is
2817 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002818 */
Damien Miller34132e52000-01-14 15:45:46 +11002819 memset(&hints, 0, sizeof(hints));
2820 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002821 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002822 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10002823 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002824 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2825 if (addr == NULL) {
2826 /* This really shouldn't happen */
2827 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002828 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002829 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002830 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11002831 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002832 }
Damien Millera7270302005-07-06 09:36:05 +10002833 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002834 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002835 if (allocated_listen_port != NULL)
2836 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002837 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002838 switch (ai->ai_family) {
2839 case AF_INET:
2840 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2841 sin_port;
2842 break;
2843 case AF_INET6:
2844 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2845 sin6_port;
2846 break;
2847 default:
Damien Miller34132e52000-01-14 15:45:46 +11002848 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002849 }
2850 /*
2851 * If allocating a port for -R forwards, then use the
2852 * same port for all address families.
2853 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002854 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002855 allocated_listen_port != NULL && *allocated_listen_port > 0)
2856 *lport_p = htons(*allocated_listen_port);
2857
Damien Miller34132e52000-01-14 15:45:46 +11002858 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2859 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10002860 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11002861 continue;
2862 }
2863 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002864 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002865 if (sock < 0) {
2866 /* this is no error since kernel may not support ipv6 */
2867 verbose("socket: %.100s", strerror(errno));
2868 continue;
2869 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002870
2871 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002872 if (ai->ai_family == AF_INET6)
2873 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002874
Damien Miller4bf648f2009-02-14 16:28:21 +11002875 debug("Local forwarding listening on %s port %s.",
2876 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002877
Damien Miller34132e52000-01-14 15:45:46 +11002878 /* Bind the socket to the address. */
2879 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2880 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002881 if (!ai->ai_next)
2882 error("bind: %.100s", strerror(errno));
2883 else
2884 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002885
Damien Miller34132e52000-01-14 15:45:46 +11002886 close(sock);
2887 continue;
2888 }
2889 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002890 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002891 error("listen: %.100s", strerror(errno));
2892 close(sock);
2893 continue;
2894 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002895
2896 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10002897 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11002898 * record what we got.
2899 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002900 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002901 allocated_listen_port != NULL &&
2902 *allocated_listen_port == 0) {
2903 *allocated_listen_port = get_sock_port(sock, 1);
2904 debug("Allocated listen port %d",
2905 *allocated_listen_port);
2906 }
2907
Damien Miller34132e52000-01-14 15:45:46 +11002908 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002909 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002910 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002911 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002912 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10002913 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002914 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10002915 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11002916 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2917 c->listening_port = *allocated_listen_port;
2918 else
Damien Miller7acefbb2014-07-18 14:11:24 +10002919 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002920 success = 1;
2921 }
2922 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10002923 error("%s: cannot listen to port: %d", __func__,
2924 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002925 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002926 return success;
Damien Miller95def091999-11-25 00:26:21 +11002927}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002928
Damien Miller7acefbb2014-07-18 14:11:24 +10002929static int
2930channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
2931 struct ForwardOptions *fwd_opts)
2932{
2933 struct sockaddr_un sunaddr;
2934 const char *path;
2935 Channel *c;
2936 int port, sock;
2937 mode_t omask;
2938
2939 switch (type) {
2940 case SSH_CHANNEL_UNIX_LISTENER:
2941 if (fwd->connect_path != NULL) {
2942 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
2943 error("Local connecting path too long: %s",
2944 fwd->connect_path);
2945 return 0;
2946 }
2947 path = fwd->connect_path;
2948 port = PORT_STREAMLOCAL;
2949 } else {
2950 if (fwd->connect_host == NULL) {
2951 error("No forward host name.");
2952 return 0;
2953 }
2954 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
2955 error("Forward host name too long.");
2956 return 0;
2957 }
2958 path = fwd->connect_host;
2959 port = fwd->connect_port;
2960 }
2961 break;
2962 case SSH_CHANNEL_RUNIX_LISTENER:
2963 path = fwd->listen_path;
2964 port = PORT_STREAMLOCAL;
2965 break;
2966 default:
2967 error("%s: unexpected channel type %d", __func__, type);
2968 return 0;
2969 }
2970
2971 if (fwd->listen_path == NULL) {
2972 error("No forward path name.");
2973 return 0;
2974 }
2975 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
2976 error("Local listening path too long: %s", fwd->listen_path);
2977 return 0;
2978 }
2979
2980 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
2981
2982 /* Start a Unix domain listener. */
2983 omask = umask(fwd_opts->streamlocal_bind_mask);
2984 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
2985 fwd_opts->streamlocal_bind_unlink);
2986 umask(omask);
2987 if (sock < 0)
2988 return 0;
2989
2990 debug("Local forwarding listening on path %s.", fwd->listen_path);
2991
2992 /* Allocate a channel number for the socket. */
2993 c = channel_new("unix listener", type, sock, sock, -1,
2994 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
2995 0, "unix listener", 1);
2996 c->path = xstrdup(path);
2997 c->host_port = port;
2998 c->listening_port = PORT_STREAMLOCAL;
2999 c->listening_addr = xstrdup(fwd->listen_path);
3000 return 1;
3001}
3002
3003static int
3004channel_cancel_rport_listener_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003005{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003006 u_int i;
3007 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003008
Darren Tucker47eede72005-03-14 23:08:12 +11003009 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003010 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003011 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3012 continue;
3013 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3014 debug2("%s: close channel %d", __func__, i);
3015 channel_free(c);
3016 found = 1;
3017 }
3018 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003019
Damien Millerf6dff7c2011-09-22 21:38:52 +10003020 return (found);
3021}
3022
Damien Miller7acefbb2014-07-18 14:11:24 +10003023static int
3024channel_cancel_rport_listener_streamlocal(const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003025{
3026 u_int i;
3027 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003028
3029 for (i = 0; i < channels_alloc; i++) {
3030 Channel *c = channels[i];
3031 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3032 continue;
3033 if (c->path == NULL)
3034 continue;
3035 if (strcmp(c->path, path) == 0) {
3036 debug2("%s: close channel %d", __func__, i);
3037 channel_free(c);
3038 found = 1;
3039 }
3040 }
3041
3042 return (found);
3043}
3044
3045int
3046channel_cancel_rport_listener(struct Forward *fwd)
3047{
3048 if (fwd->listen_path != NULL)
3049 return channel_cancel_rport_listener_streamlocal(fwd->listen_path);
3050 else
3051 return channel_cancel_rport_listener_tcpip(fwd->listen_host, fwd->listen_port);
3052}
3053
3054static int
3055channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport,
3056 int cport, struct ForwardOptions *fwd_opts)
3057{
3058 u_int i;
3059 int found = 0;
3060 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003061
3062 for (i = 0; i < channels_alloc; i++) {
3063 Channel *c = channels[i];
3064 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3065 continue;
Damien Millerff773642011-09-22 21:39:48 +10003066 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003067 continue;
Damien Millerff773642011-09-22 21:39:48 +10003068 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3069 /* skip dynamic forwardings */
3070 if (c->host_port == 0)
3071 continue;
3072 } else {
3073 if (c->host_port != cport)
3074 continue;
3075 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003076 if ((c->listening_addr == NULL && addr != NULL) ||
3077 (c->listening_addr != NULL && addr == NULL))
3078 continue;
3079 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003080 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10003081 channel_free(c);
3082 found = 1;
3083 }
3084 }
3085
3086 return (found);
3087}
3088
Damien Miller7acefbb2014-07-18 14:11:24 +10003089static int
3090channel_cancel_lport_listener_streamlocal(const char *path)
3091{
3092 u_int i;
3093 int found = 0;
3094
3095 if (path == NULL) {
3096 error("%s: no path specified.", __func__);
3097 return 0;
3098 }
3099
3100 for (i = 0; i < channels_alloc; i++) {
3101 Channel *c = channels[i];
3102 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3103 continue;
3104 if (c->listening_addr == NULL)
3105 continue;
3106 if (strcmp(c->listening_addr, path) == 0) {
3107 debug2("%s: close channel %d", __func__, i);
3108 channel_free(c);
3109 found = 1;
3110 }
3111 }
3112
3113 return (found);
3114}
3115
3116int
3117channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
3118{
3119 if (fwd->listen_path != NULL)
3120 return channel_cancel_lport_listener_streamlocal(fwd->listen_path);
3121 else
3122 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3123}
3124
Damien Millerb16461c2002-01-22 23:29:22 +11003125/* protocol local port fwd, used by ssh (and sshd in v1) */
3126int
Damien Miller7acefbb2014-07-18 14:11:24 +10003127channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003128{
Damien Miller7acefbb2014-07-18 14:11:24 +10003129 if (fwd->listen_path != NULL) {
3130 return channel_setup_fwd_listener_streamlocal(
3131 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3132 } else {
3133 return channel_setup_fwd_listener_tcpip(SSH_CHANNEL_PORT_LISTENER,
3134 fwd, NULL, fwd_opts);
3135 }
Damien Millerb16461c2002-01-22 23:29:22 +11003136}
3137
3138/* protocol v2 remote port fwd, used by sshd */
3139int
Damien Miller7acefbb2014-07-18 14:11:24 +10003140channel_setup_remote_fwd_listener(struct Forward *fwd,
3141 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003142{
Damien Miller7acefbb2014-07-18 14:11:24 +10003143 if (fwd->listen_path != NULL) {
3144 return channel_setup_fwd_listener_streamlocal(
3145 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3146 } else {
3147 return channel_setup_fwd_listener_tcpip(
3148 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3149 fwd_opts);
3150 }
Damien Millerb16461c2002-01-22 23:29:22 +11003151}
3152
Damien Miller5428f641999-11-25 11:54:57 +11003153/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003154 * Translate the requested rfwd listen host to something usable for
3155 * this server.
3156 */
3157static const char *
3158channel_rfwd_bind_host(const char *listen_host)
3159{
3160 if (listen_host == NULL) {
3161 if (datafellows & SSH_BUG_RFWD_ADDR)
3162 return "127.0.0.1";
3163 else
3164 return "localhost";
3165 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3166 if (datafellows & SSH_BUG_RFWD_ADDR)
3167 return "0.0.0.0";
3168 else
3169 return "";
3170 } else
3171 return listen_host;
3172}
3173
3174/*
Damien Miller5428f641999-11-25 11:54:57 +11003175 * Initiate forwarding of connections to port "port" on remote host through
3176 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003177 * Returns handle (index) for updating the dynamic listen port with
3178 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003179 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003180int
Damien Miller7acefbb2014-07-18 14:11:24 +10003181channel_request_remote_forwarding(struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003182{
Darren Tucker68afb8c2011-10-02 18:59:03 +11003183 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003184
Damien Miller95def091999-11-25 00:26:21 +11003185 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10003186 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10003187 packet_start(SSH2_MSG_GLOBAL_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003188 if (fwd->listen_path != NULL) {
3189 packet_put_cstring("streamlocal-forward@openssh.com");
3190 packet_put_char(1); /* boolean: want reply */
3191 packet_put_cstring(fwd->listen_path);
3192 } else {
3193 packet_put_cstring("tcpip-forward");
3194 packet_put_char(1); /* boolean: want reply */
3195 packet_put_cstring(channel_rfwd_bind_host(fwd->listen_host));
3196 packet_put_int(fwd->listen_port);
3197 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003198 packet_send();
3199 packet_write_wait();
3200 /* Assume that server accepts the request */
3201 success = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003202 } else if (fwd->listen_path == NULL) {
Damien Miller33b13562000-04-04 14:38:59 +10003203 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003204 packet_put_int(fwd->listen_port);
3205 packet_put_cstring(fwd->connect_host);
3206 packet_put_int(fwd->connect_port);
Damien Miller33b13562000-04-04 14:38:59 +10003207 packet_send();
3208 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003209
3210 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003211 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003212 switch (type) {
3213 case SSH_SMSG_SUCCESS:
3214 success = 1;
3215 break;
3216 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003217 break;
3218 default:
3219 /* Unknown packet */
3220 packet_disconnect("Protocol error for port forward request:"
3221 "received packet type %d.", type);
3222 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003223 } else {
3224 logit("Warning: Server does not support remote stream local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11003225 }
3226 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003227 /* Record that connection to this host/port is permitted. */
3228 permitted_opens = xrealloc(permitted_opens,
3229 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003230 idx = num_permitted_opens++;
Damien Miller7acefbb2014-07-18 14:11:24 +10003231 if (fwd->connect_path != NULL) {
3232 permitted_opens[idx].host_to_connect =
3233 xstrdup(fwd->connect_path);
3234 permitted_opens[idx].port_to_connect =
3235 PORT_STREAMLOCAL;
3236 } else {
3237 permitted_opens[idx].host_to_connect =
3238 xstrdup(fwd->connect_host);
3239 permitted_opens[idx].port_to_connect =
3240 fwd->connect_port;
3241 }
3242 if (fwd->listen_path != NULL) {
3243 permitted_opens[idx].listen_host = NULL;
3244 permitted_opens[idx].listen_path =
3245 xstrdup(fwd->listen_path);
3246 permitted_opens[idx].listen_port = PORT_STREAMLOCAL;
3247 } else {
3248 permitted_opens[idx].listen_host =
3249 fwd->listen_host ? xstrdup(fwd->listen_host) : NULL;
3250 permitted_opens[idx].listen_path = NULL;
3251 permitted_opens[idx].listen_port = fwd->listen_port;
3252 }
Damien Miller33b13562000-04-04 14:38:59 +10003253 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003254 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003255}
3256
Damien Miller4b3ed642014-07-02 15:29:40 +10003257static int
3258open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003259 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003260{
3261 if (allowed_open->host_to_connect == NULL)
3262 return 0;
3263 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3264 allowed_open->port_to_connect != requestedport)
3265 return 0;
3266 if (strcmp(allowed_open->host_to_connect, requestedhost) != 0)
3267 return 0;
3268 return 1;
3269}
3270
3271/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003272 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003273 * we don't support FWD_PERMIT_ANY_PORT and
3274 * need to translate between the configured-host (listen_host)
3275 * and what we've sent to the remote server (channel_rfwd_bind_host)
3276 */
3277static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003278open_listen_match_tcpip(ForwardPermission *allowed_open,
3279 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003280{
3281 const char *allowed_host;
3282
3283 if (allowed_open->host_to_connect == NULL)
3284 return 0;
3285 if (allowed_open->listen_port != requestedport)
3286 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003287 if (!translate && allowed_open->listen_host == NULL &&
3288 requestedhost == NULL)
3289 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003290 allowed_host = translate ?
3291 channel_rfwd_bind_host(allowed_open->listen_host) :
3292 allowed_open->listen_host;
3293 if (allowed_host == NULL ||
3294 strcmp(allowed_host, requestedhost) != 0)
3295 return 0;
3296 return 1;
3297}
3298
Damien Miller7acefbb2014-07-18 14:11:24 +10003299static int
3300open_listen_match_streamlocal(ForwardPermission *allowed_open,
3301 const char *requestedpath)
3302{
3303 if (allowed_open->host_to_connect == NULL)
3304 return 0;
3305 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3306 return 0;
3307 if (allowed_open->listen_path == NULL ||
3308 strcmp(allowed_open->listen_path, requestedpath) != 0)
3309 return 0;
3310 return 1;
3311}
3312
Damien Miller5428f641999-11-25 11:54:57 +11003313/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003314 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003315 * local side.
3316 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003317static int
3318channel_request_rforward_cancel_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003319{
3320 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003321
3322 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003323 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003324
3325 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003326 if (open_listen_match_tcpip(&permitted_opens[i], host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003327 break;
3328 }
3329 if (i >= num_permitted_opens) {
3330 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003331 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003332 }
3333 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3334 packet_put_cstring("cancel-tcpip-forward");
3335 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003336 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003337 packet_put_int(port);
3338 packet_send();
3339
Damien Miller4b3ed642014-07-02 15:29:40 +10003340 permitted_opens[i].listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003341 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003342 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003343 permitted_opens[i].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003344 free(permitted_opens[i].listen_host);
3345 permitted_opens[i].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003346 permitted_opens[i].listen_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003347
3348 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003349}
3350
3351/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003352 * Request cancellation of remote forwarding of Unix domain socket
3353 * path from local side.
3354 */
3355static int
3356channel_request_rforward_cancel_streamlocal(const char *path)
3357{
3358 int i;
3359
3360 if (!compat20)
3361 return -1;
3362
3363 for (i = 0; i < num_permitted_opens; i++) {
3364 if (open_listen_match_streamlocal(&permitted_opens[i], path))
3365 break;
3366 }
3367 if (i >= num_permitted_opens) {
3368 debug("%s: requested forward not found", __func__);
3369 return -1;
3370 }
3371 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3372 packet_put_cstring("cancel-streamlocal-forward@openssh.com");
3373 packet_put_char(0);
3374 packet_put_cstring(path);
3375 packet_send();
3376
3377 permitted_opens[i].listen_port = 0;
3378 permitted_opens[i].port_to_connect = 0;
3379 free(permitted_opens[i].host_to_connect);
3380 permitted_opens[i].host_to_connect = NULL;
3381 permitted_opens[i].listen_host = NULL;
3382 free(permitted_opens[i].listen_path);
3383 permitted_opens[i].listen_path = NULL;
3384
3385 return 0;
3386}
3387
3388/*
3389 * Request cancellation of remote forwarding of a connection from local side.
3390 */
3391int
3392channel_request_rforward_cancel(struct Forward *fwd)
3393{
3394 if (fwd->listen_path != NULL) {
3395 return (channel_request_rforward_cancel_streamlocal(
3396 fwd->listen_path));
3397 } else {
3398 return (channel_request_rforward_cancel_tcpip(fwd->listen_host,
3399 fwd->listen_port ? fwd->listen_port : fwd->allocated_port));
3400 }
3401}
3402
3403/*
Damien Miller5428f641999-11-25 11:54:57 +11003404 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3405 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003406 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003407 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003408int
Damien Miller7acefbb2014-07-18 14:11:24 +10003409channel_input_port_forward_request(int is_root, struct ForwardOptions *fwd_opts)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003410{
Darren Tuckere7d4b192006-07-12 22:17:10 +10003411 int success = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003412 struct Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003413
Damien Miller95def091999-11-25 00:26:21 +11003414 /* Get arguments from the packet. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003415 memset(&fwd, 0, sizeof(fwd));
3416 fwd.listen_port = packet_get_int();
3417 fwd.connect_host = packet_get_string(NULL);
3418 fwd.connect_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003419
Damien Millerbac2d8a2000-09-05 16:13:06 +11003420#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003421 /*
3422 * Check that an unprivileged user is not trying to forward a
3423 * privileged port.
3424 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003425 if (fwd.listen_port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003426 packet_disconnect(
3427 "Requested forwarding of port %d but user is not root.",
Damien Miller7acefbb2014-07-18 14:11:24 +10003428 fwd.listen_port);
3429 if (fwd.connect_port == 0)
Darren Tucker9189ff82003-07-03 13:52:04 +10003430 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003431#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003432
Damien Miller0bc1bd82000-11-13 22:57:25 +11003433 /* Initiate forwarding */
Damien Miller7acefbb2014-07-18 14:11:24 +10003434 success = channel_setup_local_fwd_listener(&fwd, fwd_opts);
Damien Miller95def091999-11-25 00:26:21 +11003435
3436 /* Free the argument string. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003437 free(fwd.connect_host);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003438
3439 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003440}
3441
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003442/*
3443 * Permits opening to any host/port if permitted_opens[] is empty. This is
3444 * usually called by the server, because the user could connect to any port
3445 * anyway, and the server has no way to know but to trust the client anyway.
3446 */
3447void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003448channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003449{
3450 if (num_permitted_opens == 0)
3451 all_opens_permitted = 1;
3452}
3453
Ben Lindstroma3700052001-04-05 23:26:32 +00003454void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003455channel_add_permitted_opens(char *host, int port)
3456{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003457 debug("allow port forwarding to host %s port %d", host, port);
3458
Damien Miller232cfb12010-06-26 09:50:30 +10003459 permitted_opens = xrealloc(permitted_opens,
3460 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003461 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3462 permitted_opens[num_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003463 permitted_opens[num_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003464 permitted_opens[num_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003465 permitted_opens[num_permitted_opens].listen_port = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003466 num_permitted_opens++;
3467
3468 all_opens_permitted = 0;
3469}
3470
Darren Tucker68afb8c2011-10-02 18:59:03 +11003471/*
3472 * Update the listen port for a dynamic remote forward, after
3473 * the actual 'newport' has been allocated. If 'newport' < 0 is
3474 * passed then they entry will be invalidated.
3475 */
3476void
3477channel_update_permitted_opens(int idx, int newport)
3478{
3479 if (idx < 0 || idx >= num_permitted_opens) {
3480 debug("channel_update_permitted_opens: index out of range:"
3481 " %d num_permitted_opens %d", idx, num_permitted_opens);
3482 return;
3483 }
3484 debug("%s allowed port %d for forwarding to host %s port %d",
3485 newport > 0 ? "Updating" : "Removing",
3486 newport,
3487 permitted_opens[idx].host_to_connect,
3488 permitted_opens[idx].port_to_connect);
3489 if (newport >= 0) {
3490 permitted_opens[idx].listen_port =
3491 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3492 } else {
3493 permitted_opens[idx].listen_port = 0;
3494 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003495 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003496 permitted_opens[idx].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003497 free(permitted_opens[idx].listen_host);
3498 permitted_opens[idx].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003499 free(permitted_opens[idx].listen_path);
3500 permitted_opens[idx].listen_path = NULL;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003501 }
3502}
3503
Damien Millera765cf42006-07-24 14:08:13 +10003504int
Damien Miller9b439df2006-07-24 14:04:00 +10003505channel_add_adm_permitted_opens(char *host, int port)
3506{
Damien Millera765cf42006-07-24 14:08:13 +10003507 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003508
Damien Miller232cfb12010-06-26 09:50:30 +10003509 permitted_adm_opens = xrealloc(permitted_adm_opens,
3510 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003511 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3512 = xstrdup(host);
3513 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003514 permitted_adm_opens[num_adm_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003515 permitted_adm_opens[num_adm_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003516 permitted_adm_opens[num_adm_permitted_opens].listen_port = 0;
Damien Millera765cf42006-07-24 14:08:13 +10003517 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003518}
3519
3520void
Damien Millerc6081482012-04-22 11:18:53 +10003521channel_disable_adm_local_opens(void)
3522{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003523 channel_clear_adm_permitted_opens();
3524 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3525 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3526 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003527}
3528
3529void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003530channel_clear_permitted_opens(void)
3531{
3532 int i;
3533
Damien Miller4b3ed642014-07-02 15:29:40 +10003534 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003535 free(permitted_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003536 free(permitted_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003537 free(permitted_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003538 }
Darren Tuckera627d422013-06-02 07:31:17 +10003539 free(permitted_opens);
3540 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003541 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003542}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003543
Damien Miller9b439df2006-07-24 14:04:00 +10003544void
3545channel_clear_adm_permitted_opens(void)
3546{
3547 int i;
3548
Damien Miller4b3ed642014-07-02 15:29:40 +10003549 for (i = 0; i < num_adm_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003550 free(permitted_adm_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003551 free(permitted_adm_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003552 free(permitted_adm_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003553 }
Darren Tuckera627d422013-06-02 07:31:17 +10003554 free(permitted_adm_opens);
3555 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003556 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003557}
3558
Darren Tuckere7140f22008-06-10 23:01:51 +10003559void
3560channel_print_adm_permitted_opens(void)
3561{
Damien Miller6ef17492008-07-16 22:42:06 +10003562 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003563
Damien Millerb53d8a12009-01-28 16:13:04 +11003564 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003565 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003566 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003567 return;
3568 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003569 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003570 if (permitted_adm_opens[i].host_to_connect == NULL)
3571 printf(" none");
3572 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003573 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3574 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003575 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003576}
3577
Darren Tucker1338b9e2011-10-02 18:57:35 +11003578/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3579int
3580permitopen_port(const char *p)
3581{
3582 int port;
3583
3584 if (strcmp(p, "*") == 0)
3585 return FWD_PERMIT_ANY_PORT;
3586 if ((port = a2port(p)) > 0)
3587 return port;
3588 return -1;
3589}
3590
Damien Millerbd740252008-05-19 15:37:09 +10003591/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003592static int
Damien Millerbd740252008-05-19 15:37:09 +10003593connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003594{
Damien Millerbd740252008-05-19 15:37:09 +10003595 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003596 struct sockaddr_un *sunaddr;
3597 char ntop[NI_MAXHOST], strport[MAX(NI_MAXSERV,sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003598
Damien Millerbd740252008-05-19 15:37:09 +10003599 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003600 switch (cctx->ai->ai_family) {
3601 case AF_UNIX:
3602 /* unix:pathname instead of host:port */
3603 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3604 strlcpy(ntop, "unix", sizeof(ntop));
3605 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3606 break;
3607 case AF_INET:
3608 case AF_INET6:
3609 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3610 ntop, sizeof(ntop), strport, sizeof(strport),
3611 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3612 error("connect_next: getnameinfo failed");
3613 continue;
3614 }
3615 break;
3616 default:
Damien Miller34132e52000-01-14 15:45:46 +11003617 continue;
3618 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003619 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3620 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003621 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003622 error("socket: %.100s", strerror(errno));
3623 else
3624 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003625 continue;
3626 }
Damien Miller232711f2004-06-15 10:35:30 +10003627 if (set_nonblock(sock) == -1)
3628 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003629 if (connect(sock, cctx->ai->ai_addr,
3630 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3631 debug("connect_next: host %.100s ([%.100s]:%s): "
3632 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003633 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003634 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003635 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003636 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003637 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003638 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003639 if (cctx->ai->ai_family != AF_UNIX)
3640 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003641 debug("connect_next: host %.100s ([%.100s]:%s) "
3642 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3643 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10003644 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003645 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003646 return -1;
3647}
Damien Millerb38eff82000-04-01 11:09:21 +10003648
Damien Millerbd740252008-05-19 15:37:09 +10003649static void
3650channel_connect_ctx_free(struct channel_connect *cctx)
3651{
Darren Tuckera627d422013-06-02 07:31:17 +10003652 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003653 if (cctx->aitop) {
3654 if (cctx->aitop->ai_family == AF_UNIX)
3655 free(cctx->aitop);
3656 else
3657 freeaddrinfo(cctx->aitop);
3658 }
Damien Miller1d2c4562014-02-04 11:18:20 +11003659 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003660}
3661
Damien Miller7acefbb2014-07-18 14:11:24 +10003662/* Return CONNECTING channel to remote host:port or local socket path */
Damien Millerbd740252008-05-19 15:37:09 +10003663static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003664connect_to(const char *name, int port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003665{
3666 struct addrinfo hints;
3667 int gaierr;
3668 int sock = -1;
3669 char strport[NI_MAXSERV];
3670 struct channel_connect cctx;
3671 Channel *c;
3672
Damien Miller2bcb8662008-07-12 17:12:29 +10003673 memset(&cctx, 0, sizeof(cctx));
Damien Miller7acefbb2014-07-18 14:11:24 +10003674
3675 if (port == PORT_STREAMLOCAL) {
3676 struct sockaddr_un *sunaddr;
3677 struct addrinfo *ai;
3678
3679 if (strlen(name) > sizeof(sunaddr->sun_path)) {
3680 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
3681 return (NULL);
3682 }
3683
3684 /*
3685 * Fake up a struct addrinfo for AF_UNIX connections.
3686 * channel_connect_ctx_free() must check ai_family
3687 * and use free() not freeaddirinfo() for AF_UNIX.
3688 */
3689 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
3690 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
3691 ai->ai_addr = (struct sockaddr *)(ai + 1);
3692 ai->ai_addrlen = sizeof(*sunaddr);
3693 ai->ai_family = AF_UNIX;
3694 ai->ai_socktype = SOCK_STREAM;
3695 ai->ai_protocol = PF_UNSPEC;
3696 sunaddr = (struct sockaddr_un *)ai->ai_addr;
3697 sunaddr->sun_family = AF_UNIX;
3698 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
3699 cctx.aitop = ai;
3700 } else {
3701 memset(&hints, 0, sizeof(hints));
3702 hints.ai_family = IPv4or6;
3703 hints.ai_socktype = SOCK_STREAM;
3704 snprintf(strport, sizeof strport, "%d", port);
3705 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx.aitop)) != 0) {
3706 error("connect_to %.100s: unknown host (%s)", name,
3707 ssh_gai_strerror(gaierr));
3708 return NULL;
3709 }
Damien Millerbd740252008-05-19 15:37:09 +10003710 }
3711
Damien Miller7acefbb2014-07-18 14:11:24 +10003712 cctx.host = xstrdup(name);
Damien Millerbd740252008-05-19 15:37:09 +10003713 cctx.port = port;
3714 cctx.ai = cctx.aitop;
3715
3716 if ((sock = connect_next(&cctx)) == -1) {
3717 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10003718 name, port, strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003719 channel_connect_ctx_free(&cctx);
3720 return NULL;
3721 }
3722 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3723 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3724 c->connect_ctx = cctx;
3725 return c;
3726}
3727
3728Channel *
Damien Miller4b3ed642014-07-02 15:29:40 +10003729channel_connect_by_listen_address(const char *listen_host,
3730 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003731{
3732 int i;
3733
3734 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003735 if (open_listen_match_tcpip(&permitted_opens[i], listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10003736 listen_port, 1)) {
Damien Millerbd740252008-05-19 15:37:09 +10003737 return connect_to(
3738 permitted_opens[i].host_to_connect,
3739 permitted_opens[i].port_to_connect, ctype, rname);
3740 }
3741 }
3742 error("WARNING: Server requests forwarding for unknown listen_port %d",
3743 listen_port);
3744 return NULL;
3745}
3746
Damien Miller7acefbb2014-07-18 14:11:24 +10003747Channel *
3748channel_connect_by_listen_path(const char *path, char *ctype, char *rname)
3749{
3750 int i;
3751
3752 for (i = 0; i < num_permitted_opens; i++) {
3753 if (open_listen_match_streamlocal(&permitted_opens[i], path)) {
3754 return connect_to(
3755 permitted_opens[i].host_to_connect,
3756 permitted_opens[i].port_to_connect, ctype, rname);
3757 }
3758 }
3759 error("WARNING: Server requests forwarding for unknown path %.100s",
3760 path);
3761 return NULL;
3762}
3763
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003764/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003765Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003766channel_connect_to_port(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003767{
Damien Miller9b439df2006-07-24 14:04:00 +10003768 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003769
3770 permit = all_opens_permitted;
3771 if (!permit) {
3772 for (i = 0; i < num_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003773 if (open_match(&permitted_opens[i], host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003774 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003775 break;
3776 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003777 }
Damien Miller9b439df2006-07-24 14:04:00 +10003778
3779 if (num_adm_permitted_opens > 0) {
3780 permit_adm = 0;
3781 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003782 if (open_match(&permitted_adm_opens[i], host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10003783 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003784 break;
3785 }
Damien Miller9b439df2006-07-24 14:04:00 +10003786 }
3787
3788 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003789 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003790 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003791 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003792 }
Damien Millerbd740252008-05-19 15:37:09 +10003793 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003794}
3795
Damien Miller7acefbb2014-07-18 14:11:24 +10003796/* Check if connecting to that path is permitted and connect. */
3797Channel *
3798channel_connect_to_path(const char *path, char *ctype, char *rname)
3799{
3800 int i, permit, permit_adm = 1;
3801
3802 permit = all_opens_permitted;
3803 if (!permit) {
3804 for (i = 0; i < num_permitted_opens; i++)
3805 if (open_match(&permitted_opens[i], path, PORT_STREAMLOCAL)) {
3806 permit = 1;
3807 break;
3808 }
3809 }
3810
3811 if (num_adm_permitted_opens > 0) {
3812 permit_adm = 0;
3813 for (i = 0; i < num_adm_permitted_opens; i++)
3814 if (open_match(&permitted_adm_opens[i], path, PORT_STREAMLOCAL)) {
3815 permit_adm = 1;
3816 break;
3817 }
3818 }
3819
3820 if (!permit || !permit_adm) {
3821 logit("Received request to connect to path %.100s, "
3822 "but the request was denied.", path);
3823 return NULL;
3824 }
3825 return connect_to(path, PORT_STREAMLOCAL, ctype, rname);
3826}
3827
Damien Miller0e220db2004-06-15 10:34:08 +10003828void
3829channel_send_window_changes(void)
3830{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003831 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003832 struct winsize ws;
3833
3834 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003835 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003836 channels[i]->type != SSH_CHANNEL_OPEN)
3837 continue;
3838 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3839 continue;
3840 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003841 packet_put_int((u_int)ws.ws_col);
3842 packet_put_int((u_int)ws.ws_row);
3843 packet_put_int((u_int)ws.ws_xpixel);
3844 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003845 packet_send();
3846 }
3847}
3848
Ben Lindstrome9c99912001-06-09 00:41:05 +00003849/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003850
Damien Miller5428f641999-11-25 11:54:57 +11003851/*
3852 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003853 * Returns 0 and a suitable display number for the DISPLAY variable
3854 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003855 */
Kevin Steves366298c2001-12-19 17:58:01 +00003856int
Damien Miller95c249f2002-02-05 12:11:34 +11003857x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003858 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003859{
Damien Millere7378562001-12-21 14:58:35 +11003860 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003861 int display_number, sock;
3862 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003863 struct addrinfo hints, *ai, *aitop;
3864 char strport[NI_MAXSERV];
3865 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003866
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003867 if (chanids == NULL)
3868 return -1;
3869
Damien Millera34a28b1999-12-14 10:47:15 +11003870 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003871 display_number < MAX_DISPLAYS;
3872 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003873 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003874 memset(&hints, 0, sizeof(hints));
3875 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003876 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003877 hints.ai_socktype = SOCK_STREAM;
3878 snprintf(strport, sizeof strport, "%d", port);
3879 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003880 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003881 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003882 }
Damien Miller34132e52000-01-14 15:45:46 +11003883 for (ai = aitop; ai; ai = ai->ai_next) {
3884 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3885 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003886 sock = socket(ai->ai_family, ai->ai_socktype,
3887 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003888 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003889 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3890#ifdef EPFNOSUPPORT
3891 && (errno != EPFNOSUPPORT)
3892#endif
3893 ) {
Damien Millere2192732000-01-17 13:22:55 +11003894 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003895 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003896 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003897 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003898 debug("x11_create_display_inet: Socket family %d not supported",
3899 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003900 continue;
3901 }
Damien Miller34132e52000-01-14 15:45:46 +11003902 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003903 if (ai->ai_family == AF_INET6)
3904 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003905 if (x11_use_localhost)
3906 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003907 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003908 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003909 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003910
Damien Miller34132e52000-01-14 15:45:46 +11003911 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003912 close(socks[n]);
3913 }
3914 num_socks = 0;
3915 break;
3916 }
3917 socks[num_socks++] = sock;
3918 if (num_socks == NUM_SOCKS)
3919 break;
Damien Miller95def091999-11-25 00:26:21 +11003920 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003921 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003922 if (num_socks > 0)
3923 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003924 }
Damien Miller95def091999-11-25 00:26:21 +11003925 if (display_number >= MAX_DISPLAYS) {
3926 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003927 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003928 }
Damien Miller95def091999-11-25 00:26:21 +11003929 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003930 for (n = 0; n < num_socks; n++) {
3931 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003932 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003933 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003934 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003935 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003936 }
Damien Miller95def091999-11-25 00:26:21 +11003937 }
Damien Miller34132e52000-01-14 15:45:46 +11003938
Damien Miller34132e52000-01-14 15:45:46 +11003939 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003940 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003941 for (n = 0; n < num_socks; n++) {
3942 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003943 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003944 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3945 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003946 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003947 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003948 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003949 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003950 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003951
Kevin Steves366298c2001-12-19 17:58:01 +00003952 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003953 *display_numberp = display_number;
3954 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003955}
3956
Ben Lindstrombba81212001-06-25 05:01:22 +00003957static int
Damien Miller819dbb62009-01-21 16:46:26 +11003958connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003959{
Damien Miller95def091999-11-25 00:26:21 +11003960 int sock;
3961 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003962
Damien Miller3afe3752001-12-21 12:39:51 +11003963 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3964 if (sock < 0)
3965 error("socket: %.100s", strerror(errno));
3966 memset(&addr, 0, sizeof(addr));
3967 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003968 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003969 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003970 return sock;
3971 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003972 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3973 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003974}
3975
Damien Miller819dbb62009-01-21 16:46:26 +11003976static int
3977connect_local_xsocket(u_int dnr)
3978{
3979 char buf[1024];
3980 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3981 return connect_local_xsocket_path(buf);
3982}
3983
Damien Millerbd483e72000-04-30 10:00:53 +10003984int
3985x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003986{
Damien Miller57c4e872006-03-31 23:11:07 +11003987 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003988 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003989 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003990 struct addrinfo hints, *ai, *aitop;
3991 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003992 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003993
Damien Miller95def091999-11-25 00:26:21 +11003994 /* Try to open a socket for the local X server. */
3995 display = getenv("DISPLAY");
3996 if (!display) {
3997 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003998 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003999 }
Damien Miller5428f641999-11-25 11:54:57 +11004000 /*
4001 * Now we decode the value of the DISPLAY variable and make a
4002 * connection to the real X server.
4003 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004004
Damien Miller819dbb62009-01-21 16:46:26 +11004005 /* Check if the display is from launchd. */
4006#ifdef __APPLE__
4007 if (strncmp(display, "/tmp/launch", 11) == 0) {
4008 sock = connect_local_xsocket_path(display);
4009 if (sock < 0)
4010 return -1;
4011
4012 /* OK, we now have a connection to the display. */
4013 return sock;
4014 }
4015#endif
Damien Miller5428f641999-11-25 11:54:57 +11004016 /*
4017 * Check if it is a unix domain socket. Unix domain displays are in
4018 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4019 */
Damien Miller95def091999-11-25 00:26:21 +11004020 if (strncmp(display, "unix:", 5) == 0 ||
4021 display[0] == ':') {
4022 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11004023 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004024 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004025 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004026 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004027 }
4028 /* Create a socket. */
4029 sock = connect_local_xsocket(display_number);
4030 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004031 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004032
4033 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004034 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004035 }
Damien Miller5428f641999-11-25 11:54:57 +11004036 /*
4037 * Connect to an inet socket. The DISPLAY value is supposedly
4038 * hostname:d[.s], where hostname may also be numeric IP address.
4039 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004040 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004041 cp = strchr(buf, ':');
4042 if (!cp) {
4043 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004044 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004045 }
Damien Miller95def091999-11-25 00:26:21 +11004046 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11004047 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11004048 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004049 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004050 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004051 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004052 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004053
Damien Miller34132e52000-01-14 15:45:46 +11004054 /* Look up the host address */
4055 memset(&hints, 0, sizeof(hints));
4056 hints.ai_family = IPv4or6;
4057 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004058 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004059 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004060 error("%.100s: unknown host. (%s)", buf,
4061 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004062 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004063 }
Damien Miller34132e52000-01-14 15:45:46 +11004064 for (ai = aitop; ai; ai = ai->ai_next) {
4065 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004066 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004067 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004068 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004069 continue;
4070 }
4071 /* Connect it to the display. */
4072 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004073 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004074 6000 + display_number, strerror(errno));
4075 close(sock);
4076 continue;
4077 }
4078 /* Success */
4079 break;
Damien Miller34132e52000-01-14 15:45:46 +11004080 }
Damien Miller34132e52000-01-14 15:45:46 +11004081 freeaddrinfo(aitop);
4082 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11004083 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11004084 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004085 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004086 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004087 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004088 return sock;
4089}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004090
Damien Millerbd483e72000-04-30 10:00:53 +10004091/*
4092 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
4093 * the remote channel number. We should do whatever we want, and respond
4094 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
4095 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004096
Damien Miller8473dd82006-07-24 14:08:32 +10004097/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10004098void
Damien Miller630d6f42002-01-22 23:17:30 +11004099x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10004100{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004101 Channel *c = NULL;
4102 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10004103 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10004104
4105 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004106
4107 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00004108
4109 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004110 remote_host = packet_get_string(NULL);
4111 } else {
4112 remote_host = xstrdup("unknown (remote did not supply name)");
4113 }
Damien Miller48b03fc2002-01-22 23:11:40 +11004114 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10004115
4116 /* Obtain a connection to the real X display. */
4117 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004118 if (sock != -1) {
4119 /* Allocate a channel for this connection. */
4120 c = channel_new("connected x11 socket",
4121 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
4122 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11004123 c->remote_id = remote_id;
4124 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004125 }
Darren Tuckera627d422013-06-02 07:31:17 +10004126 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004127 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10004128 /* Send refusal to the remote host. */
4129 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004130 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10004131 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10004132 /* Send a confirmation to the remote host. */
4133 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004134 packet_put_int(remote_id);
4135 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10004136 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004137 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004138}
4139
Damien Miller69b69aa2000-10-28 14:19:58 +11004140/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10004141/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11004142void
Damien Miller630d6f42002-01-22 23:17:30 +11004143deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11004144{
4145 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00004146
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00004147 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11004148 case SSH_SMSG_AGENT_OPEN:
4149 error("Warning: ssh server tried agent forwarding.");
4150 break;
4151 case SSH_SMSG_X11_OPEN:
4152 error("Warning: ssh server tried X11 forwarding.");
4153 break;
4154 default:
Damien Miller630d6f42002-01-22 23:17:30 +11004155 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11004156 break;
4157 }
Damien Miller5eb137c2005-12-31 16:19:53 +11004158 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11004159 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
4160 packet_put_int(rchan);
4161 packet_send();
4162}
4163
Damien Miller5428f641999-11-25 11:54:57 +11004164/*
4165 * Requests forwarding of X11 connections, generates fake authentication
4166 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004167 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004168 */
Damien Miller4af51302000-04-16 11:18:38 +10004169void
Damien Miller17e7ed02005-06-17 12:54:33 +10004170x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10004171 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004172{
Ben Lindstrom46c16222000-12-22 01:43:59 +00004173 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004174 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004175 char *new_data;
4176 int screen_number;
4177 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10004178 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004179
Damien Millerf92c0792005-07-06 09:45:26 +10004180 if (x11_saved_display == NULL)
4181 x11_saved_display = xstrdup(disp);
4182 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004183 error("x11_request_forwarding_with_spoofing: different "
4184 "$DISPLAY already forwarded");
4185 return;
4186 }
4187
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004188 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004189 if (cp)
4190 cp = strchr(cp, '.');
4191 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004192 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004193 else
4194 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004195
Damien Miller13390022005-07-06 09:44:19 +10004196 if (x11_saved_proto == NULL) {
4197 /* Save protocol name. */
4198 x11_saved_proto = xstrdup(proto);
4199 /*
Damien Miller46d38de2005-07-17 17:02:09 +10004200 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10004201 * of the same length.
4202 */
4203 x11_saved_data = xmalloc(data_len);
4204 x11_fake_data = xmalloc(data_len);
4205 for (i = 0; i < data_len; i++) {
4206 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4207 fatal("x11_request_forwarding: bad "
4208 "authentication data: %.100s", data);
4209 if (i % 4 == 0)
4210 rnd = arc4random();
4211 x11_saved_data[i] = value;
4212 x11_fake_data[i] = rnd & 0xff;
4213 rnd >>= 8;
4214 }
4215 x11_saved_data_len = data_len;
4216 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004217 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004218
Damien Miller95def091999-11-25 00:26:21 +11004219 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10004220 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004221
Damien Miller95def091999-11-25 00:26:21 +11004222 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10004223 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10004224 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10004225 packet_put_char(0); /* XXX bool single connection */
4226 } else {
4227 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
4228 }
4229 packet_put_cstring(proto);
4230 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11004231 packet_put_int(screen_number);
4232 packet_send();
4233 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10004234 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004235}
4236
Ben Lindstrome9c99912001-06-09 00:41:05 +00004237
4238/* -- agent forwarding */
4239
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004240/* Sends a message to the server to request authentication fd forwarding. */
4241
Damien Miller4af51302000-04-16 11:18:38 +10004242void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00004243auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004244{
Damien Miller95def091999-11-25 00:26:21 +11004245 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
4246 packet_send();
4247 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004248}