blob: 29a62f70ac6b0f23683e05892493848a8417edfc [file] [log] [blame]
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00001/* $OpenBSD: channels.c,v 1.339 2015/01/19 20:07:45 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
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 */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002346int
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)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002363 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002364
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 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002383 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002384 }
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);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002394 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002395 }
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();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002403 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002404}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002405
Damien Millerd79b4242006-03-31 23:11:44 +11002406/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002407int
Damien Miller630d6f42002-01-22 23:17:30 +11002408channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002409{
2410 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002411 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002412 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002413 Channel *c;
2414
2415 /* Get the channel number and verify it. */
2416 id = packet_get_int();
2417 c = channel_lookup(id);
2418
2419 if (c == NULL)
2420 packet_disconnect("Received extended_data for bad channel %d.", id);
2421 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002422 logit("channel %d: ext data for non open", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002423 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002424 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002425 if (c->flags & CHAN_EOF_RCVD) {
2426 if (datafellows & SSH_BUG_EXTEOF)
2427 debug("channel %d: accepting ext data after eof", id);
2428 else
2429 packet_disconnect("Received extended_data after EOF "
2430 "on channel %d.", id);
2431 }
Damien Miller33b13562000-04-04 14:38:59 +10002432 tcode = packet_get_int();
2433 if (c->efd == -1 ||
2434 c->extended_usage != CHAN_EXTENDED_WRITE ||
2435 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002436 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002437 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002438 }
2439 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002440 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002441 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002442 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002443 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002444 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002445 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002446 }
Damien Millerd3444942000-09-30 14:20:03 +11002447 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002448 c->local_window -= data_len;
2449 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002450 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002451 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002452}
2453
Damien Millerd79b4242006-03-31 23:11:44 +11002454/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002455int
Damien Miller630d6f42002-01-22 23:17:30 +11002456channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002457{
2458 int id;
2459 Channel *c;
2460
Damien Millerb38eff82000-04-01 11:09:21 +10002461 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002462 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002463 c = channel_lookup(id);
2464 if (c == NULL)
2465 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2466 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002467
2468 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002469 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002470 debug("channel %d: FORCE input drain", c->self);
2471 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002472 if (buffer_len(&c->input) == 0)
2473 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002474 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002475 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002476}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002477
Damien Millerd79b4242006-03-31 23:11:44 +11002478/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002479int
Damien Miller630d6f42002-01-22 23:17:30 +11002480channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481{
Damien Millerb38eff82000-04-01 11:09:21 +10002482 int id;
2483 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002484
Damien Millerb38eff82000-04-01 11:09:21 +10002485 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002486 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002487 c = channel_lookup(id);
2488 if (c == NULL)
2489 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002490
2491 /*
2492 * Send a confirmation that we have closed the channel and no more
2493 * data is coming for it.
2494 */
Damien Miller95def091999-11-25 00:26:21 +11002495 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002496 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002497 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002498
Damien Miller5428f641999-11-25 11:54:57 +11002499 /*
2500 * If the channel is in closed state, we have sent a close request,
2501 * and the other side will eventually respond with a confirmation.
2502 * Thus, we cannot free the channel here, because then there would be
2503 * no-one to receive the confirmation. The channel gets freed when
2504 * the confirmation arrives.
2505 */
Damien Millerb38eff82000-04-01 11:09:21 +10002506 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002507 /*
2508 * Not a closed channel - mark it as draining, which will
2509 * cause it to be freed later.
2510 */
Damien Miller76765c02002-01-22 23:21:15 +11002511 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002512 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002513 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002514 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002515}
2516
Damien Millerb38eff82000-04-01 11:09:21 +10002517/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002518/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002519int
Damien Miller630d6f42002-01-22 23:17:30 +11002520channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002521{
Damien Millerb38eff82000-04-01 11:09:21 +10002522 int id = packet_get_int();
2523 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002524
Damien Miller48b03fc2002-01-22 23:11:40 +11002525 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002526 if (c == NULL)
2527 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2528 chan_rcvd_oclose(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002529 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002530}
2531
Damien Millerd79b4242006-03-31 23:11:44 +11002532/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002533int
Damien Miller630d6f42002-01-22 23:17:30 +11002534channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002535{
2536 int id = packet_get_int();
2537 Channel *c = channel_lookup(id);
2538
Damien Miller48b03fc2002-01-22 23:11:40 +11002539 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002540 if (c == NULL)
2541 packet_disconnect("Received close confirmation for "
2542 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002543 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002544 packet_disconnect("Received close confirmation for "
2545 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002546 channel_free(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002547 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002548}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002549
Damien Millerd79b4242006-03-31 23:11:44 +11002550/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002551int
Damien Miller630d6f42002-01-22 23:17:30 +11002552channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002553{
Damien Millerb38eff82000-04-01 11:09:21 +10002554 int id, remote_id;
2555 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002556
Damien Millerb38eff82000-04-01 11:09:21 +10002557 id = packet_get_int();
2558 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002559
Damien Millerb38eff82000-04-01 11:09:21 +10002560 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2561 packet_disconnect("Received open confirmation for "
2562 "non-opening channel %d.", id);
2563 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002564 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002565 c->remote_id = remote_id;
2566 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002567
2568 if (compat20) {
2569 c->remote_window = packet_get_int();
2570 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002571 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002572 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002573 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002574 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002575 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002576 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002577 c->remote_window, c->remote_maxpacket);
2578 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002579 packet_check_eom();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002580 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002581}
2582
Ben Lindstrombba81212001-06-25 05:01:22 +00002583static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002584reason2txt(int reason)
2585{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002586 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002587 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2588 return "administratively prohibited";
2589 case SSH2_OPEN_CONNECT_FAILED:
2590 return "connect failed";
2591 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2592 return "unknown channel type";
2593 case SSH2_OPEN_RESOURCE_SHORTAGE:
2594 return "resource shortage";
2595 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002596 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002597}
2598
Damien Millerd79b4242006-03-31 23:11:44 +11002599/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002600int
Damien Miller630d6f42002-01-22 23:17:30 +11002601channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002602{
Kevin Steves12057502001-02-05 14:54:34 +00002603 int id, reason;
2604 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002605 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002606
Damien Millerb38eff82000-04-01 11:09:21 +10002607 id = packet_get_int();
2608 c = channel_lookup(id);
2609
2610 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2611 packet_disconnect("Received open failure for "
2612 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002613 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002614 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002615 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002616 msg = packet_get_string(NULL);
2617 lang = packet_get_string(NULL);
2618 }
Damien Miller996acd22003-04-09 20:59:48 +10002619 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002620 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002621 free(msg);
2622 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002623 if (c->open_confirm) {
2624 debug2("callback start");
2625 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2626 debug2("callback done");
2627 }
Damien Miller33b13562000-04-04 14:38:59 +10002628 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002629 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002630 /* Schedule the channel for cleanup/deletion. */
2631 chan_mark_dead(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002632 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002633}
2634
Damien Millerd79b4242006-03-31 23:11:44 +11002635/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002636int
Damien Miller630d6f42002-01-22 23:17:30 +11002637channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002638{
2639 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002640 int id;
2641 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002642
2643 if (!compat20)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002644 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002645
2646 /* Get the channel number and verify it. */
2647 id = packet_get_int();
2648 c = channel_lookup(id);
2649
Damien Millerd47c62a2005-12-13 19:33:57 +11002650 if (c == NULL) {
2651 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002652 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002653 }
2654 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002655 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002656 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002657 c->remote_window += adjust;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002658 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002659}
2660
Damien Millerd79b4242006-03-31 23:11:44 +11002661/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002662int
Damien Miller630d6f42002-01-22 23:17:30 +11002663channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002664{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002665 Channel *c = NULL;
2666 u_short host_port;
2667 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002668 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002669
Ben Lindstrome9c99912001-06-09 00:41:05 +00002670 remote_id = packet_get_int();
2671 host = packet_get_string(NULL);
2672 host_port = packet_get_int();
2673
2674 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2675 originator_string = packet_get_string(NULL);
2676 } else {
2677 originator_string = xstrdup("unknown (remote did not supply name)");
2678 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002679 packet_check_eom();
Damien Miller7acefbb2014-07-18 14:11:24 +10002680 c = channel_connect_to_port(host, host_port,
Damien Millerbd740252008-05-19 15:37:09 +10002681 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002682 free(originator_string);
2683 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002684 if (c == NULL) {
2685 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2686 packet_put_int(remote_id);
2687 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002688 } else
2689 c->remote_id = remote_id;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002690 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002691}
2692
Damien Millerb84886b2008-05-19 15:05:07 +10002693/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002694int
Damien Millerb84886b2008-05-19 15:05:07 +10002695channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2696{
2697 Channel *c;
2698 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002699 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002700
2701 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002702 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002703
Damien Miller16a73072008-12-08 09:55:25 +11002704 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002705 packet_check_eom();
2706
Damien Miller16a73072008-12-08 09:55:25 +11002707 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002708
Damien Miller16a73072008-12-08 09:55:25 +11002709 if ((c = channel_lookup(id)) == NULL) {
2710 logit("channel_input_status_confirm: %d: unknown", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002711 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002712 }
Damien Millerb84886b2008-05-19 15:05:07 +10002713 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002714 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002715 cc->cb(type, c, cc->ctx);
2716 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11002717 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002718 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002719 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002720}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002721
Ben Lindstrome9c99912001-06-09 00:41:05 +00002722/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002723
Ben Lindstrom908afed2001-10-03 17:34:59 +00002724void
2725channel_set_af(int af)
2726{
2727 IPv4or6 = af;
2728}
2729
Damien Millerf6dff7c2011-09-22 21:38:52 +10002730
2731/*
2732 * Determine whether or not a port forward listens to loopback, the
2733 * specified address or wildcard. On the client, a specified bind
2734 * address will always override gateway_ports. On the server, a
2735 * gateway_ports of 1 (``yes'') will override the client's specification
2736 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2737 * will bind to whatever address the client asked for.
2738 *
2739 * Special-case listen_addrs are:
2740 *
2741 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2742 * "" (empty string), "*" -> wildcard v4/v6
2743 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10002744 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10002745 */
2746static const char *
2747channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10002748 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002749{
2750 const char *addr = NULL;
2751 int wildcard = 0;
2752
2753 if (listen_addr == NULL) {
2754 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10002755 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002756 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002757 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002758 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2759 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2760 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10002761 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002762 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11002763 /*
2764 * Notify client if they requested a specific listen
2765 * address and it was overridden.
2766 */
2767 if (*listen_addr != '\0' &&
2768 strcmp(listen_addr, "0.0.0.0") != 0 &&
2769 strcmp(listen_addr, "*") != 0) {
2770 packet_send_debug("Forwarding listen address "
2771 "\"%s\" overridden by server "
2772 "GatewayPorts", listen_addr);
2773 }
Damien Miller602943d2014-07-04 08:59:41 +10002774 } else if (strcmp(listen_addr, "localhost") != 0 ||
2775 strcmp(listen_addr, "127.0.0.1") == 0 ||
2776 strcmp(listen_addr, "::1") == 0) {
2777 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10002778 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10002779 }
2780 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
2781 strcmp(listen_addr, "::1") == 0) {
2782 /*
2783 * If a specific IPv4/IPv6 localhost address has been
2784 * requested then accept it even if gateway_ports is in
2785 * effect. This allows the client to prefer IPv4 or IPv6.
2786 */
2787 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002788 }
2789 if (wildcardp != NULL)
2790 *wildcardp = wildcard;
2791 return addr;
2792}
2793
Damien Millerb16461c2002-01-22 23:29:22 +11002794static int
Damien Miller7acefbb2014-07-18 14:11:24 +10002795channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd,
2796 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002797{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002798 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002799 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002800 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002801 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002802 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002803 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002804
Damien Millerb16461c2002-01-22 23:29:22 +11002805 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10002806 fwd->listen_host : fwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002807 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002808
Damien Millerb16461c2002-01-22 23:29:22 +11002809 if (host == NULL) {
2810 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002811 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002812 }
Damien Miller9576ac42009-01-28 16:30:33 +11002813 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002814 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002815 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002816 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002817
Damien Millerf6dff7c2011-09-22 21:38:52 +10002818 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10002819 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
2820 is_client, fwd_opts);
2821 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002822 type, wildcard, (addr == NULL) ? "NULL" : addr);
2823
2824 /*
Damien Miller34132e52000-01-14 15:45:46 +11002825 * getaddrinfo returns a loopback address if the hostname is
2826 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002827 */
Damien Miller34132e52000-01-14 15:45:46 +11002828 memset(&hints, 0, sizeof(hints));
2829 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002830 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002831 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10002832 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002833 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2834 if (addr == NULL) {
2835 /* This really shouldn't happen */
2836 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002837 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002838 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002839 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11002840 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002841 }
Damien Millera7270302005-07-06 09:36:05 +10002842 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002843 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002844 if (allocated_listen_port != NULL)
2845 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002846 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002847 switch (ai->ai_family) {
2848 case AF_INET:
2849 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2850 sin_port;
2851 break;
2852 case AF_INET6:
2853 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2854 sin6_port;
2855 break;
2856 default:
Damien Miller34132e52000-01-14 15:45:46 +11002857 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002858 }
2859 /*
2860 * If allocating a port for -R forwards, then use the
2861 * same port for all address families.
2862 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002863 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002864 allocated_listen_port != NULL && *allocated_listen_port > 0)
2865 *lport_p = htons(*allocated_listen_port);
2866
Damien Miller34132e52000-01-14 15:45:46 +11002867 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2868 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10002869 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11002870 continue;
2871 }
2872 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002873 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002874 if (sock < 0) {
2875 /* this is no error since kernel may not support ipv6 */
2876 verbose("socket: %.100s", strerror(errno));
2877 continue;
2878 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002879
2880 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002881 if (ai->ai_family == AF_INET6)
2882 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002883
Damien Miller4bf648f2009-02-14 16:28:21 +11002884 debug("Local forwarding listening on %s port %s.",
2885 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002886
Damien Miller34132e52000-01-14 15:45:46 +11002887 /* Bind the socket to the address. */
2888 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2889 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002890 if (!ai->ai_next)
2891 error("bind: %.100s", strerror(errno));
2892 else
2893 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002894
Damien Miller34132e52000-01-14 15:45:46 +11002895 close(sock);
2896 continue;
2897 }
2898 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002899 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002900 error("listen: %.100s", strerror(errno));
2901 close(sock);
2902 continue;
2903 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002904
2905 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10002906 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11002907 * record what we got.
2908 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002909 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002910 allocated_listen_port != NULL &&
2911 *allocated_listen_port == 0) {
2912 *allocated_listen_port = get_sock_port(sock, 1);
2913 debug("Allocated listen port %d",
2914 *allocated_listen_port);
2915 }
2916
Damien Miller34132e52000-01-14 15:45:46 +11002917 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002918 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002919 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002920 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002921 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10002922 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002923 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10002924 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11002925 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2926 c->listening_port = *allocated_listen_port;
2927 else
Damien Miller7acefbb2014-07-18 14:11:24 +10002928 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002929 success = 1;
2930 }
2931 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10002932 error("%s: cannot listen to port: %d", __func__,
2933 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002934 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002935 return success;
Damien Miller95def091999-11-25 00:26:21 +11002936}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002937
Damien Miller7acefbb2014-07-18 14:11:24 +10002938static int
2939channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
2940 struct ForwardOptions *fwd_opts)
2941{
2942 struct sockaddr_un sunaddr;
2943 const char *path;
2944 Channel *c;
2945 int port, sock;
2946 mode_t omask;
2947
2948 switch (type) {
2949 case SSH_CHANNEL_UNIX_LISTENER:
2950 if (fwd->connect_path != NULL) {
2951 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
2952 error("Local connecting path too long: %s",
2953 fwd->connect_path);
2954 return 0;
2955 }
2956 path = fwd->connect_path;
2957 port = PORT_STREAMLOCAL;
2958 } else {
2959 if (fwd->connect_host == NULL) {
2960 error("No forward host name.");
2961 return 0;
2962 }
2963 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
2964 error("Forward host name too long.");
2965 return 0;
2966 }
2967 path = fwd->connect_host;
2968 port = fwd->connect_port;
2969 }
2970 break;
2971 case SSH_CHANNEL_RUNIX_LISTENER:
2972 path = fwd->listen_path;
2973 port = PORT_STREAMLOCAL;
2974 break;
2975 default:
2976 error("%s: unexpected channel type %d", __func__, type);
2977 return 0;
2978 }
2979
2980 if (fwd->listen_path == NULL) {
2981 error("No forward path name.");
2982 return 0;
2983 }
2984 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
2985 error("Local listening path too long: %s", fwd->listen_path);
2986 return 0;
2987 }
2988
2989 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
2990
2991 /* Start a Unix domain listener. */
2992 omask = umask(fwd_opts->streamlocal_bind_mask);
2993 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
2994 fwd_opts->streamlocal_bind_unlink);
2995 umask(omask);
2996 if (sock < 0)
2997 return 0;
2998
2999 debug("Local forwarding listening on path %s.", fwd->listen_path);
3000
3001 /* Allocate a channel number for the socket. */
3002 c = channel_new("unix listener", type, sock, sock, -1,
3003 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3004 0, "unix listener", 1);
3005 c->path = xstrdup(path);
3006 c->host_port = port;
3007 c->listening_port = PORT_STREAMLOCAL;
3008 c->listening_addr = xstrdup(fwd->listen_path);
3009 return 1;
3010}
3011
3012static int
3013channel_cancel_rport_listener_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003014{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003015 u_int i;
3016 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003017
Darren Tucker47eede72005-03-14 23:08:12 +11003018 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003019 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003020 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3021 continue;
3022 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3023 debug2("%s: close channel %d", __func__, i);
3024 channel_free(c);
3025 found = 1;
3026 }
3027 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003028
Damien Millerf6dff7c2011-09-22 21:38:52 +10003029 return (found);
3030}
3031
Damien Miller7acefbb2014-07-18 14:11:24 +10003032static int
3033channel_cancel_rport_listener_streamlocal(const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003034{
3035 u_int i;
3036 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003037
3038 for (i = 0; i < channels_alloc; i++) {
3039 Channel *c = channels[i];
3040 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3041 continue;
3042 if (c->path == NULL)
3043 continue;
3044 if (strcmp(c->path, path) == 0) {
3045 debug2("%s: close channel %d", __func__, i);
3046 channel_free(c);
3047 found = 1;
3048 }
3049 }
3050
3051 return (found);
3052}
3053
3054int
3055channel_cancel_rport_listener(struct Forward *fwd)
3056{
3057 if (fwd->listen_path != NULL)
3058 return channel_cancel_rport_listener_streamlocal(fwd->listen_path);
3059 else
3060 return channel_cancel_rport_listener_tcpip(fwd->listen_host, fwd->listen_port);
3061}
3062
3063static int
3064channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport,
3065 int cport, struct ForwardOptions *fwd_opts)
3066{
3067 u_int i;
3068 int found = 0;
3069 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003070
3071 for (i = 0; i < channels_alloc; i++) {
3072 Channel *c = channels[i];
3073 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3074 continue;
Damien Millerff773642011-09-22 21:39:48 +10003075 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003076 continue;
Damien Millerff773642011-09-22 21:39:48 +10003077 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3078 /* skip dynamic forwardings */
3079 if (c->host_port == 0)
3080 continue;
3081 } else {
3082 if (c->host_port != cport)
3083 continue;
3084 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003085 if ((c->listening_addr == NULL && addr != NULL) ||
3086 (c->listening_addr != NULL && addr == NULL))
3087 continue;
3088 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003089 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10003090 channel_free(c);
3091 found = 1;
3092 }
3093 }
3094
3095 return (found);
3096}
3097
Damien Miller7acefbb2014-07-18 14:11:24 +10003098static int
3099channel_cancel_lport_listener_streamlocal(const char *path)
3100{
3101 u_int i;
3102 int found = 0;
3103
3104 if (path == NULL) {
3105 error("%s: no path specified.", __func__);
3106 return 0;
3107 }
3108
3109 for (i = 0; i < channels_alloc; i++) {
3110 Channel *c = channels[i];
3111 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3112 continue;
3113 if (c->listening_addr == NULL)
3114 continue;
3115 if (strcmp(c->listening_addr, path) == 0) {
3116 debug2("%s: close channel %d", __func__, i);
3117 channel_free(c);
3118 found = 1;
3119 }
3120 }
3121
3122 return (found);
3123}
3124
3125int
3126channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
3127{
3128 if (fwd->listen_path != NULL)
3129 return channel_cancel_lport_listener_streamlocal(fwd->listen_path);
3130 else
3131 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3132}
3133
Damien Millerb16461c2002-01-22 23:29:22 +11003134/* protocol local port fwd, used by ssh (and sshd in v1) */
3135int
Damien Miller7acefbb2014-07-18 14:11:24 +10003136channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003137{
Damien Miller7acefbb2014-07-18 14:11:24 +10003138 if (fwd->listen_path != NULL) {
3139 return channel_setup_fwd_listener_streamlocal(
3140 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3141 } else {
3142 return channel_setup_fwd_listener_tcpip(SSH_CHANNEL_PORT_LISTENER,
3143 fwd, NULL, fwd_opts);
3144 }
Damien Millerb16461c2002-01-22 23:29:22 +11003145}
3146
3147/* protocol v2 remote port fwd, used by sshd */
3148int
Damien Miller7acefbb2014-07-18 14:11:24 +10003149channel_setup_remote_fwd_listener(struct Forward *fwd,
3150 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003151{
Damien Miller7acefbb2014-07-18 14:11:24 +10003152 if (fwd->listen_path != NULL) {
3153 return channel_setup_fwd_listener_streamlocal(
3154 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3155 } else {
3156 return channel_setup_fwd_listener_tcpip(
3157 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3158 fwd_opts);
3159 }
Damien Millerb16461c2002-01-22 23:29:22 +11003160}
3161
Damien Miller5428f641999-11-25 11:54:57 +11003162/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003163 * Translate the requested rfwd listen host to something usable for
3164 * this server.
3165 */
3166static const char *
3167channel_rfwd_bind_host(const char *listen_host)
3168{
3169 if (listen_host == NULL) {
3170 if (datafellows & SSH_BUG_RFWD_ADDR)
3171 return "127.0.0.1";
3172 else
3173 return "localhost";
3174 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3175 if (datafellows & SSH_BUG_RFWD_ADDR)
3176 return "0.0.0.0";
3177 else
3178 return "";
3179 } else
3180 return listen_host;
3181}
3182
3183/*
Damien Miller5428f641999-11-25 11:54:57 +11003184 * Initiate forwarding of connections to port "port" on remote host through
3185 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003186 * Returns handle (index) for updating the dynamic listen port with
3187 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003188 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003189int
Damien Miller7acefbb2014-07-18 14:11:24 +10003190channel_request_remote_forwarding(struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003191{
Darren Tucker68afb8c2011-10-02 18:59:03 +11003192 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003193
Damien Miller95def091999-11-25 00:26:21 +11003194 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10003195 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10003196 packet_start(SSH2_MSG_GLOBAL_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003197 if (fwd->listen_path != NULL) {
3198 packet_put_cstring("streamlocal-forward@openssh.com");
3199 packet_put_char(1); /* boolean: want reply */
3200 packet_put_cstring(fwd->listen_path);
3201 } else {
3202 packet_put_cstring("tcpip-forward");
3203 packet_put_char(1); /* boolean: want reply */
3204 packet_put_cstring(channel_rfwd_bind_host(fwd->listen_host));
3205 packet_put_int(fwd->listen_port);
3206 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003207 packet_send();
3208 packet_write_wait();
3209 /* Assume that server accepts the request */
3210 success = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003211 } else if (fwd->listen_path == NULL) {
Damien Miller33b13562000-04-04 14:38:59 +10003212 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003213 packet_put_int(fwd->listen_port);
3214 packet_put_cstring(fwd->connect_host);
3215 packet_put_int(fwd->connect_port);
Damien Miller33b13562000-04-04 14:38:59 +10003216 packet_send();
3217 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003218
3219 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003220 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003221 switch (type) {
3222 case SSH_SMSG_SUCCESS:
3223 success = 1;
3224 break;
3225 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003226 break;
3227 default:
3228 /* Unknown packet */
3229 packet_disconnect("Protocol error for port forward request:"
3230 "received packet type %d.", type);
3231 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003232 } else {
3233 logit("Warning: Server does not support remote stream local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11003234 }
3235 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003236 /* Record that connection to this host/port is permitted. */
3237 permitted_opens = xrealloc(permitted_opens,
3238 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003239 idx = num_permitted_opens++;
Damien Miller7acefbb2014-07-18 14:11:24 +10003240 if (fwd->connect_path != NULL) {
3241 permitted_opens[idx].host_to_connect =
3242 xstrdup(fwd->connect_path);
3243 permitted_opens[idx].port_to_connect =
3244 PORT_STREAMLOCAL;
3245 } else {
3246 permitted_opens[idx].host_to_connect =
3247 xstrdup(fwd->connect_host);
3248 permitted_opens[idx].port_to_connect =
3249 fwd->connect_port;
3250 }
3251 if (fwd->listen_path != NULL) {
3252 permitted_opens[idx].listen_host = NULL;
3253 permitted_opens[idx].listen_path =
3254 xstrdup(fwd->listen_path);
3255 permitted_opens[idx].listen_port = PORT_STREAMLOCAL;
3256 } else {
3257 permitted_opens[idx].listen_host =
3258 fwd->listen_host ? xstrdup(fwd->listen_host) : NULL;
3259 permitted_opens[idx].listen_path = NULL;
3260 permitted_opens[idx].listen_port = fwd->listen_port;
3261 }
Damien Miller33b13562000-04-04 14:38:59 +10003262 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003263 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003264}
3265
Damien Miller4b3ed642014-07-02 15:29:40 +10003266static int
3267open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003268 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003269{
3270 if (allowed_open->host_to_connect == NULL)
3271 return 0;
3272 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3273 allowed_open->port_to_connect != requestedport)
3274 return 0;
3275 if (strcmp(allowed_open->host_to_connect, requestedhost) != 0)
3276 return 0;
3277 return 1;
3278}
3279
3280/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003281 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003282 * we don't support FWD_PERMIT_ANY_PORT and
3283 * need to translate between the configured-host (listen_host)
3284 * and what we've sent to the remote server (channel_rfwd_bind_host)
3285 */
3286static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003287open_listen_match_tcpip(ForwardPermission *allowed_open,
3288 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003289{
3290 const char *allowed_host;
3291
3292 if (allowed_open->host_to_connect == NULL)
3293 return 0;
3294 if (allowed_open->listen_port != requestedport)
3295 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003296 if (!translate && allowed_open->listen_host == NULL &&
3297 requestedhost == NULL)
3298 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003299 allowed_host = translate ?
3300 channel_rfwd_bind_host(allowed_open->listen_host) :
3301 allowed_open->listen_host;
3302 if (allowed_host == NULL ||
3303 strcmp(allowed_host, requestedhost) != 0)
3304 return 0;
3305 return 1;
3306}
3307
Damien Miller7acefbb2014-07-18 14:11:24 +10003308static int
3309open_listen_match_streamlocal(ForwardPermission *allowed_open,
3310 const char *requestedpath)
3311{
3312 if (allowed_open->host_to_connect == NULL)
3313 return 0;
3314 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3315 return 0;
3316 if (allowed_open->listen_path == NULL ||
3317 strcmp(allowed_open->listen_path, requestedpath) != 0)
3318 return 0;
3319 return 1;
3320}
3321
Damien Miller5428f641999-11-25 11:54:57 +11003322/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003323 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003324 * local side.
3325 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003326static int
3327channel_request_rforward_cancel_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003328{
3329 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003330
3331 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003332 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003333
3334 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003335 if (open_listen_match_tcpip(&permitted_opens[i], host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003336 break;
3337 }
3338 if (i >= num_permitted_opens) {
3339 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003340 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003341 }
3342 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3343 packet_put_cstring("cancel-tcpip-forward");
3344 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003345 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003346 packet_put_int(port);
3347 packet_send();
3348
Damien Miller4b3ed642014-07-02 15:29:40 +10003349 permitted_opens[i].listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003350 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003351 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003352 permitted_opens[i].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003353 free(permitted_opens[i].listen_host);
3354 permitted_opens[i].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003355 permitted_opens[i].listen_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003356
3357 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003358}
3359
3360/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003361 * Request cancellation of remote forwarding of Unix domain socket
3362 * path from local side.
3363 */
3364static int
3365channel_request_rforward_cancel_streamlocal(const char *path)
3366{
3367 int i;
3368
3369 if (!compat20)
3370 return -1;
3371
3372 for (i = 0; i < num_permitted_opens; i++) {
3373 if (open_listen_match_streamlocal(&permitted_opens[i], path))
3374 break;
3375 }
3376 if (i >= num_permitted_opens) {
3377 debug("%s: requested forward not found", __func__);
3378 return -1;
3379 }
3380 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3381 packet_put_cstring("cancel-streamlocal-forward@openssh.com");
3382 packet_put_char(0);
3383 packet_put_cstring(path);
3384 packet_send();
3385
3386 permitted_opens[i].listen_port = 0;
3387 permitted_opens[i].port_to_connect = 0;
3388 free(permitted_opens[i].host_to_connect);
3389 permitted_opens[i].host_to_connect = NULL;
3390 permitted_opens[i].listen_host = NULL;
3391 free(permitted_opens[i].listen_path);
3392 permitted_opens[i].listen_path = NULL;
3393
3394 return 0;
3395}
3396
3397/*
3398 * Request cancellation of remote forwarding of a connection from local side.
3399 */
3400int
3401channel_request_rforward_cancel(struct Forward *fwd)
3402{
3403 if (fwd->listen_path != NULL) {
3404 return (channel_request_rforward_cancel_streamlocal(
3405 fwd->listen_path));
3406 } else {
3407 return (channel_request_rforward_cancel_tcpip(fwd->listen_host,
3408 fwd->listen_port ? fwd->listen_port : fwd->allocated_port));
3409 }
3410}
3411
3412/*
Damien Miller5428f641999-11-25 11:54:57 +11003413 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3414 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003415 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003416 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003417int
Damien Miller7acefbb2014-07-18 14:11:24 +10003418channel_input_port_forward_request(int is_root, struct ForwardOptions *fwd_opts)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003419{
Darren Tuckere7d4b192006-07-12 22:17:10 +10003420 int success = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003421 struct Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003422
Damien Miller95def091999-11-25 00:26:21 +11003423 /* Get arguments from the packet. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003424 memset(&fwd, 0, sizeof(fwd));
3425 fwd.listen_port = packet_get_int();
3426 fwd.connect_host = packet_get_string(NULL);
3427 fwd.connect_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003428
Damien Millerbac2d8a2000-09-05 16:13:06 +11003429#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003430 /*
3431 * Check that an unprivileged user is not trying to forward a
3432 * privileged port.
3433 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003434 if (fwd.listen_port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003435 packet_disconnect(
3436 "Requested forwarding of port %d but user is not root.",
Damien Miller7acefbb2014-07-18 14:11:24 +10003437 fwd.listen_port);
3438 if (fwd.connect_port == 0)
Darren Tucker9189ff82003-07-03 13:52:04 +10003439 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003440#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003441
Damien Miller0bc1bd82000-11-13 22:57:25 +11003442 /* Initiate forwarding */
Damien Miller7acefbb2014-07-18 14:11:24 +10003443 success = channel_setup_local_fwd_listener(&fwd, fwd_opts);
Damien Miller95def091999-11-25 00:26:21 +11003444
3445 /* Free the argument string. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003446 free(fwd.connect_host);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003447
3448 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003449}
3450
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003451/*
3452 * Permits opening to any host/port if permitted_opens[] is empty. This is
3453 * usually called by the server, because the user could connect to any port
3454 * anyway, and the server has no way to know but to trust the client anyway.
3455 */
3456void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003457channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003458{
3459 if (num_permitted_opens == 0)
3460 all_opens_permitted = 1;
3461}
3462
Ben Lindstroma3700052001-04-05 23:26:32 +00003463void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003464channel_add_permitted_opens(char *host, int port)
3465{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003466 debug("allow port forwarding to host %s port %d", host, port);
3467
Damien Miller232cfb12010-06-26 09:50:30 +10003468 permitted_opens = xrealloc(permitted_opens,
3469 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003470 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3471 permitted_opens[num_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003472 permitted_opens[num_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003473 permitted_opens[num_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003474 permitted_opens[num_permitted_opens].listen_port = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003475 num_permitted_opens++;
3476
3477 all_opens_permitted = 0;
3478}
3479
Darren Tucker68afb8c2011-10-02 18:59:03 +11003480/*
3481 * Update the listen port for a dynamic remote forward, after
3482 * the actual 'newport' has been allocated. If 'newport' < 0 is
3483 * passed then they entry will be invalidated.
3484 */
3485void
3486channel_update_permitted_opens(int idx, int newport)
3487{
3488 if (idx < 0 || idx >= num_permitted_opens) {
3489 debug("channel_update_permitted_opens: index out of range:"
3490 " %d num_permitted_opens %d", idx, num_permitted_opens);
3491 return;
3492 }
3493 debug("%s allowed port %d for forwarding to host %s port %d",
3494 newport > 0 ? "Updating" : "Removing",
3495 newport,
3496 permitted_opens[idx].host_to_connect,
3497 permitted_opens[idx].port_to_connect);
3498 if (newport >= 0) {
3499 permitted_opens[idx].listen_port =
3500 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3501 } else {
3502 permitted_opens[idx].listen_port = 0;
3503 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003504 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003505 permitted_opens[idx].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003506 free(permitted_opens[idx].listen_host);
3507 permitted_opens[idx].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003508 free(permitted_opens[idx].listen_path);
3509 permitted_opens[idx].listen_path = NULL;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003510 }
3511}
3512
Damien Millera765cf42006-07-24 14:08:13 +10003513int
Damien Miller9b439df2006-07-24 14:04:00 +10003514channel_add_adm_permitted_opens(char *host, int port)
3515{
Damien Millera765cf42006-07-24 14:08:13 +10003516 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003517
Damien Miller232cfb12010-06-26 09:50:30 +10003518 permitted_adm_opens = xrealloc(permitted_adm_opens,
3519 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003520 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3521 = xstrdup(host);
3522 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003523 permitted_adm_opens[num_adm_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003524 permitted_adm_opens[num_adm_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003525 permitted_adm_opens[num_adm_permitted_opens].listen_port = 0;
Damien Millera765cf42006-07-24 14:08:13 +10003526 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003527}
3528
3529void
Damien Millerc6081482012-04-22 11:18:53 +10003530channel_disable_adm_local_opens(void)
3531{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003532 channel_clear_adm_permitted_opens();
3533 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3534 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3535 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003536}
3537
3538void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003539channel_clear_permitted_opens(void)
3540{
3541 int i;
3542
Damien Miller4b3ed642014-07-02 15:29:40 +10003543 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003544 free(permitted_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003545 free(permitted_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003546 free(permitted_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003547 }
Darren Tuckera627d422013-06-02 07:31:17 +10003548 free(permitted_opens);
3549 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003550 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003551}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003552
Damien Miller9b439df2006-07-24 14:04:00 +10003553void
3554channel_clear_adm_permitted_opens(void)
3555{
3556 int i;
3557
Damien Miller4b3ed642014-07-02 15:29:40 +10003558 for (i = 0; i < num_adm_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003559 free(permitted_adm_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003560 free(permitted_adm_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003561 free(permitted_adm_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003562 }
Darren Tuckera627d422013-06-02 07:31:17 +10003563 free(permitted_adm_opens);
3564 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003565 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003566}
3567
Darren Tuckere7140f22008-06-10 23:01:51 +10003568void
3569channel_print_adm_permitted_opens(void)
3570{
Damien Miller6ef17492008-07-16 22:42:06 +10003571 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003572
Damien Millerb53d8a12009-01-28 16:13:04 +11003573 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003574 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003575 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003576 return;
3577 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003578 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003579 if (permitted_adm_opens[i].host_to_connect == NULL)
3580 printf(" none");
3581 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003582 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3583 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003584 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003585}
3586
Darren Tucker1338b9e2011-10-02 18:57:35 +11003587/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3588int
3589permitopen_port(const char *p)
3590{
3591 int port;
3592
3593 if (strcmp(p, "*") == 0)
3594 return FWD_PERMIT_ANY_PORT;
3595 if ((port = a2port(p)) > 0)
3596 return port;
3597 return -1;
3598}
3599
Damien Millerbd740252008-05-19 15:37:09 +10003600/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003601static int
Damien Millerbd740252008-05-19 15:37:09 +10003602connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003603{
Damien Millerbd740252008-05-19 15:37:09 +10003604 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003605 struct sockaddr_un *sunaddr;
3606 char ntop[NI_MAXHOST], strport[MAX(NI_MAXSERV,sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003607
Damien Millerbd740252008-05-19 15:37:09 +10003608 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003609 switch (cctx->ai->ai_family) {
3610 case AF_UNIX:
3611 /* unix:pathname instead of host:port */
3612 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3613 strlcpy(ntop, "unix", sizeof(ntop));
3614 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3615 break;
3616 case AF_INET:
3617 case AF_INET6:
3618 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3619 ntop, sizeof(ntop), strport, sizeof(strport),
3620 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3621 error("connect_next: getnameinfo failed");
3622 continue;
3623 }
3624 break;
3625 default:
Damien Miller34132e52000-01-14 15:45:46 +11003626 continue;
3627 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003628 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3629 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003630 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003631 error("socket: %.100s", strerror(errno));
3632 else
3633 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003634 continue;
3635 }
Damien Miller232711f2004-06-15 10:35:30 +10003636 if (set_nonblock(sock) == -1)
3637 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003638 if (connect(sock, cctx->ai->ai_addr,
3639 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3640 debug("connect_next: host %.100s ([%.100s]:%s): "
3641 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003642 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003643 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003644 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003645 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003646 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003647 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003648 if (cctx->ai->ai_family != AF_UNIX)
3649 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003650 debug("connect_next: host %.100s ([%.100s]:%s) "
3651 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3652 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10003653 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003654 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003655 return -1;
3656}
Damien Millerb38eff82000-04-01 11:09:21 +10003657
Damien Millerbd740252008-05-19 15:37:09 +10003658static void
3659channel_connect_ctx_free(struct channel_connect *cctx)
3660{
Darren Tuckera627d422013-06-02 07:31:17 +10003661 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003662 if (cctx->aitop) {
3663 if (cctx->aitop->ai_family == AF_UNIX)
3664 free(cctx->aitop);
3665 else
3666 freeaddrinfo(cctx->aitop);
3667 }
Damien Miller1d2c4562014-02-04 11:18:20 +11003668 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003669}
3670
Damien Miller7acefbb2014-07-18 14:11:24 +10003671/* Return CONNECTING channel to remote host:port or local socket path */
Damien Millerbd740252008-05-19 15:37:09 +10003672static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003673connect_to(const char *name, int port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003674{
3675 struct addrinfo hints;
3676 int gaierr;
3677 int sock = -1;
3678 char strport[NI_MAXSERV];
3679 struct channel_connect cctx;
3680 Channel *c;
3681
Damien Miller2bcb8662008-07-12 17:12:29 +10003682 memset(&cctx, 0, sizeof(cctx));
Damien Miller7acefbb2014-07-18 14:11:24 +10003683
3684 if (port == PORT_STREAMLOCAL) {
3685 struct sockaddr_un *sunaddr;
3686 struct addrinfo *ai;
3687
3688 if (strlen(name) > sizeof(sunaddr->sun_path)) {
3689 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
3690 return (NULL);
3691 }
3692
3693 /*
3694 * Fake up a struct addrinfo for AF_UNIX connections.
3695 * channel_connect_ctx_free() must check ai_family
3696 * and use free() not freeaddirinfo() for AF_UNIX.
3697 */
3698 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
3699 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
3700 ai->ai_addr = (struct sockaddr *)(ai + 1);
3701 ai->ai_addrlen = sizeof(*sunaddr);
3702 ai->ai_family = AF_UNIX;
3703 ai->ai_socktype = SOCK_STREAM;
3704 ai->ai_protocol = PF_UNSPEC;
3705 sunaddr = (struct sockaddr_un *)ai->ai_addr;
3706 sunaddr->sun_family = AF_UNIX;
3707 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
3708 cctx.aitop = ai;
3709 } else {
3710 memset(&hints, 0, sizeof(hints));
3711 hints.ai_family = IPv4or6;
3712 hints.ai_socktype = SOCK_STREAM;
3713 snprintf(strport, sizeof strport, "%d", port);
3714 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx.aitop)) != 0) {
3715 error("connect_to %.100s: unknown host (%s)", name,
3716 ssh_gai_strerror(gaierr));
3717 return NULL;
3718 }
Damien Millerbd740252008-05-19 15:37:09 +10003719 }
3720
Damien Miller7acefbb2014-07-18 14:11:24 +10003721 cctx.host = xstrdup(name);
Damien Millerbd740252008-05-19 15:37:09 +10003722 cctx.port = port;
3723 cctx.ai = cctx.aitop;
3724
3725 if ((sock = connect_next(&cctx)) == -1) {
3726 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10003727 name, port, strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003728 channel_connect_ctx_free(&cctx);
3729 return NULL;
3730 }
3731 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3732 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3733 c->connect_ctx = cctx;
3734 return c;
3735}
3736
3737Channel *
Damien Miller4b3ed642014-07-02 15:29:40 +10003738channel_connect_by_listen_address(const char *listen_host,
3739 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003740{
3741 int i;
3742
3743 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003744 if (open_listen_match_tcpip(&permitted_opens[i], listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10003745 listen_port, 1)) {
Damien Millerbd740252008-05-19 15:37:09 +10003746 return connect_to(
3747 permitted_opens[i].host_to_connect,
3748 permitted_opens[i].port_to_connect, ctype, rname);
3749 }
3750 }
3751 error("WARNING: Server requests forwarding for unknown listen_port %d",
3752 listen_port);
3753 return NULL;
3754}
3755
Damien Miller7acefbb2014-07-18 14:11:24 +10003756Channel *
3757channel_connect_by_listen_path(const char *path, char *ctype, char *rname)
3758{
3759 int i;
3760
3761 for (i = 0; i < num_permitted_opens; i++) {
3762 if (open_listen_match_streamlocal(&permitted_opens[i], path)) {
3763 return connect_to(
3764 permitted_opens[i].host_to_connect,
3765 permitted_opens[i].port_to_connect, ctype, rname);
3766 }
3767 }
3768 error("WARNING: Server requests forwarding for unknown path %.100s",
3769 path);
3770 return NULL;
3771}
3772
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003773/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003774Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003775channel_connect_to_port(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003776{
Damien Miller9b439df2006-07-24 14:04:00 +10003777 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003778
3779 permit = all_opens_permitted;
3780 if (!permit) {
3781 for (i = 0; i < num_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003782 if (open_match(&permitted_opens[i], host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003783 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003784 break;
3785 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003786 }
Damien Miller9b439df2006-07-24 14:04:00 +10003787
3788 if (num_adm_permitted_opens > 0) {
3789 permit_adm = 0;
3790 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003791 if (open_match(&permitted_adm_opens[i], host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10003792 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003793 break;
3794 }
Damien Miller9b439df2006-07-24 14:04:00 +10003795 }
3796
3797 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003798 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003799 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003800 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003801 }
Damien Millerbd740252008-05-19 15:37:09 +10003802 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003803}
3804
Damien Miller7acefbb2014-07-18 14:11:24 +10003805/* Check if connecting to that path is permitted and connect. */
3806Channel *
3807channel_connect_to_path(const char *path, char *ctype, char *rname)
3808{
3809 int i, permit, permit_adm = 1;
3810
3811 permit = all_opens_permitted;
3812 if (!permit) {
3813 for (i = 0; i < num_permitted_opens; i++)
3814 if (open_match(&permitted_opens[i], path, PORT_STREAMLOCAL)) {
3815 permit = 1;
3816 break;
3817 }
3818 }
3819
3820 if (num_adm_permitted_opens > 0) {
3821 permit_adm = 0;
3822 for (i = 0; i < num_adm_permitted_opens; i++)
3823 if (open_match(&permitted_adm_opens[i], path, PORT_STREAMLOCAL)) {
3824 permit_adm = 1;
3825 break;
3826 }
3827 }
3828
3829 if (!permit || !permit_adm) {
3830 logit("Received request to connect to path %.100s, "
3831 "but the request was denied.", path);
3832 return NULL;
3833 }
3834 return connect_to(path, PORT_STREAMLOCAL, ctype, rname);
3835}
3836
Damien Miller0e220db2004-06-15 10:34:08 +10003837void
3838channel_send_window_changes(void)
3839{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003840 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003841 struct winsize ws;
3842
3843 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003844 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003845 channels[i]->type != SSH_CHANNEL_OPEN)
3846 continue;
3847 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3848 continue;
3849 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003850 packet_put_int((u_int)ws.ws_col);
3851 packet_put_int((u_int)ws.ws_row);
3852 packet_put_int((u_int)ws.ws_xpixel);
3853 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003854 packet_send();
3855 }
3856}
3857
Ben Lindstrome9c99912001-06-09 00:41:05 +00003858/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003859
Damien Miller5428f641999-11-25 11:54:57 +11003860/*
3861 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003862 * Returns 0 and a suitable display number for the DISPLAY variable
3863 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003864 */
Kevin Steves366298c2001-12-19 17:58:01 +00003865int
Damien Miller95c249f2002-02-05 12:11:34 +11003866x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003867 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003868{
Damien Millere7378562001-12-21 14:58:35 +11003869 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003870 int display_number, sock;
3871 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003872 struct addrinfo hints, *ai, *aitop;
3873 char strport[NI_MAXSERV];
3874 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003875
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003876 if (chanids == NULL)
3877 return -1;
3878
Damien Millera34a28b1999-12-14 10:47:15 +11003879 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003880 display_number < MAX_DISPLAYS;
3881 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003882 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003883 memset(&hints, 0, sizeof(hints));
3884 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003885 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003886 hints.ai_socktype = SOCK_STREAM;
3887 snprintf(strport, sizeof strport, "%d", port);
3888 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003889 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003890 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003891 }
Damien Miller34132e52000-01-14 15:45:46 +11003892 for (ai = aitop; ai; ai = ai->ai_next) {
3893 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3894 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003895 sock = socket(ai->ai_family, ai->ai_socktype,
3896 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003897 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003898 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3899#ifdef EPFNOSUPPORT
3900 && (errno != EPFNOSUPPORT)
3901#endif
3902 ) {
Damien Millere2192732000-01-17 13:22:55 +11003903 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003904 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003905 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003906 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003907 debug("x11_create_display_inet: Socket family %d not supported",
3908 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003909 continue;
3910 }
Damien Miller34132e52000-01-14 15:45:46 +11003911 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003912 if (ai->ai_family == AF_INET6)
3913 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003914 if (x11_use_localhost)
3915 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003916 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003917 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003918 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003919
Damien Miller34132e52000-01-14 15:45:46 +11003920 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003921 close(socks[n]);
3922 }
3923 num_socks = 0;
3924 break;
3925 }
3926 socks[num_socks++] = sock;
3927 if (num_socks == NUM_SOCKS)
3928 break;
Damien Miller95def091999-11-25 00:26:21 +11003929 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003930 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003931 if (num_socks > 0)
3932 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003933 }
Damien Miller95def091999-11-25 00:26:21 +11003934 if (display_number >= MAX_DISPLAYS) {
3935 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003936 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003937 }
Damien Miller95def091999-11-25 00:26:21 +11003938 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003939 for (n = 0; n < num_socks; n++) {
3940 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003941 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003942 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003943 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003944 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003945 }
Damien Miller95def091999-11-25 00:26:21 +11003946 }
Damien Miller34132e52000-01-14 15:45:46 +11003947
Damien Miller34132e52000-01-14 15:45:46 +11003948 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003949 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003950 for (n = 0; n < num_socks; n++) {
3951 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003952 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003953 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3954 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003955 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003956 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003957 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003958 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003959 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003960
Kevin Steves366298c2001-12-19 17:58:01 +00003961 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003962 *display_numberp = display_number;
3963 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003964}
3965
Ben Lindstrombba81212001-06-25 05:01:22 +00003966static int
Damien Miller819dbb62009-01-21 16:46:26 +11003967connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003968{
Damien Miller95def091999-11-25 00:26:21 +11003969 int sock;
3970 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003971
Damien Miller3afe3752001-12-21 12:39:51 +11003972 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3973 if (sock < 0)
3974 error("socket: %.100s", strerror(errno));
3975 memset(&addr, 0, sizeof(addr));
3976 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003977 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003978 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003979 return sock;
3980 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003981 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3982 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003983}
3984
Damien Miller819dbb62009-01-21 16:46:26 +11003985static int
3986connect_local_xsocket(u_int dnr)
3987{
3988 char buf[1024];
3989 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3990 return connect_local_xsocket_path(buf);
3991}
3992
Damien Millerbd483e72000-04-30 10:00:53 +10003993int
3994x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003995{
Damien Miller57c4e872006-03-31 23:11:07 +11003996 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003997 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003998 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003999 struct addrinfo hints, *ai, *aitop;
4000 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004001 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004002
Damien Miller95def091999-11-25 00:26:21 +11004003 /* Try to open a socket for the local X server. */
4004 display = getenv("DISPLAY");
4005 if (!display) {
4006 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004007 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004008 }
Damien Miller5428f641999-11-25 11:54:57 +11004009 /*
4010 * Now we decode the value of the DISPLAY variable and make a
4011 * connection to the real X server.
4012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004013
Damien Miller819dbb62009-01-21 16:46:26 +11004014 /* Check if the display is from launchd. */
4015#ifdef __APPLE__
4016 if (strncmp(display, "/tmp/launch", 11) == 0) {
4017 sock = connect_local_xsocket_path(display);
4018 if (sock < 0)
4019 return -1;
4020
4021 /* OK, we now have a connection to the display. */
4022 return sock;
4023 }
4024#endif
Damien Miller5428f641999-11-25 11:54:57 +11004025 /*
4026 * Check if it is a unix domain socket. Unix domain displays are in
4027 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4028 */
Damien Miller95def091999-11-25 00:26:21 +11004029 if (strncmp(display, "unix:", 5) == 0 ||
4030 display[0] == ':') {
4031 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11004032 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004033 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004034 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004035 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004036 }
4037 /* Create a socket. */
4038 sock = connect_local_xsocket(display_number);
4039 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004040 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004041
4042 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004043 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004044 }
Damien Miller5428f641999-11-25 11:54:57 +11004045 /*
4046 * Connect to an inet socket. The DISPLAY value is supposedly
4047 * hostname:d[.s], where hostname may also be numeric IP address.
4048 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004049 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004050 cp = strchr(buf, ':');
4051 if (!cp) {
4052 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004053 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004054 }
Damien Miller95def091999-11-25 00:26:21 +11004055 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11004056 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11004057 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004058 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004059 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004060 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004061 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004062
Damien Miller34132e52000-01-14 15:45:46 +11004063 /* Look up the host address */
4064 memset(&hints, 0, sizeof(hints));
4065 hints.ai_family = IPv4or6;
4066 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004067 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004068 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004069 error("%.100s: unknown host. (%s)", buf,
4070 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004071 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004072 }
Damien Miller34132e52000-01-14 15:45:46 +11004073 for (ai = aitop; ai; ai = ai->ai_next) {
4074 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004075 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004076 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004077 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004078 continue;
4079 }
4080 /* Connect it to the display. */
4081 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004082 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004083 6000 + display_number, strerror(errno));
4084 close(sock);
4085 continue;
4086 }
4087 /* Success */
4088 break;
Damien Miller34132e52000-01-14 15:45:46 +11004089 }
Damien Miller34132e52000-01-14 15:45:46 +11004090 freeaddrinfo(aitop);
4091 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11004092 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11004093 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004094 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004095 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004096 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004097 return sock;
4098}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004099
Damien Millerbd483e72000-04-30 10:00:53 +10004100/*
4101 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
4102 * the remote channel number. We should do whatever we want, and respond
4103 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
4104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004105
Damien Miller8473dd82006-07-24 14:08:32 +10004106/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004107int
Damien Miller630d6f42002-01-22 23:17:30 +11004108x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10004109{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004110 Channel *c = NULL;
4111 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10004112 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10004113
4114 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004115
4116 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00004117
4118 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004119 remote_host = packet_get_string(NULL);
4120 } else {
4121 remote_host = xstrdup("unknown (remote did not supply name)");
4122 }
Damien Miller48b03fc2002-01-22 23:11:40 +11004123 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10004124
4125 /* Obtain a connection to the real X display. */
4126 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004127 if (sock != -1) {
4128 /* Allocate a channel for this connection. */
4129 c = channel_new("connected x11 socket",
4130 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
4131 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11004132 c->remote_id = remote_id;
4133 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004134 }
Darren Tuckera627d422013-06-02 07:31:17 +10004135 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004136 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10004137 /* Send refusal to the remote host. */
4138 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004139 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10004140 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10004141 /* Send a confirmation to the remote host. */
4142 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004143 packet_put_int(remote_id);
4144 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10004145 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004146 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004147 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004148}
4149
Damien Miller69b69aa2000-10-28 14:19:58 +11004150/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10004151/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004152int
Damien Miller630d6f42002-01-22 23:17:30 +11004153deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11004154{
4155 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00004156
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00004157 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11004158 case SSH_SMSG_AGENT_OPEN:
4159 error("Warning: ssh server tried agent forwarding.");
4160 break;
4161 case SSH_SMSG_X11_OPEN:
4162 error("Warning: ssh server tried X11 forwarding.");
4163 break;
4164 default:
Damien Miller630d6f42002-01-22 23:17:30 +11004165 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11004166 break;
4167 }
Damien Miller5eb137c2005-12-31 16:19:53 +11004168 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11004169 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
4170 packet_put_int(rchan);
4171 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004172 return 0;
Damien Miller69b69aa2000-10-28 14:19:58 +11004173}
4174
Damien Miller5428f641999-11-25 11:54:57 +11004175/*
4176 * Requests forwarding of X11 connections, generates fake authentication
4177 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004178 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004179 */
Damien Miller4af51302000-04-16 11:18:38 +10004180void
Damien Miller17e7ed02005-06-17 12:54:33 +10004181x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10004182 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004183{
Ben Lindstrom46c16222000-12-22 01:43:59 +00004184 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004185 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004186 char *new_data;
4187 int screen_number;
4188 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10004189 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004190
Damien Millerf92c0792005-07-06 09:45:26 +10004191 if (x11_saved_display == NULL)
4192 x11_saved_display = xstrdup(disp);
4193 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004194 error("x11_request_forwarding_with_spoofing: different "
4195 "$DISPLAY already forwarded");
4196 return;
4197 }
4198
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004199 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004200 if (cp)
4201 cp = strchr(cp, '.');
4202 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004203 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004204 else
4205 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004206
Damien Miller13390022005-07-06 09:44:19 +10004207 if (x11_saved_proto == NULL) {
4208 /* Save protocol name. */
4209 x11_saved_proto = xstrdup(proto);
4210 /*
Damien Miller46d38de2005-07-17 17:02:09 +10004211 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10004212 * of the same length.
4213 */
4214 x11_saved_data = xmalloc(data_len);
4215 x11_fake_data = xmalloc(data_len);
4216 for (i = 0; i < data_len; i++) {
4217 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4218 fatal("x11_request_forwarding: bad "
4219 "authentication data: %.100s", data);
4220 if (i % 4 == 0)
4221 rnd = arc4random();
4222 x11_saved_data[i] = value;
4223 x11_fake_data[i] = rnd & 0xff;
4224 rnd >>= 8;
4225 }
4226 x11_saved_data_len = data_len;
4227 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004228 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004229
Damien Miller95def091999-11-25 00:26:21 +11004230 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10004231 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004232
Damien Miller95def091999-11-25 00:26:21 +11004233 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10004234 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10004235 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10004236 packet_put_char(0); /* XXX bool single connection */
4237 } else {
4238 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
4239 }
4240 packet_put_cstring(proto);
4241 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11004242 packet_put_int(screen_number);
4243 packet_send();
4244 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10004245 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004246}
4247
Ben Lindstrome9c99912001-06-09 00:41:05 +00004248
4249/* -- agent forwarding */
4250
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004251/* Sends a message to the server to request authentication fd forwarding. */
4252
Damien Miller4af51302000-04-16 11:18:38 +10004253void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00004254auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004255{
Damien Miller95def091999-11-25 00:26:21 +11004256 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
4257 packet_send();
4258 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004259}