blob: fccb9098e43cbaba5979208fa65ef61fa2877e67 [file] [log] [blame]
Damien Millerd79b4242006-03-31 23:11:44 +11001/* $OpenBSD: channels.c,v 1.249 2006/03/30 09:41:25 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
44#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110045#include <sys/types.h>
46#include <sys/un.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110047
48#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
50#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "ssh1.h"
52#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "packet.h"
54#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "log.h"
56#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100060#include "key.h"
61#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110062#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100063#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Ben Lindstrome9c99912001-06-09 00:41:05 +000065/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller5428f641999-11-25 11:54:57 +110067/*
68 * Pointer to an array containing all allocated channels. The array is
69 * dynamically extended as needed.
70 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000071static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000075 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110076 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100077static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Miller5428f641999-11-25 11:54:57 +110079/*
80 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000081 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110082 */
Damien Miller5e953212001-01-30 09:14:00 +110083static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Ben Lindstrome9c99912001-06-09 00:41:05 +000086/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Data structure for storing which hosts are permitted for forward requests.
90 * The local sides of any remote forwards are stored in this array to prevent
91 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
92 * network (which might be behind a firewall).
93 */
Damien Miller95def091999-11-25 00:26:21 +110094typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100095 char *host_to_connect; /* Connect to 'host'. */
96 u_short port_to_connect; /* Connect to 'port'. */
97 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098} ForwardPermission;
99
100/* List of all permitted host/port pairs to connect. */
101static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103/* Number of permitted host/port pairs in the array. */
104static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100105/*
106 * If this is true, all opens are permitted. This is the case on the server
107 * on which we have to trust the client anyway, and the user could do
108 * anything after logging in anyway.
109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110static int all_opens_permitted = 0;
111
Ben Lindstrome9c99912001-06-09 00:41:05 +0000112
113/* -- X11 forwarding */
114
115/* Maximum number of fake X11 displays to try. */
116#define MAX_DISPLAYS 1000
117
Damien Miller13390022005-07-06 09:44:19 +1000118/* Saved X11 local (client) display. */
119static char *x11_saved_display = NULL;
120
Ben Lindstrome9c99912001-06-09 00:41:05 +0000121/* Saved X11 authentication protocol name. */
122static char *x11_saved_proto = NULL;
123
124/* Saved X11 authentication data. This is the real data. */
125static char *x11_saved_data = NULL;
126static u_int x11_saved_data_len = 0;
127
128/*
129 * Fake X11 authentication data. This is what the server will be sending us;
130 * we should replace any occurrences of this by the real data.
131 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100132static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000133static u_int x11_fake_data_len;
134
135
136/* -- agent forwarding */
137
138#define NUM_SOCKS 10
139
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000140/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000141static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000142
Ben Lindstrome9c99912001-06-09 00:41:05 +0000143/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000144static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000145
Ben Lindstrome9c99912001-06-09 00:41:05 +0000146/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000147
148Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100149channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000150{
151 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000152
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000153 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100154 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000155 return NULL;
156 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000157 c = channels[id];
158 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100159 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000160 return NULL;
161 }
162 return c;
163}
164
Damien Miller5428f641999-11-25 11:54:57 +1100165/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100166 * Returns the channel if it is allowed to receive protocol messages.
167 * Private channels, like listening sockets, may not receive messages.
168 */
169Channel *
170channel_lookup(int id)
171{
172 Channel *c;
173
174 if ((c = channel_by_id(id)) == NULL)
175 return (NULL);
176
Damien Millerd62f2ca2006-03-26 13:57:41 +1100177 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100178 case SSH_CHANNEL_X11_OPEN:
179 case SSH_CHANNEL_LARVAL:
180 case SSH_CHANNEL_CONNECTING:
181 case SSH_CHANNEL_DYNAMIC:
182 case SSH_CHANNEL_OPENING:
183 case SSH_CHANNEL_OPEN:
184 case SSH_CHANNEL_INPUT_DRAINING:
185 case SSH_CHANNEL_OUTPUT_DRAINING:
186 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100187 }
188 logit("Non-public channel %d, type %d.", id, c->type);
189 return (NULL);
190}
191
192/*
Damien Millere247cc42000-05-07 12:03:14 +1000193 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000194 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100195 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000196static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100197channel_register_fds(Channel *c, int rfd, int wfd, int efd,
198 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199{
Damien Miller95def091999-11-25 00:26:21 +1100200 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100201 channel_max_fd = MAX(channel_max_fd, rfd);
202 channel_max_fd = MAX(channel_max_fd, wfd);
203 channel_max_fd = MAX(channel_max_fd, efd);
204
Damien Miller5428f641999-11-25 11:54:57 +1100205 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000206
Damien Miller6f83b8e2000-05-02 09:23:45 +1000207 c->rfd = rfd;
208 c->wfd = wfd;
209 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000210 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000211 c->efd = efd;
212 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100213
Damien Miller79438cc2001-02-16 12:34:57 +1100214 /* XXX ugly hack: nonblock is only set by the server */
215 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000216 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100217 c->isatty = 1;
218 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000219 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100220 c->self, c->wfd);
221 }
222 } else {
223 c->isatty = 0;
224 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000225 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100226
Damien Miller69b69aa2000-10-28 14:19:58 +1100227 /* enable nonblocking mode */
228 if (nonblock) {
229 if (rfd != -1)
230 set_nonblock(rfd);
231 if (wfd != -1)
232 set_nonblock(wfd);
233 if (efd != -1)
234 set_nonblock(efd);
235 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000236}
237
238/*
239 * Allocate a new channel object and set its type and socket. This will cause
240 * remote_name to be freed.
241 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000242Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000243channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000244 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000245{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000246 int found;
247 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000248 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249
Damien Miller95def091999-11-25 00:26:21 +1100250 /* Do initial allocation if this is the first call. */
251 if (channels_alloc == 0) {
252 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100253 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100254 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000255 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100256 }
257 /* Try to find a free slot where to put the new channel. */
258 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000259 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100260 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000261 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100262 break;
263 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000264 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100265 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100266 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000267 if (channels_alloc > 10000)
268 fatal("channel_new: internal error: channels_alloc %d "
269 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100270 channels = xrealloc(channels, channels_alloc + 10,
271 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000272 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100273 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100274 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000275 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100276 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000277 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100278 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100279 buffer_init(&c->input);
280 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000281 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100282 c->ostate = CHAN_OUTPUT_OPEN;
283 c->istate = CHAN_INPUT_OPEN;
284 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100285 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100286 c->self = found;
287 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000288 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000289 c->local_window = window;
290 c->local_window_max = window;
291 c->local_consumed = 0;
292 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100293 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000294 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000295 c->remote_window = 0;
296 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000297 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100298 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000299 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100300 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100301 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000302 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000303 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100304 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100305 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000306 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000308
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000309static int
310channel_find_maxfd(void)
311{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000312 u_int i;
313 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000314 Channel *c;
315
316 for (i = 0; i < channels_alloc; i++) {
317 c = channels[i];
318 if (c != NULL) {
319 max = MAX(max, c->rfd);
320 max = MAX(max, c->wfd);
321 max = MAX(max, c->efd);
322 }
323 }
324 return max;
325}
326
327int
328channel_close_fd(int *fdp)
329{
330 int ret = 0, fd = *fdp;
331
332 if (fd != -1) {
333 ret = close(fd);
334 *fdp = -1;
335 if (fd == channel_max_fd)
336 channel_max_fd = channel_find_maxfd();
337 }
338 return ret;
339}
340
Damien Miller6f83b8e2000-05-02 09:23:45 +1000341/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000342static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000343channel_close_fds(Channel *c)
344{
Damien Miller0e220db2004-06-15 10:34:08 +1000345 debug3("channel %d: close_fds r %d w %d e %d c %d",
346 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000347
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000348 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000349 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000350 channel_close_fd(&c->rfd);
351 channel_close_fd(&c->wfd);
352 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000353}
354
355/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000356void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000357channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000359 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000360 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000361
362 for (n = 0, i = 0; i < channels_alloc; i++)
363 if (channels[i])
364 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000365 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000366 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000367
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000368 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000369 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000370 xfree(s);
371
Damien Miller6f83b8e2000-05-02 09:23:45 +1000372 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000373 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000374 if (c->ctl_fd != -1)
375 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000376 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000377 buffer_free(&c->input);
378 buffer_free(&c->output);
379 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000380 if (c->remote_name) {
381 xfree(c->remote_name);
382 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100383 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000384 channels[c->self] = NULL;
385 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386}
387
Ben Lindstrome9c99912001-06-09 00:41:05 +0000388void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000389channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000390{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000391 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000392
Ben Lindstrom601e4362001-06-21 03:19:23 +0000393 for (i = 0; i < channels_alloc; i++)
394 if (channels[i] != NULL)
395 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000396}
397
398/*
399 * Closes the sockets/fds of all channels. This is used to close extra file
400 * descriptors after a fork.
401 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000402void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000403channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000404{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000405 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000406
407 for (i = 0; i < channels_alloc; i++)
408 if (channels[i] != NULL)
409 channel_close_fds(channels[i]);
410}
411
412/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000413 * Stop listening to channels.
414 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000415void
416channel_stop_listening(void)
417{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000418 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000419 Channel *c;
420
421 for (i = 0; i < channels_alloc; i++) {
422 c = channels[i];
423 if (c != NULL) {
424 switch (c->type) {
425 case SSH_CHANNEL_AUTH_SOCKET:
426 case SSH_CHANNEL_PORT_LISTENER:
427 case SSH_CHANNEL_RPORT_LISTENER:
428 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000429 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000430 channel_free(c);
431 break;
432 }
433 }
434 }
435}
436
437/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000438 * Returns true if no channel has too much buffered data, and false if one or
439 * more channel is overfull.
440 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000442channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443{
444 u_int i;
445 Channel *c;
446
447 for (i = 0; i < channels_alloc; i++) {
448 c = channels[i];
449 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000450#if 0
451 if (!compat20 &&
452 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100453 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000454 c->self, buffer_len(&c->input));
455 return 0;
456 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000457#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000458 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000459 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000460 c->self, buffer_len(&c->output),
461 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000462 return 0;
463 }
464 }
465 }
466 return 1;
467}
468
469/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000470int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000471channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000472{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000473 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000474 Channel *c;
475
476 for (i = 0; i < channels_alloc; i++) {
477 c = channels[i];
478 if (c == NULL)
479 continue;
480 switch (c->type) {
481 case SSH_CHANNEL_X11_LISTENER:
482 case SSH_CHANNEL_PORT_LISTENER:
483 case SSH_CHANNEL_RPORT_LISTENER:
484 case SSH_CHANNEL_CLOSED:
485 case SSH_CHANNEL_AUTH_SOCKET:
486 case SSH_CHANNEL_DYNAMIC:
487 case SSH_CHANNEL_CONNECTING:
488 case SSH_CHANNEL_ZOMBIE:
489 continue;
490 case SSH_CHANNEL_LARVAL:
491 if (!compat20)
492 fatal("cannot happen: SSH_CHANNEL_LARVAL");
493 continue;
494 case SSH_CHANNEL_OPENING:
495 case SSH_CHANNEL_OPEN:
496 case SSH_CHANNEL_X11_OPEN:
497 return 1;
498 case SSH_CHANNEL_INPUT_DRAINING:
499 case SSH_CHANNEL_OUTPUT_DRAINING:
500 if (!compat13)
501 fatal("cannot happen: OUT_DRAIN");
502 return 1;
503 default:
504 fatal("channel_still_open: bad channel type %d", c->type);
505 /* NOTREACHED */
506 }
507 }
508 return 0;
509}
510
511/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000512int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000513channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000515 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000516 Channel *c;
517
518 for (i = 0; i < channels_alloc; i++) {
519 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000520 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521 continue;
522 switch (c->type) {
523 case SSH_CHANNEL_CLOSED:
524 case SSH_CHANNEL_DYNAMIC:
525 case SSH_CHANNEL_X11_LISTENER:
526 case SSH_CHANNEL_PORT_LISTENER:
527 case SSH_CHANNEL_RPORT_LISTENER:
528 case SSH_CHANNEL_OPENING:
529 case SSH_CHANNEL_CONNECTING:
530 case SSH_CHANNEL_ZOMBIE:
531 continue;
532 case SSH_CHANNEL_LARVAL:
533 case SSH_CHANNEL_AUTH_SOCKET:
534 case SSH_CHANNEL_OPEN:
535 case SSH_CHANNEL_X11_OPEN:
536 return i;
537 case SSH_CHANNEL_INPUT_DRAINING:
538 case SSH_CHANNEL_OUTPUT_DRAINING:
539 if (!compat13)
540 fatal("cannot happen: OUT_DRAIN");
541 return i;
542 default:
543 fatal("channel_find_open: bad channel type %d", c->type);
544 /* NOTREACHED */
545 }
546 }
547 return -1;
548}
549
550
551/*
552 * Returns a message describing the currently open forwarded connections,
553 * suitable for sending to the client. The message contains crlf pairs for
554 * newlines.
555 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000556char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000557channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000558{
559 Buffer buffer;
560 Channel *c;
561 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000562 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563
564 buffer_init(&buffer);
565 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
566 buffer_append(&buffer, buf, strlen(buf));
567 for (i = 0; i < channels_alloc; i++) {
568 c = channels[i];
569 if (c == NULL)
570 continue;
571 switch (c->type) {
572 case SSH_CHANNEL_X11_LISTENER:
573 case SSH_CHANNEL_PORT_LISTENER:
574 case SSH_CHANNEL_RPORT_LISTENER:
575 case SSH_CHANNEL_CLOSED:
576 case SSH_CHANNEL_AUTH_SOCKET:
577 case SSH_CHANNEL_ZOMBIE:
578 continue;
579 case SSH_CHANNEL_LARVAL:
580 case SSH_CHANNEL_OPENING:
581 case SSH_CHANNEL_CONNECTING:
582 case SSH_CHANNEL_DYNAMIC:
583 case SSH_CHANNEL_OPEN:
584 case SSH_CHANNEL_X11_OPEN:
585 case SSH_CHANNEL_INPUT_DRAINING:
586 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000587 snprintf(buf, sizeof buf,
588 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000589 c->self, c->remote_name,
590 c->type, c->remote_id,
591 c->istate, buffer_len(&c->input),
592 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000593 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594 buffer_append(&buffer, buf, strlen(buf));
595 continue;
596 default:
597 fatal("channel_open_message: bad channel type %d", c->type);
598 /* NOTREACHED */
599 }
600 }
601 buffer_append(&buffer, "\0", 1);
602 cp = xstrdup(buffer_ptr(&buffer));
603 buffer_free(&buffer);
604 return cp;
605}
606
607void
608channel_send_open(int id)
609{
610 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000611
Ben Lindstrome9c99912001-06-09 00:41:05 +0000612 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000613 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000614 return;
615 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000616 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000617 packet_start(SSH2_MSG_CHANNEL_OPEN);
618 packet_put_cstring(c->ctype);
619 packet_put_int(c->self);
620 packet_put_int(c->local_window);
621 packet_put_int(c->local_maxpacket);
622 packet_send();
623}
624
625void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000626channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000627{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000628 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000629
Ben Lindstrome9c99912001-06-09 00:41:05 +0000630 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000631 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632 return;
633 }
Damien Miller0e220db2004-06-15 10:34:08 +1000634 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000635 packet_start(SSH2_MSG_CHANNEL_REQUEST);
636 packet_put_int(c->remote_id);
637 packet_put_cstring(service);
638 packet_put_char(wantconfirm);
639}
Damien Miller4f7becb2006-03-26 14:10:14 +1100640
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641void
Damien Miller0e220db2004-06-15 10:34:08 +1000642channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643{
644 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000645
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000647 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648 return;
649 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100650 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000651 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000652}
Damien Miller4f7becb2006-03-26 14:10:14 +1100653
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654void
Damien Miller39eda6e2005-11-05 14:52:50 +1100655channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656{
Damien Millerd47c62a2005-12-13 19:33:57 +1100657 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000658
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000660 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661 return;
662 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000663 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100664 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665}
Damien Miller4f7becb2006-03-26 14:10:14 +1100666
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667void
668channel_cancel_cleanup(int id)
669{
Damien Millerd47c62a2005-12-13 19:33:57 +1100670 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000671
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000673 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674 return;
675 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000676 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100677 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678}
Damien Miller4f7becb2006-03-26 14:10:14 +1100679
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680void
Damien Miller077b2382005-12-31 16:22:32 +1100681channel_register_filter(int id, channel_infilter_fn *ifn,
682 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683{
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_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688 return;
689 }
Damien Miller077b2382005-12-31 16:22:32 +1100690 c->input_filter = ifn;
691 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000692}
693
694void
695channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100696 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697{
698 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000699
Ben Lindstrome9c99912001-06-09 00:41:05 +0000700 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
701 fatal("channel_activate for non-larval channel %d.", id);
702 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
703 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100704 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
706 packet_put_int(c->remote_id);
707 packet_put_int(c->local_window);
708 packet_send();
709}
710
Damien Miller5428f641999-11-25 11:54:57 +1100711/*
Damien Millerb38eff82000-04-01 11:09:21 +1000712 * 'channel_pre*' are called just before select() to add any bits relevant to
713 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100714 */
Damien Millerb38eff82000-04-01 11:09:21 +1000715/*
716 * 'channel_post*': perform any appropriate operations for channels which
717 * have events pending.
718 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100719typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000720chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
721chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
722
Ben Lindstrombba81212001-06-25 05:01:22 +0000723static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100724channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000725{
726 FD_SET(c->sock, readset);
727}
728
Ben Lindstrombba81212001-06-25 05:01:22 +0000729static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100730channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000731{
732 debug3("channel %d: waiting for connection", c->self);
733 FD_SET(c->sock, writeset);
734}
735
Ben Lindstrombba81212001-06-25 05:01:22 +0000736static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100737channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000738{
739 if (buffer_len(&c->input) < packet_get_maxsize())
740 FD_SET(c->sock, readset);
741 if (buffer_len(&c->output) > 0)
742 FD_SET(c->sock, writeset);
743}
744
Ben Lindstrombba81212001-06-25 05:01:22 +0000745static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100746channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000747{
Damien Millerde6987c2002-01-22 23:20:40 +1100748 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000749
Darren Tucker11327cc2005-03-14 23:22:25 +1100750 /* check buffer limits */
751 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
752
Damien Miller33b13562000-04-04 14:38:59 +1000753 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100754 limit > 0 &&
755 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000756 FD_SET(c->rfd, readset);
757 if (c->ostate == CHAN_OUTPUT_OPEN ||
758 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
759 if (buffer_len(&c->output) > 0) {
760 FD_SET(c->wfd, writeset);
761 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000762 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000763 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
764 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000765 else
766 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000767 }
768 }
769 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100770 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000771 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
772 buffer_len(&c->extended) > 0)
773 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000774 else if (!(c->flags & CHAN_EOF_SENT) &&
775 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000776 buffer_len(&c->extended) < c->remote_window)
777 FD_SET(c->efd, readset);
778 }
Damien Miller0e220db2004-06-15 10:34:08 +1000779 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000780 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000781 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
782 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000783}
784
Ben Lindstrombba81212001-06-25 05:01:22 +0000785static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100786channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000787{
788 if (buffer_len(&c->input) == 0) {
789 packet_start(SSH_MSG_CHANNEL_CLOSE);
790 packet_put_int(c->remote_id);
791 packet_send();
792 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000793 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000794 }
795}
796
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100798channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000799{
800 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000801 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000802 else
Damien Millerb38eff82000-04-01 11:09:21 +1000803 FD_SET(c->sock, writeset);
804}
805
806/*
807 * This is a special state for X11 authentication spoofing. An opened X11
808 * connection (when authentication spoofing is being done) remains in this
809 * state until the first packet has been completely read. The authentication
810 * data in that packet is then substituted by the real data if it matches the
811 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000812 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000813 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000814 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000815static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000816x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000817{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000818 u_char *ucp;
819 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000820
821 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000822 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000823 return 0;
824
825 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100826 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000827 if (ucp[0] == 0x42) { /* Byte order MSB first. */
828 proto_len = 256 * ucp[6] + ucp[7];
829 data_len = 256 * ucp[8] + ucp[9];
830 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
831 proto_len = ucp[6] + 256 * ucp[7];
832 data_len = ucp[8] + 256 * ucp[9];
833 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000834 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100835 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000836 return -1;
837 }
838
839 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000840 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000841 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
842 return 0;
843
844 /* Check if authentication protocol matches. */
845 if (proto_len != strlen(x11_saved_proto) ||
846 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000847 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000848 return -1;
849 }
850 /* Check if authentication data matches our fake data. */
851 if (data_len != x11_fake_data_len ||
852 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
853 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000854 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000855 return -1;
856 }
857 /* Check fake data length */
858 if (x11_fake_data_len != x11_saved_data_len) {
859 error("X11 fake_data_len %d != saved_data_len %d",
860 x11_fake_data_len, x11_saved_data_len);
861 return -1;
862 }
863 /*
864 * Received authentication protocol and data match
865 * our fake data. Substitute the fake data with real
866 * data.
867 */
868 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
869 x11_saved_data, x11_saved_data_len);
870 return 1;
871}
872
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100874channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000875{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000876 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000877
Damien Millerb38eff82000-04-01 11:09:21 +1000878 if (ret == 1) {
879 /* Start normal processing for the channel. */
880 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000881 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000882 } else if (ret == -1) {
883 /*
884 * We have received an X11 connection that has bad
885 * authentication information.
886 */
Damien Miller996acd22003-04-09 20:59:48 +1000887 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000888 buffer_clear(&c->input);
889 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000890 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000891 c->sock = -1;
892 c->type = SSH_CHANNEL_CLOSED;
893 packet_start(SSH_MSG_CHANNEL_CLOSE);
894 packet_put_int(c->remote_id);
895 packet_send();
896 }
897}
898
Ben Lindstrombba81212001-06-25 05:01:22 +0000899static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100900channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000901{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000902 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000903
904 /* c->force_drain = 1; */
905
Damien Millerb38eff82000-04-01 11:09:21 +1000906 if (ret == 1) {
907 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100908 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000909 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000910 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000911 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100912 chan_read_failed(c);
913 buffer_clear(&c->input);
914 chan_ibuf_empty(c);
915 buffer_clear(&c->output);
916 /* for proto v1, the peer will send an IEOF */
917 if (compat20)
918 chan_write_failed(c);
919 else
920 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000921 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000922 }
923}
924
Ben Lindstromb3921512001-04-11 15:57:50 +0000925/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000926static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100927channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000928{
Damien Millera10f5612002-09-12 09:49:15 +1000929 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000930 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100931 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000932 struct {
933 u_int8_t version;
934 u_int8_t command;
935 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000936 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000937 } s4_req, s4_rsp;
938
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000940
941 have = buffer_len(&c->input);
942 len = sizeof(s4_req);
943 if (have < len)
944 return 0;
945 p = buffer_ptr(&c->input);
946 for (found = 0, i = len; i < have; i++) {
947 if (p[i] == '\0') {
948 found = 1;
949 break;
950 }
951 if (i > 1024) {
952 /* the peer is probably sending garbage */
953 debug("channel %d: decode socks4: too long",
954 c->self);
955 return -1;
956 }
957 }
958 if (!found)
959 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000960 buffer_get(&c->input, (char *)&s4_req.version, 1);
961 buffer_get(&c->input, (char *)&s4_req.command, 1);
962 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000963 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000964 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000965 p = buffer_ptr(&c->input);
966 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000967 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000968 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000969 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000970 c->self, len, have);
971 strlcpy(username, p, sizeof(username));
972 buffer_consume(&c->input, len);
973 buffer_consume(&c->input, 1); /* trailing '\0' */
974
Ben Lindstromb3921512001-04-11 15:57:50 +0000975 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000976 strlcpy(c->path, host, sizeof(c->path));
977 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100978
Damien Millerfbdeece2003-09-02 22:52:31 +1000979 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000980 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000981
Ben Lindstromb3921512001-04-11 15:57:50 +0000982 if (s4_req.command != 1) {
983 debug("channel %d: cannot handle: socks4 cn %d",
984 c->self, s4_req.command);
985 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000986 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000987 s4_rsp.version = 0; /* vn: 0 for reply */
988 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000989 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000990 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +1100991 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000992 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000993}
994
Darren Tucker46471c92003-07-03 13:55:19 +1000995/* try to decode a socks5 header */
996#define SSH_SOCKS5_AUTHDONE 0x1000
997#define SSH_SOCKS5_NOAUTH 0x00
998#define SSH_SOCKS5_IPV4 0x01
999#define SSH_SOCKS5_DOMAIN 0x03
1000#define SSH_SOCKS5_IPV6 0x04
1001#define SSH_SOCKS5_CONNECT 0x01
1002#define SSH_SOCKS5_SUCCESS 0x00
1003
1004static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001005channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001006{
1007 struct {
1008 u_int8_t version;
1009 u_int8_t command;
1010 u_int8_t reserved;
1011 u_int8_t atyp;
1012 } s5_req, s5_rsp;
1013 u_int16_t dest_port;
1014 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +10001015 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001016
1017 debug2("channel %d: decode socks5", c->self);
1018 p = buffer_ptr(&c->input);
1019 if (p[0] != 0x05)
1020 return -1;
1021 have = buffer_len(&c->input);
1022 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1023 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001024 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001025 return 0;
1026 nmethods = p[1];
1027 if (have < nmethods + 2)
1028 return 0;
1029 /* look for method: "NO AUTHENTICATION REQUIRED" */
1030 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1031 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1032 found = 1;
1033 break;
1034 }
1035 }
1036 if (!found) {
1037 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1038 c->self);
1039 return -1;
1040 }
1041 buffer_consume(&c->input, nmethods + 2);
1042 buffer_put_char(&c->output, 0x05); /* version */
1043 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1044 FD_SET(c->sock, writeset);
1045 c->flags |= SSH_SOCKS5_AUTHDONE;
1046 debug2("channel %d: socks5 auth done", c->self);
1047 return 0; /* need more */
1048 }
1049 debug2("channel %d: socks5 post auth", c->self);
1050 if (have < sizeof(s5_req)+1)
1051 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001052 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001053 if (s5_req.version != 0x05 ||
1054 s5_req.command != SSH_SOCKS5_CONNECT ||
1055 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001056 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001057 return -1;
1058 }
Darren Tucker47eede72005-03-14 23:08:12 +11001059 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001060 case SSH_SOCKS5_IPV4:
1061 addrlen = 4;
1062 af = AF_INET;
1063 break;
1064 case SSH_SOCKS5_DOMAIN:
1065 addrlen = p[sizeof(s5_req)];
1066 af = -1;
1067 break;
1068 case SSH_SOCKS5_IPV6:
1069 addrlen = 16;
1070 af = AF_INET6;
1071 break;
1072 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001073 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001074 return -1;
1075 }
1076 if (have < 4 + addrlen + 2)
1077 return 0;
1078 buffer_consume(&c->input, sizeof(s5_req));
1079 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1080 buffer_consume(&c->input, 1); /* host string length */
1081 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1082 buffer_get(&c->input, (char *)&dest_port, 2);
1083 dest_addr[addrlen] = '\0';
1084 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001085 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001086 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1087 return -1;
1088 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001089
Damien Millerfbdeece2003-09-02 22:52:31 +10001090 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001091 c->self, c->path, c->host_port, s5_req.command);
1092
1093 s5_rsp.version = 0x05;
1094 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1095 s5_rsp.reserved = 0; /* ignored */
1096 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1097 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1098 dest_port = 0; /* ignored */
1099
Damien Millera0fdce92006-03-26 14:28:50 +11001100 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1101 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1102 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001103 return 1;
1104}
1105
Ben Lindstromb3921512001-04-11 15:57:50 +00001106/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001107static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001108channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001109{
1110 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001111 u_int have;
1112 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001113
1114 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001115 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001116 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001117 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001118 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001119 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001120 /* need more */
1121 FD_SET(c->sock, readset);
1122 return;
1123 }
1124 /* try to guess the protocol */
1125 p = buffer_ptr(&c->input);
1126 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001127 case 0x04:
1128 ret = channel_decode_socks4(c, readset, writeset);
1129 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001130 case 0x05:
1131 ret = channel_decode_socks5(c, readset, writeset);
1132 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001133 default:
1134 ret = -1;
1135 break;
1136 }
1137 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001138 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001139 } else if (ret == 0) {
1140 debug2("channel %d: pre_dynamic: need more", c->self);
1141 /* need more */
1142 FD_SET(c->sock, readset);
1143 } else {
1144 /* switch to the next state */
1145 c->type = SSH_CHANNEL_OPENING;
1146 port_open_helper(c, "direct-tcpip");
1147 }
1148}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001149
Damien Millerb38eff82000-04-01 11:09:21 +10001150/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001151static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001152channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001153{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001154 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001155 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001156 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001157 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001158 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001159 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001160
1161 if (FD_ISSET(c->sock, readset)) {
1162 debug("X11 connection requested.");
1163 addrlen = sizeof(addr);
1164 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001165 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001166 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001167 channel_close_fd(&c->sock);
1168 chan_mark_dead(c);
1169 }
Damien Millerb38eff82000-04-01 11:09:21 +10001170 if (newsock < 0) {
1171 error("accept: %.100s", strerror(errno));
1172 return;
1173 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001174 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001175 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001176 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001177 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001178 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001179
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001180 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001181 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001182 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001183 if (compat20) {
1184 packet_start(SSH2_MSG_CHANNEL_OPEN);
1185 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001186 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001187 packet_put_int(nc->local_window_max);
1188 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001189 /* originator ipaddr and port */
1190 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001191 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001192 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001193 } else {
1194 packet_put_int(remote_port);
1195 }
Damien Millerbd483e72000-04-30 10:00:53 +10001196 packet_send();
1197 } else {
1198 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001199 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001200 if (packet_get_protocol_flags() &
1201 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001202 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001203 packet_send();
1204 }
Damien Millerd83ff352001-01-30 09:19:34 +11001205 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001206 }
1207}
1208
Ben Lindstrombba81212001-06-25 05:01:22 +00001209static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001210port_open_helper(Channel *c, char *rtype)
1211{
1212 int direct;
1213 char buf[1024];
1214 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001215 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001216
1217 direct = (strcmp(rtype, "direct-tcpip") == 0);
1218
1219 snprintf(buf, sizeof buf,
1220 "%s: listening port %d for %.100s port %d, "
1221 "connect from %.200s port %d",
1222 rtype, c->listening_port, c->path, c->host_port,
1223 remote_ipaddr, remote_port);
1224
1225 xfree(c->remote_name);
1226 c->remote_name = xstrdup(buf);
1227
1228 if (compat20) {
1229 packet_start(SSH2_MSG_CHANNEL_OPEN);
1230 packet_put_cstring(rtype);
1231 packet_put_int(c->self);
1232 packet_put_int(c->local_window_max);
1233 packet_put_int(c->local_maxpacket);
1234 if (direct) {
1235 /* target host, port */
1236 packet_put_cstring(c->path);
1237 packet_put_int(c->host_port);
1238 } else {
1239 /* listen address, port */
1240 packet_put_cstring(c->path);
1241 packet_put_int(c->listening_port);
1242 }
1243 /* originator host and port */
1244 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001245 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001246 packet_send();
1247 } else {
1248 packet_start(SSH_MSG_PORT_OPEN);
1249 packet_put_int(c->self);
1250 packet_put_cstring(c->path);
1251 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001252 if (packet_get_protocol_flags() &
1253 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001254 packet_put_cstring(c->remote_name);
1255 packet_send();
1256 }
1257 xfree(remote_ipaddr);
1258}
1259
Damien Miller5e7fd072005-11-05 14:53:39 +11001260static void
1261channel_set_reuseaddr(int fd)
1262{
1263 int on = 1;
1264
1265 /*
1266 * Set socket options.
1267 * Allow local port reuse in TIME_WAIT.
1268 */
1269 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1270 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1271}
1272
Damien Millerb38eff82000-04-01 11:09:21 +10001273/*
1274 * This socket is listening for connections to a forwarded TCP/IP port.
1275 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001276static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001277channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001278{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001279 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001280 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001281 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001282 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001283 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001284
Damien Millerb38eff82000-04-01 11:09:21 +10001285 if (FD_ISSET(c->sock, readset)) {
1286 debug("Connection to port %d forwarding "
1287 "to %.100s port %d requested.",
1288 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001289
Damien Miller4623a752001-10-10 15:03:58 +10001290 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1291 nextstate = SSH_CHANNEL_OPENING;
1292 rtype = "forwarded-tcpip";
1293 } else {
1294 if (c->host_port == 0) {
1295 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001296 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001297 } else {
1298 nextstate = SSH_CHANNEL_OPENING;
1299 rtype = "direct-tcpip";
1300 }
1301 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001302
Damien Millerb38eff82000-04-01 11:09:21 +10001303 addrlen = sizeof(addr);
1304 newsock = accept(c->sock, &addr, &addrlen);
1305 if (newsock < 0) {
1306 error("accept: %.100s", strerror(errno));
1307 return;
1308 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001309 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001310 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1311 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001312 nc->listening_port = c->listening_port;
1313 nc->host_port = c->host_port;
1314 strlcpy(nc->path, c->path, sizeof(nc->path));
1315
Damien Miller4623a752001-10-10 15:03:58 +10001316 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1317 /*
1318 * do not call the channel_post handler until
1319 * this flag has been reset by a pre-handler.
1320 * otherwise the FD_ISSET calls might overflow
1321 */
1322 nc->delayed = 1;
1323 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001324 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001325 }
Damien Millerb38eff82000-04-01 11:09:21 +10001326 }
1327}
1328
1329/*
1330 * This is the authentication agent socket listening for connections from
1331 * clients.
1332 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001333static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001334channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001335{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001336 Channel *nc;
1337 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001338 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001339 socklen_t addrlen;
1340
1341 if (FD_ISSET(c->sock, readset)) {
1342 addrlen = sizeof(addr);
1343 newsock = accept(c->sock, &addr, &addrlen);
1344 if (newsock < 0) {
1345 error("accept from auth socket: %.100s", strerror(errno));
1346 return;
1347 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001348 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001349 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1350 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001351 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001352 if (compat20) {
1353 packet_start(SSH2_MSG_CHANNEL_OPEN);
1354 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001355 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001356 packet_put_int(c->local_window_max);
1357 packet_put_int(c->local_maxpacket);
1358 } else {
1359 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001360 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001361 }
Damien Millerb38eff82000-04-01 11:09:21 +10001362 packet_send();
1363 }
1364}
1365
Ben Lindstrombba81212001-06-25 05:01:22 +00001366static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001367channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001368{
Ben Lindstrom69128662001-05-08 20:07:39 +00001369 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001370 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001371
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001372 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001373 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001374 err = errno;
1375 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001376 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001377 if (err == 0) {
1378 debug("channel %d: connected", c->self);
1379 c->type = SSH_CHANNEL_OPEN;
1380 if (compat20) {
1381 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1382 packet_put_int(c->remote_id);
1383 packet_put_int(c->self);
1384 packet_put_int(c->local_window);
1385 packet_put_int(c->local_maxpacket);
1386 } else {
1387 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1388 packet_put_int(c->remote_id);
1389 packet_put_int(c->self);
1390 }
1391 } else {
1392 debug("channel %d: not connected: %s",
1393 c->self, strerror(err));
1394 if (compat20) {
1395 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1396 packet_put_int(c->remote_id);
1397 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1398 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1399 packet_put_cstring(strerror(err));
1400 packet_put_cstring("");
1401 }
1402 } else {
1403 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1404 packet_put_int(c->remote_id);
1405 }
1406 chan_mark_dead(c);
1407 }
1408 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001409 }
1410}
1411
Ben Lindstrombba81212001-06-25 05:01:22 +00001412static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001413channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001414{
Darren Tucker11327cc2005-03-14 23:22:25 +11001415 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001416 int len;
1417
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001418 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001419 FD_ISSET(c->rfd, readset)) {
1420 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001421 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1422 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001423 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001424 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001425 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001426 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001427 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001428 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001429 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001430 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001431 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001432 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001433 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001434 } else {
1435 chan_read_failed(c);
1436 }
1437 return -1;
1438 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001439 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001440 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001441 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001442 chan_read_failed(c);
1443 }
Damien Millerd27b9472005-12-13 19:29:02 +11001444 } else if (c->datagram) {
1445 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001446 } else {
1447 buffer_append(&c->input, buf, len);
1448 }
Damien Millerb38eff82000-04-01 11:09:21 +10001449 }
1450 return 1;
1451}
Damien Miller4f7becb2006-03-26 14:10:14 +11001452
Ben Lindstrombba81212001-06-25 05:01:22 +00001453static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001454channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001455{
Ben Lindstrome229b252001-03-05 06:28:06 +00001456 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001457 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001458 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001459 int len;
1460
1461 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001462 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001463 FD_ISSET(c->wfd, writeset) &&
1464 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001465 if (c->output_filter != NULL) {
1466 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1467 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001468 if (c->type != SSH_CHANNEL_OPEN)
1469 chan_mark_dead(c);
1470 else
1471 chan_write_failed(c);
1472 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001473 }
1474 } else if (c->datagram) {
1475 buf = data = buffer_get_string(&c->output, &dlen);
1476 } else {
1477 buf = data = buffer_ptr(&c->output);
1478 dlen = buffer_len(&c->output);
1479 }
1480
Damien Millerd27b9472005-12-13 19:29:02 +11001481 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001482 /* ignore truncated writes, datagrams might get lost */
1483 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001484 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001485 xfree(data);
1486 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1487 return 1;
1488 if (len <= 0) {
1489 if (c->type != SSH_CHANNEL_OPEN)
1490 chan_mark_dead(c);
1491 else
1492 chan_write_failed(c);
1493 return -1;
1494 }
1495 return 1;
1496 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001497#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001498 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001499 if (compat20 && c->wfd_isatty)
1500 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001501#endif
Damien Miller077b2382005-12-31 16:22:32 +11001502
1503 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001504 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1505 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001506 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001507 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001508 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001509 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001510 return -1;
1511 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001512 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001513 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001514 c->type = SSH_CHANNEL_INPUT_DRAINING;
1515 } else {
1516 chan_write_failed(c);
1517 }
1518 return -1;
1519 }
Damien Miller077b2382005-12-31 16:22:32 +11001520 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001521 if (tcgetattr(c->wfd, &tio) == 0 &&
1522 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1523 /*
1524 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001525 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001526 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001527 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001528 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001529 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001530 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001531 }
1532 }
Damien Millerb38eff82000-04-01 11:09:21 +10001533 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001534 if (compat20 && len > 0) {
1535 c->local_consumed += len;
1536 }
1537 }
1538 return 1;
1539}
Damien Miller4f7becb2006-03-26 14:10:14 +11001540
Ben Lindstrombba81212001-06-25 05:01:22 +00001541static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001542channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001543{
Darren Tucker11327cc2005-03-14 23:22:25 +11001544 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001545 int len;
1546
Damien Miller1383bd82000-04-06 12:32:37 +10001547/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001548 if (c->efd != -1) {
1549 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1550 FD_ISSET(c->efd, writeset) &&
1551 buffer_len(&c->extended) > 0) {
1552 len = write(c->efd, buffer_ptr(&c->extended),
1553 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001554 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001555 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001556 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1557 return 1;
1558 if (len <= 0) {
1559 debug2("channel %d: closing write-efd %d",
1560 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001561 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001562 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001563 buffer_consume(&c->extended, len);
1564 c->local_consumed += len;
1565 }
1566 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1567 FD_ISSET(c->efd, readset)) {
1568 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001569 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001570 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001571 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1572 return 1;
1573 if (len <= 0) {
1574 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001575 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001576 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001577 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001578 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001579 }
Damien Miller33b13562000-04-04 14:38:59 +10001580 }
1581 }
1582 return 1;
1583}
Damien Miller4f7becb2006-03-26 14:10:14 +11001584
Ben Lindstrombba81212001-06-25 05:01:22 +00001585static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001586channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001587{
1588 char buf[16];
1589 int len;
1590
1591 /* Monitor control fd to detect if the slave client exits */
1592 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1593 len = read(c->ctl_fd, buf, sizeof(buf));
1594 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1595 return 1;
1596 if (len <= 0) {
1597 debug2("channel %d: ctl read<=0", c->self);
1598 if (c->type != SSH_CHANNEL_OPEN) {
1599 debug2("channel %d: not open", c->self);
1600 chan_mark_dead(c);
1601 return -1;
1602 } else {
1603 chan_read_failed(c);
1604 chan_write_failed(c);
1605 }
1606 return -1;
1607 } else
1608 fatal("%s: unexpected data on ctl fd", __func__);
1609 }
1610 return 1;
1611}
Damien Miller4f7becb2006-03-26 14:10:14 +11001612
Damien Miller0e220db2004-06-15 10:34:08 +10001613static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001614channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001615{
Ben Lindstromb3921512001-04-11 15:57:50 +00001616 if (c->type == SSH_CHANNEL_OPEN &&
1617 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001618 c->local_window < c->local_window_max/2 &&
1619 c->local_consumed > 0) {
1620 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1621 packet_put_int(c->remote_id);
1622 packet_put_int(c->local_consumed);
1623 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001624 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001625 c->self, c->local_window,
1626 c->local_consumed);
1627 c->local_window += c->local_consumed;
1628 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001629 }
1630 return 1;
1631}
1632
Ben Lindstrombba81212001-06-25 05:01:22 +00001633static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001634channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001635{
Damien Miller4623a752001-10-10 15:03:58 +10001636 if (c->delayed)
1637 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001638 channel_handle_rfd(c, readset, writeset);
1639 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001640 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001641 return;
Damien Miller33b13562000-04-04 14:38:59 +10001642 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001643 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001644 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001645}
1646
Ben Lindstrombba81212001-06-25 05:01:22 +00001647static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001648channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001649{
1650 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001651
Damien Millerb38eff82000-04-01 11:09:21 +10001652 /* Send buffered output data to the socket. */
1653 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1654 len = write(c->sock, buffer_ptr(&c->output),
1655 buffer_len(&c->output));
1656 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001657 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001658 else
1659 buffer_consume(&c->output, len);
1660 }
1661}
1662
Ben Lindstrombba81212001-06-25 05:01:22 +00001663static void
Damien Miller33b13562000-04-04 14:38:59 +10001664channel_handler_init_20(void)
1665{
Damien Millerde6987c2002-01-22 23:20:40 +11001666 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001667 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001668 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001670 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001671 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001672 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001673 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001674
Damien Millerde6987c2002-01-22 23:20:40 +11001675 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001676 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001677 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001678 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001679 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001680 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001681 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001682}
1683
Ben Lindstrombba81212001-06-25 05:01:22 +00001684static void
Damien Millerb38eff82000-04-01 11:09:21 +10001685channel_handler_init_13(void)
1686{
1687 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1688 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1689 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1690 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1691 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1692 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1693 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001694 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001695 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001696
Damien Millerde6987c2002-01-22 23:20:40 +11001697 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001698 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1699 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1700 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1701 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001702 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001703 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001704}
1705
Ben Lindstrombba81212001-06-25 05:01:22 +00001706static void
Damien Millerb38eff82000-04-01 11:09:21 +10001707channel_handler_init_15(void)
1708{
Damien Millerde6987c2002-01-22 23:20:40 +11001709 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001710 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001711 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1712 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1713 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001714 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001715 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001716
1717 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1718 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1719 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001720 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001721 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001722 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001723}
1724
Ben Lindstrombba81212001-06-25 05:01:22 +00001725static void
Damien Millerb38eff82000-04-01 11:09:21 +10001726channel_handler_init(void)
1727{
1728 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001729
Damien Miller9f0f5c62001-12-21 14:45:46 +11001730 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001731 channel_pre[i] = NULL;
1732 channel_post[i] = NULL;
1733 }
Damien Miller33b13562000-04-04 14:38:59 +10001734 if (compat20)
1735 channel_handler_init_20();
1736 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001737 channel_handler_init_13();
1738 else
1739 channel_handler_init_15();
1740}
1741
Damien Miller3ec27592001-10-12 11:35:04 +10001742/* gc dead channels */
1743static void
1744channel_garbage_collect(Channel *c)
1745{
1746 if (c == NULL)
1747 return;
1748 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001749 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001750 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001751 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001752 c->detach_user(c->self, NULL);
1753 /* if we still have a callback */
1754 if (c->detach_user != NULL)
1755 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001756 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001757 }
1758 if (!chan_is_dead(c, 1))
1759 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001760 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001761 channel_free(c);
1762}
1763
Ben Lindstrombba81212001-06-25 05:01:22 +00001764static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001765channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001766{
1767 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001768 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001769 Channel *c;
1770
1771 if (!did_init) {
1772 channel_handler_init();
1773 did_init = 1;
1774 }
1775 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001776 c = channels[i];
1777 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001778 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001779 if (ftab[c->type] != NULL)
1780 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001781 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001782 }
1783}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001784
Ben Lindstrome9c99912001-06-09 00:41:05 +00001785/*
1786 * Allocate/update select bitmasks and add any bits relevant to channels in
1787 * select bitmasks.
1788 */
Damien Miller4af51302000-04-16 11:18:38 +10001789void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001790channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001791 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001792{
Damien Miller36812092006-03-26 14:22:47 +11001793 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001794
1795 n = MAX(*maxfdp, channel_max_fd);
1796
Damien Miller36812092006-03-26 14:22:47 +11001797 nfdset = howmany(n+1, NFDBITS);
1798 /* Explicitly test here, because xrealloc isn't always called */
1799 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1800 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1801 sz = nfdset * sizeof(fd_mask);
1802
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001803 /* perhaps check sz < nalloc/2 and shrink? */
1804 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001805 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1806 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001807 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001808 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001809 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001810 memset(*readsetp, 0, sz);
1811 memset(*writesetp, 0, sz);
1812
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001813 if (!rekeying)
1814 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001815}
1816
Ben Lindstrome9c99912001-06-09 00:41:05 +00001817/*
1818 * After select, perform any appropriate operations for channels which have
1819 * events pending.
1820 */
Damien Miller4af51302000-04-16 11:18:38 +10001821void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001822channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001823{
Damien Millerb38eff82000-04-01 11:09:21 +10001824 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001825}
1826
Ben Lindstrome9c99912001-06-09 00:41:05 +00001827
Damien Miller5e953212001-01-30 09:14:00 +11001828/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001829void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001830channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001831{
Damien Millerb38eff82000-04-01 11:09:21 +10001832 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001833 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001834
Damien Miller95def091999-11-25 00:26:21 +11001835 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001836 c = channels[i];
1837 if (c == NULL)
1838 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001839
Ben Lindstrome9c99912001-06-09 00:41:05 +00001840 /*
1841 * We are only interested in channels that can have buffered
1842 * incoming data.
1843 */
Damien Miller34132e52000-01-14 15:45:46 +11001844 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001845 if (c->type != SSH_CHANNEL_OPEN &&
1846 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001847 continue;
1848 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001849 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001850 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001851 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001852 if (compat20 &&
1853 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001854 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001855 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001856 continue;
1857 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001858
Damien Miller95def091999-11-25 00:26:21 +11001859 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001860 if ((c->istate == CHAN_INPUT_OPEN ||
1861 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1862 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001863 if (c->datagram) {
1864 if (len > 0) {
1865 u_char *data;
1866 u_int dlen;
1867
1868 data = buffer_get_string(&c->input,
1869 &dlen);
1870 packet_start(SSH2_MSG_CHANNEL_DATA);
1871 packet_put_int(c->remote_id);
1872 packet_put_string(data, dlen);
1873 packet_send();
1874 c->remote_window -= dlen + 4;
1875 xfree(data);
1876 }
1877 continue;
1878 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001879 /*
1880 * Send some data for the other side over the secure
1881 * connection.
1882 */
Damien Miller33b13562000-04-04 14:38:59 +10001883 if (compat20) {
1884 if (len > c->remote_window)
1885 len = c->remote_window;
1886 if (len > c->remote_maxpacket)
1887 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001888 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001889 if (packet_is_interactive()) {
1890 if (len > 1024)
1891 len = 512;
1892 } else {
1893 /* Keep the packets at reasonable size. */
1894 if (len > packet_get_maxsize()/2)
1895 len = packet_get_maxsize()/2;
1896 }
Damien Miller95def091999-11-25 00:26:21 +11001897 }
Damien Millerb38eff82000-04-01 11:09:21 +10001898 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001899 packet_start(compat20 ?
1900 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001901 packet_put_int(c->remote_id);
1902 packet_put_string(buffer_ptr(&c->input), len);
1903 packet_send();
1904 buffer_consume(&c->input, len);
1905 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001906 }
1907 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001908 if (compat13)
1909 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001910 /*
1911 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001912 * tell peer, that we will not send more data: send IEOF.
1913 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001914 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001915 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001916 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1917 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001918 else
1919 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001920 }
Damien Miller33b13562000-04-04 14:38:59 +10001921 /* Send extended data, i.e. stderr */
1922 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001923 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001924 c->remote_window > 0 &&
1925 (len = buffer_len(&c->extended)) > 0 &&
1926 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001927 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001928 c->self, c->remote_window, buffer_len(&c->extended),
1929 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001930 if (len > c->remote_window)
1931 len = c->remote_window;
1932 if (len > c->remote_maxpacket)
1933 len = c->remote_maxpacket;
1934 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1935 packet_put_int(c->remote_id);
1936 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1937 packet_put_string(buffer_ptr(&c->extended), len);
1938 packet_send();
1939 buffer_consume(&c->extended, len);
1940 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001941 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001943 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001944}
1945
Ben Lindstrome9c99912001-06-09 00:41:05 +00001946
1947/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001948
1949/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001950void
Damien Miller630d6f42002-01-22 23:17:30 +11001951channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001952{
Damien Miller34132e52000-01-14 15:45:46 +11001953 int id;
Damien Miller95def091999-11-25 00:26:21 +11001954 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001955 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001956 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001957
Damien Miller95def091999-11-25 00:26:21 +11001958 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001959 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001960 c = channel_lookup(id);
1961 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001962 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001963
Damien Miller95def091999-11-25 00:26:21 +11001964 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001965 if (c->type != SSH_CHANNEL_OPEN &&
1966 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001967 return;
1968
Damien Miller95def091999-11-25 00:26:21 +11001969 /* Get the data. */
1970 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001971
Damien Millera04ad492004-01-21 11:02:09 +11001972 /*
1973 * Ignore data for protocol > 1.3 if output end is no longer open.
1974 * For protocol 2 the sending side is reducing its window as it sends
1975 * data, so we must 'fake' consumption of the data in order to ensure
1976 * that window updates are sent back. Otherwise the connection might
1977 * deadlock.
1978 */
1979 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1980 if (compat20) {
1981 c->local_window -= data_len;
1982 c->local_consumed += data_len;
1983 }
1984 xfree(data);
1985 return;
1986 }
1987
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001988 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001989 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001990 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001991 c->self, data_len, c->local_maxpacket);
1992 }
1993 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001994 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001995 c->self, data_len, c->local_window);
1996 xfree(data);
1997 return;
1998 }
1999 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002000 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002001 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002002 if (c->datagram)
2003 buffer_put_string(&c->output, data, data_len);
2004 else
2005 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002006 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002007}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002008
Damien Millerd79b4242006-03-31 23:11:44 +11002009/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002010void
Damien Miller630d6f42002-01-22 23:17:30 +11002011channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002012{
2013 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002014 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002015 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002016 Channel *c;
2017
2018 /* Get the channel number and verify it. */
2019 id = packet_get_int();
2020 c = channel_lookup(id);
2021
2022 if (c == NULL)
2023 packet_disconnect("Received extended_data for bad channel %d.", id);
2024 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002025 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002026 return;
2027 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002028 if (c->flags & CHAN_EOF_RCVD) {
2029 if (datafellows & SSH_BUG_EXTEOF)
2030 debug("channel %d: accepting ext data after eof", id);
2031 else
2032 packet_disconnect("Received extended_data after EOF "
2033 "on channel %d.", id);
2034 }
Damien Miller33b13562000-04-04 14:38:59 +10002035 tcode = packet_get_int();
2036 if (c->efd == -1 ||
2037 c->extended_usage != CHAN_EXTENDED_WRITE ||
2038 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002039 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002040 return;
2041 }
2042 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002043 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002044 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002045 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002046 c->self, data_len, c->local_window);
2047 xfree(data);
2048 return;
2049 }
Damien Millerd3444942000-09-30 14:20:03 +11002050 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002051 c->local_window -= data_len;
2052 buffer_append(&c->extended, data, data_len);
2053 xfree(data);
2054}
2055
Damien Millerd79b4242006-03-31 23:11:44 +11002056/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002057void
Damien Miller630d6f42002-01-22 23:17:30 +11002058channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002059{
2060 int id;
2061 Channel *c;
2062
Damien Millerb38eff82000-04-01 11:09:21 +10002063 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002064 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002065 c = channel_lookup(id);
2066 if (c == NULL)
2067 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2068 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002069
2070 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002071 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002072 debug("channel %d: FORCE input drain", c->self);
2073 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002074 if (buffer_len(&c->input) == 0)
2075 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002076 }
2077
Damien Millerb38eff82000-04-01 11:09:21 +10002078}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002079
Damien Millerd79b4242006-03-31 23:11:44 +11002080/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002081void
Damien Miller630d6f42002-01-22 23:17:30 +11002082channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002083{
Damien Millerb38eff82000-04-01 11:09:21 +10002084 int id;
2085 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002086
Damien Millerb38eff82000-04-01 11:09:21 +10002087 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002088 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002089 c = channel_lookup(id);
2090 if (c == NULL)
2091 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002092
2093 /*
2094 * Send a confirmation that we have closed the channel and no more
2095 * data is coming for it.
2096 */
Damien Miller95def091999-11-25 00:26:21 +11002097 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002098 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002099 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002100
Damien Miller5428f641999-11-25 11:54:57 +11002101 /*
2102 * If the channel is in closed state, we have sent a close request,
2103 * and the other side will eventually respond with a confirmation.
2104 * Thus, we cannot free the channel here, because then there would be
2105 * no-one to receive the confirmation. The channel gets freed when
2106 * the confirmation arrives.
2107 */
Damien Millerb38eff82000-04-01 11:09:21 +10002108 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002109 /*
2110 * Not a closed channel - mark it as draining, which will
2111 * cause it to be freed later.
2112 */
Damien Miller76765c02002-01-22 23:21:15 +11002113 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002114 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002115 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002116}
2117
Damien Millerb38eff82000-04-01 11:09:21 +10002118/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002119/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002120void
Damien Miller630d6f42002-01-22 23:17:30 +11002121channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002122{
Damien Millerb38eff82000-04-01 11:09:21 +10002123 int id = packet_get_int();
2124 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002125
Damien Miller48b03fc2002-01-22 23:11:40 +11002126 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002127 if (c == NULL)
2128 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2129 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002130}
2131
Damien Millerd79b4242006-03-31 23:11:44 +11002132/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002133void
Damien Miller630d6f42002-01-22 23:17:30 +11002134channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002135{
2136 int id = packet_get_int();
2137 Channel *c = channel_lookup(id);
2138
Damien Miller48b03fc2002-01-22 23:11:40 +11002139 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002140 if (c == NULL)
2141 packet_disconnect("Received close confirmation for "
2142 "out-of-range channel %d.", id);
2143 if (c->type != SSH_CHANNEL_CLOSED)
2144 packet_disconnect("Received close confirmation for "
2145 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002146 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002147}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002148
Damien Millerd79b4242006-03-31 23:11:44 +11002149/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002150void
Damien Miller630d6f42002-01-22 23:17:30 +11002151channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002152{
Damien Millerb38eff82000-04-01 11:09:21 +10002153 int id, remote_id;
2154 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002155
Damien Millerb38eff82000-04-01 11:09:21 +10002156 id = packet_get_int();
2157 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002158
Damien Millerb38eff82000-04-01 11:09:21 +10002159 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2160 packet_disconnect("Received open confirmation for "
2161 "non-opening channel %d.", id);
2162 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002163 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002164 c->remote_id = remote_id;
2165 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002166
2167 if (compat20) {
2168 c->remote_window = packet_get_int();
2169 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002170 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002171 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002172 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002173 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002174 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002175 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002176 c->remote_window, c->remote_maxpacket);
2177 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002178 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002179}
2180
Ben Lindstrombba81212001-06-25 05:01:22 +00002181static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002182reason2txt(int reason)
2183{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002184 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002185 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2186 return "administratively prohibited";
2187 case SSH2_OPEN_CONNECT_FAILED:
2188 return "connect failed";
2189 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2190 return "unknown channel type";
2191 case SSH2_OPEN_RESOURCE_SHORTAGE:
2192 return "resource shortage";
2193 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002194 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002195}
2196
Damien Millerd79b4242006-03-31 23:11:44 +11002197/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002198void
Damien Miller630d6f42002-01-22 23:17:30 +11002199channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002200{
Kevin Steves12057502001-02-05 14:54:34 +00002201 int id, reason;
2202 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002203 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002204
Damien Millerb38eff82000-04-01 11:09:21 +10002205 id = packet_get_int();
2206 c = channel_lookup(id);
2207
2208 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2209 packet_disconnect("Received open failure for "
2210 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002211 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002212 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002213 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002214 msg = packet_get_string(NULL);
2215 lang = packet_get_string(NULL);
2216 }
Damien Miller996acd22003-04-09 20:59:48 +10002217 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002218 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002219 if (msg != NULL)
2220 xfree(msg);
2221 if (lang != NULL)
2222 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002223 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002224 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002225 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002226 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002227}
2228
Damien Millerd79b4242006-03-31 23:11:44 +11002229/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002230void
Damien Miller630d6f42002-01-22 23:17:30 +11002231channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002232{
2233 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002234 int id;
2235 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002236
2237 if (!compat20)
2238 return;
2239
2240 /* Get the channel number and verify it. */
2241 id = packet_get_int();
2242 c = channel_lookup(id);
2243
Damien Millerd47c62a2005-12-13 19:33:57 +11002244 if (c == NULL) {
2245 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002246 return;
2247 }
2248 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002249 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002250 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002251 c->remote_window += adjust;
2252}
2253
Damien Millerd79b4242006-03-31 23:11:44 +11002254/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002255void
Damien Miller630d6f42002-01-22 23:17:30 +11002256channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002257{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002258 Channel *c = NULL;
2259 u_short host_port;
2260 char *host, *originator_string;
2261 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002262
Ben Lindstrome9c99912001-06-09 00:41:05 +00002263 remote_id = packet_get_int();
2264 host = packet_get_string(NULL);
2265 host_port = packet_get_int();
2266
2267 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2268 originator_string = packet_get_string(NULL);
2269 } else {
2270 originator_string = xstrdup("unknown (remote did not supply name)");
2271 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002272 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002273 sock = channel_connect_to(host, host_port);
2274 if (sock != -1) {
2275 c = channel_new("connected socket",
2276 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2277 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002278 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002279 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002280 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002281 if (c == NULL) {
2282 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2283 packet_put_int(remote_id);
2284 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002285 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002286 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002287}
2288
2289
Ben Lindstrome9c99912001-06-09 00:41:05 +00002290/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002291
Ben Lindstrom908afed2001-10-03 17:34:59 +00002292void
2293channel_set_af(int af)
2294{
2295 IPv4or6 = af;
2296}
2297
Damien Millerb16461c2002-01-22 23:29:22 +11002298static int
2299channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2300 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002301{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002302 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002303 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002304 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002305 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002306 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002307
Damien Millerb16461c2002-01-22 23:29:22 +11002308 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2309 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002310 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002311
Damien Millerb16461c2002-01-22 23:29:22 +11002312 if (host == NULL) {
2313 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002314 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002315 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002316 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002317 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002318 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002319 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002320
Damien Miller5428f641999-11-25 11:54:57 +11002321 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002322 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002323 * specified address or wildcard. On the client, a specified bind
2324 * address will always override gateway_ports. On the server, a
2325 * gateway_ports of 1 (``yes'') will override the client's
2326 * specification and force a wildcard bind, whereas a value of 2
2327 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002328 * asked for.
2329 *
2330 * Special-case listen_addrs are:
2331 *
2332 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2333 * "" (empty string), "*" -> wildcard v4/v6
2334 * "localhost" -> loopback v4/v6
2335 */
2336 addr = NULL;
2337 if (listen_addr == NULL) {
2338 /* No address specified: default to gateway_ports setting */
2339 if (gateway_ports)
2340 wildcard = 1;
2341 } else if (gateway_ports || is_client) {
2342 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2343 strcmp(listen_addr, "0.0.0.0") == 0) ||
2344 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2345 (!is_client && gateway_ports == 1))
2346 wildcard = 1;
2347 else if (strcmp(listen_addr, "localhost") != 0)
2348 addr = listen_addr;
2349 }
2350
2351 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2352 type, wildcard, (addr == NULL) ? "NULL" : addr);
2353
2354 /*
Damien Miller34132e52000-01-14 15:45:46 +11002355 * getaddrinfo returns a loopback address if the hostname is
2356 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002357 */
Damien Miller34132e52000-01-14 15:45:46 +11002358 memset(&hints, 0, sizeof(hints));
2359 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002360 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002361 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002362 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002363 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2364 if (addr == NULL) {
2365 /* This really shouldn't happen */
2366 packet_disconnect("getaddrinfo: fatal error: %s",
2367 gai_strerror(r));
2368 } else {
Damien Millera7270302005-07-06 09:36:05 +10002369 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002370 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2371 }
Damien Millera7270302005-07-06 09:36:05 +10002372 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002373 }
Damien Miller5428f641999-11-25 11:54:57 +11002374
Damien Miller34132e52000-01-14 15:45:46 +11002375 for (ai = aitop; ai; ai = ai->ai_next) {
2376 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2377 continue;
2378 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2379 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002380 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002381 continue;
2382 }
2383 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002384 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002385 if (sock < 0) {
2386 /* this is no error since kernel may not support ipv6 */
2387 verbose("socket: %.100s", strerror(errno));
2388 continue;
2389 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002390
2391 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002392
Damien Miller34132e52000-01-14 15:45:46 +11002393 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002394
Damien Miller34132e52000-01-14 15:45:46 +11002395 /* Bind the socket to the address. */
2396 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2397 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002398 if (!ai->ai_next)
2399 error("bind: %.100s", strerror(errno));
2400 else
2401 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002402
Damien Miller34132e52000-01-14 15:45:46 +11002403 close(sock);
2404 continue;
2405 }
2406 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002407 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002408 error("listen: %.100s", strerror(errno));
2409 close(sock);
2410 continue;
2411 }
2412 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002413 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002414 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002415 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002416 strlcpy(c->path, host, sizeof(c->path));
2417 c->host_port = port_to_connect;
2418 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002419 success = 1;
2420 }
2421 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002422 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002423 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002424 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002425 return success;
Damien Miller95def091999-11-25 00:26:21 +11002426}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002427
Darren Tuckere7066df2004-05-24 10:18:05 +10002428int
2429channel_cancel_rport_listener(const char *host, u_short port)
2430{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002431 u_int i;
2432 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002433
Darren Tucker47eede72005-03-14 23:08:12 +11002434 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002435 Channel *c = channels[i];
2436
2437 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2438 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002439 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002440 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002441 channel_free(c);
2442 found = 1;
2443 }
2444 }
2445
2446 return (found);
2447}
2448
Damien Millerb16461c2002-01-22 23:29:22 +11002449/* protocol local port fwd, used by ssh (and sshd in v1) */
2450int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002451channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002452 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2453{
2454 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002455 listen_host, listen_port, host_to_connect, port_to_connect,
2456 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002457}
2458
2459/* protocol v2 remote port fwd, used by sshd */
2460int
2461channel_setup_remote_fwd_listener(const char *listen_address,
2462 u_short listen_port, int gateway_ports)
2463{
2464 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2465 listen_address, listen_port, NULL, 0, gateway_ports);
2466}
2467
Damien Miller5428f641999-11-25 11:54:57 +11002468/*
2469 * Initiate forwarding of connections to port "port" on remote host through
2470 * the secure channel to host:port from local side.
2471 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002472
Damien Miller4af51302000-04-16 11:18:38 +10002473void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002474channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002475 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002476{
Damien Millerdff50992002-01-22 23:16:32 +11002477 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002478
Damien Miller95def091999-11-25 00:26:21 +11002479 /* Record locally that connection to this host/port is permitted. */
2480 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2481 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002482
Damien Miller95def091999-11-25 00:26:21 +11002483 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002484 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002485 const char *address_to_bind;
2486 if (listen_host == NULL)
2487 address_to_bind = "localhost";
2488 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2489 address_to_bind = "";
2490 else
2491 address_to_bind = listen_host;
2492
Damien Miller33b13562000-04-04 14:38:59 +10002493 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2494 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002495 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002496 packet_put_cstring(address_to_bind);
2497 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002498 packet_send();
2499 packet_write_wait();
2500 /* Assume that server accepts the request */
2501 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002502 } else {
2503 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002504 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002505 packet_put_cstring(host_to_connect);
2506 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002507 packet_send();
2508 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002509
2510 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002511 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002512 switch (type) {
2513 case SSH_SMSG_SUCCESS:
2514 success = 1;
2515 break;
2516 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002517 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002518 break;
2519 default:
2520 /* Unknown packet */
2521 packet_disconnect("Protocol error for port forward request:"
2522 "received packet type %d.", type);
2523 }
2524 }
2525 if (success) {
2526 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2527 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2528 permitted_opens[num_permitted_opens].listen_port = listen_port;
2529 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002530 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002531}
2532
Damien Miller5428f641999-11-25 11:54:57 +11002533/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002534 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002535 * local side.
2536 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002537void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002538channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002539{
2540 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002541
2542 if (!compat20)
2543 return;
2544
2545 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002546 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002547 permitted_opens[i].listen_port == port)
2548 break;
2549 }
2550 if (i >= num_permitted_opens) {
2551 debug("%s: requested forward not found", __func__);
2552 return;
2553 }
2554 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2555 packet_put_cstring("cancel-tcpip-forward");
2556 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002557 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002558 packet_put_int(port);
2559 packet_send();
2560
2561 permitted_opens[i].listen_port = 0;
2562 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002563 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002564 permitted_opens[i].host_to_connect = NULL;
2565}
2566
2567/*
Damien Miller5428f641999-11-25 11:54:57 +11002568 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2569 * listening for the port, and sends back a success reply (or disconnect
2570 * message if there was an error). This never returns if there was an error.
2571 */
Damien Miller4af51302000-04-16 11:18:38 +10002572void
Damien Millere247cc42000-05-07 12:03:14 +10002573channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002574{
Damien Milleraae6c611999-12-06 11:47:28 +11002575 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002576 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002577
Damien Miller95def091999-11-25 00:26:21 +11002578 /* Get arguments from the packet. */
2579 port = packet_get_int();
2580 hostname = packet_get_string(NULL);
2581 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002582
Damien Millerbac2d8a2000-09-05 16:13:06 +11002583#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002584 /*
2585 * Check that an unprivileged user is not trying to forward a
2586 * privileged port.
2587 */
Damien Miller95def091999-11-25 00:26:21 +11002588 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002589 packet_disconnect(
2590 "Requested forwarding of port %d but user is not root.",
2591 port);
2592 if (host_port == 0)
2593 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002594#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002595
Damien Miller0bc1bd82000-11-13 22:57:25 +11002596 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002597 channel_setup_local_fwd_listener(NULL, port, hostname,
2598 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002599
2600 /* Free the argument string. */
2601 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002602}
2603
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002604/*
2605 * Permits opening to any host/port if permitted_opens[] is empty. This is
2606 * usually called by the server, because the user could connect to any port
2607 * anyway, and the server has no way to know but to trust the client anyway.
2608 */
2609void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002610channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002611{
2612 if (num_permitted_opens == 0)
2613 all_opens_permitted = 1;
2614}
2615
Ben Lindstroma3700052001-04-05 23:26:32 +00002616void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002617channel_add_permitted_opens(char *host, int port)
2618{
2619 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2620 fatal("channel_request_remote_forwarding: too many forwards");
2621 debug("allow port forwarding to host %s port %d", host, port);
2622
2623 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2624 permitted_opens[num_permitted_opens].port_to_connect = port;
2625 num_permitted_opens++;
2626
2627 all_opens_permitted = 0;
2628}
2629
Ben Lindstroma3700052001-04-05 23:26:32 +00002630void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002631channel_clear_permitted_opens(void)
2632{
2633 int i;
2634
2635 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002636 if (permitted_opens[i].host_to_connect != NULL)
2637 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002638 num_permitted_opens = 0;
2639
2640}
2641
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002642/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002643static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002644connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002645{
Damien Miller34132e52000-01-14 15:45:46 +11002646 struct addrinfo hints, *ai, *aitop;
2647 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2648 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002649 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002650
Damien Miller34132e52000-01-14 15:45:46 +11002651 memset(&hints, 0, sizeof(hints));
2652 hints.ai_family = IPv4or6;
2653 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002654 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002655 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002656 error("connect_to %.100s: unknown host (%s)", host,
2657 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002658 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002659 }
Damien Miller34132e52000-01-14 15:45:46 +11002660 for (ai = aitop; ai; ai = ai->ai_next) {
2661 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2662 continue;
2663 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2664 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002665 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002666 continue;
2667 }
Damien Miller2372ace2003-05-14 13:42:23 +10002668 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002669 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002670 if (ai->ai_next == NULL)
2671 error("socket: %.100s", strerror(errno));
2672 else
2673 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002674 continue;
2675 }
Damien Miller232711f2004-06-15 10:35:30 +10002676 if (set_nonblock(sock) == -1)
2677 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002678 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2679 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002680 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002681 strerror(errno));
2682 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002683 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002684 }
2685 break; /* success */
2686
2687 }
2688 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002689 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002690 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002691 return -1;
2692 }
2693 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002694 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002695 return sock;
2696}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002697
Damien Miller0bc1bd82000-11-13 22:57:25 +11002698int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002699channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002700{
2701 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002702
Damien Miller0bc1bd82000-11-13 22:57:25 +11002703 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002704 if (permitted_opens[i].host_to_connect != NULL &&
2705 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002706 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002707 permitted_opens[i].host_to_connect,
2708 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002709 error("WARNING: Server requests forwarding for unknown listen_port %d",
2710 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002711 return -1;
2712}
Damien Millerb38eff82000-04-01 11:09:21 +10002713
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002714/* Check if connecting to that port is permitted and connect. */
2715int
2716channel_connect_to(const char *host, u_short port)
2717{
2718 int i, permit;
2719
2720 permit = all_opens_permitted;
2721 if (!permit) {
2722 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002723 if (permitted_opens[i].host_to_connect != NULL &&
2724 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002725 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2726 permit = 1;
2727
2728 }
2729 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002730 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002731 "but the request was denied.", host, port);
2732 return -1;
2733 }
2734 return connect_to(host, port);
2735}
2736
Damien Miller0e220db2004-06-15 10:34:08 +10002737void
2738channel_send_window_changes(void)
2739{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002740 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002741 struct winsize ws;
2742
2743 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002744 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002745 channels[i]->type != SSH_CHANNEL_OPEN)
2746 continue;
2747 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2748 continue;
2749 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002750 packet_put_int((u_int)ws.ws_col);
2751 packet_put_int((u_int)ws.ws_row);
2752 packet_put_int((u_int)ws.ws_xpixel);
2753 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002754 packet_send();
2755 }
2756}
2757
Ben Lindstrome9c99912001-06-09 00:41:05 +00002758/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002759
Damien Miller5428f641999-11-25 11:54:57 +11002760/*
2761 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002762 * Returns 0 and a suitable display number for the DISPLAY variable
2763 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002764 */
Kevin Steves366298c2001-12-19 17:58:01 +00002765int
Damien Miller95c249f2002-02-05 12:11:34 +11002766x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002767 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002768{
Damien Millere7378562001-12-21 14:58:35 +11002769 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002770 int display_number, sock;
2771 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002772 struct addrinfo hints, *ai, *aitop;
2773 char strport[NI_MAXSERV];
2774 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002775
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002776 if (chanids == NULL)
2777 return -1;
2778
Damien Millera34a28b1999-12-14 10:47:15 +11002779 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002780 display_number < MAX_DISPLAYS;
2781 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002782 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002783 memset(&hints, 0, sizeof(hints));
2784 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002785 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002786 hints.ai_socktype = SOCK_STREAM;
2787 snprintf(strport, sizeof strport, "%d", port);
2788 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2789 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002790 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002791 }
Damien Miller34132e52000-01-14 15:45:46 +11002792 for (ai = aitop; ai; ai = ai->ai_next) {
2793 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2794 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002795 sock = socket(ai->ai_family, ai->ai_socktype,
2796 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002797 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002798 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002799 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002800 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002801 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002802 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002803 debug("x11_create_display_inet: Socket family %d not supported",
2804 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002805 continue;
2806 }
Damien Miller34132e52000-01-14 15:45:46 +11002807 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002808#ifdef IPV6_V6ONLY
2809 if (ai->ai_family == AF_INET6) {
2810 int on = 1;
2811 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2812 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2813 }
2814#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002815 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002816 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002817 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002818 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002819
2820 if (ai->ai_next)
2821 continue;
2822
Damien Miller34132e52000-01-14 15:45:46 +11002823 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002824 close(socks[n]);
2825 }
2826 num_socks = 0;
2827 break;
2828 }
2829 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002830#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002831 if (num_socks == NUM_SOCKS)
2832 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002833#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002834 if (x11_use_localhost) {
2835 if (num_socks == NUM_SOCKS)
2836 break;
2837 } else {
2838 break;
2839 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002840#endif
Damien Miller95def091999-11-25 00:26:21 +11002841 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002842 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002843 if (num_socks > 0)
2844 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002845 }
Damien Miller95def091999-11-25 00:26:21 +11002846 if (display_number >= MAX_DISPLAYS) {
2847 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002848 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849 }
Damien Miller95def091999-11-25 00:26:21 +11002850 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002851 for (n = 0; n < num_socks; n++) {
2852 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002853 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002854 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002855 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002856 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002857 }
Damien Miller95def091999-11-25 00:26:21 +11002858 }
Damien Miller34132e52000-01-14 15:45:46 +11002859
Damien Miller34132e52000-01-14 15:45:46 +11002860 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002861 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002862 for (n = 0; n < num_socks; n++) {
2863 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002864 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002865 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2866 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002867 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002868 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002869 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002870 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002871 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002872
Kevin Steves366298c2001-12-19 17:58:01 +00002873 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002874 *display_numberp = display_number;
2875 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002876}
2877
Ben Lindstrombba81212001-06-25 05:01:22 +00002878static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002879connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002880{
Damien Miller95def091999-11-25 00:26:21 +11002881 int sock;
2882 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002883
Damien Miller3afe3752001-12-21 12:39:51 +11002884 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2885 if (sock < 0)
2886 error("socket: %.100s", strerror(errno));
2887 memset(&addr, 0, sizeof(addr));
2888 addr.sun_family = AF_UNIX;
2889 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002890 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002891 return sock;
2892 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002893 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2894 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002895}
2896
Damien Millerbd483e72000-04-30 10:00:53 +10002897int
2898x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002899{
Damien Miller57c4e872006-03-31 23:11:07 +11002900 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002901 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002902 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002903 struct addrinfo hints, *ai, *aitop;
2904 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002905 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002906
Damien Miller95def091999-11-25 00:26:21 +11002907 /* Try to open a socket for the local X server. */
2908 display = getenv("DISPLAY");
2909 if (!display) {
2910 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002911 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002912 }
Damien Miller5428f641999-11-25 11:54:57 +11002913 /*
2914 * Now we decode the value of the DISPLAY variable and make a
2915 * connection to the real X server.
2916 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002917
Damien Miller5428f641999-11-25 11:54:57 +11002918 /*
2919 * Check if it is a unix domain socket. Unix domain displays are in
2920 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2921 */
Damien Miller95def091999-11-25 00:26:21 +11002922 if (strncmp(display, "unix:", 5) == 0 ||
2923 display[0] == ':') {
2924 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11002925 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002926 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002927 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002928 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002929 }
2930 /* Create a socket. */
2931 sock = connect_local_xsocket(display_number);
2932 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002933 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002934
2935 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002936 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002937 }
Damien Miller5428f641999-11-25 11:54:57 +11002938 /*
2939 * Connect to an inet socket. The DISPLAY value is supposedly
2940 * hostname:d[.s], where hostname may also be numeric IP address.
2941 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002942 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002943 cp = strchr(buf, ':');
2944 if (!cp) {
2945 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002946 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002947 }
Damien Miller95def091999-11-25 00:26:21 +11002948 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002949 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11002950 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002951 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002952 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002953 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002954 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002955
Damien Miller34132e52000-01-14 15:45:46 +11002956 /* Look up the host address */
2957 memset(&hints, 0, sizeof(hints));
2958 hints.ai_family = IPv4or6;
2959 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11002960 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11002961 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2962 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002963 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002964 }
Damien Miller34132e52000-01-14 15:45:46 +11002965 for (ai = aitop; ai; ai = ai->ai_next) {
2966 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002967 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002968 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002969 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002970 continue;
2971 }
2972 /* Connect it to the display. */
2973 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11002974 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002975 6000 + display_number, strerror(errno));
2976 close(sock);
2977 continue;
2978 }
2979 /* Success */
2980 break;
Damien Miller34132e52000-01-14 15:45:46 +11002981 }
Damien Miller34132e52000-01-14 15:45:46 +11002982 freeaddrinfo(aitop);
2983 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11002984 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002985 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002986 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002987 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002988 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002989 return sock;
2990}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002991
Damien Millerbd483e72000-04-30 10:00:53 +10002992/*
2993 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2994 * the remote channel number. We should do whatever we want, and respond
2995 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2996 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002997
Damien Millerbd483e72000-04-30 10:00:53 +10002998void
Damien Miller630d6f42002-01-22 23:17:30 +11002999x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003000{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003001 Channel *c = NULL;
3002 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003003 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003004
3005 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003006
3007 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003008
3009 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003010 remote_host = packet_get_string(NULL);
3011 } else {
3012 remote_host = xstrdup("unknown (remote did not supply name)");
3013 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003014 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003015
3016 /* Obtain a connection to the real X display. */
3017 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003018 if (sock != -1) {
3019 /* Allocate a channel for this connection. */
3020 c = channel_new("connected x11 socket",
3021 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3022 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003023 c->remote_id = remote_id;
3024 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003025 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003026 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003027 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003028 /* Send refusal to the remote host. */
3029 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003030 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003031 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003032 /* Send a confirmation to the remote host. */
3033 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003034 packet_put_int(remote_id);
3035 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003036 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003037 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003038}
3039
Damien Miller69b69aa2000-10-28 14:19:58 +11003040/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3041void
Damien Miller630d6f42002-01-22 23:17:30 +11003042deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003043{
3044 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003045
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003046 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003047 case SSH_SMSG_AGENT_OPEN:
3048 error("Warning: ssh server tried agent forwarding.");
3049 break;
3050 case SSH_SMSG_X11_OPEN:
3051 error("Warning: ssh server tried X11 forwarding.");
3052 break;
3053 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003054 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003055 break;
3056 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003057 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003058 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3059 packet_put_int(rchan);
3060 packet_send();
3061}
3062
Damien Miller5428f641999-11-25 11:54:57 +11003063/*
3064 * Requests forwarding of X11 connections, generates fake authentication
3065 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003066 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003067 */
Damien Miller4af51302000-04-16 11:18:38 +10003068void
Damien Miller17e7ed02005-06-17 12:54:33 +10003069x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003070 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003071{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003072 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003073 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003074 char *new_data;
3075 int screen_number;
3076 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003077 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003078
Damien Millerf92c0792005-07-06 09:45:26 +10003079 if (x11_saved_display == NULL)
3080 x11_saved_display = xstrdup(disp);
3081 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003082 error("x11_request_forwarding_with_spoofing: different "
3083 "$DISPLAY already forwarded");
3084 return;
3085 }
3086
Damien Miller17e7ed02005-06-17 12:54:33 +10003087 cp = disp;
3088 if (disp)
3089 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003090 if (cp)
3091 cp = strchr(cp, '.');
3092 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003093 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003094 else
3095 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003096
Damien Miller13390022005-07-06 09:44:19 +10003097 if (x11_saved_proto == NULL) {
3098 /* Save protocol name. */
3099 x11_saved_proto = xstrdup(proto);
3100 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003101 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003102 * of the same length.
3103 */
3104 x11_saved_data = xmalloc(data_len);
3105 x11_fake_data = xmalloc(data_len);
3106 for (i = 0; i < data_len; i++) {
3107 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3108 fatal("x11_request_forwarding: bad "
3109 "authentication data: %.100s", data);
3110 if (i % 4 == 0)
3111 rnd = arc4random();
3112 x11_saved_data[i] = value;
3113 x11_fake_data[i] = rnd & 0xff;
3114 rnd >>= 8;
3115 }
3116 x11_saved_data_len = data_len;
3117 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003118 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003119
Damien Miller95def091999-11-25 00:26:21 +11003120 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003121 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003122
Damien Miller95def091999-11-25 00:26:21 +11003123 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003124 if (compat20) {
3125 channel_request_start(client_session_id, "x11-req", 0);
3126 packet_put_char(0); /* XXX bool single connection */
3127 } else {
3128 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3129 }
3130 packet_put_cstring(proto);
3131 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003132 packet_put_int(screen_number);
3133 packet_send();
3134 packet_write_wait();
3135 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003136}
3137
Ben Lindstrome9c99912001-06-09 00:41:05 +00003138
3139/* -- agent forwarding */
3140
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003141/* Sends a message to the server to request authentication fd forwarding. */
3142
Damien Miller4af51302000-04-16 11:18:38 +10003143void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003144auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003145{
Damien Miller95def091999-11-25 00:26:21 +11003146 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3147 packet_send();
3148 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149}