blob: 9486c1cff436a6b25203bf700878be591a913a1a [file] [log] [blame]
millert@openbsd.orgfd368342015-02-06 23:21:59 +00001/* $OpenBSD: channels.c,v 1.341 2015/02/06 23:21:59 millert Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000045#include <sys/param.h> /* MIN MAX */
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>
Darren Tucker37f92202015-02-23 03:07:24 +110060#ifdef HAVE_STDINT_H
millert@openbsd.orgfd368342015-02-06 23:21:59 +000061#include <stdint.h>
Darren Tucker37f92202015-02-23 03:07:24 +110062#endif
Damien Millera7a73ee2006-08-05 11:37:59 +100063#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100064#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100065#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110066#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100067#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100068#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Millerb84886b2008-05-19 15:05:07 +100070#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100071#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000073#include "ssh1.h"
74#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "log.h"
77#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100078#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100082#include "key.h"
83#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110084#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Ben Lindstrome9c99912001-06-09 00:41:05 +000086/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Pointer to an array containing all allocated channels. The array is
90 * dynamically extended as needed.
91 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000092static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000096 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110097 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100098static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000102 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +1100103 */
Damien Miller5e953212001-01-30 09:14:00 +1100104static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Ben Lindstrome9c99912001-06-09 00:41:05 +0000107/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * Data structure for storing which hosts are permitted for forward requests.
111 * The local sides of any remote forwards are stored in this array to prevent
112 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
113 * network (which might be behind a firewall).
114 */
Damien Miller7acefbb2014-07-18 14:11:24 +1000115/* XXX: streamlocal wants a path instead of host:port */
116/* Overload host_to_connect; we could just make this match Forward */
117/* XXX - can we use listen_host instead of listen_path? */
Damien Miller95def091999-11-25 00:26:21 +1100118typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000119 char *host_to_connect; /* Connect to 'host'. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000120 int port_to_connect; /* Connect to 'port'. */
Damien Miller4b3ed642014-07-02 15:29:40 +1000121 char *listen_host; /* Remote side should listen address. */
Damien Miller7acefbb2014-07-18 14:11:24 +1000122 char *listen_path; /* Remote side should listen path. */
123 int listen_port; /* Remote side should listen port. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124} ForwardPermission;
125
Damien Miller9b439df2006-07-24 14:04:00 +1000126/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000127static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000128
Damien Miller9b439df2006-07-24 14:04:00 +1000129/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000130static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000131
132/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000134
135/* Number of permitted host/port pair in the array permitted by the admin. */
136static int num_adm_permitted_opens = 0;
137
Darren Tucker1338b9e2011-10-02 18:57:35 +1100138/* special-case port number meaning allow any port */
139#define FWD_PERMIT_ANY_PORT 0
140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
142 * If this is true, all opens are permitted. This is the case on the server
143 * on which we have to trust the client anyway, and the user could do
144 * anything after logging in anyway.
145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146static int all_opens_permitted = 0;
147
Ben Lindstrome9c99912001-06-09 00:41:05 +0000148
149/* -- X11 forwarding */
150
151/* Maximum number of fake X11 displays to try. */
152#define MAX_DISPLAYS 1000
153
Damien Miller13390022005-07-06 09:44:19 +1000154/* Saved X11 local (client) display. */
155static char *x11_saved_display = NULL;
156
Ben Lindstrome9c99912001-06-09 00:41:05 +0000157/* Saved X11 authentication protocol name. */
158static char *x11_saved_proto = NULL;
159
160/* Saved X11 authentication data. This is the real data. */
161static char *x11_saved_data = NULL;
162static u_int x11_saved_data_len = 0;
163
164/*
165 * Fake X11 authentication data. This is what the server will be sending us;
166 * we should replace any occurrences of this by the real data.
167 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100168static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000169static u_int x11_fake_data_len;
170
171
172/* -- agent forwarding */
173
174#define NUM_SOCKS 10
175
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000176/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000177static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000178
Ben Lindstrome9c99912001-06-09 00:41:05 +0000179/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000181
Damien Millerbd740252008-05-19 15:37:09 +1000182/* non-blocking connect helpers */
183static int connect_next(struct channel_connect *);
184static void channel_connect_ctx_free(struct channel_connect *);
185
Ben Lindstrome9c99912001-06-09 00:41:05 +0000186/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000187
188Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100189channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000190{
191 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000192
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000193 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100194 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000195 return NULL;
196 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000197 c = channels[id];
198 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100199 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000200 return NULL;
201 }
202 return c;
203}
204
Damien Miller5428f641999-11-25 11:54:57 +1100205/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100206 * Returns the channel if it is allowed to receive protocol messages.
207 * Private channels, like listening sockets, may not receive messages.
208 */
209Channel *
210channel_lookup(int id)
211{
212 Channel *c;
213
214 if ((c = channel_by_id(id)) == NULL)
215 return (NULL);
216
Damien Millerd62f2ca2006-03-26 13:57:41 +1100217 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100218 case SSH_CHANNEL_X11_OPEN:
219 case SSH_CHANNEL_LARVAL:
220 case SSH_CHANNEL_CONNECTING:
221 case SSH_CHANNEL_DYNAMIC:
222 case SSH_CHANNEL_OPENING:
223 case SSH_CHANNEL_OPEN:
224 case SSH_CHANNEL_INPUT_DRAINING:
225 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller36187092013-06-10 13:07:11 +1000226 case SSH_CHANNEL_ABANDONED:
Damien Millerd47c62a2005-12-13 19:33:57 +1100227 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100228 }
229 logit("Non-public channel %d, type %d.", id, c->type);
230 return (NULL);
231}
232
233/*
Damien Millere247cc42000-05-07 12:03:14 +1000234 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000235 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100236 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000237static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100238channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000239 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240{
Damien Miller95def091999-11-25 00:26:21 +1100241 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100242 channel_max_fd = MAX(channel_max_fd, rfd);
243 channel_max_fd = MAX(channel_max_fd, wfd);
244 channel_max_fd = MAX(channel_max_fd, efd);
245
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100246 if (rfd != -1)
247 fcntl(rfd, F_SETFD, FD_CLOEXEC);
248 if (wfd != -1 && wfd != rfd)
249 fcntl(wfd, F_SETFD, FD_CLOEXEC);
250 if (efd != -1 && efd != rfd && efd != wfd)
251 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000252
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253 c->rfd = rfd;
254 c->wfd = wfd;
255 c->sock = (rfd == wfd) ? rfd : -1;
256 c->efd = efd;
257 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100258
Darren Tuckered3cdc02008-06-16 23:29:18 +1000259 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000260 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000261#ifdef _AIX
262 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker1a48aec2008-06-16 23:35:56 +1000263 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Millerc192a4c2013-08-01 14:29:20 +1000264#endif
Damien Miller79438cc2001-02-16 12:34:57 +1100265
Damien Miller69b69aa2000-10-28 14:19:58 +1100266 /* enable nonblocking mode */
267 if (nonblock) {
268 if (rfd != -1)
269 set_nonblock(rfd);
270 if (wfd != -1)
271 set_nonblock(wfd);
272 if (efd != -1)
273 set_nonblock(efd);
274 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000275}
276
277/*
278 * Allocate a new channel object and set its type and socket. This will cause
279 * remote_name to be freed.
280 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000281Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000282channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000283 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000284{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000285 int found;
286 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000287 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288
Damien Miller95def091999-11-25 00:26:21 +1100289 /* Do initial allocation if this is the first call. */
290 if (channels_alloc == 0) {
291 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100292 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100293 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100295 }
296 /* Try to find a free slot where to put the new channel. */
297 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000298 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100299 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000300 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100301 break;
302 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000303 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100304 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100305 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000306 if (channels_alloc > 10000)
307 fatal("channel_new: internal error: channels_alloc %d "
308 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100309 channels = xrealloc(channels, channels_alloc + 10,
310 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000311 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100312 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100313 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000314 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100315 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000316 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100317 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100318 buffer_init(&c->input);
319 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000320 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100321 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000322 c->listening_addr = NULL;
323 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100324 c->ostate = CHAN_OUTPUT_OPEN;
325 c->istate = CHAN_INPUT_OPEN;
326 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000327 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000328 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100329 c->self = found;
330 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000331 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000332 c->local_window = window;
333 c->local_window_max = window;
334 c->local_consumed = 0;
335 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100336 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000337 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000338 c->remote_window = 0;
339 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000340 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100341 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000342 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100343 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000344 c->open_confirm = NULL;
345 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000346 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100347 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000348 c->filter_ctx = NULL;
349 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100350 c->ctl_chan = -1;
351 c->mux_rcb = NULL;
352 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000353 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100354 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000355 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100356 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000357 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000359
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000360static int
361channel_find_maxfd(void)
362{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000363 u_int i;
364 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000365 Channel *c;
366
367 for (i = 0; i < channels_alloc; i++) {
368 c = channels[i];
369 if (c != NULL) {
370 max = MAX(max, c->rfd);
371 max = MAX(max, c->wfd);
372 max = MAX(max, c->efd);
373 }
374 }
375 return max;
376}
377
378int
379channel_close_fd(int *fdp)
380{
381 int ret = 0, fd = *fdp;
382
383 if (fd != -1) {
384 ret = close(fd);
385 *fdp = -1;
386 if (fd == channel_max_fd)
387 channel_max_fd = channel_find_maxfd();
388 }
389 return ret;
390}
391
Damien Miller6f83b8e2000-05-02 09:23:45 +1000392/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000393static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000394channel_close_fds(Channel *c)
395{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000396 channel_close_fd(&c->sock);
397 channel_close_fd(&c->rfd);
398 channel_close_fd(&c->wfd);
399 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000400}
401
402/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000403void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000404channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000406 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000407 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000408 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000409
410 for (n = 0, i = 0; i < channels_alloc; i++)
411 if (channels[i])
412 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000413 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000414 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000415
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000416 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000417 debug3("channel %d: status: %s", c->self, s);
Darren Tuckera627d422013-06-02 07:31:17 +1000418 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000419
Damien Miller6f83b8e2000-05-02 09:23:45 +1000420 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000421 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000422 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000423 buffer_free(&c->input);
424 buffer_free(&c->output);
425 buffer_free(&c->extended);
Darren Tuckera627d422013-06-02 07:31:17 +1000426 free(c->remote_name);
427 c->remote_name = NULL;
428 free(c->path);
429 c->path = NULL;
430 free(c->listening_addr);
431 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000432 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
433 if (cc->abandon_cb != NULL)
434 cc->abandon_cb(c, cc->ctx);
435 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +1100436 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000437 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000438 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000439 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
440 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000441 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000442 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000443}
444
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000446channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000448 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449
Ben Lindstrom601e4362001-06-21 03:19:23 +0000450 for (i = 0; i < channels_alloc; i++)
451 if (channels[i] != NULL)
452 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000453}
454
455/*
456 * Closes the sockets/fds of all channels. This is used to close extra file
457 * descriptors after a fork.
458 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000459void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000460channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000461{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000462 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000463
464 for (i = 0; i < channels_alloc; i++)
465 if (channels[i] != NULL)
466 channel_close_fds(channels[i]);
467}
468
469/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000470 * Stop listening to channels.
471 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000472void
473channel_stop_listening(void)
474{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000475 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000476 Channel *c;
477
478 for (i = 0; i < channels_alloc; i++) {
479 c = channels[i];
480 if (c != NULL) {
481 switch (c->type) {
482 case SSH_CHANNEL_AUTH_SOCKET:
483 case SSH_CHANNEL_PORT_LISTENER:
484 case SSH_CHANNEL_RPORT_LISTENER:
485 case SSH_CHANNEL_X11_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000486 case SSH_CHANNEL_UNIX_LISTENER:
487 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000488 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000489 channel_free(c);
490 break;
491 }
492 }
493 }
494}
495
496/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000497 * Returns true if no channel has too much buffered data, and false if one or
498 * more channel is overfull.
499 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000501channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502{
503 u_int i;
504 Channel *c;
505
506 for (i = 0; i < channels_alloc; i++) {
507 c = channels[i];
508 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000509#if 0
510 if (!compat20 &&
511 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100512 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513 c->self, buffer_len(&c->input));
514 return 0;
515 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000516#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000518 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000519 c->self, buffer_len(&c->output),
520 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521 return 0;
522 }
523 }
524 }
525 return 1;
526}
527
528/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000529int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000530channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000531{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000532 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000533 Channel *c;
534
535 for (i = 0; i < channels_alloc; i++) {
536 c = channels[i];
537 if (c == NULL)
538 continue;
539 switch (c->type) {
540 case SSH_CHANNEL_X11_LISTENER:
541 case SSH_CHANNEL_PORT_LISTENER:
542 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100543 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000544 case SSH_CHANNEL_CLOSED:
545 case SSH_CHANNEL_AUTH_SOCKET:
546 case SSH_CHANNEL_DYNAMIC:
547 case SSH_CHANNEL_CONNECTING:
548 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000549 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000550 case SSH_CHANNEL_UNIX_LISTENER:
551 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000552 continue;
553 case SSH_CHANNEL_LARVAL:
554 if (!compat20)
555 fatal("cannot happen: SSH_CHANNEL_LARVAL");
556 continue;
557 case SSH_CHANNEL_OPENING:
558 case SSH_CHANNEL_OPEN:
559 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100560 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561 return 1;
562 case SSH_CHANNEL_INPUT_DRAINING:
563 case SSH_CHANNEL_OUTPUT_DRAINING:
564 if (!compat13)
565 fatal("cannot happen: OUT_DRAIN");
566 return 1;
567 default:
568 fatal("channel_still_open: bad channel type %d", c->type);
569 /* NOTREACHED */
570 }
571 }
572 return 0;
573}
574
575/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000576int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000577channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000578{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000579 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000580 Channel *c;
581
582 for (i = 0; i < channels_alloc; i++) {
583 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000584 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000585 continue;
586 switch (c->type) {
587 case SSH_CHANNEL_CLOSED:
588 case SSH_CHANNEL_DYNAMIC:
589 case SSH_CHANNEL_X11_LISTENER:
590 case SSH_CHANNEL_PORT_LISTENER:
591 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100592 case SSH_CHANNEL_MUX_LISTENER:
593 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594 case SSH_CHANNEL_OPENING:
595 case SSH_CHANNEL_CONNECTING:
596 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000597 case SSH_CHANNEL_ABANDONED:
Damien Miller7acefbb2014-07-18 14:11:24 +1000598 case SSH_CHANNEL_UNIX_LISTENER:
599 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000600 continue;
601 case SSH_CHANNEL_LARVAL:
602 case SSH_CHANNEL_AUTH_SOCKET:
603 case SSH_CHANNEL_OPEN:
604 case SSH_CHANNEL_X11_OPEN:
605 return i;
606 case SSH_CHANNEL_INPUT_DRAINING:
607 case SSH_CHANNEL_OUTPUT_DRAINING:
608 if (!compat13)
609 fatal("cannot happen: OUT_DRAIN");
610 return i;
611 default:
612 fatal("channel_find_open: bad channel type %d", c->type);
613 /* NOTREACHED */
614 }
615 }
616 return -1;
617}
618
619
620/*
621 * Returns a message describing the currently open forwarded connections,
622 * suitable for sending to the client. The message contains crlf pairs for
623 * newlines.
624 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000626channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000627{
628 Buffer buffer;
629 Channel *c;
630 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000631 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632
633 buffer_init(&buffer);
634 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
635 buffer_append(&buffer, buf, strlen(buf));
636 for (i = 0; i < channels_alloc; i++) {
637 c = channels[i];
638 if (c == NULL)
639 continue;
640 switch (c->type) {
641 case SSH_CHANNEL_X11_LISTENER:
642 case SSH_CHANNEL_PORT_LISTENER:
643 case SSH_CHANNEL_RPORT_LISTENER:
644 case SSH_CHANNEL_CLOSED:
645 case SSH_CHANNEL_AUTH_SOCKET:
646 case SSH_CHANNEL_ZOMBIE:
Damien Miller36187092013-06-10 13:07:11 +1000647 case SSH_CHANNEL_ABANDONED:
Damien Millere1537f92010-01-26 13:26:22 +1100648 case SSH_CHANNEL_MUX_CLIENT:
649 case SSH_CHANNEL_MUX_LISTENER:
Damien Miller7acefbb2014-07-18 14:11:24 +1000650 case SSH_CHANNEL_UNIX_LISTENER:
651 case SSH_CHANNEL_RUNIX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000652 continue;
653 case SSH_CHANNEL_LARVAL:
654 case SSH_CHANNEL_OPENING:
655 case SSH_CHANNEL_CONNECTING:
656 case SSH_CHANNEL_DYNAMIC:
657 case SSH_CHANNEL_OPEN:
658 case SSH_CHANNEL_X11_OPEN:
659 case SSH_CHANNEL_INPUT_DRAINING:
660 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000661 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100662 " #%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 +0000663 c->self, c->remote_name,
664 c->type, c->remote_id,
665 c->istate, buffer_len(&c->input),
666 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100667 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 buffer_append(&buffer, buf, strlen(buf));
669 continue;
670 default:
671 fatal("channel_open_message: bad channel type %d", c->type);
672 /* NOTREACHED */
673 }
674 }
675 buffer_append(&buffer, "\0", 1);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +0000676 cp = xstrdup((char *)buffer_ptr(&buffer));
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 buffer_free(&buffer);
678 return cp;
679}
680
681void
682channel_send_open(int id)
683{
684 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000685
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000687 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688 return;
689 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000690 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 packet_start(SSH2_MSG_CHANNEL_OPEN);
692 packet_put_cstring(c->ctype);
693 packet_put_int(c->self);
694 packet_put_int(c->local_window);
695 packet_put_int(c->local_maxpacket);
696 packet_send();
697}
698
699void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000700channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000702 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000703
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000705 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706 return;
707 }
Damien Miller0e220db2004-06-15 10:34:08 +1000708 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709 packet_start(SSH2_MSG_CHANNEL_REQUEST);
710 packet_put_int(c->remote_id);
711 packet_put_cstring(service);
712 packet_put_char(wantconfirm);
713}
Damien Miller4f7becb2006-03-26 14:10:14 +1100714
Ben Lindstrome9c99912001-06-09 00:41:05 +0000715void
Damien Millerb84886b2008-05-19 15:05:07 +1000716channel_register_status_confirm(int id, channel_confirm_cb *cb,
717 channel_confirm_abandon_cb *abandon_cb, void *ctx)
718{
719 struct channel_confirm *cc;
720 Channel *c;
721
722 if ((c = channel_lookup(id)) == NULL)
723 fatal("channel_register_expect: %d: bad id", id);
724
Damien Miller6c81fee2013-11-08 12:19:55 +1100725 cc = xcalloc(1, sizeof(*cc));
Damien Millerb84886b2008-05-19 15:05:07 +1000726 cc->cb = cb;
727 cc->abandon_cb = abandon_cb;
728 cc->ctx = ctx;
729 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
730}
731
732void
Damien Millerd530f5f2010-05-21 14:57:10 +1000733channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734{
735 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000736
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100738 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739 return;
740 }
Damien Millerb84886b2008-05-19 15:05:07 +1000741 c->open_confirm = fn;
742 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000743}
Damien Miller4f7becb2006-03-26 14:10:14 +1100744
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745void
Damien Miller39eda6e2005-11-05 14:52:50 +1100746channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747{
Damien Millerd47c62a2005-12-13 19:33:57 +1100748 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000749
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000751 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 return;
753 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000754 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100755 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756}
Damien Miller4f7becb2006-03-26 14:10:14 +1100757
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758void
759channel_cancel_cleanup(int id)
760{
Damien Millerd47c62a2005-12-13 19:33:57 +1100761 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000762
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000764 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765 return;
766 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000767 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100768 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769}
Damien Miller4f7becb2006-03-26 14:10:14 +1100770
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771void
Damien Miller077b2382005-12-31 16:22:32 +1100772channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000773 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000774{
775 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000776
Ben Lindstrome9c99912001-06-09 00:41:05 +0000777 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000778 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779 return;
780 }
Damien Miller077b2382005-12-31 16:22:32 +1100781 c->input_filter = ifn;
782 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000783 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000784 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000785}
786
787void
788channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000789 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000790{
791 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000792
Ben Lindstrome9c99912001-06-09 00:41:05 +0000793 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
794 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000795 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000796 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100797 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000798 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
799 packet_put_int(c->remote_id);
800 packet_put_int(c->local_window);
801 packet_send();
802}
803
Damien Miller5428f641999-11-25 11:54:57 +1100804/*
Damien Millerb38eff82000-04-01 11:09:21 +1000805 * 'channel_pre*' are called just before select() to add any bits relevant to
806 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100807 */
Damien Millerb38eff82000-04-01 11:09:21 +1000808/*
809 * 'channel_post*': perform any appropriate operations for channels which
810 * have events pending.
811 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100812typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000813chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
814chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
815
Damien Miller8473dd82006-07-24 14:08:32 +1000816/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100818channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000819{
820 FD_SET(c->sock, readset);
821}
822
Damien Miller8473dd82006-07-24 14:08:32 +1000823/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000824static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100825channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000826{
827 debug3("channel %d: waiting for connection", c->self);
828 FD_SET(c->sock, writeset);
829}
830
Ben Lindstrombba81212001-06-25 05:01:22 +0000831static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100832channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000833{
834 if (buffer_len(&c->input) < packet_get_maxsize())
835 FD_SET(c->sock, readset);
836 if (buffer_len(&c->output) > 0)
837 FD_SET(c->sock, writeset);
838}
839
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100841channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000842{
Damien Millerde6987c2002-01-22 23:20:40 +1100843 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000844
Damien Miller33b13562000-04-04 14:38:59 +1000845 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100846 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000847 buffer_len(&c->input) < limit &&
848 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000849 FD_SET(c->rfd, readset);
850 if (c->ostate == CHAN_OUTPUT_OPEN ||
851 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
852 if (buffer_len(&c->output) > 0) {
853 FD_SET(c->wfd, writeset);
854 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000855 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000856 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
857 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000858 else
859 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000860 }
861 }
862 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000863 if (compat20 && c->efd != -1 &&
864 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000865 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
866 buffer_len(&c->extended) > 0)
867 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000868 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
869 (c->extended_usage == CHAN_EXTENDED_READ ||
870 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000871 buffer_len(&c->extended) < c->remote_window)
872 FD_SET(c->efd, readset);
873 }
Damien Miller0e220db2004-06-15 10:34:08 +1000874 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000875}
876
Damien Miller8473dd82006-07-24 14:08:32 +1000877/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000878static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100879channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000880{
881 if (buffer_len(&c->input) == 0) {
882 packet_start(SSH_MSG_CHANNEL_CLOSE);
883 packet_put_int(c->remote_id);
884 packet_send();
885 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000886 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000887 }
888}
889
Damien Miller8473dd82006-07-24 14:08:32 +1000890/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000891static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100892channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000893{
894 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000895 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000896 else
Damien Millerb38eff82000-04-01 11:09:21 +1000897 FD_SET(c->sock, writeset);
898}
899
900/*
901 * This is a special state for X11 authentication spoofing. An opened X11
902 * connection (when authentication spoofing is being done) remains in this
903 * state until the first packet has been completely read. The authentication
904 * data in that packet is then substituted by the real data if it matches the
905 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000906 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000908 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000909static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000910x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000911{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000912 u_char *ucp;
913 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000914
915 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000916 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000917 return 0;
918
919 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100920 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000921 if (ucp[0] == 0x42) { /* Byte order MSB first. */
922 proto_len = 256 * ucp[6] + ucp[7];
923 data_len = 256 * ucp[8] + ucp[9];
924 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
925 proto_len = ucp[6] + 256 * ucp[7];
926 data_len = ucp[8] + 256 * ucp[9];
927 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000928 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100929 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000930 return -1;
931 }
932
933 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000934 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000935 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
936 return 0;
937
938 /* Check if authentication protocol matches. */
939 if (proto_len != strlen(x11_saved_proto) ||
940 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000941 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000942 return -1;
943 }
944 /* Check if authentication data matches our fake data. */
945 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000946 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000947 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000948 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000949 return -1;
950 }
951 /* Check fake data length */
952 if (x11_fake_data_len != x11_saved_data_len) {
953 error("X11 fake_data_len %d != saved_data_len %d",
954 x11_fake_data_len, x11_saved_data_len);
955 return -1;
956 }
957 /*
958 * Received authentication protocol and data match
959 * our fake data. Substitute the fake data with real
960 * data.
961 */
962 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
963 x11_saved_data, x11_saved_data_len);
964 return 1;
965}
966
Ben Lindstrombba81212001-06-25 05:01:22 +0000967static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100968channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000969{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000970 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000971
Damien Millerb38eff82000-04-01 11:09:21 +1000972 if (ret == 1) {
973 /* Start normal processing for the channel. */
974 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000975 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000976 } else if (ret == -1) {
977 /*
978 * We have received an X11 connection that has bad
979 * authentication information.
980 */
Damien Miller996acd22003-04-09 20:59:48 +1000981 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000982 buffer_clear(&c->input);
983 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000984 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000985 c->sock = -1;
986 c->type = SSH_CHANNEL_CLOSED;
987 packet_start(SSH_MSG_CHANNEL_CLOSE);
988 packet_put_int(c->remote_id);
989 packet_send();
990 }
991}
992
Ben Lindstrombba81212001-06-25 05:01:22 +0000993static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100994channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000995{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000996 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000997
998 /* c->force_drain = 1; */
999
Damien Millerb38eff82000-04-01 11:09:21 +10001000 if (ret == 1) {
1001 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +11001002 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +10001003 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +10001004 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +10001005 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +11001006 chan_read_failed(c);
1007 buffer_clear(&c->input);
1008 chan_ibuf_empty(c);
1009 buffer_clear(&c->output);
1010 /* for proto v1, the peer will send an IEOF */
1011 if (compat20)
1012 chan_write_failed(c);
1013 else
1014 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +10001015 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +10001016 }
1017}
1018
Damien Millere1537f92010-01-26 13:26:22 +11001019static void
1020channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1021{
Damien Millerd530f5f2010-05-21 14:57:10 +10001022 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001023 buffer_check_alloc(&c->input, CHAN_RBUF))
1024 FD_SET(c->rfd, readset);
1025 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1026 /* clear buffer immediately (discard any partial packet) */
1027 buffer_clear(&c->input);
1028 chan_ibuf_empty(c);
1029 /* Start output drain. XXX just kill chan? */
1030 chan_rcvd_oclose(c);
1031 }
1032 if (c->ostate == CHAN_OUTPUT_OPEN ||
1033 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1034 if (buffer_len(&c->output) > 0)
1035 FD_SET(c->wfd, writeset);
1036 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1037 chan_obuf_empty(c);
1038 }
1039}
1040
Ben Lindstromb3921512001-04-11 15:57:50 +00001041/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001042/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001043static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001044channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001045{
Damien Millera10f5612002-09-12 09:49:15 +10001046 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001047 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001048 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001049 struct {
1050 u_int8_t version;
1051 u_int8_t command;
1052 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001053 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001054 } s4_req, s4_rsp;
1055
Ben Lindstromb3921512001-04-11 15:57:50 +00001056 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001057
1058 have = buffer_len(&c->input);
1059 len = sizeof(s4_req);
1060 if (have < len)
1061 return 0;
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001062 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001063
1064 need = 1;
1065 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1066 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1067 debug2("channel %d: socks4a request", c->self);
1068 /* ... and needs an extra string (the hostname) */
1069 need = 2;
1070 }
1071 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001072 for (found = 0, i = len; i < have; i++) {
1073 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001074 found++;
1075 if (found == need)
1076 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001077 }
1078 if (i > 1024) {
1079 /* the peer is probably sending garbage */
1080 debug("channel %d: decode socks4: too long",
1081 c->self);
1082 return -1;
1083 }
1084 }
Damien Miller1781f532009-01-28 16:24:41 +11001085 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001086 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001087 buffer_get(&c->input, (char *)&s4_req.version, 1);
1088 buffer_get(&c->input, (char *)&s4_req.command, 1);
1089 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001090 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001091 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001092 p = (char *)buffer_ptr(&c->input);
Damien Miller13481292014-02-27 10:18:32 +11001093 if (memchr(p, '\0', have) == NULL)
1094 fatal("channel %d: decode socks4: user not nul terminated",
1095 c->self);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001096 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001097 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001098 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001099 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001100 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001101 c->self, len, have);
1102 strlcpy(username, p, sizeof(username));
1103 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001104
Darren Tuckera627d422013-06-02 07:31:17 +10001105 free(c->path);
1106 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001107 if (need == 1) { /* SOCKS4: one string */
1108 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001109 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001110 } else { /* SOCKS4A: two strings */
1111 have = buffer_len(&c->input);
djm@openbsd.orgbb005dc2014-10-08 22:15:06 +00001112 p = (char *)buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001113 len = strlen(p);
1114 debug2("channel %d: decode socks4a: host %s/%d",
1115 c->self, p, len);
1116 len++; /* trailing '\0' */
1117 if (len > have)
1118 fatal("channel %d: decode socks4a: len %d > have %d",
1119 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001120 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001121 error("channel %d: hostname \"%.100s\" too long",
1122 c->self, p);
1123 return -1;
1124 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001125 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001126 buffer_consume(&c->input, len);
1127 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001128 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001129
Damien Millerfbdeece2003-09-02 22:52:31 +10001130 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001131 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001132
Ben Lindstromb3921512001-04-11 15:57:50 +00001133 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001134 debug("channel %d: cannot handle: %s cn %d",
1135 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001136 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001137 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001138 s4_rsp.version = 0; /* vn: 0 for reply */
1139 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001140 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001141 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001142 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001143 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001144}
1145
Darren Tucker46471c92003-07-03 13:55:19 +10001146/* try to decode a socks5 header */
1147#define SSH_SOCKS5_AUTHDONE 0x1000
1148#define SSH_SOCKS5_NOAUTH 0x00
1149#define SSH_SOCKS5_IPV4 0x01
1150#define SSH_SOCKS5_DOMAIN 0x03
1151#define SSH_SOCKS5_IPV6 0x04
1152#define SSH_SOCKS5_CONNECT 0x01
1153#define SSH_SOCKS5_SUCCESS 0x00
1154
Damien Miller8473dd82006-07-24 14:08:32 +10001155/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001156static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001157channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001158{
1159 struct {
1160 u_int8_t version;
1161 u_int8_t command;
1162 u_int8_t reserved;
1163 u_int8_t atyp;
1164 } s5_req, s5_rsp;
1165 u_int16_t dest_port;
Damien Millerce986542013-07-18 16:12:44 +10001166 char dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
1167 u_char *p;
Damien Miller0f077072006-07-10 22:21:02 +10001168 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001169
1170 debug2("channel %d: decode socks5", c->self);
1171 p = buffer_ptr(&c->input);
1172 if (p[0] != 0x05)
1173 return -1;
1174 have = buffer_len(&c->input);
1175 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1176 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001177 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001178 return 0;
1179 nmethods = p[1];
1180 if (have < nmethods + 2)
1181 return 0;
1182 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001183 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001184 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001185 found = 1;
1186 break;
1187 }
1188 }
1189 if (!found) {
1190 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1191 c->self);
1192 return -1;
1193 }
1194 buffer_consume(&c->input, nmethods + 2);
1195 buffer_put_char(&c->output, 0x05); /* version */
1196 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1197 FD_SET(c->sock, writeset);
1198 c->flags |= SSH_SOCKS5_AUTHDONE;
1199 debug2("channel %d: socks5 auth done", c->self);
1200 return 0; /* need more */
1201 }
1202 debug2("channel %d: socks5 post auth", c->self);
1203 if (have < sizeof(s5_req)+1)
1204 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001205 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001206 if (s5_req.version != 0x05 ||
1207 s5_req.command != SSH_SOCKS5_CONNECT ||
1208 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001209 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001210 return -1;
1211 }
Darren Tucker47eede72005-03-14 23:08:12 +11001212 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001213 case SSH_SOCKS5_IPV4:
1214 addrlen = 4;
1215 af = AF_INET;
1216 break;
1217 case SSH_SOCKS5_DOMAIN:
1218 addrlen = p[sizeof(s5_req)];
1219 af = -1;
1220 break;
1221 case SSH_SOCKS5_IPV6:
1222 addrlen = 16;
1223 af = AF_INET6;
1224 break;
1225 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001226 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001227 return -1;
1228 }
Damien Miller0f077072006-07-10 22:21:02 +10001229 need = sizeof(s5_req) + addrlen + 2;
1230 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1231 need++;
1232 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001233 return 0;
1234 buffer_consume(&c->input, sizeof(s5_req));
1235 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1236 buffer_consume(&c->input, 1); /* host string length */
Damien Millerce986542013-07-18 16:12:44 +10001237 buffer_get(&c->input, &dest_addr, addrlen);
Darren Tucker46471c92003-07-03 13:55:19 +10001238 buffer_get(&c->input, (char *)&dest_port, 2);
1239 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001240 free(c->path);
1241 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001242 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001243 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001244 error("channel %d: dynamic request: socks5 hostname "
1245 "\"%.100s\" too long", c->self, dest_addr);
1246 return -1;
1247 }
1248 c->path = xstrdup(dest_addr);
1249 } else {
1250 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1251 return -1;
1252 c->path = xstrdup(ntop);
1253 }
Darren Tucker46471c92003-07-03 13:55:19 +10001254 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001255
Damien Millerfbdeece2003-09-02 22:52:31 +10001256 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001257 c->self, c->path, c->host_port, s5_req.command);
1258
1259 s5_rsp.version = 0x05;
1260 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1261 s5_rsp.reserved = 0; /* ignored */
1262 s5_rsp.atyp = SSH_SOCKS5_IPV4;
Darren Tucker46471c92003-07-03 13:55:19 +10001263 dest_port = 0; /* ignored */
1264
Damien Millera0fdce92006-03-26 14:28:50 +11001265 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
Damien Miller13840e02013-09-14 09:49:43 +10001266 buffer_put_int(&c->output, ntohl(INADDR_ANY)); /* bind address */
Damien Millera0fdce92006-03-26 14:28:50 +11001267 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001268 return 1;
1269}
1270
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001271Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001272channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1273 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001274{
1275 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001276
1277 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1278 port_to_connect);
1279
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001280 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1281 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1282 0, "stdio-forward", /*nonblock*/0);
1283
1284 c->path = xstrdup(host_to_connect);
1285 c->host_port = port_to_connect;
1286 c->listening_port = 0;
1287 c->force_drain = 1;
1288
1289 channel_register_fds(c, in, out, -1, 0, 1, 0);
1290 port_open_helper(c, "direct-tcpip");
1291
1292 return c;
1293}
1294
Ben Lindstromb3921512001-04-11 15:57:50 +00001295/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001296static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001297channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001298{
1299 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001300 u_int have;
1301 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001302
1303 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001304 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001305 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001306 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001307 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001308 /* need more */
1309 FD_SET(c->sock, readset);
1310 return;
1311 }
1312 /* try to guess the protocol */
1313 p = buffer_ptr(&c->input);
1314 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001315 case 0x04:
1316 ret = channel_decode_socks4(c, readset, writeset);
1317 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001318 case 0x05:
1319 ret = channel_decode_socks5(c, readset, writeset);
1320 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001321 default:
1322 ret = -1;
1323 break;
1324 }
1325 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001326 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001327 } else if (ret == 0) {
1328 debug2("channel %d: pre_dynamic: need more", c->self);
1329 /* need more */
1330 FD_SET(c->sock, readset);
1331 } else {
1332 /* switch to the next state */
1333 c->type = SSH_CHANNEL_OPENING;
1334 port_open_helper(c, "direct-tcpip");
1335 }
1336}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001337
Damien Millerb38eff82000-04-01 11:09:21 +10001338/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001339/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001340static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001341channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001342{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001343 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001344 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001345 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001346 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001347 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001348 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001349
1350 if (FD_ISSET(c->sock, readset)) {
1351 debug("X11 connection requested.");
1352 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001353 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001354 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001355 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001356 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001357 channel_close_fd(&c->sock);
1358 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001359 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001360 }
Damien Millerb38eff82000-04-01 11:09:21 +10001361 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001362 if (errno != EINTR && errno != EWOULDBLOCK &&
1363 errno != ECONNABORTED)
1364 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001365 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001366 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001367 return;
1368 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001369 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001370 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001371 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001372 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001373 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001374
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001375 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001376 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001377 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001378 if (compat20) {
1379 packet_start(SSH2_MSG_CHANNEL_OPEN);
1380 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001381 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001382 packet_put_int(nc->local_window_max);
1383 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001384 /* originator ipaddr and port */
1385 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001386 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001387 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001388 } else {
1389 packet_put_int(remote_port);
1390 }
Damien Millerbd483e72000-04-30 10:00:53 +10001391 packet_send();
1392 } else {
1393 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001394 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001395 if (packet_get_protocol_flags() &
1396 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001397 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001398 packet_send();
1399 }
Darren Tuckera627d422013-06-02 07:31:17 +10001400 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001401 }
1402}
1403
Ben Lindstrombba81212001-06-25 05:01:22 +00001404static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001405port_open_helper(Channel *c, char *rtype)
1406{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001407 char buf[1024];
Damien Miller4def1842013-12-29 17:45:26 +11001408 char *local_ipaddr = get_local_ipaddr(c->sock);
Damien Miller0890dc82014-02-24 15:56:07 +11001409 int local_port = c->sock == -1 ? 65536 : get_sock_port(c->sock, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001410 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001411 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001412
Damien Millerd6369432010-02-02 17:02:07 +11001413 if (remote_port == -1) {
1414 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001415 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001416 remote_ipaddr = xstrdup("127.0.0.1");
1417 remote_port = 65535;
1418 }
1419
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001420 snprintf(buf, sizeof buf,
1421 "%s: listening port %d for %.100s port %d, "
Damien Miller4def1842013-12-29 17:45:26 +11001422 "connect from %.200s port %d to %.100s port %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001423 rtype, c->listening_port, c->path, c->host_port,
Damien Miller4def1842013-12-29 17:45:26 +11001424 remote_ipaddr, remote_port, local_ipaddr, local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001425
Darren Tuckera627d422013-06-02 07:31:17 +10001426 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001427 c->remote_name = xstrdup(buf);
1428
1429 if (compat20) {
1430 packet_start(SSH2_MSG_CHANNEL_OPEN);
1431 packet_put_cstring(rtype);
1432 packet_put_int(c->self);
1433 packet_put_int(c->local_window_max);
1434 packet_put_int(c->local_maxpacket);
Damien Miller7acefbb2014-07-18 14:11:24 +10001435 if (strcmp(rtype, "direct-tcpip") == 0) {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001436 /* target host, port */
1437 packet_put_cstring(c->path);
1438 packet_put_int(c->host_port);
Damien Miller7acefbb2014-07-18 14:11:24 +10001439 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1440 /* target path */
1441 packet_put_cstring(c->path);
1442 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1443 /* listen path */
1444 packet_put_cstring(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001445 } else {
1446 /* listen address, port */
1447 packet_put_cstring(c->path);
Damien Miller4def1842013-12-29 17:45:26 +11001448 packet_put_int(local_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001449 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001450 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1451 /* reserved for future owner/mode info */
1452 packet_put_cstring("");
1453 } else {
1454 /* originator host and port */
1455 packet_put_cstring(remote_ipaddr);
1456 packet_put_int((u_int)remote_port);
1457 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001458 packet_send();
1459 } else {
1460 packet_start(SSH_MSG_PORT_OPEN);
1461 packet_put_int(c->self);
1462 packet_put_cstring(c->path);
1463 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001464 if (packet_get_protocol_flags() &
1465 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001466 packet_put_cstring(c->remote_name);
1467 packet_send();
1468 }
Darren Tuckera627d422013-06-02 07:31:17 +10001469 free(remote_ipaddr);
Damien Miller4def1842013-12-29 17:45:26 +11001470 free(local_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001471}
1472
Damien Miller5e7fd072005-11-05 14:53:39 +11001473static void
1474channel_set_reuseaddr(int fd)
1475{
1476 int on = 1;
1477
1478 /*
1479 * Set socket options.
1480 * Allow local port reuse in TIME_WAIT.
1481 */
1482 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1483 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1484}
1485
Damien Millerb38eff82000-04-01 11:09:21 +10001486/*
1487 * This socket is listening for connections to a forwarded TCP/IP port.
1488 */
Damien Miller8473dd82006-07-24 14:08:32 +10001489/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001490static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001491channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001492{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001493 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001494 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001495 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001496 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001497 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001498
Damien Millerb38eff82000-04-01 11:09:21 +10001499 if (FD_ISSET(c->sock, readset)) {
1500 debug("Connection to port %d forwarding "
1501 "to %.100s port %d requested.",
1502 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001503
Damien Miller4623a752001-10-10 15:03:58 +10001504 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1505 nextstate = SSH_CHANNEL_OPENING;
1506 rtype = "forwarded-tcpip";
Damien Miller7acefbb2014-07-18 14:11:24 +10001507 } else if (c->type == SSH_CHANNEL_RUNIX_LISTENER) {
1508 nextstate = SSH_CHANNEL_OPENING;
1509 rtype = "forwarded-streamlocal@openssh.com";
1510 } else if (c->host_port == PORT_STREAMLOCAL) {
1511 nextstate = SSH_CHANNEL_OPENING;
1512 rtype = "direct-streamlocal@openssh.com";
1513 } else if (c->host_port == 0) {
1514 nextstate = SSH_CHANNEL_DYNAMIC;
1515 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001516 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10001517 nextstate = SSH_CHANNEL_OPENING;
1518 rtype = "direct-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001519 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001520
Damien Millerb38eff82000-04-01 11:09:21 +10001521 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001522 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001523 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001524 if (errno != EINTR && errno != EWOULDBLOCK &&
1525 errno != ECONNABORTED)
1526 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001527 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001528 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001529 return;
1530 }
Damien Miller7acefbb2014-07-18 14:11:24 +10001531 if (c->host_port != PORT_STREAMLOCAL)
1532 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001533 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1534 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001535 nc->listening_port = c->listening_port;
1536 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001537 if (c->path != NULL)
1538 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001539
Darren Tucker876045b2010-01-08 17:08:00 +11001540 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001541 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001542 }
1543}
1544
1545/*
1546 * This is the authentication agent socket listening for connections from
1547 * clients.
1548 */
Damien Miller8473dd82006-07-24 14:08:32 +10001549/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001550static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001551channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001552{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001553 Channel *nc;
1554 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001555 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001556 socklen_t addrlen;
1557
1558 if (FD_ISSET(c->sock, readset)) {
1559 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001560 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001561 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001562 error("accept from auth socket: %.100s",
1563 strerror(errno));
1564 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001565 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001566 return;
1567 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001568 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001569 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1570 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001571 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001572 if (compat20) {
1573 packet_start(SSH2_MSG_CHANNEL_OPEN);
1574 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001575 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001576 packet_put_int(c->local_window_max);
1577 packet_put_int(c->local_maxpacket);
1578 } else {
1579 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001580 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001581 }
Damien Millerb38eff82000-04-01 11:09:21 +10001582 packet_send();
1583 }
1584}
1585
Damien Miller8473dd82006-07-24 14:08:32 +10001586/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001587static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001588channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001589{
Damien Millerbd740252008-05-19 15:37:09 +10001590 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001591 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001592
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001593 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001594 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001595 err = errno;
1596 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001597 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001598 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001599 debug("channel %d: connected to %s port %d",
1600 c->self, c->connect_ctx.host, c->connect_ctx.port);
1601 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001602 c->type = SSH_CHANNEL_OPEN;
1603 if (compat20) {
1604 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1605 packet_put_int(c->remote_id);
1606 packet_put_int(c->self);
1607 packet_put_int(c->local_window);
1608 packet_put_int(c->local_maxpacket);
1609 } else {
1610 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1611 packet_put_int(c->remote_id);
1612 packet_put_int(c->self);
1613 }
1614 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001615 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001616 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001617 /* Try next address, if any */
1618 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1619 close(c->sock);
1620 c->sock = c->rfd = c->wfd = sock;
1621 channel_max_fd = channel_find_maxfd();
1622 return;
1623 }
1624 /* Exhausted all addresses */
1625 error("connect_to %.100s port %d: failed.",
1626 c->connect_ctx.host, c->connect_ctx.port);
1627 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001628 if (compat20) {
1629 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1630 packet_put_int(c->remote_id);
1631 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1632 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1633 packet_put_cstring(strerror(err));
1634 packet_put_cstring("");
1635 }
1636 } else {
1637 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1638 packet_put_int(c->remote_id);
1639 }
1640 chan_mark_dead(c);
1641 }
1642 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001643 }
1644}
1645
Damien Miller8473dd82006-07-24 14:08:32 +10001646/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001647static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001648channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001649{
Darren Tucker11327cc2005-03-14 23:22:25 +11001650 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001651 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001652
Damien Miller835284b2007-06-11 13:03:16 +10001653 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1654 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001655 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001656 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001657 if (len < 0 && (errno == EINTR ||
1658 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001659 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001660#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001661 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001662#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001663 if ((!c->isatty && len <= 0) ||
1664 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001665#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001666 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001667 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001668 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001669 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001670 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001671 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001672 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001673 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001674 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001675 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001676 } else {
1677 chan_read_failed(c);
1678 }
1679 return -1;
1680 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001681 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001682 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001683 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001684 chan_read_failed(c);
1685 }
Damien Millerd27b9472005-12-13 19:29:02 +11001686 } else if (c->datagram) {
1687 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001688 } else {
1689 buffer_append(&c->input, buf, len);
1690 }
Damien Millerb38eff82000-04-01 11:09:21 +10001691 }
1692 return 1;
1693}
Damien Miller4f7becb2006-03-26 14:10:14 +11001694
Damien Miller8473dd82006-07-24 14:08:32 +10001695/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001696static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001697channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001698{
Ben Lindstrome229b252001-03-05 06:28:06 +00001699 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001700 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001701 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001702 int len;
1703
1704 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001705 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001706 FD_ISSET(c->wfd, writeset) &&
1707 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001708 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001709 if (c->output_filter != NULL) {
1710 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1711 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001712 if (c->type != SSH_CHANNEL_OPEN)
1713 chan_mark_dead(c);
1714 else
1715 chan_write_failed(c);
1716 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001717 }
1718 } else if (c->datagram) {
1719 buf = data = buffer_get_string(&c->output, &dlen);
1720 } else {
1721 buf = data = buffer_ptr(&c->output);
1722 dlen = buffer_len(&c->output);
1723 }
1724
Damien Millerd27b9472005-12-13 19:29:02 +11001725 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001726 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001727 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001728 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001729 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1730 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001731 return 1;
1732 if (len <= 0) {
1733 if (c->type != SSH_CHANNEL_OPEN)
1734 chan_mark_dead(c);
1735 else
1736 chan_write_failed(c);
1737 return -1;
1738 }
Damien Miller7d457182010-08-05 23:09:48 +10001739 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001740 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001741#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001742 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001743 if (compat20 && c->wfd_isatty)
1744 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001745#endif
Damien Miller077b2382005-12-31 16:22:32 +11001746
1747 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001748 if (len < 0 &&
1749 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001750 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001751 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001752 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001753 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001754 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001755 return -1;
1756 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001757 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001758 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001759 c->type = SSH_CHANNEL_INPUT_DRAINING;
1760 } else {
1761 chan_write_failed(c);
1762 }
1763 return -1;
1764 }
Darren Tucker3980b632009-08-28 11:02:37 +10001765#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001766 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001767 if (tcgetattr(c->wfd, &tio) == 0 &&
1768 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1769 /*
1770 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001771 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001772 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001773 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001774 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001775 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001776 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001777 }
1778 }
Darren Tucker3980b632009-08-28 11:02:37 +10001779#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001780 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001781 }
Damien Miller7d457182010-08-05 23:09:48 +10001782 out:
1783 if (compat20 && olen > 0)
1784 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001785 return 1;
1786}
Damien Miller4f7becb2006-03-26 14:10:14 +11001787
Ben Lindstrombba81212001-06-25 05:01:22 +00001788static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001789channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001790{
Darren Tucker11327cc2005-03-14 23:22:25 +11001791 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001792 int len;
1793
Damien Miller1383bd82000-04-06 12:32:37 +10001794/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001795 if (c->efd != -1) {
1796 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1797 FD_ISSET(c->efd, writeset) &&
1798 buffer_len(&c->extended) > 0) {
1799 len = write(c->efd, buffer_ptr(&c->extended),
1800 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001801 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001802 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001803 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1804 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001805 return 1;
1806 if (len <= 0) {
1807 debug2("channel %d: closing write-efd %d",
1808 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001809 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001810 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001811 buffer_consume(&c->extended, len);
1812 c->local_consumed += len;
1813 }
Damien Miller8853ca52010-06-26 10:00:14 +10001814 } else if (c->efd != -1 &&
1815 (c->extended_usage == CHAN_EXTENDED_READ ||
1816 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001817 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001818 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001819 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001820 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001821 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1822 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001823 return 1;
1824 if (len <= 0) {
1825 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001826 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001827 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001828 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001829 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1830 debug3("channel %d: discard efd",
1831 c->self);
1832 } else
1833 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001834 }
Damien Miller33b13562000-04-04 14:38:59 +10001835 }
1836 }
1837 return 1;
1838}
Damien Miller4f7becb2006-03-26 14:10:14 +11001839
Damien Miller0e220db2004-06-15 10:34:08 +10001840static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001841channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001842{
Ben Lindstromb3921512001-04-11 15:57:50 +00001843 if (c->type == SSH_CHANNEL_OPEN &&
1844 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001845 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001846 c->local_maxpacket*3) ||
1847 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001848 c->local_consumed > 0) {
1849 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1850 packet_put_int(c->remote_id);
1851 packet_put_int(c->local_consumed);
1852 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001853 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001854 c->self, c->local_window,
1855 c->local_consumed);
1856 c->local_window += c->local_consumed;
1857 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001858 }
1859 return 1;
1860}
1861
Ben Lindstrombba81212001-06-25 05:01:22 +00001862static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001863channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001864{
1865 channel_handle_rfd(c, readset, writeset);
1866 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001867 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001868 return;
Damien Miller33b13562000-04-04 14:38:59 +10001869 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001870 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001871}
1872
Damien Millere1537f92010-01-26 13:26:22 +11001873static u_int
1874read_mux(Channel *c, u_int need)
1875{
1876 char buf[CHAN_RBUF];
1877 int len;
1878 u_int rlen;
1879
1880 if (buffer_len(&c->input) < need) {
1881 rlen = need - buffer_len(&c->input);
1882 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1883 if (len <= 0) {
1884 if (errno != EINTR && errno != EAGAIN) {
1885 debug2("channel %d: ctl read<=0 rfd %d len %d",
1886 c->self, c->rfd, len);
1887 chan_read_failed(c);
1888 return 0;
1889 }
1890 } else
1891 buffer_append(&c->input, buf, len);
1892 }
1893 return buffer_len(&c->input);
1894}
1895
1896static void
1897channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1898{
1899 u_int need;
1900 ssize_t len;
1901
1902 if (!compat20)
1903 fatal("%s: entered with !compat20", __func__);
1904
Damien Millerd530f5f2010-05-21 14:57:10 +10001905 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001906 (c->istate == CHAN_INPUT_OPEN ||
1907 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1908 /*
1909 * Don't not read past the precise end of packets to
1910 * avoid disrupting fd passing.
1911 */
1912 if (read_mux(c, 4) < 4) /* read header */
1913 return;
1914 need = get_u32(buffer_ptr(&c->input));
1915#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1916 if (need > CHANNEL_MUX_MAX_PACKET) {
1917 debug2("channel %d: packet too big %u > %u",
1918 c->self, CHANNEL_MUX_MAX_PACKET, need);
1919 chan_rcvd_oclose(c);
1920 return;
1921 }
1922 if (read_mux(c, need + 4) < need + 4) /* read body */
1923 return;
1924 if (c->mux_rcb(c) != 0) {
1925 debug("channel %d: mux_rcb failed", c->self);
1926 chan_mark_dead(c);
1927 return;
1928 }
1929 }
1930
1931 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1932 buffer_len(&c->output) > 0) {
1933 len = write(c->wfd, buffer_ptr(&c->output),
1934 buffer_len(&c->output));
1935 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1936 return;
1937 if (len <= 0) {
1938 chan_mark_dead(c);
1939 return;
1940 }
1941 buffer_consume(&c->output, len);
1942 }
1943}
1944
1945static void
1946channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1947{
1948 Channel *nc;
1949 struct sockaddr_storage addr;
1950 socklen_t addrlen;
1951 int newsock;
1952 uid_t euid;
1953 gid_t egid;
1954
1955 if (!FD_ISSET(c->sock, readset))
1956 return;
1957
1958 debug("multiplexing control connection");
1959
1960 /*
1961 * Accept connection on control socket
1962 */
1963 memset(&addr, 0, sizeof(addr));
1964 addrlen = sizeof(addr);
1965 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1966 &addrlen)) == -1) {
1967 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001968 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001969 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001970 return;
1971 }
1972
1973 if (getpeereid(newsock, &euid, &egid) < 0) {
1974 error("%s getpeereid failed: %s", __func__,
1975 strerror(errno));
1976 close(newsock);
1977 return;
1978 }
1979 if ((euid != 0) && (getuid() != euid)) {
1980 error("multiplex uid mismatch: peer euid %u != uid %u",
1981 (u_int)euid, (u_int)getuid());
1982 close(newsock);
1983 return;
1984 }
1985 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1986 newsock, newsock, -1, c->local_window_max,
1987 c->local_maxpacket, 0, "mux-control", 1);
1988 nc->mux_rcb = c->mux_rcb;
1989 debug3("%s: new mux channel %d fd %d", __func__,
1990 nc->self, nc->sock);
1991 /* establish state */
1992 nc->mux_rcb(nc);
1993 /* mux state transitions must not elicit protocol messages */
1994 nc->flags |= CHAN_LOCAL;
1995}
1996
Damien Miller8473dd82006-07-24 14:08:32 +10001997/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001998static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001999channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002000{
2001 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002002
Damien Millerb38eff82000-04-01 11:09:21 +10002003 /* Send buffered output data to the socket. */
2004 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
2005 len = write(c->sock, buffer_ptr(&c->output),
2006 buffer_len(&c->output));
2007 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11002008 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10002009 else
2010 buffer_consume(&c->output, len);
2011 }
2012}
2013
Ben Lindstrombba81212001-06-25 05:01:22 +00002014static void
Damien Miller33b13562000-04-04 14:38:59 +10002015channel_handler_init_20(void)
2016{
Damien Millerde6987c2002-01-22 23:20:40 +11002017 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002018 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10002019 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002020 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002021 channel_pre[SSH_CHANNEL_UNIX_LISTENER] = &channel_pre_listener;
2022 channel_pre[SSH_CHANNEL_RUNIX_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002023 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002024 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002025 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002026 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11002027 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
2028 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002029
Damien Millerde6987c2002-01-22 23:20:40 +11002030 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10002031 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002032 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Miller7acefbb2014-07-18 14:11:24 +10002033 channel_post[SSH_CHANNEL_UNIX_LISTENER] = &channel_post_port_listener;
2034 channel_post[SSH_CHANNEL_RUNIX_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10002035 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002036 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002037 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002038 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11002039 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2040 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002041}
2042
Ben Lindstrombba81212001-06-25 05:01:22 +00002043static void
Damien Millerb38eff82000-04-01 11:09:21 +10002044channel_handler_init_13(void)
2045{
2046 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2047 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2048 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2049 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2050 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2051 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2052 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002053 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002054 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002055
Damien Millerde6987c2002-01-22 23:20:40 +11002056 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002057 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2058 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2059 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2060 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002061 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002062 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002063}
2064
Ben Lindstrombba81212001-06-25 05:01:22 +00002065static void
Damien Millerb38eff82000-04-01 11:09:21 +10002066channel_handler_init_15(void)
2067{
Damien Millerde6987c2002-01-22 23:20:40 +11002068 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002069 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002070 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2071 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2072 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002073 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002074 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002075
2076 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2077 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2078 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002079 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002080 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002081 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002082}
2083
Ben Lindstrombba81212001-06-25 05:01:22 +00002084static void
Damien Millerb38eff82000-04-01 11:09:21 +10002085channel_handler_init(void)
2086{
2087 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002088
Damien Miller9f0f5c62001-12-21 14:45:46 +11002089 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002090 channel_pre[i] = NULL;
2091 channel_post[i] = NULL;
2092 }
Damien Miller33b13562000-04-04 14:38:59 +10002093 if (compat20)
2094 channel_handler_init_20();
2095 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002096 channel_handler_init_13();
2097 else
2098 channel_handler_init_15();
2099}
2100
Damien Miller3ec27592001-10-12 11:35:04 +10002101/* gc dead channels */
2102static void
2103channel_garbage_collect(Channel *c)
2104{
2105 if (c == NULL)
2106 return;
2107 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002108 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002109 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002110 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002111 c->detach_user(c->self, NULL);
2112 /* if we still have a callback */
2113 if (c->detach_user != NULL)
2114 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002115 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002116 }
2117 if (!chan_is_dead(c, 1))
2118 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002119 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002120 channel_free(c);
2121}
2122
Ben Lindstrombba81212001-06-25 05:01:22 +00002123static void
Damien Millera6508752012-04-22 11:21:10 +10002124channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2125 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002126{
2127 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002128 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002129 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002130 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002131
2132 if (!did_init) {
2133 channel_handler_init();
2134 did_init = 1;
2135 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002136 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002137 if (unpause_secs != NULL)
2138 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002139 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002140 c = channels[i];
2141 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002142 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002143 if (c->delayed) {
2144 if (ftab == channel_pre)
2145 c->delayed = 0;
2146 else
2147 continue;
2148 }
Damien Millera6508752012-04-22 11:21:10 +10002149 if (ftab[c->type] != NULL) {
2150 /*
2151 * Run handlers that are not paused.
2152 */
2153 if (c->notbefore <= now)
2154 (*ftab[c->type])(c, readset, writeset);
2155 else if (unpause_secs != NULL) {
2156 /*
2157 * Collect the time that the earliest
2158 * channel comes off pause.
2159 */
2160 debug3("%s: chan %d: skip for %d more seconds",
2161 __func__, c->self,
2162 (int)(c->notbefore - now));
2163 if (*unpause_secs == 0 ||
2164 (c->notbefore - now) < *unpause_secs)
2165 *unpause_secs = c->notbefore - now;
2166 }
2167 }
Damien Miller3ec27592001-10-12 11:35:04 +10002168 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002169 }
Damien Millera6508752012-04-22 11:21:10 +10002170 if (unpause_secs != NULL && *unpause_secs != 0)
2171 debug3("%s: first channel unpauses in %d seconds",
2172 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002173}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002174
Ben Lindstrome9c99912001-06-09 00:41:05 +00002175/*
2176 * Allocate/update select bitmasks and add any bits relevant to channels in
2177 * select bitmasks.
2178 */
Damien Miller4af51302000-04-16 11:18:38 +10002179void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002180channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002181 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002182{
Damien Miller36812092006-03-26 14:22:47 +11002183 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002184
2185 n = MAX(*maxfdp, channel_max_fd);
2186
Damien Miller36812092006-03-26 14:22:47 +11002187 nfdset = howmany(n+1, NFDBITS);
2188 /* Explicitly test here, because xrealloc isn't always called */
millert@openbsd.orgfd368342015-02-06 23:21:59 +00002189 if (nfdset && SIZE_MAX / nfdset < sizeof(fd_mask))
Damien Miller36812092006-03-26 14:22:47 +11002190 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2191 sz = nfdset * sizeof(fd_mask);
2192
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002193 /* perhaps check sz < nalloc/2 and shrink? */
2194 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002195 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2196 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002197 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002198 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002199 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002200 memset(*readsetp, 0, sz);
2201 memset(*writesetp, 0, sz);
2202
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002203 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002204 channel_handler(channel_pre, *readsetp, *writesetp,
2205 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002206}
2207
Ben Lindstrome9c99912001-06-09 00:41:05 +00002208/*
2209 * After select, perform any appropriate operations for channels which have
2210 * events pending.
2211 */
Damien Miller4af51302000-04-16 11:18:38 +10002212void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002213channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002214{
Damien Millera6508752012-04-22 11:21:10 +10002215 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002216}
2217
Ben Lindstrome9c99912001-06-09 00:41:05 +00002218
Damien Miller5e953212001-01-30 09:14:00 +11002219/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002220void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002221channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222{
Damien Millerb38eff82000-04-01 11:09:21 +10002223 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002224 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002225
Damien Miller95def091999-11-25 00:26:21 +11002226 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002227 c = channels[i];
2228 if (c == NULL)
2229 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002230
Ben Lindstrome9c99912001-06-09 00:41:05 +00002231 /*
2232 * We are only interested in channels that can have buffered
2233 * incoming data.
2234 */
Damien Miller34132e52000-01-14 15:45:46 +11002235 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002236 if (c->type != SSH_CHANNEL_OPEN &&
2237 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002238 continue;
2239 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002240 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002241 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002242 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002243 if (compat20 &&
2244 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002245 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002246 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002247 continue;
2248 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002249
Damien Miller95def091999-11-25 00:26:21 +11002250 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002251 if ((c->istate == CHAN_INPUT_OPEN ||
2252 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2253 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002254 if (c->datagram) {
2255 if (len > 0) {
2256 u_char *data;
2257 u_int dlen;
2258
2259 data = buffer_get_string(&c->input,
2260 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002261 if (dlen > c->remote_window ||
2262 dlen > c->remote_maxpacket) {
2263 debug("channel %d: datagram "
2264 "too big for channel",
2265 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002266 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002267 continue;
2268 }
Damien Millerd27b9472005-12-13 19:29:02 +11002269 packet_start(SSH2_MSG_CHANNEL_DATA);
2270 packet_put_int(c->remote_id);
2271 packet_put_string(data, dlen);
2272 packet_send();
2273 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002274 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002275 }
2276 continue;
2277 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002278 /*
2279 * Send some data for the other side over the secure
2280 * connection.
2281 */
Damien Miller33b13562000-04-04 14:38:59 +10002282 if (compat20) {
2283 if (len > c->remote_window)
2284 len = c->remote_window;
2285 if (len > c->remote_maxpacket)
2286 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002287 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002288 if (packet_is_interactive()) {
2289 if (len > 1024)
2290 len = 512;
2291 } else {
2292 /* Keep the packets at reasonable size. */
2293 if (len > packet_get_maxsize()/2)
2294 len = packet_get_maxsize()/2;
2295 }
Damien Miller95def091999-11-25 00:26:21 +11002296 }
Damien Millerb38eff82000-04-01 11:09:21 +10002297 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002298 packet_start(compat20 ?
2299 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002300 packet_put_int(c->remote_id);
2301 packet_put_string(buffer_ptr(&c->input), len);
2302 packet_send();
2303 buffer_consume(&c->input, len);
2304 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002305 }
2306 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002307 if (compat13)
2308 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002309 /*
2310 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002311 * tell peer, that we will not send more data: send IEOF.
2312 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002313 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002314 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002315 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2316 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002317 else
2318 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002319 }
Damien Miller33b13562000-04-04 14:38:59 +10002320 /* Send extended data, i.e. stderr */
2321 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002322 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002323 c->remote_window > 0 &&
2324 (len = buffer_len(&c->extended)) > 0 &&
2325 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002326 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002327 c->self, c->remote_window, buffer_len(&c->extended),
2328 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002329 if (len > c->remote_window)
2330 len = c->remote_window;
2331 if (len > c->remote_maxpacket)
2332 len = c->remote_maxpacket;
2333 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2334 packet_put_int(c->remote_id);
2335 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2336 packet_put_string(buffer_ptr(&c->extended), len);
2337 packet_send();
2338 buffer_consume(&c->extended, len);
2339 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002340 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002341 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002342 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002343}
2344
Ben Lindstrome9c99912001-06-09 00:41:05 +00002345
2346/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002347
2348/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002349int
Damien Miller630d6f42002-01-22 23:17:30 +11002350channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002351{
Damien Miller34132e52000-01-14 15:45:46 +11002352 int id;
Damien Miller633de332014-05-15 13:48:26 +10002353 const u_char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002354 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002355 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002356
Damien Miller95def091999-11-25 00:26:21 +11002357 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002358 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002359 c = channel_lookup(id);
2360 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002361 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002362
Damien Miller95def091999-11-25 00:26:21 +11002363 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002364 if (c->type != SSH_CHANNEL_OPEN &&
2365 c->type != SSH_CHANNEL_X11_OPEN)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002366 return 0;
Damien Miller34132e52000-01-14 15:45:46 +11002367
Damien Miller95def091999-11-25 00:26:21 +11002368 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002369 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002370 win_len = data_len;
2371 if (c->datagram)
2372 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002373
Damien Millera04ad492004-01-21 11:02:09 +11002374 /*
2375 * Ignore data for protocol > 1.3 if output end is no longer open.
2376 * For protocol 2 the sending side is reducing its window as it sends
2377 * data, so we must 'fake' consumption of the data in order to ensure
2378 * that window updates are sent back. Otherwise the connection might
2379 * deadlock.
2380 */
2381 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2382 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002383 c->local_window -= win_len;
2384 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002385 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002386 return 0;
Damien Millera04ad492004-01-21 11:02:09 +11002387 }
2388
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002389 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002390 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002391 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002392 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002393 }
Damien Miller7d457182010-08-05 23:09:48 +10002394 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002395 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002396 c->self, win_len, c->local_window);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002397 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002398 }
Damien Miller7d457182010-08-05 23:09:48 +10002399 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002400 }
Damien Millerd27b9472005-12-13 19:29:02 +11002401 if (c->datagram)
2402 buffer_put_string(&c->output, data, data_len);
2403 else
2404 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002405 packet_check_eom();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002406 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002407}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002408
Damien Millerd79b4242006-03-31 23:11:44 +11002409/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002410int
Damien Miller630d6f42002-01-22 23:17:30 +11002411channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002412{
2413 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002414 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002415 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002416 Channel *c;
2417
2418 /* Get the channel number and verify it. */
2419 id = packet_get_int();
2420 c = channel_lookup(id);
2421
2422 if (c == NULL)
2423 packet_disconnect("Received extended_data for bad channel %d.", id);
2424 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002425 logit("channel %d: ext data for non open", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002426 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002427 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002428 if (c->flags & CHAN_EOF_RCVD) {
2429 if (datafellows & SSH_BUG_EXTEOF)
2430 debug("channel %d: accepting ext data after eof", id);
2431 else
2432 packet_disconnect("Received extended_data after EOF "
2433 "on channel %d.", id);
2434 }
Damien Miller33b13562000-04-04 14:38:59 +10002435 tcode = packet_get_int();
2436 if (c->efd == -1 ||
2437 c->extended_usage != CHAN_EXTENDED_WRITE ||
2438 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002439 logit("channel %d: bad ext data", c->self);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002440 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002441 }
2442 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002443 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002444 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002445 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002446 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002447 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002448 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002449 }
Damien Millerd3444942000-09-30 14:20:03 +11002450 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002451 c->local_window -= data_len;
2452 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002453 free(data);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002454 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002455}
2456
Damien Millerd79b4242006-03-31 23:11:44 +11002457/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002458int
Damien Miller630d6f42002-01-22 23:17:30 +11002459channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002460{
2461 int id;
2462 Channel *c;
2463
Damien Millerb38eff82000-04-01 11:09:21 +10002464 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002465 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002466 c = channel_lookup(id);
2467 if (c == NULL)
2468 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2469 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002470
2471 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002472 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002473 debug("channel %d: FORCE input drain", c->self);
2474 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002475 if (buffer_len(&c->input) == 0)
2476 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002477 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002478 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002479}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002480
Damien Millerd79b4242006-03-31 23:11:44 +11002481/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002482int
Damien Miller630d6f42002-01-22 23:17:30 +11002483channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002484{
Damien Millerb38eff82000-04-01 11:09:21 +10002485 int id;
2486 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002487
Damien Millerb38eff82000-04-01 11:09:21 +10002488 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002489 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002490 c = channel_lookup(id);
2491 if (c == NULL)
2492 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002493
2494 /*
2495 * Send a confirmation that we have closed the channel and no more
2496 * data is coming for it.
2497 */
Damien Miller95def091999-11-25 00:26:21 +11002498 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002499 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002500 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002501
Damien Miller5428f641999-11-25 11:54:57 +11002502 /*
2503 * If the channel is in closed state, we have sent a close request,
2504 * and the other side will eventually respond with a confirmation.
2505 * Thus, we cannot free the channel here, because then there would be
2506 * no-one to receive the confirmation. The channel gets freed when
2507 * the confirmation arrives.
2508 */
Damien Millerb38eff82000-04-01 11:09:21 +10002509 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002510 /*
2511 * Not a closed channel - mark it as draining, which will
2512 * cause it to be freed later.
2513 */
Damien Miller76765c02002-01-22 23:21:15 +11002514 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002515 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002516 }
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002517 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002518}
2519
Damien Millerb38eff82000-04-01 11:09:21 +10002520/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002521/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002522int
Damien Miller630d6f42002-01-22 23:17:30 +11002523channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002524{
Damien Millerb38eff82000-04-01 11:09:21 +10002525 int id = packet_get_int();
2526 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002527
Damien Miller48b03fc2002-01-22 23:11:40 +11002528 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002529 if (c == NULL)
2530 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2531 chan_rcvd_oclose(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002532 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002533}
2534
Damien Millerd79b4242006-03-31 23:11:44 +11002535/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002536int
Damien Miller630d6f42002-01-22 23:17:30 +11002537channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002538{
2539 int id = packet_get_int();
2540 Channel *c = channel_lookup(id);
2541
Damien Miller48b03fc2002-01-22 23:11:40 +11002542 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002543 if (c == NULL)
2544 packet_disconnect("Received close confirmation for "
2545 "out-of-range channel %d.", id);
Damien Miller36187092013-06-10 13:07:11 +10002546 if (c->type != SSH_CHANNEL_CLOSED && c->type != SSH_CHANNEL_ABANDONED)
Damien Millerb38eff82000-04-01 11:09:21 +10002547 packet_disconnect("Received close confirmation for "
2548 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002549 channel_free(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002550 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10002551}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002552
Damien Millerd79b4242006-03-31 23:11:44 +11002553/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002554int
Damien Miller630d6f42002-01-22 23:17:30 +11002555channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002556{
Damien Millerb38eff82000-04-01 11:09:21 +10002557 int id, remote_id;
2558 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002559
Damien Millerb38eff82000-04-01 11:09:21 +10002560 id = packet_get_int();
2561 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002562
Damien Millerb38eff82000-04-01 11:09:21 +10002563 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2564 packet_disconnect("Received open confirmation for "
2565 "non-opening channel %d.", id);
2566 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002567 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002568 c->remote_id = remote_id;
2569 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002570
2571 if (compat20) {
2572 c->remote_window = packet_get_int();
2573 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002574 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002575 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002576 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002577 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002578 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002579 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002580 c->remote_window, c->remote_maxpacket);
2581 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002582 packet_check_eom();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002583 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002584}
2585
Ben Lindstrombba81212001-06-25 05:01:22 +00002586static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002587reason2txt(int reason)
2588{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002589 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002590 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2591 return "administratively prohibited";
2592 case SSH2_OPEN_CONNECT_FAILED:
2593 return "connect failed";
2594 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2595 return "unknown channel type";
2596 case SSH2_OPEN_RESOURCE_SHORTAGE:
2597 return "resource shortage";
2598 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002599 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002600}
2601
Damien Millerd79b4242006-03-31 23:11:44 +11002602/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002603int
Damien Miller630d6f42002-01-22 23:17:30 +11002604channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002605{
Kevin Steves12057502001-02-05 14:54:34 +00002606 int id, reason;
2607 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002608 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002609
Damien Millerb38eff82000-04-01 11:09:21 +10002610 id = packet_get_int();
2611 c = channel_lookup(id);
2612
2613 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2614 packet_disconnect("Received open failure for "
2615 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002616 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002617 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002618 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002619 msg = packet_get_string(NULL);
2620 lang = packet_get_string(NULL);
2621 }
Damien Miller996acd22003-04-09 20:59:48 +10002622 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002623 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002624 free(msg);
2625 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002626 if (c->open_confirm) {
2627 debug2("callback start");
2628 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2629 debug2("callback done");
2630 }
Damien Miller33b13562000-04-04 14:38:59 +10002631 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002632 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002633 /* Schedule the channel for cleanup/deletion. */
2634 chan_mark_dead(c);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002635 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002636}
2637
Damien Millerd79b4242006-03-31 23:11:44 +11002638/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002639int
Damien Miller630d6f42002-01-22 23:17:30 +11002640channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002641{
2642 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002643 int id;
2644 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002645
2646 if (!compat20)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002647 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002648
2649 /* Get the channel number and verify it. */
2650 id = packet_get_int();
2651 c = channel_lookup(id);
2652
Damien Millerd47c62a2005-12-13 19:33:57 +11002653 if (c == NULL) {
2654 logit("Received window adjust for non-open channel %d.", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002655 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002656 }
2657 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002658 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002659 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002660 c->remote_window += adjust;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002661 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10002662}
2663
Damien Millerd79b4242006-03-31 23:11:44 +11002664/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002665int
Damien Miller630d6f42002-01-22 23:17:30 +11002666channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002667{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002668 Channel *c = NULL;
2669 u_short host_port;
2670 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002671 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002672
Ben Lindstrome9c99912001-06-09 00:41:05 +00002673 remote_id = packet_get_int();
2674 host = packet_get_string(NULL);
2675 host_port = packet_get_int();
2676
2677 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2678 originator_string = packet_get_string(NULL);
2679 } else {
2680 originator_string = xstrdup("unknown (remote did not supply name)");
2681 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002682 packet_check_eom();
Damien Miller7acefbb2014-07-18 14:11:24 +10002683 c = channel_connect_to_port(host, host_port,
Damien Millerbd740252008-05-19 15:37:09 +10002684 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002685 free(originator_string);
2686 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002687 if (c == NULL) {
2688 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2689 packet_put_int(remote_id);
2690 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002691 } else
2692 c->remote_id = remote_id;
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002693 return 0;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002694}
2695
Damien Millerb84886b2008-05-19 15:05:07 +10002696/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002697int
Damien Millerb84886b2008-05-19 15:05:07 +10002698channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2699{
2700 Channel *c;
2701 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002702 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002703
2704 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002705 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002706
Damien Miller16a73072008-12-08 09:55:25 +11002707 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002708 packet_check_eom();
2709
Damien Miller16a73072008-12-08 09:55:25 +11002710 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002711
Damien Miller16a73072008-12-08 09:55:25 +11002712 if ((c = channel_lookup(id)) == NULL) {
2713 logit("channel_input_status_confirm: %d: unknown", id);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002714 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002715 }
Damien Millerb84886b2008-05-19 15:05:07 +10002716 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002717 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002718 cc->cb(type, c, cc->ctx);
2719 TAILQ_REMOVE(&c->status_confirms, cc, entry);
Damien Miller1d2c4562014-02-04 11:18:20 +11002720 explicit_bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002721 free(cc);
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00002722 return 0;
Damien Millerb84886b2008-05-19 15:05:07 +10002723}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002724
Ben Lindstrome9c99912001-06-09 00:41:05 +00002725/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002726
Ben Lindstrom908afed2001-10-03 17:34:59 +00002727void
2728channel_set_af(int af)
2729{
2730 IPv4or6 = af;
2731}
2732
Damien Millerf6dff7c2011-09-22 21:38:52 +10002733
2734/*
2735 * Determine whether or not a port forward listens to loopback, the
2736 * specified address or wildcard. On the client, a specified bind
2737 * address will always override gateway_ports. On the server, a
2738 * gateway_ports of 1 (``yes'') will override the client's specification
2739 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2740 * will bind to whatever address the client asked for.
2741 *
2742 * Special-case listen_addrs are:
2743 *
2744 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2745 * "" (empty string), "*" -> wildcard v4/v6
2746 * "localhost" -> loopback v4/v6
Damien Miller602943d2014-07-04 08:59:41 +10002747 * "127.0.0.1" / "::1" -> accepted even if gateway_ports isn't set
Damien Millerf6dff7c2011-09-22 21:38:52 +10002748 */
2749static const char *
2750channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
Damien Miller7acefbb2014-07-18 14:11:24 +10002751 int is_client, struct ForwardOptions *fwd_opts)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002752{
2753 const char *addr = NULL;
2754 int wildcard = 0;
2755
2756 if (listen_addr == NULL) {
2757 /* No address specified: default to gateway_ports setting */
Damien Miller7acefbb2014-07-18 14:11:24 +10002758 if (fwd_opts->gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002759 wildcard = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10002760 } else if (fwd_opts->gateway_ports || is_client) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002761 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2762 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2763 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
Damien Miller7acefbb2014-07-18 14:11:24 +10002764 (!is_client && fwd_opts->gateway_ports == 1)) {
Damien Millerf6dff7c2011-09-22 21:38:52 +10002765 wildcard = 1;
Darren Tucker71152bc2013-10-10 10:27:21 +11002766 /*
2767 * Notify client if they requested a specific listen
2768 * address and it was overridden.
2769 */
2770 if (*listen_addr != '\0' &&
2771 strcmp(listen_addr, "0.0.0.0") != 0 &&
2772 strcmp(listen_addr, "*") != 0) {
2773 packet_send_debug("Forwarding listen address "
2774 "\"%s\" overridden by server "
2775 "GatewayPorts", listen_addr);
2776 }
Damien Miller602943d2014-07-04 08:59:41 +10002777 } else if (strcmp(listen_addr, "localhost") != 0 ||
2778 strcmp(listen_addr, "127.0.0.1") == 0 ||
2779 strcmp(listen_addr, "::1") == 0) {
2780 /* Accept localhost address when GatewayPorts=yes */
Damien Millere84d1032014-05-21 17:13:36 +10002781 addr = listen_addr;
Damien Miller602943d2014-07-04 08:59:41 +10002782 }
2783 } else if (strcmp(listen_addr, "127.0.0.1") == 0 ||
2784 strcmp(listen_addr, "::1") == 0) {
2785 /*
2786 * If a specific IPv4/IPv6 localhost address has been
2787 * requested then accept it even if gateway_ports is in
2788 * effect. This allows the client to prefer IPv4 or IPv6.
2789 */
2790 addr = listen_addr;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002791 }
2792 if (wildcardp != NULL)
2793 *wildcardp = wildcard;
2794 return addr;
2795}
2796
Damien Millerb16461c2002-01-22 23:29:22 +11002797static int
Damien Miller7acefbb2014-07-18 14:11:24 +10002798channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd,
2799 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002800{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002801 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002802 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002803 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002804 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002805 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002806 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002807
Damien Millerb16461c2002-01-22 23:29:22 +11002808 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10002809 fwd->listen_host : fwd->connect_host;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002810 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002811
Damien Millerb16461c2002-01-22 23:29:22 +11002812 if (host == NULL) {
2813 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002814 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002815 }
Damien Miller9576ac42009-01-28 16:30:33 +11002816 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002817 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002818 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002819 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002820
Damien Millerf6dff7c2011-09-22 21:38:52 +10002821 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
Damien Miller7acefbb2014-07-18 14:11:24 +10002822 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
2823 is_client, fwd_opts);
2824 debug3("%s: type %d wildcard %d addr %s", __func__,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002825 type, wildcard, (addr == NULL) ? "NULL" : addr);
2826
2827 /*
Damien Miller34132e52000-01-14 15:45:46 +11002828 * getaddrinfo returns a loopback address if the hostname is
2829 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002830 */
Damien Miller34132e52000-01-14 15:45:46 +11002831 memset(&hints, 0, sizeof(hints));
2832 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002833 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002834 hints.ai_socktype = SOCK_STREAM;
Damien Miller7acefbb2014-07-18 14:11:24 +10002835 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002836 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2837 if (addr == NULL) {
2838 /* This really shouldn't happen */
2839 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002840 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002841 } else {
Damien Miller7acefbb2014-07-18 14:11:24 +10002842 error("%s: getaddrinfo(%.64s): %s", __func__, addr,
Darren Tucker4abde772007-12-29 02:43:51 +11002843 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002844 }
Damien Millera7270302005-07-06 09:36:05 +10002845 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002846 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002847 if (allocated_listen_port != NULL)
2848 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002849 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002850 switch (ai->ai_family) {
2851 case AF_INET:
2852 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2853 sin_port;
2854 break;
2855 case AF_INET6:
2856 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2857 sin6_port;
2858 break;
2859 default:
Damien Miller34132e52000-01-14 15:45:46 +11002860 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002861 }
2862 /*
2863 * If allocating a port for -R forwards, then use the
2864 * same port for all address families.
2865 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002866 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002867 allocated_listen_port != NULL && *allocated_listen_port > 0)
2868 *lport_p = htons(*allocated_listen_port);
2869
Damien Miller34132e52000-01-14 15:45:46 +11002870 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2871 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10002872 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +11002873 continue;
2874 }
2875 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002876 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002877 if (sock < 0) {
2878 /* this is no error since kernel may not support ipv6 */
2879 verbose("socket: %.100s", strerror(errno));
2880 continue;
2881 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002882
2883 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002884 if (ai->ai_family == AF_INET6)
2885 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002886
Damien Miller4bf648f2009-02-14 16:28:21 +11002887 debug("Local forwarding listening on %s port %s.",
2888 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002889
Damien Miller34132e52000-01-14 15:45:46 +11002890 /* Bind the socket to the address. */
2891 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2892 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002893 if (!ai->ai_next)
2894 error("bind: %.100s", strerror(errno));
2895 else
2896 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002897
Damien Miller34132e52000-01-14 15:45:46 +11002898 close(sock);
2899 continue;
2900 }
2901 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002902 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002903 error("listen: %.100s", strerror(errno));
2904 close(sock);
2905 continue;
2906 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002907
2908 /*
Damien Miller7acefbb2014-07-18 14:11:24 +10002909 * fwd->listen_port == 0 requests a dynamically allocated port -
Damien Miller4bf648f2009-02-14 16:28:21 +11002910 * record what we got.
2911 */
Damien Miller7acefbb2014-07-18 14:11:24 +10002912 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
Damien Miller4bf648f2009-02-14 16:28:21 +11002913 allocated_listen_port != NULL &&
2914 *allocated_listen_port == 0) {
2915 *allocated_listen_port = get_sock_port(sock, 1);
2916 debug("Allocated listen port %d",
2917 *allocated_listen_port);
2918 }
2919
Damien Miller34132e52000-01-14 15:45:46 +11002920 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002921 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002922 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002923 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002924 c->path = xstrdup(host);
Damien Miller7acefbb2014-07-18 14:11:24 +10002925 c->host_port = fwd->connect_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002926 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller7acefbb2014-07-18 14:11:24 +10002927 if (fwd->listen_port == 0 && allocated_listen_port != NULL &&
Darren Tucker68afb8c2011-10-02 18:59:03 +11002928 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2929 c->listening_port = *allocated_listen_port;
2930 else
Damien Miller7acefbb2014-07-18 14:11:24 +10002931 c->listening_port = fwd->listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002932 success = 1;
2933 }
2934 if (success == 0)
Damien Miller7acefbb2014-07-18 14:11:24 +10002935 error("%s: cannot listen to port: %d", __func__,
2936 fwd->listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002937 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002938 return success;
Damien Miller95def091999-11-25 00:26:21 +11002939}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002940
Damien Miller7acefbb2014-07-18 14:11:24 +10002941static int
2942channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
2943 struct ForwardOptions *fwd_opts)
2944{
2945 struct sockaddr_un sunaddr;
2946 const char *path;
2947 Channel *c;
2948 int port, sock;
2949 mode_t omask;
2950
2951 switch (type) {
2952 case SSH_CHANNEL_UNIX_LISTENER:
2953 if (fwd->connect_path != NULL) {
2954 if (strlen(fwd->connect_path) > sizeof(sunaddr.sun_path)) {
2955 error("Local connecting path too long: %s",
2956 fwd->connect_path);
2957 return 0;
2958 }
2959 path = fwd->connect_path;
2960 port = PORT_STREAMLOCAL;
2961 } else {
2962 if (fwd->connect_host == NULL) {
2963 error("No forward host name.");
2964 return 0;
2965 }
2966 if (strlen(fwd->connect_host) >= NI_MAXHOST) {
2967 error("Forward host name too long.");
2968 return 0;
2969 }
2970 path = fwd->connect_host;
2971 port = fwd->connect_port;
2972 }
2973 break;
2974 case SSH_CHANNEL_RUNIX_LISTENER:
2975 path = fwd->listen_path;
2976 port = PORT_STREAMLOCAL;
2977 break;
2978 default:
2979 error("%s: unexpected channel type %d", __func__, type);
2980 return 0;
2981 }
2982
2983 if (fwd->listen_path == NULL) {
2984 error("No forward path name.");
2985 return 0;
2986 }
2987 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) {
2988 error("Local listening path too long: %s", fwd->listen_path);
2989 return 0;
2990 }
2991
2992 debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
2993
2994 /* Start a Unix domain listener. */
2995 omask = umask(fwd_opts->streamlocal_bind_mask);
2996 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG,
2997 fwd_opts->streamlocal_bind_unlink);
2998 umask(omask);
2999 if (sock < 0)
3000 return 0;
3001
3002 debug("Local forwarding listening on path %s.", fwd->listen_path);
3003
3004 /* Allocate a channel number for the socket. */
3005 c = channel_new("unix listener", type, sock, sock, -1,
3006 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
3007 0, "unix listener", 1);
3008 c->path = xstrdup(path);
3009 c->host_port = port;
3010 c->listening_port = PORT_STREAMLOCAL;
3011 c->listening_addr = xstrdup(fwd->listen_path);
3012 return 1;
3013}
3014
3015static int
3016channel_cancel_rport_listener_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003017{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003018 u_int i;
3019 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003020
Darren Tucker47eede72005-03-14 23:08:12 +11003021 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10003022 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10003023 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
3024 continue;
3025 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
3026 debug2("%s: close channel %d", __func__, i);
3027 channel_free(c);
3028 found = 1;
3029 }
3030 }
Darren Tuckere7066df2004-05-24 10:18:05 +10003031
Damien Millerf6dff7c2011-09-22 21:38:52 +10003032 return (found);
3033}
3034
Damien Miller7acefbb2014-07-18 14:11:24 +10003035static int
3036channel_cancel_rport_listener_streamlocal(const char *path)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003037{
3038 u_int i;
3039 int found = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003040
3041 for (i = 0; i < channels_alloc; i++) {
3042 Channel *c = channels[i];
3043 if (c == NULL || c->type != SSH_CHANNEL_RUNIX_LISTENER)
3044 continue;
3045 if (c->path == NULL)
3046 continue;
3047 if (strcmp(c->path, path) == 0) {
3048 debug2("%s: close channel %d", __func__, i);
3049 channel_free(c);
3050 found = 1;
3051 }
3052 }
3053
3054 return (found);
3055}
3056
3057int
3058channel_cancel_rport_listener(struct Forward *fwd)
3059{
3060 if (fwd->listen_path != NULL)
3061 return channel_cancel_rport_listener_streamlocal(fwd->listen_path);
3062 else
3063 return channel_cancel_rport_listener_tcpip(fwd->listen_host, fwd->listen_port);
3064}
3065
3066static int
3067channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport,
3068 int cport, struct ForwardOptions *fwd_opts)
3069{
3070 u_int i;
3071 int found = 0;
3072 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, fwd_opts);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003073
3074 for (i = 0; i < channels_alloc; i++) {
3075 Channel *c = channels[i];
3076 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
3077 continue;
Damien Millerff773642011-09-22 21:39:48 +10003078 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003079 continue;
Damien Millerff773642011-09-22 21:39:48 +10003080 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3081 /* skip dynamic forwardings */
3082 if (c->host_port == 0)
3083 continue;
3084 } else {
3085 if (c->host_port != cport)
3086 continue;
3087 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10003088 if ((c->listening_addr == NULL && addr != NULL) ||
3089 (c->listening_addr != NULL && addr == NULL))
3090 continue;
3091 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10003092 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10003093 channel_free(c);
3094 found = 1;
3095 }
3096 }
3097
3098 return (found);
3099}
3100
Damien Miller7acefbb2014-07-18 14:11:24 +10003101static int
3102channel_cancel_lport_listener_streamlocal(const char *path)
3103{
3104 u_int i;
3105 int found = 0;
3106
3107 if (path == NULL) {
3108 error("%s: no path specified.", __func__);
3109 return 0;
3110 }
3111
3112 for (i = 0; i < channels_alloc; i++) {
3113 Channel *c = channels[i];
3114 if (c == NULL || c->type != SSH_CHANNEL_UNIX_LISTENER)
3115 continue;
3116 if (c->listening_addr == NULL)
3117 continue;
3118 if (strcmp(c->listening_addr, path) == 0) {
3119 debug2("%s: close channel %d", __func__, i);
3120 channel_free(c);
3121 found = 1;
3122 }
3123 }
3124
3125 return (found);
3126}
3127
3128int
3129channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts)
3130{
3131 if (fwd->listen_path != NULL)
3132 return channel_cancel_lport_listener_streamlocal(fwd->listen_path);
3133 else
3134 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3135}
3136
Damien Millerb16461c2002-01-22 23:29:22 +11003137/* protocol local port fwd, used by ssh (and sshd in v1) */
3138int
Damien Miller7acefbb2014-07-18 14:11:24 +10003139channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003140{
Damien Miller7acefbb2014-07-18 14:11:24 +10003141 if (fwd->listen_path != NULL) {
3142 return channel_setup_fwd_listener_streamlocal(
3143 SSH_CHANNEL_UNIX_LISTENER, fwd, fwd_opts);
3144 } else {
3145 return channel_setup_fwd_listener_tcpip(SSH_CHANNEL_PORT_LISTENER,
3146 fwd, NULL, fwd_opts);
3147 }
Damien Millerb16461c2002-01-22 23:29:22 +11003148}
3149
3150/* protocol v2 remote port fwd, used by sshd */
3151int
Damien Miller7acefbb2014-07-18 14:11:24 +10003152channel_setup_remote_fwd_listener(struct Forward *fwd,
3153 int *allocated_listen_port, struct ForwardOptions *fwd_opts)
Damien Millerb16461c2002-01-22 23:29:22 +11003154{
Damien Miller7acefbb2014-07-18 14:11:24 +10003155 if (fwd->listen_path != NULL) {
3156 return channel_setup_fwd_listener_streamlocal(
3157 SSH_CHANNEL_RUNIX_LISTENER, fwd, fwd_opts);
3158 } else {
3159 return channel_setup_fwd_listener_tcpip(
3160 SSH_CHANNEL_RPORT_LISTENER, fwd, allocated_listen_port,
3161 fwd_opts);
3162 }
Damien Millerb16461c2002-01-22 23:29:22 +11003163}
3164
Damien Miller5428f641999-11-25 11:54:57 +11003165/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10003166 * Translate the requested rfwd listen host to something usable for
3167 * this server.
3168 */
3169static const char *
3170channel_rfwd_bind_host(const char *listen_host)
3171{
3172 if (listen_host == NULL) {
3173 if (datafellows & SSH_BUG_RFWD_ADDR)
3174 return "127.0.0.1";
3175 else
3176 return "localhost";
3177 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3178 if (datafellows & SSH_BUG_RFWD_ADDR)
3179 return "0.0.0.0";
3180 else
3181 return "";
3182 } else
3183 return listen_host;
3184}
3185
3186/*
Damien Miller5428f641999-11-25 11:54:57 +11003187 * Initiate forwarding of connections to port "port" on remote host through
3188 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11003189 * Returns handle (index) for updating the dynamic listen port with
3190 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11003191 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003192int
Damien Miller7acefbb2014-07-18 14:11:24 +10003193channel_request_remote_forwarding(struct Forward *fwd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003194{
Darren Tucker68afb8c2011-10-02 18:59:03 +11003195 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003196
Damien Miller95def091999-11-25 00:26:21 +11003197 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10003198 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10003199 packet_start(SSH2_MSG_GLOBAL_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003200 if (fwd->listen_path != NULL) {
3201 packet_put_cstring("streamlocal-forward@openssh.com");
3202 packet_put_char(1); /* boolean: want reply */
3203 packet_put_cstring(fwd->listen_path);
3204 } else {
3205 packet_put_cstring("tcpip-forward");
3206 packet_put_char(1); /* boolean: want reply */
3207 packet_put_cstring(channel_rfwd_bind_host(fwd->listen_host));
3208 packet_put_int(fwd->listen_port);
3209 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003210 packet_send();
3211 packet_write_wait();
3212 /* Assume that server accepts the request */
3213 success = 1;
Damien Miller7acefbb2014-07-18 14:11:24 +10003214 } else if (fwd->listen_path == NULL) {
Damien Miller33b13562000-04-04 14:38:59 +10003215 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller7acefbb2014-07-18 14:11:24 +10003216 packet_put_int(fwd->listen_port);
3217 packet_put_cstring(fwd->connect_host);
3218 packet_put_int(fwd->connect_port);
Damien Miller33b13562000-04-04 14:38:59 +10003219 packet_send();
3220 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003221
3222 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003223 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003224 switch (type) {
3225 case SSH_SMSG_SUCCESS:
3226 success = 1;
3227 break;
3228 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003229 break;
3230 default:
3231 /* Unknown packet */
3232 packet_disconnect("Protocol error for port forward request:"
3233 "received packet type %d.", type);
3234 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003235 } else {
3236 logit("Warning: Server does not support remote stream local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11003237 }
3238 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003239 /* Record that connection to this host/port is permitted. */
3240 permitted_opens = xrealloc(permitted_opens,
3241 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003242 idx = num_permitted_opens++;
Damien Miller7acefbb2014-07-18 14:11:24 +10003243 if (fwd->connect_path != NULL) {
3244 permitted_opens[idx].host_to_connect =
3245 xstrdup(fwd->connect_path);
3246 permitted_opens[idx].port_to_connect =
3247 PORT_STREAMLOCAL;
3248 } else {
3249 permitted_opens[idx].host_to_connect =
3250 xstrdup(fwd->connect_host);
3251 permitted_opens[idx].port_to_connect =
3252 fwd->connect_port;
3253 }
3254 if (fwd->listen_path != NULL) {
3255 permitted_opens[idx].listen_host = NULL;
3256 permitted_opens[idx].listen_path =
3257 xstrdup(fwd->listen_path);
3258 permitted_opens[idx].listen_port = PORT_STREAMLOCAL;
3259 } else {
3260 permitted_opens[idx].listen_host =
3261 fwd->listen_host ? xstrdup(fwd->listen_host) : NULL;
3262 permitted_opens[idx].listen_path = NULL;
3263 permitted_opens[idx].listen_port = fwd->listen_port;
3264 }
Damien Miller33b13562000-04-04 14:38:59 +10003265 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003266 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003267}
3268
Damien Miller4b3ed642014-07-02 15:29:40 +10003269static int
3270open_match(ForwardPermission *allowed_open, const char *requestedhost,
Damien Miller7acefbb2014-07-18 14:11:24 +10003271 int requestedport)
Damien Miller4b3ed642014-07-02 15:29:40 +10003272{
3273 if (allowed_open->host_to_connect == NULL)
3274 return 0;
3275 if (allowed_open->port_to_connect != FWD_PERMIT_ANY_PORT &&
3276 allowed_open->port_to_connect != requestedport)
3277 return 0;
3278 if (strcmp(allowed_open->host_to_connect, requestedhost) != 0)
3279 return 0;
3280 return 1;
3281}
3282
3283/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003284 * Note that in the listen host/port case
Damien Miller4b3ed642014-07-02 15:29:40 +10003285 * we don't support FWD_PERMIT_ANY_PORT and
3286 * need to translate between the configured-host (listen_host)
3287 * and what we've sent to the remote server (channel_rfwd_bind_host)
3288 */
3289static int
Damien Miller7acefbb2014-07-18 14:11:24 +10003290open_listen_match_tcpip(ForwardPermission *allowed_open,
3291 const char *requestedhost, u_short requestedport, int translate)
Damien Miller4b3ed642014-07-02 15:29:40 +10003292{
3293 const char *allowed_host;
3294
3295 if (allowed_open->host_to_connect == NULL)
3296 return 0;
3297 if (allowed_open->listen_port != requestedport)
3298 return 0;
Damien Miller3a48cc02014-07-06 09:32:49 +10003299 if (!translate && allowed_open->listen_host == NULL &&
3300 requestedhost == NULL)
3301 return 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003302 allowed_host = translate ?
3303 channel_rfwd_bind_host(allowed_open->listen_host) :
3304 allowed_open->listen_host;
3305 if (allowed_host == NULL ||
3306 strcmp(allowed_host, requestedhost) != 0)
3307 return 0;
3308 return 1;
3309}
3310
Damien Miller7acefbb2014-07-18 14:11:24 +10003311static int
3312open_listen_match_streamlocal(ForwardPermission *allowed_open,
3313 const char *requestedpath)
3314{
3315 if (allowed_open->host_to_connect == NULL)
3316 return 0;
3317 if (allowed_open->listen_port != PORT_STREAMLOCAL)
3318 return 0;
3319 if (allowed_open->listen_path == NULL ||
3320 strcmp(allowed_open->listen_path, requestedpath) != 0)
3321 return 0;
3322 return 1;
3323}
3324
Damien Miller5428f641999-11-25 11:54:57 +11003325/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003326 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003327 * local side.
3328 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003329static int
3330channel_request_rforward_cancel_tcpip(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003331{
3332 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003333
3334 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003335 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003336
3337 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003338 if (open_listen_match_tcpip(&permitted_opens[i], host, port, 0))
Darren Tuckere7066df2004-05-24 10:18:05 +10003339 break;
3340 }
3341 if (i >= num_permitted_opens) {
3342 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003343 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003344 }
3345 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3346 packet_put_cstring("cancel-tcpip-forward");
3347 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003348 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003349 packet_put_int(port);
3350 packet_send();
3351
Damien Miller4b3ed642014-07-02 15:29:40 +10003352 permitted_opens[i].listen_port = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003353 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003354 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003355 permitted_opens[i].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003356 free(permitted_opens[i].listen_host);
3357 permitted_opens[i].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003358 permitted_opens[i].listen_path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003359
3360 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003361}
3362
3363/*
Damien Miller7acefbb2014-07-18 14:11:24 +10003364 * Request cancellation of remote forwarding of Unix domain socket
3365 * path from local side.
3366 */
3367static int
3368channel_request_rforward_cancel_streamlocal(const char *path)
3369{
3370 int i;
3371
3372 if (!compat20)
3373 return -1;
3374
3375 for (i = 0; i < num_permitted_opens; i++) {
3376 if (open_listen_match_streamlocal(&permitted_opens[i], path))
3377 break;
3378 }
3379 if (i >= num_permitted_opens) {
3380 debug("%s: requested forward not found", __func__);
3381 return -1;
3382 }
3383 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3384 packet_put_cstring("cancel-streamlocal-forward@openssh.com");
3385 packet_put_char(0);
3386 packet_put_cstring(path);
3387 packet_send();
3388
3389 permitted_opens[i].listen_port = 0;
3390 permitted_opens[i].port_to_connect = 0;
3391 free(permitted_opens[i].host_to_connect);
3392 permitted_opens[i].host_to_connect = NULL;
3393 permitted_opens[i].listen_host = NULL;
3394 free(permitted_opens[i].listen_path);
3395 permitted_opens[i].listen_path = NULL;
3396
3397 return 0;
3398}
3399
3400/*
3401 * Request cancellation of remote forwarding of a connection from local side.
3402 */
3403int
3404channel_request_rforward_cancel(struct Forward *fwd)
3405{
3406 if (fwd->listen_path != NULL) {
3407 return (channel_request_rforward_cancel_streamlocal(
3408 fwd->listen_path));
3409 } else {
3410 return (channel_request_rforward_cancel_tcpip(fwd->listen_host,
3411 fwd->listen_port ? fwd->listen_port : fwd->allocated_port));
3412 }
3413}
3414
3415/*
Damien Miller5428f641999-11-25 11:54:57 +11003416 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3417 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003418 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003419 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003420int
Damien Miller7acefbb2014-07-18 14:11:24 +10003421channel_input_port_forward_request(int is_root, struct ForwardOptions *fwd_opts)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003422{
Darren Tuckere7d4b192006-07-12 22:17:10 +10003423 int success = 0;
Damien Miller7acefbb2014-07-18 14:11:24 +10003424 struct Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003425
Damien Miller95def091999-11-25 00:26:21 +11003426 /* Get arguments from the packet. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003427 memset(&fwd, 0, sizeof(fwd));
3428 fwd.listen_port = packet_get_int();
3429 fwd.connect_host = packet_get_string(NULL);
3430 fwd.connect_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003431
Damien Millerbac2d8a2000-09-05 16:13:06 +11003432#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003433 /*
3434 * Check that an unprivileged user is not trying to forward a
3435 * privileged port.
3436 */
Damien Miller7acefbb2014-07-18 14:11:24 +10003437 if (fwd.listen_port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003438 packet_disconnect(
3439 "Requested forwarding of port %d but user is not root.",
Damien Miller7acefbb2014-07-18 14:11:24 +10003440 fwd.listen_port);
3441 if (fwd.connect_port == 0)
Darren Tucker9189ff82003-07-03 13:52:04 +10003442 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003443#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003444
Damien Miller0bc1bd82000-11-13 22:57:25 +11003445 /* Initiate forwarding */
Damien Miller7acefbb2014-07-18 14:11:24 +10003446 success = channel_setup_local_fwd_listener(&fwd, fwd_opts);
Damien Miller95def091999-11-25 00:26:21 +11003447
3448 /* Free the argument string. */
Damien Miller7acefbb2014-07-18 14:11:24 +10003449 free(fwd.connect_host);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003450
3451 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003452}
3453
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003454/*
3455 * Permits opening to any host/port if permitted_opens[] is empty. This is
3456 * usually called by the server, because the user could connect to any port
3457 * anyway, and the server has no way to know but to trust the client anyway.
3458 */
3459void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003460channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003461{
3462 if (num_permitted_opens == 0)
3463 all_opens_permitted = 1;
3464}
3465
Ben Lindstroma3700052001-04-05 23:26:32 +00003466void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003467channel_add_permitted_opens(char *host, int port)
3468{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003469 debug("allow port forwarding to host %s port %d", host, port);
3470
Damien Miller232cfb12010-06-26 09:50:30 +10003471 permitted_opens = xrealloc(permitted_opens,
3472 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003473 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3474 permitted_opens[num_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003475 permitted_opens[num_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003476 permitted_opens[num_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003477 permitted_opens[num_permitted_opens].listen_port = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003478 num_permitted_opens++;
3479
3480 all_opens_permitted = 0;
3481}
3482
Darren Tucker68afb8c2011-10-02 18:59:03 +11003483/*
3484 * Update the listen port for a dynamic remote forward, after
3485 * the actual 'newport' has been allocated. If 'newport' < 0 is
3486 * passed then they entry will be invalidated.
3487 */
3488void
3489channel_update_permitted_opens(int idx, int newport)
3490{
3491 if (idx < 0 || idx >= num_permitted_opens) {
3492 debug("channel_update_permitted_opens: index out of range:"
3493 " %d num_permitted_opens %d", idx, num_permitted_opens);
3494 return;
3495 }
3496 debug("%s allowed port %d for forwarding to host %s port %d",
3497 newport > 0 ? "Updating" : "Removing",
3498 newport,
3499 permitted_opens[idx].host_to_connect,
3500 permitted_opens[idx].port_to_connect);
3501 if (newport >= 0) {
3502 permitted_opens[idx].listen_port =
3503 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3504 } else {
3505 permitted_opens[idx].listen_port = 0;
3506 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003507 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003508 permitted_opens[idx].host_to_connect = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003509 free(permitted_opens[idx].listen_host);
3510 permitted_opens[idx].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003511 free(permitted_opens[idx].listen_path);
3512 permitted_opens[idx].listen_path = NULL;
Darren Tucker68afb8c2011-10-02 18:59:03 +11003513 }
3514}
3515
Damien Millera765cf42006-07-24 14:08:13 +10003516int
Damien Miller9b439df2006-07-24 14:04:00 +10003517channel_add_adm_permitted_opens(char *host, int port)
3518{
Damien Millera765cf42006-07-24 14:08:13 +10003519 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003520
Damien Miller232cfb12010-06-26 09:50:30 +10003521 permitted_adm_opens = xrealloc(permitted_adm_opens,
3522 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003523 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3524 = xstrdup(host);
3525 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Miller4b3ed642014-07-02 15:29:40 +10003526 permitted_adm_opens[num_adm_permitted_opens].listen_host = NULL;
Damien Miller7acefbb2014-07-18 14:11:24 +10003527 permitted_adm_opens[num_adm_permitted_opens].listen_path = NULL;
Damien Miller4b3ed642014-07-02 15:29:40 +10003528 permitted_adm_opens[num_adm_permitted_opens].listen_port = 0;
Damien Millera765cf42006-07-24 14:08:13 +10003529 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003530}
3531
3532void
Damien Millerc6081482012-04-22 11:18:53 +10003533channel_disable_adm_local_opens(void)
3534{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003535 channel_clear_adm_permitted_opens();
3536 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3537 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3538 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003539}
3540
3541void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003542channel_clear_permitted_opens(void)
3543{
3544 int i;
3545
Damien Miller4b3ed642014-07-02 15:29:40 +10003546 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003547 free(permitted_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003548 free(permitted_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003549 free(permitted_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003550 }
Darren Tuckera627d422013-06-02 07:31:17 +10003551 free(permitted_opens);
3552 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003553 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003554}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003555
Damien Miller9b439df2006-07-24 14:04:00 +10003556void
3557channel_clear_adm_permitted_opens(void)
3558{
3559 int i;
3560
Damien Miller4b3ed642014-07-02 15:29:40 +10003561 for (i = 0; i < num_adm_permitted_opens; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10003562 free(permitted_adm_opens[i].host_to_connect);
Damien Miller4b3ed642014-07-02 15:29:40 +10003563 free(permitted_adm_opens[i].listen_host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003564 free(permitted_adm_opens[i].listen_path);
Damien Miller4b3ed642014-07-02 15:29:40 +10003565 }
Darren Tuckera627d422013-06-02 07:31:17 +10003566 free(permitted_adm_opens);
3567 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003568 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003569}
3570
Darren Tuckere7140f22008-06-10 23:01:51 +10003571void
3572channel_print_adm_permitted_opens(void)
3573{
Damien Miller6ef17492008-07-16 22:42:06 +10003574 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003575
Damien Millerb53d8a12009-01-28 16:13:04 +11003576 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003577 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003578 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003579 return;
3580 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003581 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003582 if (permitted_adm_opens[i].host_to_connect == NULL)
3583 printf(" none");
3584 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003585 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3586 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003587 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003588}
3589
Darren Tucker1338b9e2011-10-02 18:57:35 +11003590/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3591int
3592permitopen_port(const char *p)
3593{
3594 int port;
3595
3596 if (strcmp(p, "*") == 0)
3597 return FWD_PERMIT_ANY_PORT;
3598 if ((port = a2port(p)) > 0)
3599 return port;
3600 return -1;
3601}
3602
Damien Millerbd740252008-05-19 15:37:09 +10003603/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003604static int
Damien Millerbd740252008-05-19 15:37:09 +10003605connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003606{
Damien Millerbd740252008-05-19 15:37:09 +10003607 int sock, saved_errno;
Damien Miller7acefbb2014-07-18 14:11:24 +10003608 struct sockaddr_un *sunaddr;
3609 char ntop[NI_MAXHOST], strport[MAX(NI_MAXSERV,sizeof(sunaddr->sun_path))];
Damien Miller95def091999-11-25 00:26:21 +11003610
Damien Millerbd740252008-05-19 15:37:09 +10003611 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003612 switch (cctx->ai->ai_family) {
3613 case AF_UNIX:
3614 /* unix:pathname instead of host:port */
3615 sunaddr = (struct sockaddr_un *)cctx->ai->ai_addr;
3616 strlcpy(ntop, "unix", sizeof(ntop));
3617 strlcpy(strport, sunaddr->sun_path, sizeof(strport));
3618 break;
3619 case AF_INET:
3620 case AF_INET6:
3621 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3622 ntop, sizeof(ntop), strport, sizeof(strport),
3623 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3624 error("connect_next: getnameinfo failed");
3625 continue;
3626 }
3627 break;
3628 default:
Damien Miller34132e52000-01-14 15:45:46 +11003629 continue;
3630 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003631 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3632 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003633 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003634 error("socket: %.100s", strerror(errno));
3635 else
3636 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003637 continue;
3638 }
Damien Miller232711f2004-06-15 10:35:30 +10003639 if (set_nonblock(sock) == -1)
3640 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003641 if (connect(sock, cctx->ai->ai_addr,
3642 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3643 debug("connect_next: host %.100s ([%.100s]:%s): "
3644 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003645 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003646 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003647 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003648 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003649 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003650 }
Damien Miller7acefbb2014-07-18 14:11:24 +10003651 if (cctx->ai->ai_family != AF_UNIX)
3652 set_nodelay(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003653 debug("connect_next: host %.100s ([%.100s]:%s) "
3654 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3655 cctx->ai = cctx->ai->ai_next;
Damien Millerbd740252008-05-19 15:37:09 +10003656 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003657 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003658 return -1;
3659}
Damien Millerb38eff82000-04-01 11:09:21 +10003660
Damien Millerbd740252008-05-19 15:37:09 +10003661static void
3662channel_connect_ctx_free(struct channel_connect *cctx)
3663{
Darren Tuckera627d422013-06-02 07:31:17 +10003664 free(cctx->host);
Damien Miller7acefbb2014-07-18 14:11:24 +10003665 if (cctx->aitop) {
3666 if (cctx->aitop->ai_family == AF_UNIX)
3667 free(cctx->aitop);
3668 else
3669 freeaddrinfo(cctx->aitop);
3670 }
Damien Miller1d2c4562014-02-04 11:18:20 +11003671 memset(cctx, 0, sizeof(*cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003672}
3673
Damien Miller7acefbb2014-07-18 14:11:24 +10003674/* Return CONNECTING channel to remote host:port or local socket path */
Damien Millerbd740252008-05-19 15:37:09 +10003675static Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003676connect_to(const char *name, int port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003677{
3678 struct addrinfo hints;
3679 int gaierr;
3680 int sock = -1;
3681 char strport[NI_MAXSERV];
3682 struct channel_connect cctx;
3683 Channel *c;
3684
Damien Miller2bcb8662008-07-12 17:12:29 +10003685 memset(&cctx, 0, sizeof(cctx));
Damien Miller7acefbb2014-07-18 14:11:24 +10003686
3687 if (port == PORT_STREAMLOCAL) {
3688 struct sockaddr_un *sunaddr;
3689 struct addrinfo *ai;
3690
3691 if (strlen(name) > sizeof(sunaddr->sun_path)) {
3692 error("%.100s: %.100s", name, strerror(ENAMETOOLONG));
3693 return (NULL);
3694 }
3695
3696 /*
3697 * Fake up a struct addrinfo for AF_UNIX connections.
3698 * channel_connect_ctx_free() must check ai_family
3699 * and use free() not freeaddirinfo() for AF_UNIX.
3700 */
3701 ai = xmalloc(sizeof(*ai) + sizeof(*sunaddr));
3702 memset(ai, 0, sizeof(*ai) + sizeof(*sunaddr));
3703 ai->ai_addr = (struct sockaddr *)(ai + 1);
3704 ai->ai_addrlen = sizeof(*sunaddr);
3705 ai->ai_family = AF_UNIX;
3706 ai->ai_socktype = SOCK_STREAM;
3707 ai->ai_protocol = PF_UNSPEC;
3708 sunaddr = (struct sockaddr_un *)ai->ai_addr;
3709 sunaddr->sun_family = AF_UNIX;
3710 strlcpy(sunaddr->sun_path, name, sizeof(sunaddr->sun_path));
3711 cctx.aitop = ai;
3712 } else {
3713 memset(&hints, 0, sizeof(hints));
3714 hints.ai_family = IPv4or6;
3715 hints.ai_socktype = SOCK_STREAM;
3716 snprintf(strport, sizeof strport, "%d", port);
3717 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx.aitop)) != 0) {
3718 error("connect_to %.100s: unknown host (%s)", name,
3719 ssh_gai_strerror(gaierr));
3720 return NULL;
3721 }
Damien Millerbd740252008-05-19 15:37:09 +10003722 }
3723
Damien Miller7acefbb2014-07-18 14:11:24 +10003724 cctx.host = xstrdup(name);
Damien Millerbd740252008-05-19 15:37:09 +10003725 cctx.port = port;
3726 cctx.ai = cctx.aitop;
3727
3728 if ((sock = connect_next(&cctx)) == -1) {
3729 error("connect to %.100s port %d failed: %s",
Damien Miller7acefbb2014-07-18 14:11:24 +10003730 name, port, strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003731 channel_connect_ctx_free(&cctx);
3732 return NULL;
3733 }
3734 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3735 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3736 c->connect_ctx = cctx;
3737 return c;
3738}
3739
3740Channel *
Damien Miller4b3ed642014-07-02 15:29:40 +10003741channel_connect_by_listen_address(const char *listen_host,
3742 u_short listen_port, char *ctype, char *rname)
Damien Millerbd740252008-05-19 15:37:09 +10003743{
3744 int i;
3745
3746 for (i = 0; i < num_permitted_opens; i++) {
Damien Miller7acefbb2014-07-18 14:11:24 +10003747 if (open_listen_match_tcpip(&permitted_opens[i], listen_host,
Damien Miller4b3ed642014-07-02 15:29:40 +10003748 listen_port, 1)) {
Damien Millerbd740252008-05-19 15:37:09 +10003749 return connect_to(
3750 permitted_opens[i].host_to_connect,
3751 permitted_opens[i].port_to_connect, ctype, rname);
3752 }
3753 }
3754 error("WARNING: Server requests forwarding for unknown listen_port %d",
3755 listen_port);
3756 return NULL;
3757}
3758
Damien Miller7acefbb2014-07-18 14:11:24 +10003759Channel *
3760channel_connect_by_listen_path(const char *path, char *ctype, char *rname)
3761{
3762 int i;
3763
3764 for (i = 0; i < num_permitted_opens; i++) {
3765 if (open_listen_match_streamlocal(&permitted_opens[i], path)) {
3766 return connect_to(
3767 permitted_opens[i].host_to_connect,
3768 permitted_opens[i].port_to_connect, ctype, rname);
3769 }
3770 }
3771 error("WARNING: Server requests forwarding for unknown path %.100s",
3772 path);
3773 return NULL;
3774}
3775
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003776/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003777Channel *
Damien Miller7acefbb2014-07-18 14:11:24 +10003778channel_connect_to_port(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003779{
Damien Miller9b439df2006-07-24 14:04:00 +10003780 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003781
3782 permit = all_opens_permitted;
3783 if (!permit) {
3784 for (i = 0; i < num_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003785 if (open_match(&permitted_opens[i], host, port)) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003786 permit = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003787 break;
3788 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003789 }
Damien Miller9b439df2006-07-24 14:04:00 +10003790
3791 if (num_adm_permitted_opens > 0) {
3792 permit_adm = 0;
3793 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Miller4b3ed642014-07-02 15:29:40 +10003794 if (open_match(&permitted_adm_opens[i], host, port)) {
Damien Miller9b439df2006-07-24 14:04:00 +10003795 permit_adm = 1;
Damien Miller4b3ed642014-07-02 15:29:40 +10003796 break;
3797 }
Damien Miller9b439df2006-07-24 14:04:00 +10003798 }
3799
3800 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003801 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003802 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003803 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003804 }
Damien Millerbd740252008-05-19 15:37:09 +10003805 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003806}
3807
Damien Miller7acefbb2014-07-18 14:11:24 +10003808/* Check if connecting to that path is permitted and connect. */
3809Channel *
3810channel_connect_to_path(const char *path, char *ctype, char *rname)
3811{
3812 int i, permit, permit_adm = 1;
3813
3814 permit = all_opens_permitted;
3815 if (!permit) {
3816 for (i = 0; i < num_permitted_opens; i++)
3817 if (open_match(&permitted_opens[i], path, PORT_STREAMLOCAL)) {
3818 permit = 1;
3819 break;
3820 }
3821 }
3822
3823 if (num_adm_permitted_opens > 0) {
3824 permit_adm = 0;
3825 for (i = 0; i < num_adm_permitted_opens; i++)
3826 if (open_match(&permitted_adm_opens[i], path, PORT_STREAMLOCAL)) {
3827 permit_adm = 1;
3828 break;
3829 }
3830 }
3831
3832 if (!permit || !permit_adm) {
3833 logit("Received request to connect to path %.100s, "
3834 "but the request was denied.", path);
3835 return NULL;
3836 }
3837 return connect_to(path, PORT_STREAMLOCAL, ctype, rname);
3838}
3839
Damien Miller0e220db2004-06-15 10:34:08 +10003840void
3841channel_send_window_changes(void)
3842{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003843 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003844 struct winsize ws;
3845
3846 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003847 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003848 channels[i]->type != SSH_CHANNEL_OPEN)
3849 continue;
3850 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3851 continue;
3852 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003853 packet_put_int((u_int)ws.ws_col);
3854 packet_put_int((u_int)ws.ws_row);
3855 packet_put_int((u_int)ws.ws_xpixel);
3856 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003857 packet_send();
3858 }
3859}
3860
Ben Lindstrome9c99912001-06-09 00:41:05 +00003861/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003862
Damien Miller5428f641999-11-25 11:54:57 +11003863/*
3864 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003865 * Returns 0 and a suitable display number for the DISPLAY variable
3866 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003867 */
Kevin Steves366298c2001-12-19 17:58:01 +00003868int
Damien Miller95c249f2002-02-05 12:11:34 +11003869x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003870 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003871{
Damien Millere7378562001-12-21 14:58:35 +11003872 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003873 int display_number, sock;
3874 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003875 struct addrinfo hints, *ai, *aitop;
3876 char strport[NI_MAXSERV];
3877 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003878
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003879 if (chanids == NULL)
3880 return -1;
3881
Damien Millera34a28b1999-12-14 10:47:15 +11003882 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003883 display_number < MAX_DISPLAYS;
3884 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003885 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003886 memset(&hints, 0, sizeof(hints));
3887 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003888 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003889 hints.ai_socktype = SOCK_STREAM;
3890 snprintf(strport, sizeof strport, "%d", port);
3891 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003892 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003893 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003894 }
Damien Miller34132e52000-01-14 15:45:46 +11003895 for (ai = aitop; ai; ai = ai->ai_next) {
3896 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3897 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003898 sock = socket(ai->ai_family, ai->ai_socktype,
3899 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003900 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003901 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3902#ifdef EPFNOSUPPORT
3903 && (errno != EPFNOSUPPORT)
3904#endif
3905 ) {
Damien Millere2192732000-01-17 13:22:55 +11003906 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003907 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003908 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003909 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003910 debug("x11_create_display_inet: Socket family %d not supported",
3911 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003912 continue;
3913 }
Damien Miller34132e52000-01-14 15:45:46 +11003914 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003915 if (ai->ai_family == AF_INET6)
3916 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003917 if (x11_use_localhost)
3918 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003919 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003920 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003921 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003922
Damien Miller34132e52000-01-14 15:45:46 +11003923 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003924 close(socks[n]);
3925 }
3926 num_socks = 0;
3927 break;
3928 }
3929 socks[num_socks++] = sock;
3930 if (num_socks == NUM_SOCKS)
3931 break;
Damien Miller95def091999-11-25 00:26:21 +11003932 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003933 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003934 if (num_socks > 0)
3935 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003936 }
Damien Miller95def091999-11-25 00:26:21 +11003937 if (display_number >= MAX_DISPLAYS) {
3938 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003939 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003940 }
Damien Miller95def091999-11-25 00:26:21 +11003941 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003942 for (n = 0; n < num_socks; n++) {
3943 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003944 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003945 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003946 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003947 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003948 }
Damien Miller95def091999-11-25 00:26:21 +11003949 }
Damien Miller34132e52000-01-14 15:45:46 +11003950
Damien Miller34132e52000-01-14 15:45:46 +11003951 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003952 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003953 for (n = 0; n < num_socks; n++) {
3954 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003955 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003956 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3957 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003958 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003959 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003960 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003961 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003962 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003963
Kevin Steves366298c2001-12-19 17:58:01 +00003964 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003965 *display_numberp = display_number;
3966 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003967}
3968
Ben Lindstrombba81212001-06-25 05:01:22 +00003969static int
Damien Miller819dbb62009-01-21 16:46:26 +11003970connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003971{
Damien Miller95def091999-11-25 00:26:21 +11003972 int sock;
3973 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003974
Damien Miller3afe3752001-12-21 12:39:51 +11003975 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3976 if (sock < 0)
3977 error("socket: %.100s", strerror(errno));
3978 memset(&addr, 0, sizeof(addr));
3979 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003980 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003981 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003982 return sock;
3983 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003984 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3985 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003986}
3987
Damien Miller819dbb62009-01-21 16:46:26 +11003988static int
3989connect_local_xsocket(u_int dnr)
3990{
3991 char buf[1024];
3992 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3993 return connect_local_xsocket_path(buf);
3994}
3995
Damien Millerbd483e72000-04-30 10:00:53 +10003996int
3997x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003998{
Damien Miller57c4e872006-03-31 23:11:07 +11003999 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11004000 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10004001 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11004002 struct addrinfo hints, *ai, *aitop;
4003 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11004004 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004005
Damien Miller95def091999-11-25 00:26:21 +11004006 /* Try to open a socket for the local X server. */
4007 display = getenv("DISPLAY");
4008 if (!display) {
4009 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10004010 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004011 }
Damien Miller5428f641999-11-25 11:54:57 +11004012 /*
4013 * Now we decode the value of the DISPLAY variable and make a
4014 * connection to the real X server.
4015 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004016
Damien Miller819dbb62009-01-21 16:46:26 +11004017 /* Check if the display is from launchd. */
4018#ifdef __APPLE__
4019 if (strncmp(display, "/tmp/launch", 11) == 0) {
4020 sock = connect_local_xsocket_path(display);
4021 if (sock < 0)
4022 return -1;
4023
4024 /* OK, we now have a connection to the display. */
4025 return sock;
4026 }
4027#endif
Damien Miller5428f641999-11-25 11:54:57 +11004028 /*
4029 * Check if it is a unix domain socket. Unix domain displays are in
4030 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
4031 */
Damien Miller95def091999-11-25 00:26:21 +11004032 if (strncmp(display, "unix:", 5) == 0 ||
4033 display[0] == ':') {
4034 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11004035 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004036 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004037 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004038 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004039 }
4040 /* Create a socket. */
4041 sock = connect_local_xsocket(display_number);
4042 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10004043 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004044
4045 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10004046 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004047 }
Damien Miller5428f641999-11-25 11:54:57 +11004048 /*
4049 * Connect to an inet socket. The DISPLAY value is supposedly
4050 * hostname:d[.s], where hostname may also be numeric IP address.
4051 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00004052 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11004053 cp = strchr(buf, ':');
4054 if (!cp) {
4055 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10004056 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004057 }
Damien Miller95def091999-11-25 00:26:21 +11004058 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11004059 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11004060 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11004061 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11004062 display);
Damien Millerbd483e72000-04-30 10:00:53 +10004063 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004064 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004065
Damien Miller34132e52000-01-14 15:45:46 +11004066 /* Look up the host address */
4067 memset(&hints, 0, sizeof(hints));
4068 hints.ai_family = IPv4or6;
4069 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11004070 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11004071 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11004072 error("%.100s: unknown host. (%s)", buf,
4073 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10004074 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004075 }
Damien Miller34132e52000-01-14 15:45:46 +11004076 for (ai = aitop; ai; ai = ai->ai_next) {
4077 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11004078 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11004079 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10004080 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10004081 continue;
4082 }
4083 /* Connect it to the display. */
4084 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11004085 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10004086 6000 + display_number, strerror(errno));
4087 close(sock);
4088 continue;
4089 }
4090 /* Success */
4091 break;
Damien Miller34132e52000-01-14 15:45:46 +11004092 }
Damien Miller34132e52000-01-14 15:45:46 +11004093 freeaddrinfo(aitop);
4094 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11004095 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11004096 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10004097 return -1;
Damien Miller95def091999-11-25 00:26:21 +11004098 }
Damien Miller398e1cf2002-02-05 11:52:13 +11004099 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10004100 return sock;
4101}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004102
Damien Millerbd483e72000-04-30 10:00:53 +10004103/*
4104 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
4105 * the remote channel number. We should do whatever we want, and respond
4106 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
4107 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004108
Damien Miller8473dd82006-07-24 14:08:32 +10004109/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004110int
Damien Miller630d6f42002-01-22 23:17:30 +11004111x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10004112{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004113 Channel *c = NULL;
4114 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10004115 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10004116
4117 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004118
4119 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00004120
4121 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004122 remote_host = packet_get_string(NULL);
4123 } else {
4124 remote_host = xstrdup("unknown (remote did not supply name)");
4125 }
Damien Miller48b03fc2002-01-22 23:11:40 +11004126 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10004127
4128 /* Obtain a connection to the real X display. */
4129 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004130 if (sock != -1) {
4131 /* Allocate a channel for this connection. */
4132 c = channel_new("connected x11 socket",
4133 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
4134 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11004135 c->remote_id = remote_id;
4136 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004137 }
Darren Tuckera627d422013-06-02 07:31:17 +10004138 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004139 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10004140 /* Send refusal to the remote host. */
4141 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004142 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10004143 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10004144 /* Send a confirmation to the remote host. */
4145 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004146 packet_put_int(remote_id);
4147 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10004148 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00004149 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004150 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004151}
4152
Damien Miller69b69aa2000-10-28 14:19:58 +11004153/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10004154/* ARGSUSED */
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004155int
Damien Miller630d6f42002-01-22 23:17:30 +11004156deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11004157{
4158 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00004159
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00004160 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11004161 case SSH_SMSG_AGENT_OPEN:
4162 error("Warning: ssh server tried agent forwarding.");
4163 break;
4164 case SSH_SMSG_X11_OPEN:
4165 error("Warning: ssh server tried X11 forwarding.");
4166 break;
4167 default:
Damien Miller630d6f42002-01-22 23:17:30 +11004168 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11004169 break;
4170 }
Damien Miller5eb137c2005-12-31 16:19:53 +11004171 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11004172 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
4173 packet_put_int(rchan);
4174 packet_send();
markus@openbsd.org3fdc88a2015-01-19 20:07:45 +00004175 return 0;
Damien Miller69b69aa2000-10-28 14:19:58 +11004176}
4177
Damien Miller5428f641999-11-25 11:54:57 +11004178/*
4179 * Requests forwarding of X11 connections, generates fake authentication
4180 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00004181 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11004182 */
Damien Miller4af51302000-04-16 11:18:38 +10004183void
Damien Miller17e7ed02005-06-17 12:54:33 +10004184x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10004185 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004186{
Ben Lindstrom46c16222000-12-22 01:43:59 +00004187 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10004188 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11004189 char *new_data;
4190 int screen_number;
4191 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10004192 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004193
Damien Millerf92c0792005-07-06 09:45:26 +10004194 if (x11_saved_display == NULL)
4195 x11_saved_display = xstrdup(disp);
4196 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10004197 error("x11_request_forwarding_with_spoofing: different "
4198 "$DISPLAY already forwarded");
4199 return;
4200 }
4201
Damien Millerd5fe0ba2006-08-30 11:07:39 +10004202 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11004203 if (cp)
4204 cp = strchr(cp, '.');
4205 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11004206 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11004207 else
4208 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004209
Damien Miller13390022005-07-06 09:44:19 +10004210 if (x11_saved_proto == NULL) {
4211 /* Save protocol name. */
4212 x11_saved_proto = xstrdup(proto);
4213 /*
Damien Miller46d38de2005-07-17 17:02:09 +10004214 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10004215 * of the same length.
4216 */
4217 x11_saved_data = xmalloc(data_len);
4218 x11_fake_data = xmalloc(data_len);
4219 for (i = 0; i < data_len; i++) {
4220 if (sscanf(data + 2 * i, "%2x", &value) != 1)
4221 fatal("x11_request_forwarding: bad "
4222 "authentication data: %.100s", data);
4223 if (i % 4 == 0)
4224 rnd = arc4random();
4225 x11_saved_data[i] = value;
4226 x11_fake_data[i] = rnd & 0xff;
4227 rnd >>= 8;
4228 }
4229 x11_saved_data_len = data_len;
4230 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11004231 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004232
Damien Miller95def091999-11-25 00:26:21 +11004233 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10004234 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004235
Damien Miller95def091999-11-25 00:26:21 +11004236 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10004237 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10004238 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10004239 packet_put_char(0); /* XXX bool single connection */
4240 } else {
4241 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
4242 }
4243 packet_put_cstring(proto);
4244 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11004245 packet_put_int(screen_number);
4246 packet_send();
4247 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10004248 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004249}
4250
Ben Lindstrome9c99912001-06-09 00:41:05 +00004251
4252/* -- agent forwarding */
4253
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004254/* Sends a message to the server to request authentication fd forwarding. */
4255
Damien Miller4af51302000-04-16 11:18:38 +10004256void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00004257auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004258{
Damien Miller95def091999-11-25 00:26:21 +11004259 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
4260 packet_send();
4261 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004262}