blob: 9642a56ee5cf06c72d459c8dd5706be7c6b6babe [file] [log] [blame]
Damien Miller499a0d52006-04-23 12:06:03 +10001/* $OpenBSD: channels.c,v 1.250 2006/04/16 00:48:52 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
Damien Miller33b13562000-04-04 14:38:59 +1000750 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100751 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000752 buffer_len(&c->input) < limit &&
753 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000754 FD_SET(c->rfd, readset);
755 if (c->ostate == CHAN_OUTPUT_OPEN ||
756 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
757 if (buffer_len(&c->output) > 0) {
758 FD_SET(c->wfd, writeset);
759 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000760 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000761 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
762 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000763 else
764 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000765 }
766 }
767 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100768 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000769 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
770 buffer_len(&c->extended) > 0)
771 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000772 else if (!(c->flags & CHAN_EOF_SENT) &&
773 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000774 buffer_len(&c->extended) < c->remote_window)
775 FD_SET(c->efd, readset);
776 }
Damien Miller0e220db2004-06-15 10:34:08 +1000777 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000778 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000779 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
780 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000781}
782
Ben Lindstrombba81212001-06-25 05:01:22 +0000783static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100784channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000785{
786 if (buffer_len(&c->input) == 0) {
787 packet_start(SSH_MSG_CHANNEL_CLOSE);
788 packet_put_int(c->remote_id);
789 packet_send();
790 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000791 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000792 }
793}
794
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100796channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000797{
798 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000799 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000800 else
Damien Millerb38eff82000-04-01 11:09:21 +1000801 FD_SET(c->sock, writeset);
802}
803
804/*
805 * This is a special state for X11 authentication spoofing. An opened X11
806 * connection (when authentication spoofing is being done) remains in this
807 * state until the first packet has been completely read. The authentication
808 * data in that packet is then substituted by the real data if it matches the
809 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000810 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000811 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000812 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000813static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000814x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000816 u_char *ucp;
817 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000818
819 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000820 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000821 return 0;
822
823 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100824 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000825 if (ucp[0] == 0x42) { /* Byte order MSB first. */
826 proto_len = 256 * ucp[6] + ucp[7];
827 data_len = 256 * ucp[8] + ucp[9];
828 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
829 proto_len = ucp[6] + 256 * ucp[7];
830 data_len = ucp[8] + 256 * ucp[9];
831 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000832 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100833 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000834 return -1;
835 }
836
837 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000838 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000839 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
840 return 0;
841
842 /* Check if authentication protocol matches. */
843 if (proto_len != strlen(x11_saved_proto) ||
844 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000845 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000846 return -1;
847 }
848 /* Check if authentication data matches our fake data. */
849 if (data_len != x11_fake_data_len ||
850 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
851 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000852 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000853 return -1;
854 }
855 /* Check fake data length */
856 if (x11_fake_data_len != x11_saved_data_len) {
857 error("X11 fake_data_len %d != saved_data_len %d",
858 x11_fake_data_len, x11_saved_data_len);
859 return -1;
860 }
861 /*
862 * Received authentication protocol and data match
863 * our fake data. Substitute the fake data with real
864 * data.
865 */
866 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
867 x11_saved_data, x11_saved_data_len);
868 return 1;
869}
870
Ben Lindstrombba81212001-06-25 05:01:22 +0000871static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100872channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000873{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000874 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000875
Damien Millerb38eff82000-04-01 11:09:21 +1000876 if (ret == 1) {
877 /* Start normal processing for the channel. */
878 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000879 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000880 } else if (ret == -1) {
881 /*
882 * We have received an X11 connection that has bad
883 * authentication information.
884 */
Damien Miller996acd22003-04-09 20:59:48 +1000885 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000886 buffer_clear(&c->input);
887 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000888 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000889 c->sock = -1;
890 c->type = SSH_CHANNEL_CLOSED;
891 packet_start(SSH_MSG_CHANNEL_CLOSE);
892 packet_put_int(c->remote_id);
893 packet_send();
894 }
895}
896
Ben Lindstrombba81212001-06-25 05:01:22 +0000897static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100898channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000899{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000900 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000901
902 /* c->force_drain = 1; */
903
Damien Millerb38eff82000-04-01 11:09:21 +1000904 if (ret == 1) {
905 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100906 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000907 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000908 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000909 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100910 chan_read_failed(c);
911 buffer_clear(&c->input);
912 chan_ibuf_empty(c);
913 buffer_clear(&c->output);
914 /* for proto v1, the peer will send an IEOF */
915 if (compat20)
916 chan_write_failed(c);
917 else
918 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000919 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000920 }
921}
922
Ben Lindstromb3921512001-04-11 15:57:50 +0000923/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000924static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100925channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000926{
Damien Millera10f5612002-09-12 09:49:15 +1000927 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000928 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100929 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000930 struct {
931 u_int8_t version;
932 u_int8_t command;
933 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000934 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935 } s4_req, s4_rsp;
936
Ben Lindstromb3921512001-04-11 15:57:50 +0000937 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000938
939 have = buffer_len(&c->input);
940 len = sizeof(s4_req);
941 if (have < len)
942 return 0;
943 p = buffer_ptr(&c->input);
944 for (found = 0, i = len; i < have; i++) {
945 if (p[i] == '\0') {
946 found = 1;
947 break;
948 }
949 if (i > 1024) {
950 /* the peer is probably sending garbage */
951 debug("channel %d: decode socks4: too long",
952 c->self);
953 return -1;
954 }
955 }
956 if (!found)
957 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000958 buffer_get(&c->input, (char *)&s4_req.version, 1);
959 buffer_get(&c->input, (char *)&s4_req.command, 1);
960 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000961 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000962 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000963 p = buffer_ptr(&c->input);
964 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000965 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000966 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000967 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000968 c->self, len, have);
969 strlcpy(username, p, sizeof(username));
970 buffer_consume(&c->input, len);
971 buffer_consume(&c->input, 1); /* trailing '\0' */
972
Ben Lindstromb3921512001-04-11 15:57:50 +0000973 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000974 strlcpy(c->path, host, sizeof(c->path));
975 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100976
Damien Millerfbdeece2003-09-02 22:52:31 +1000977 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000978 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000979
Ben Lindstromb3921512001-04-11 15:57:50 +0000980 if (s4_req.command != 1) {
981 debug("channel %d: cannot handle: socks4 cn %d",
982 c->self, s4_req.command);
983 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000984 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000985 s4_rsp.version = 0; /* vn: 0 for reply */
986 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000987 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000988 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +1100989 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000990 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000991}
992
Darren Tucker46471c92003-07-03 13:55:19 +1000993/* try to decode a socks5 header */
994#define SSH_SOCKS5_AUTHDONE 0x1000
995#define SSH_SOCKS5_NOAUTH 0x00
996#define SSH_SOCKS5_IPV4 0x01
997#define SSH_SOCKS5_DOMAIN 0x03
998#define SSH_SOCKS5_IPV6 0x04
999#define SSH_SOCKS5_CONNECT 0x01
1000#define SSH_SOCKS5_SUCCESS 0x00
1001
1002static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001003channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001004{
1005 struct {
1006 u_int8_t version;
1007 u_int8_t command;
1008 u_int8_t reserved;
1009 u_int8_t atyp;
1010 } s5_req, s5_rsp;
1011 u_int16_t dest_port;
1012 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +10001013 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001014
1015 debug2("channel %d: decode socks5", c->self);
1016 p = buffer_ptr(&c->input);
1017 if (p[0] != 0x05)
1018 return -1;
1019 have = buffer_len(&c->input);
1020 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1021 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001022 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001023 return 0;
1024 nmethods = p[1];
1025 if (have < nmethods + 2)
1026 return 0;
1027 /* look for method: "NO AUTHENTICATION REQUIRED" */
1028 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1029 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1030 found = 1;
1031 break;
1032 }
1033 }
1034 if (!found) {
1035 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1036 c->self);
1037 return -1;
1038 }
1039 buffer_consume(&c->input, nmethods + 2);
1040 buffer_put_char(&c->output, 0x05); /* version */
1041 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1042 FD_SET(c->sock, writeset);
1043 c->flags |= SSH_SOCKS5_AUTHDONE;
1044 debug2("channel %d: socks5 auth done", c->self);
1045 return 0; /* need more */
1046 }
1047 debug2("channel %d: socks5 post auth", c->self);
1048 if (have < sizeof(s5_req)+1)
1049 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001050 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001051 if (s5_req.version != 0x05 ||
1052 s5_req.command != SSH_SOCKS5_CONNECT ||
1053 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001054 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001055 return -1;
1056 }
Darren Tucker47eede72005-03-14 23:08:12 +11001057 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001058 case SSH_SOCKS5_IPV4:
1059 addrlen = 4;
1060 af = AF_INET;
1061 break;
1062 case SSH_SOCKS5_DOMAIN:
1063 addrlen = p[sizeof(s5_req)];
1064 af = -1;
1065 break;
1066 case SSH_SOCKS5_IPV6:
1067 addrlen = 16;
1068 af = AF_INET6;
1069 break;
1070 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001071 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001072 return -1;
1073 }
1074 if (have < 4 + addrlen + 2)
1075 return 0;
1076 buffer_consume(&c->input, sizeof(s5_req));
1077 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1078 buffer_consume(&c->input, 1); /* host string length */
1079 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1080 buffer_get(&c->input, (char *)&dest_port, 2);
1081 dest_addr[addrlen] = '\0';
1082 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001083 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001084 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1085 return -1;
1086 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001087
Damien Millerfbdeece2003-09-02 22:52:31 +10001088 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001089 c->self, c->path, c->host_port, s5_req.command);
1090
1091 s5_rsp.version = 0x05;
1092 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1093 s5_rsp.reserved = 0; /* ignored */
1094 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1095 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1096 dest_port = 0; /* ignored */
1097
Damien Millera0fdce92006-03-26 14:28:50 +11001098 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1099 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1100 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001101 return 1;
1102}
1103
Ben Lindstromb3921512001-04-11 15:57:50 +00001104/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001105static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001106channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001107{
1108 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001109 u_int have;
1110 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001111
1112 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001113 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001114 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001115 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001116 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001117 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001118 /* need more */
1119 FD_SET(c->sock, readset);
1120 return;
1121 }
1122 /* try to guess the protocol */
1123 p = buffer_ptr(&c->input);
1124 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001125 case 0x04:
1126 ret = channel_decode_socks4(c, readset, writeset);
1127 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001128 case 0x05:
1129 ret = channel_decode_socks5(c, readset, writeset);
1130 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001131 default:
1132 ret = -1;
1133 break;
1134 }
1135 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001136 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001137 } else if (ret == 0) {
1138 debug2("channel %d: pre_dynamic: need more", c->self);
1139 /* need more */
1140 FD_SET(c->sock, readset);
1141 } else {
1142 /* switch to the next state */
1143 c->type = SSH_CHANNEL_OPENING;
1144 port_open_helper(c, "direct-tcpip");
1145 }
1146}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001147
Damien Millerb38eff82000-04-01 11:09:21 +10001148/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001149static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001150channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001151{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001152 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001153 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001154 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001155 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001156 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001157 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001158
1159 if (FD_ISSET(c->sock, readset)) {
1160 debug("X11 connection requested.");
1161 addrlen = sizeof(addr);
1162 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001163 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001164 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001165 channel_close_fd(&c->sock);
1166 chan_mark_dead(c);
1167 }
Damien Millerb38eff82000-04-01 11:09:21 +10001168 if (newsock < 0) {
1169 error("accept: %.100s", strerror(errno));
1170 return;
1171 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001172 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001173 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001174 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001175 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001176 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001177
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001178 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001179 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001180 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001181 if (compat20) {
1182 packet_start(SSH2_MSG_CHANNEL_OPEN);
1183 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001184 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001185 packet_put_int(nc->local_window_max);
1186 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001187 /* originator ipaddr and port */
1188 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001189 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001190 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001191 } else {
1192 packet_put_int(remote_port);
1193 }
Damien Millerbd483e72000-04-30 10:00:53 +10001194 packet_send();
1195 } else {
1196 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001197 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001198 if (packet_get_protocol_flags() &
1199 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001200 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001201 packet_send();
1202 }
Damien Millerd83ff352001-01-30 09:19:34 +11001203 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001204 }
1205}
1206
Ben Lindstrombba81212001-06-25 05:01:22 +00001207static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001208port_open_helper(Channel *c, char *rtype)
1209{
1210 int direct;
1211 char buf[1024];
1212 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001213 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001214
1215 direct = (strcmp(rtype, "direct-tcpip") == 0);
1216
1217 snprintf(buf, sizeof buf,
1218 "%s: listening port %d for %.100s port %d, "
1219 "connect from %.200s port %d",
1220 rtype, c->listening_port, c->path, c->host_port,
1221 remote_ipaddr, remote_port);
1222
1223 xfree(c->remote_name);
1224 c->remote_name = xstrdup(buf);
1225
1226 if (compat20) {
1227 packet_start(SSH2_MSG_CHANNEL_OPEN);
1228 packet_put_cstring(rtype);
1229 packet_put_int(c->self);
1230 packet_put_int(c->local_window_max);
1231 packet_put_int(c->local_maxpacket);
1232 if (direct) {
1233 /* target host, port */
1234 packet_put_cstring(c->path);
1235 packet_put_int(c->host_port);
1236 } else {
1237 /* listen address, port */
1238 packet_put_cstring(c->path);
1239 packet_put_int(c->listening_port);
1240 }
1241 /* originator host and port */
1242 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001243 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001244 packet_send();
1245 } else {
1246 packet_start(SSH_MSG_PORT_OPEN);
1247 packet_put_int(c->self);
1248 packet_put_cstring(c->path);
1249 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001250 if (packet_get_protocol_flags() &
1251 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001252 packet_put_cstring(c->remote_name);
1253 packet_send();
1254 }
1255 xfree(remote_ipaddr);
1256}
1257
Damien Miller5e7fd072005-11-05 14:53:39 +11001258static void
1259channel_set_reuseaddr(int fd)
1260{
1261 int on = 1;
1262
1263 /*
1264 * Set socket options.
1265 * Allow local port reuse in TIME_WAIT.
1266 */
1267 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1268 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1269}
1270
Damien Millerb38eff82000-04-01 11:09:21 +10001271/*
1272 * This socket is listening for connections to a forwarded TCP/IP port.
1273 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001274static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001275channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001276{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001277 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001278 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001279 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001280 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001281 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001282
Damien Millerb38eff82000-04-01 11:09:21 +10001283 if (FD_ISSET(c->sock, readset)) {
1284 debug("Connection to port %d forwarding "
1285 "to %.100s port %d requested.",
1286 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001287
Damien Miller4623a752001-10-10 15:03:58 +10001288 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1289 nextstate = SSH_CHANNEL_OPENING;
1290 rtype = "forwarded-tcpip";
1291 } else {
1292 if (c->host_port == 0) {
1293 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001294 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001295 } else {
1296 nextstate = SSH_CHANNEL_OPENING;
1297 rtype = "direct-tcpip";
1298 }
1299 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001300
Damien Millerb38eff82000-04-01 11:09:21 +10001301 addrlen = sizeof(addr);
1302 newsock = accept(c->sock, &addr, &addrlen);
1303 if (newsock < 0) {
1304 error("accept: %.100s", strerror(errno));
1305 return;
1306 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001307 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001308 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1309 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001310 nc->listening_port = c->listening_port;
1311 nc->host_port = c->host_port;
1312 strlcpy(nc->path, c->path, sizeof(nc->path));
1313
Damien Miller4623a752001-10-10 15:03:58 +10001314 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1315 /*
1316 * do not call the channel_post handler until
1317 * this flag has been reset by a pre-handler.
1318 * otherwise the FD_ISSET calls might overflow
1319 */
1320 nc->delayed = 1;
1321 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001322 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001323 }
Damien Millerb38eff82000-04-01 11:09:21 +10001324 }
1325}
1326
1327/*
1328 * This is the authentication agent socket listening for connections from
1329 * clients.
1330 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001331static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001332channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001333{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001334 Channel *nc;
1335 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001336 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001337 socklen_t addrlen;
1338
1339 if (FD_ISSET(c->sock, readset)) {
1340 addrlen = sizeof(addr);
1341 newsock = accept(c->sock, &addr, &addrlen);
1342 if (newsock < 0) {
1343 error("accept from auth socket: %.100s", strerror(errno));
1344 return;
1345 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001346 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001347 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1348 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001349 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001350 if (compat20) {
1351 packet_start(SSH2_MSG_CHANNEL_OPEN);
1352 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001353 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001354 packet_put_int(c->local_window_max);
1355 packet_put_int(c->local_maxpacket);
1356 } else {
1357 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001358 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001359 }
Damien Millerb38eff82000-04-01 11:09:21 +10001360 packet_send();
1361 }
1362}
1363
Ben Lindstrombba81212001-06-25 05:01:22 +00001364static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001365channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001366{
Ben Lindstrom69128662001-05-08 20:07:39 +00001367 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001368 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001369
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001370 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001371 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001372 err = errno;
1373 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001374 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001375 if (err == 0) {
1376 debug("channel %d: connected", c->self);
1377 c->type = SSH_CHANNEL_OPEN;
1378 if (compat20) {
1379 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1380 packet_put_int(c->remote_id);
1381 packet_put_int(c->self);
1382 packet_put_int(c->local_window);
1383 packet_put_int(c->local_maxpacket);
1384 } else {
1385 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1386 packet_put_int(c->remote_id);
1387 packet_put_int(c->self);
1388 }
1389 } else {
1390 debug("channel %d: not connected: %s",
1391 c->self, strerror(err));
1392 if (compat20) {
1393 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1394 packet_put_int(c->remote_id);
1395 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1396 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1397 packet_put_cstring(strerror(err));
1398 packet_put_cstring("");
1399 }
1400 } else {
1401 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1402 packet_put_int(c->remote_id);
1403 }
1404 chan_mark_dead(c);
1405 }
1406 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001407 }
1408}
1409
Ben Lindstrombba81212001-06-25 05:01:22 +00001410static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001411channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001412{
Darren Tucker11327cc2005-03-14 23:22:25 +11001413 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001414 int len;
1415
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001416 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001417 FD_ISSET(c->rfd, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001418 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001419 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001420 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1421 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001422#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001423 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001424#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001425 if ((!c->isatty && len <= 0) ||
1426 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001427#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001428 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001429 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001430 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001431 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001432 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001433 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001434 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001435 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001436 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001437 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001438 } else {
1439 chan_read_failed(c);
1440 }
1441 return -1;
1442 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001443 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001444 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001445 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001446 chan_read_failed(c);
1447 }
Damien Millerd27b9472005-12-13 19:29:02 +11001448 } else if (c->datagram) {
1449 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001450 } else {
1451 buffer_append(&c->input, buf, len);
1452 }
Damien Millerb38eff82000-04-01 11:09:21 +10001453 }
1454 return 1;
1455}
Damien Miller4f7becb2006-03-26 14:10:14 +11001456
Ben Lindstrombba81212001-06-25 05:01:22 +00001457static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001458channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001459{
Ben Lindstrome229b252001-03-05 06:28:06 +00001460 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001461 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001462 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001463 int len;
1464
1465 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001466 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001467 FD_ISSET(c->wfd, writeset) &&
1468 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001469 if (c->output_filter != NULL) {
1470 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1471 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001472 if (c->type != SSH_CHANNEL_OPEN)
1473 chan_mark_dead(c);
1474 else
1475 chan_write_failed(c);
1476 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001477 }
1478 } else if (c->datagram) {
1479 buf = data = buffer_get_string(&c->output, &dlen);
1480 } else {
1481 buf = data = buffer_ptr(&c->output);
1482 dlen = buffer_len(&c->output);
1483 }
1484
Damien Millerd27b9472005-12-13 19:29:02 +11001485 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001486 /* ignore truncated writes, datagrams might get lost */
1487 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001488 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001489 xfree(data);
1490 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1491 return 1;
1492 if (len <= 0) {
1493 if (c->type != SSH_CHANNEL_OPEN)
1494 chan_mark_dead(c);
1495 else
1496 chan_write_failed(c);
1497 return -1;
1498 }
1499 return 1;
1500 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001501#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001502 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001503 if (compat20 && c->wfd_isatty)
1504 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001505#endif
Damien Miller077b2382005-12-31 16:22:32 +11001506
1507 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001508 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1509 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001510 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001511 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001512 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001513 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001514 return -1;
1515 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001516 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001517 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001518 c->type = SSH_CHANNEL_INPUT_DRAINING;
1519 } else {
1520 chan_write_failed(c);
1521 }
1522 return -1;
1523 }
Damien Miller077b2382005-12-31 16:22:32 +11001524 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001525 if (tcgetattr(c->wfd, &tio) == 0 &&
1526 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1527 /*
1528 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001529 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001530 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001531 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001532 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001533 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001534 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001535 }
1536 }
Damien Millerb38eff82000-04-01 11:09:21 +10001537 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001538 if (compat20 && len > 0) {
1539 c->local_consumed += len;
1540 }
1541 }
1542 return 1;
1543}
Damien Miller4f7becb2006-03-26 14:10:14 +11001544
Ben Lindstrombba81212001-06-25 05:01:22 +00001545static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001546channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001547{
Darren Tucker11327cc2005-03-14 23:22:25 +11001548 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001549 int len;
1550
Damien Miller1383bd82000-04-06 12:32:37 +10001551/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001552 if (c->efd != -1) {
1553 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1554 FD_ISSET(c->efd, writeset) &&
1555 buffer_len(&c->extended) > 0) {
1556 len = write(c->efd, buffer_ptr(&c->extended),
1557 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001558 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001559 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001560 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1561 return 1;
1562 if (len <= 0) {
1563 debug2("channel %d: closing write-efd %d",
1564 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001565 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001566 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001567 buffer_consume(&c->extended, len);
1568 c->local_consumed += len;
1569 }
1570 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1571 FD_ISSET(c->efd, readset)) {
1572 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001573 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001574 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001575 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1576 return 1;
1577 if (len <= 0) {
1578 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001579 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001580 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001581 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001582 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001583 }
Damien Miller33b13562000-04-04 14:38:59 +10001584 }
1585 }
1586 return 1;
1587}
Damien Miller4f7becb2006-03-26 14:10:14 +11001588
Ben Lindstrombba81212001-06-25 05:01:22 +00001589static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001590channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001591{
1592 char buf[16];
1593 int len;
1594
1595 /* Monitor control fd to detect if the slave client exits */
1596 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1597 len = read(c->ctl_fd, buf, sizeof(buf));
1598 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1599 return 1;
1600 if (len <= 0) {
1601 debug2("channel %d: ctl read<=0", c->self);
1602 if (c->type != SSH_CHANNEL_OPEN) {
1603 debug2("channel %d: not open", c->self);
1604 chan_mark_dead(c);
1605 return -1;
1606 } else {
1607 chan_read_failed(c);
1608 chan_write_failed(c);
1609 }
1610 return -1;
1611 } else
1612 fatal("%s: unexpected data on ctl fd", __func__);
1613 }
1614 return 1;
1615}
Damien Miller4f7becb2006-03-26 14:10:14 +11001616
Damien Miller0e220db2004-06-15 10:34:08 +10001617static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001618channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001619{
Ben Lindstromb3921512001-04-11 15:57:50 +00001620 if (c->type == SSH_CHANNEL_OPEN &&
1621 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001622 c->local_window < c->local_window_max/2 &&
1623 c->local_consumed > 0) {
1624 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1625 packet_put_int(c->remote_id);
1626 packet_put_int(c->local_consumed);
1627 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001628 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001629 c->self, c->local_window,
1630 c->local_consumed);
1631 c->local_window += c->local_consumed;
1632 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001633 }
1634 return 1;
1635}
1636
Ben Lindstrombba81212001-06-25 05:01:22 +00001637static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001638channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001639{
Damien Miller4623a752001-10-10 15:03:58 +10001640 if (c->delayed)
1641 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001642 channel_handle_rfd(c, readset, writeset);
1643 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001644 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001645 return;
Damien Miller33b13562000-04-04 14:38:59 +10001646 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001647 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001648 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001649}
1650
Ben Lindstrombba81212001-06-25 05:01:22 +00001651static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001652channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001653{
1654 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001655
Damien Millerb38eff82000-04-01 11:09:21 +10001656 /* Send buffered output data to the socket. */
1657 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1658 len = write(c->sock, buffer_ptr(&c->output),
1659 buffer_len(&c->output));
1660 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001661 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001662 else
1663 buffer_consume(&c->output, len);
1664 }
1665}
1666
Ben Lindstrombba81212001-06-25 05:01:22 +00001667static void
Damien Miller33b13562000-04-04 14:38:59 +10001668channel_handler_init_20(void)
1669{
Damien Millerde6987c2002-01-22 23:20:40 +11001670 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001671 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001672 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001673 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001674 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001675 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001676 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001677 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001678
Damien Millerde6987c2002-01-22 23:20:40 +11001679 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001680 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001682 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001683 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001684 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001685 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001686}
1687
Ben Lindstrombba81212001-06-25 05:01:22 +00001688static void
Damien Millerb38eff82000-04-01 11:09:21 +10001689channel_handler_init_13(void)
1690{
1691 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1692 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1693 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1694 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1695 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1696 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1697 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001698 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001699 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001700
Damien Millerde6987c2002-01-22 23:20:40 +11001701 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001702 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1703 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1704 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1705 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001706 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001707 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001708}
1709
Ben Lindstrombba81212001-06-25 05:01:22 +00001710static void
Damien Millerb38eff82000-04-01 11:09:21 +10001711channel_handler_init_15(void)
1712{
Damien Millerde6987c2002-01-22 23:20:40 +11001713 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001714 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001715 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1716 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1717 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001718 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001719 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001720
1721 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1722 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1723 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001724 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001725 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001726 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001727}
1728
Ben Lindstrombba81212001-06-25 05:01:22 +00001729static void
Damien Millerb38eff82000-04-01 11:09:21 +10001730channel_handler_init(void)
1731{
1732 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001733
Damien Miller9f0f5c62001-12-21 14:45:46 +11001734 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001735 channel_pre[i] = NULL;
1736 channel_post[i] = NULL;
1737 }
Damien Miller33b13562000-04-04 14:38:59 +10001738 if (compat20)
1739 channel_handler_init_20();
1740 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001741 channel_handler_init_13();
1742 else
1743 channel_handler_init_15();
1744}
1745
Damien Miller3ec27592001-10-12 11:35:04 +10001746/* gc dead channels */
1747static void
1748channel_garbage_collect(Channel *c)
1749{
1750 if (c == NULL)
1751 return;
1752 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001753 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001754 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001755 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001756 c->detach_user(c->self, NULL);
1757 /* if we still have a callback */
1758 if (c->detach_user != NULL)
1759 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001760 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001761 }
1762 if (!chan_is_dead(c, 1))
1763 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001764 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001765 channel_free(c);
1766}
1767
Ben Lindstrombba81212001-06-25 05:01:22 +00001768static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001769channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001770{
1771 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001772 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001773 Channel *c;
1774
1775 if (!did_init) {
1776 channel_handler_init();
1777 did_init = 1;
1778 }
1779 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001780 c = channels[i];
1781 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001782 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001783 if (ftab[c->type] != NULL)
1784 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001785 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001786 }
1787}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001788
Ben Lindstrome9c99912001-06-09 00:41:05 +00001789/*
1790 * Allocate/update select bitmasks and add any bits relevant to channels in
1791 * select bitmasks.
1792 */
Damien Miller4af51302000-04-16 11:18:38 +10001793void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001794channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001795 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001796{
Damien Miller36812092006-03-26 14:22:47 +11001797 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001798
1799 n = MAX(*maxfdp, channel_max_fd);
1800
Damien Miller36812092006-03-26 14:22:47 +11001801 nfdset = howmany(n+1, NFDBITS);
1802 /* Explicitly test here, because xrealloc isn't always called */
1803 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1804 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1805 sz = nfdset * sizeof(fd_mask);
1806
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001807 /* perhaps check sz < nalloc/2 and shrink? */
1808 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001809 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1810 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001811 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001812 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001813 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001814 memset(*readsetp, 0, sz);
1815 memset(*writesetp, 0, sz);
1816
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001817 if (!rekeying)
1818 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819}
1820
Ben Lindstrome9c99912001-06-09 00:41:05 +00001821/*
1822 * After select, perform any appropriate operations for channels which have
1823 * events pending.
1824 */
Damien Miller4af51302000-04-16 11:18:38 +10001825void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001826channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001827{
Damien Millerb38eff82000-04-01 11:09:21 +10001828 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001829}
1830
Ben Lindstrome9c99912001-06-09 00:41:05 +00001831
Damien Miller5e953212001-01-30 09:14:00 +11001832/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001833void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001834channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001835{
Damien Millerb38eff82000-04-01 11:09:21 +10001836 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001837 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001838
Damien Miller95def091999-11-25 00:26:21 +11001839 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001840 c = channels[i];
1841 if (c == NULL)
1842 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001843
Ben Lindstrome9c99912001-06-09 00:41:05 +00001844 /*
1845 * We are only interested in channels that can have buffered
1846 * incoming data.
1847 */
Damien Miller34132e52000-01-14 15:45:46 +11001848 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001849 if (c->type != SSH_CHANNEL_OPEN &&
1850 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001851 continue;
1852 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001853 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001854 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001855 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001856 if (compat20 &&
1857 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001858 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001859 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001860 continue;
1861 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001862
Damien Miller95def091999-11-25 00:26:21 +11001863 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001864 if ((c->istate == CHAN_INPUT_OPEN ||
1865 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1866 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001867 if (c->datagram) {
1868 if (len > 0) {
1869 u_char *data;
1870 u_int dlen;
1871
1872 data = buffer_get_string(&c->input,
1873 &dlen);
1874 packet_start(SSH2_MSG_CHANNEL_DATA);
1875 packet_put_int(c->remote_id);
1876 packet_put_string(data, dlen);
1877 packet_send();
1878 c->remote_window -= dlen + 4;
1879 xfree(data);
1880 }
1881 continue;
1882 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001883 /*
1884 * Send some data for the other side over the secure
1885 * connection.
1886 */
Damien Miller33b13562000-04-04 14:38:59 +10001887 if (compat20) {
1888 if (len > c->remote_window)
1889 len = c->remote_window;
1890 if (len > c->remote_maxpacket)
1891 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001892 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001893 if (packet_is_interactive()) {
1894 if (len > 1024)
1895 len = 512;
1896 } else {
1897 /* Keep the packets at reasonable size. */
1898 if (len > packet_get_maxsize()/2)
1899 len = packet_get_maxsize()/2;
1900 }
Damien Miller95def091999-11-25 00:26:21 +11001901 }
Damien Millerb38eff82000-04-01 11:09:21 +10001902 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001903 packet_start(compat20 ?
1904 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001905 packet_put_int(c->remote_id);
1906 packet_put_string(buffer_ptr(&c->input), len);
1907 packet_send();
1908 buffer_consume(&c->input, len);
1909 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001910 }
1911 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001912 if (compat13)
1913 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001914 /*
1915 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001916 * tell peer, that we will not send more data: send IEOF.
1917 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001918 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001919 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001920 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1921 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001922 else
1923 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001924 }
Damien Miller33b13562000-04-04 14:38:59 +10001925 /* Send extended data, i.e. stderr */
1926 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001927 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001928 c->remote_window > 0 &&
1929 (len = buffer_len(&c->extended)) > 0 &&
1930 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001931 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001932 c->self, c->remote_window, buffer_len(&c->extended),
1933 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001934 if (len > c->remote_window)
1935 len = c->remote_window;
1936 if (len > c->remote_maxpacket)
1937 len = c->remote_maxpacket;
1938 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1939 packet_put_int(c->remote_id);
1940 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1941 packet_put_string(buffer_ptr(&c->extended), len);
1942 packet_send();
1943 buffer_consume(&c->extended, len);
1944 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001945 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001946 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001947 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001948}
1949
Ben Lindstrome9c99912001-06-09 00:41:05 +00001950
1951/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001952
1953/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001954void
Damien Miller630d6f42002-01-22 23:17:30 +11001955channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001956{
Damien Miller34132e52000-01-14 15:45:46 +11001957 int id;
Damien Miller95def091999-11-25 00:26:21 +11001958 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001959 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001960 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001961
Damien Miller95def091999-11-25 00:26:21 +11001962 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001963 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001964 c = channel_lookup(id);
1965 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001966 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001967
Damien Miller95def091999-11-25 00:26:21 +11001968 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001969 if (c->type != SSH_CHANNEL_OPEN &&
1970 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001971 return;
1972
Damien Miller95def091999-11-25 00:26:21 +11001973 /* Get the data. */
1974 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001975
Damien Millera04ad492004-01-21 11:02:09 +11001976 /*
1977 * Ignore data for protocol > 1.3 if output end is no longer open.
1978 * For protocol 2 the sending side is reducing its window as it sends
1979 * data, so we must 'fake' consumption of the data in order to ensure
1980 * that window updates are sent back. Otherwise the connection might
1981 * deadlock.
1982 */
1983 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1984 if (compat20) {
1985 c->local_window -= data_len;
1986 c->local_consumed += data_len;
1987 }
1988 xfree(data);
1989 return;
1990 }
1991
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001992 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001993 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001994 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001995 c->self, data_len, c->local_maxpacket);
1996 }
1997 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001998 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001999 c->self, data_len, c->local_window);
2000 xfree(data);
2001 return;
2002 }
2003 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002004 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002005 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002006 if (c->datagram)
2007 buffer_put_string(&c->output, data, data_len);
2008 else
2009 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002010 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002011}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002012
Damien Millerd79b4242006-03-31 23:11:44 +11002013/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002014void
Damien Miller630d6f42002-01-22 23:17:30 +11002015channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002016{
2017 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002018 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002019 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002020 Channel *c;
2021
2022 /* Get the channel number and verify it. */
2023 id = packet_get_int();
2024 c = channel_lookup(id);
2025
2026 if (c == NULL)
2027 packet_disconnect("Received extended_data for bad channel %d.", id);
2028 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002029 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002030 return;
2031 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002032 if (c->flags & CHAN_EOF_RCVD) {
2033 if (datafellows & SSH_BUG_EXTEOF)
2034 debug("channel %d: accepting ext data after eof", id);
2035 else
2036 packet_disconnect("Received extended_data after EOF "
2037 "on channel %d.", id);
2038 }
Damien Miller33b13562000-04-04 14:38:59 +10002039 tcode = packet_get_int();
2040 if (c->efd == -1 ||
2041 c->extended_usage != CHAN_EXTENDED_WRITE ||
2042 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002043 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002044 return;
2045 }
2046 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002047 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002048 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002049 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002050 c->self, data_len, c->local_window);
2051 xfree(data);
2052 return;
2053 }
Damien Millerd3444942000-09-30 14:20:03 +11002054 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002055 c->local_window -= data_len;
2056 buffer_append(&c->extended, data, data_len);
2057 xfree(data);
2058}
2059
Damien Millerd79b4242006-03-31 23:11:44 +11002060/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002061void
Damien Miller630d6f42002-01-22 23:17:30 +11002062channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002063{
2064 int id;
2065 Channel *c;
2066
Damien Millerb38eff82000-04-01 11:09:21 +10002067 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002068 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002069 c = channel_lookup(id);
2070 if (c == NULL)
2071 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2072 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002073
2074 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002075 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002076 debug("channel %d: FORCE input drain", c->self);
2077 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002078 if (buffer_len(&c->input) == 0)
2079 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002080 }
2081
Damien Millerb38eff82000-04-01 11:09:21 +10002082}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002083
Damien Millerd79b4242006-03-31 23:11:44 +11002084/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002085void
Damien Miller630d6f42002-01-22 23:17:30 +11002086channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002087{
Damien Millerb38eff82000-04-01 11:09:21 +10002088 int id;
2089 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002090
Damien Millerb38eff82000-04-01 11:09:21 +10002091 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002092 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002093 c = channel_lookup(id);
2094 if (c == NULL)
2095 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002096
2097 /*
2098 * Send a confirmation that we have closed the channel and no more
2099 * data is coming for it.
2100 */
Damien Miller95def091999-11-25 00:26:21 +11002101 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002102 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002103 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002104
Damien Miller5428f641999-11-25 11:54:57 +11002105 /*
2106 * If the channel is in closed state, we have sent a close request,
2107 * and the other side will eventually respond with a confirmation.
2108 * Thus, we cannot free the channel here, because then there would be
2109 * no-one to receive the confirmation. The channel gets freed when
2110 * the confirmation arrives.
2111 */
Damien Millerb38eff82000-04-01 11:09:21 +10002112 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002113 /*
2114 * Not a closed channel - mark it as draining, which will
2115 * cause it to be freed later.
2116 */
Damien Miller76765c02002-01-22 23:21:15 +11002117 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002118 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002119 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002120}
2121
Damien Millerb38eff82000-04-01 11:09:21 +10002122/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002123/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002124void
Damien Miller630d6f42002-01-22 23:17:30 +11002125channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002126{
Damien Millerb38eff82000-04-01 11:09:21 +10002127 int id = packet_get_int();
2128 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002129
Damien Miller48b03fc2002-01-22 23:11:40 +11002130 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002131 if (c == NULL)
2132 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2133 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002134}
2135
Damien Millerd79b4242006-03-31 23:11:44 +11002136/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002137void
Damien Miller630d6f42002-01-22 23:17:30 +11002138channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002139{
2140 int id = packet_get_int();
2141 Channel *c = channel_lookup(id);
2142
Damien Miller48b03fc2002-01-22 23:11:40 +11002143 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002144 if (c == NULL)
2145 packet_disconnect("Received close confirmation for "
2146 "out-of-range channel %d.", id);
2147 if (c->type != SSH_CHANNEL_CLOSED)
2148 packet_disconnect("Received close confirmation for "
2149 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002150 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002151}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002152
Damien Millerd79b4242006-03-31 23:11:44 +11002153/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002154void
Damien Miller630d6f42002-01-22 23:17:30 +11002155channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002156{
Damien Millerb38eff82000-04-01 11:09:21 +10002157 int id, remote_id;
2158 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002159
Damien Millerb38eff82000-04-01 11:09:21 +10002160 id = packet_get_int();
2161 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002162
Damien Millerb38eff82000-04-01 11:09:21 +10002163 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2164 packet_disconnect("Received open confirmation for "
2165 "non-opening channel %d.", id);
2166 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002167 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002168 c->remote_id = remote_id;
2169 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002170
2171 if (compat20) {
2172 c->remote_window = packet_get_int();
2173 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002174 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002175 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002176 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002177 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002178 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002179 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002180 c->remote_window, c->remote_maxpacket);
2181 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002182 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002183}
2184
Ben Lindstrombba81212001-06-25 05:01:22 +00002185static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002186reason2txt(int reason)
2187{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002188 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002189 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2190 return "administratively prohibited";
2191 case SSH2_OPEN_CONNECT_FAILED:
2192 return "connect failed";
2193 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2194 return "unknown channel type";
2195 case SSH2_OPEN_RESOURCE_SHORTAGE:
2196 return "resource shortage";
2197 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002198 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002199}
2200
Damien Millerd79b4242006-03-31 23:11:44 +11002201/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002202void
Damien Miller630d6f42002-01-22 23:17:30 +11002203channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002204{
Kevin Steves12057502001-02-05 14:54:34 +00002205 int id, reason;
2206 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002207 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002208
Damien Millerb38eff82000-04-01 11:09:21 +10002209 id = packet_get_int();
2210 c = channel_lookup(id);
2211
2212 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2213 packet_disconnect("Received open failure for "
2214 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002215 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002216 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002217 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002218 msg = packet_get_string(NULL);
2219 lang = packet_get_string(NULL);
2220 }
Damien Miller996acd22003-04-09 20:59:48 +10002221 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002222 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002223 if (msg != NULL)
2224 xfree(msg);
2225 if (lang != NULL)
2226 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002227 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002228 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002229 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002230 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002231}
2232
Damien Millerd79b4242006-03-31 23:11:44 +11002233/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002234void
Damien Miller630d6f42002-01-22 23:17:30 +11002235channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002236{
2237 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002238 int id;
2239 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002240
2241 if (!compat20)
2242 return;
2243
2244 /* Get the channel number and verify it. */
2245 id = packet_get_int();
2246 c = channel_lookup(id);
2247
Damien Millerd47c62a2005-12-13 19:33:57 +11002248 if (c == NULL) {
2249 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002250 return;
2251 }
2252 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002253 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002254 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002255 c->remote_window += adjust;
2256}
2257
Damien Millerd79b4242006-03-31 23:11:44 +11002258/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002259void
Damien Miller630d6f42002-01-22 23:17:30 +11002260channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002261{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002262 Channel *c = NULL;
2263 u_short host_port;
2264 char *host, *originator_string;
2265 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002266
Ben Lindstrome9c99912001-06-09 00:41:05 +00002267 remote_id = packet_get_int();
2268 host = packet_get_string(NULL);
2269 host_port = packet_get_int();
2270
2271 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2272 originator_string = packet_get_string(NULL);
2273 } else {
2274 originator_string = xstrdup("unknown (remote did not supply name)");
2275 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002276 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002277 sock = channel_connect_to(host, host_port);
2278 if (sock != -1) {
2279 c = channel_new("connected socket",
2280 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2281 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002282 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002283 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002284 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002285 if (c == NULL) {
2286 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2287 packet_put_int(remote_id);
2288 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002289 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002290 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002291}
2292
2293
Ben Lindstrome9c99912001-06-09 00:41:05 +00002294/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295
Ben Lindstrom908afed2001-10-03 17:34:59 +00002296void
2297channel_set_af(int af)
2298{
2299 IPv4or6 = af;
2300}
2301
Damien Millerb16461c2002-01-22 23:29:22 +11002302static int
2303channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2304 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002305{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002306 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002307 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002308 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002309 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002310 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311
Damien Millerb16461c2002-01-22 23:29:22 +11002312 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2313 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002314 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002315
Damien Millerb16461c2002-01-22 23:29:22 +11002316 if (host == NULL) {
2317 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002318 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002319 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002320 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002321 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002322 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002323 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002324
Damien Miller5428f641999-11-25 11:54:57 +11002325 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002326 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002327 * specified address or wildcard. On the client, a specified bind
2328 * address will always override gateway_ports. On the server, a
2329 * gateway_ports of 1 (``yes'') will override the client's
2330 * specification and force a wildcard bind, whereas a value of 2
2331 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002332 * asked for.
2333 *
2334 * Special-case listen_addrs are:
2335 *
2336 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2337 * "" (empty string), "*" -> wildcard v4/v6
2338 * "localhost" -> loopback v4/v6
2339 */
2340 addr = NULL;
2341 if (listen_addr == NULL) {
2342 /* No address specified: default to gateway_ports setting */
2343 if (gateway_ports)
2344 wildcard = 1;
2345 } else if (gateway_ports || is_client) {
2346 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2347 strcmp(listen_addr, "0.0.0.0") == 0) ||
2348 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2349 (!is_client && gateway_ports == 1))
2350 wildcard = 1;
2351 else if (strcmp(listen_addr, "localhost") != 0)
2352 addr = listen_addr;
2353 }
2354
2355 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2356 type, wildcard, (addr == NULL) ? "NULL" : addr);
2357
2358 /*
Damien Miller34132e52000-01-14 15:45:46 +11002359 * getaddrinfo returns a loopback address if the hostname is
2360 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002361 */
Damien Miller34132e52000-01-14 15:45:46 +11002362 memset(&hints, 0, sizeof(hints));
2363 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002364 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002365 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002366 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002367 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2368 if (addr == NULL) {
2369 /* This really shouldn't happen */
2370 packet_disconnect("getaddrinfo: fatal error: %s",
2371 gai_strerror(r));
2372 } else {
Damien Millera7270302005-07-06 09:36:05 +10002373 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002374 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2375 }
Damien Millera7270302005-07-06 09:36:05 +10002376 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002377 }
Damien Miller5428f641999-11-25 11:54:57 +11002378
Damien Miller34132e52000-01-14 15:45:46 +11002379 for (ai = aitop; ai; ai = ai->ai_next) {
2380 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2381 continue;
2382 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2383 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002384 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002385 continue;
2386 }
2387 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002388 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002389 if (sock < 0) {
2390 /* this is no error since kernel may not support ipv6 */
2391 verbose("socket: %.100s", strerror(errno));
2392 continue;
2393 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002394
2395 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002396
Damien Miller34132e52000-01-14 15:45:46 +11002397 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002398
Damien Miller34132e52000-01-14 15:45:46 +11002399 /* Bind the socket to the address. */
2400 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2401 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002402 if (!ai->ai_next)
2403 error("bind: %.100s", strerror(errno));
2404 else
2405 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002406
Damien Miller34132e52000-01-14 15:45:46 +11002407 close(sock);
2408 continue;
2409 }
2410 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002411 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002412 error("listen: %.100s", strerror(errno));
2413 close(sock);
2414 continue;
2415 }
2416 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002417 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002418 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002419 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002420 strlcpy(c->path, host, sizeof(c->path));
2421 c->host_port = port_to_connect;
2422 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002423 success = 1;
2424 }
2425 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002426 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002427 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002428 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002429 return success;
Damien Miller95def091999-11-25 00:26:21 +11002430}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002431
Darren Tuckere7066df2004-05-24 10:18:05 +10002432int
2433channel_cancel_rport_listener(const char *host, u_short port)
2434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002435 u_int i;
2436 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002437
Darren Tucker47eede72005-03-14 23:08:12 +11002438 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002439 Channel *c = channels[i];
2440
2441 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2442 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002443 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002444 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002445 channel_free(c);
2446 found = 1;
2447 }
2448 }
2449
2450 return (found);
2451}
2452
Damien Millerb16461c2002-01-22 23:29:22 +11002453/* protocol local port fwd, used by ssh (and sshd in v1) */
2454int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002455channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002456 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2457{
2458 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002459 listen_host, listen_port, host_to_connect, port_to_connect,
2460 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002461}
2462
2463/* protocol v2 remote port fwd, used by sshd */
2464int
2465channel_setup_remote_fwd_listener(const char *listen_address,
2466 u_short listen_port, int gateway_ports)
2467{
2468 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2469 listen_address, listen_port, NULL, 0, gateway_ports);
2470}
2471
Damien Miller5428f641999-11-25 11:54:57 +11002472/*
2473 * Initiate forwarding of connections to port "port" on remote host through
2474 * the secure channel to host:port from local side.
2475 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002476
Damien Miller4af51302000-04-16 11:18:38 +10002477void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002478channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002479 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002480{
Damien Millerdff50992002-01-22 23:16:32 +11002481 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002482
Damien Miller95def091999-11-25 00:26:21 +11002483 /* Record locally that connection to this host/port is permitted. */
2484 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2485 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002486
Damien Miller95def091999-11-25 00:26:21 +11002487 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002488 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002489 const char *address_to_bind;
2490 if (listen_host == NULL)
2491 address_to_bind = "localhost";
2492 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2493 address_to_bind = "";
2494 else
2495 address_to_bind = listen_host;
2496
Damien Miller33b13562000-04-04 14:38:59 +10002497 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2498 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002499 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002500 packet_put_cstring(address_to_bind);
2501 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002502 packet_send();
2503 packet_write_wait();
2504 /* Assume that server accepts the request */
2505 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002506 } else {
2507 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002508 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002509 packet_put_cstring(host_to_connect);
2510 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002511 packet_send();
2512 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002513
2514 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002515 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002516 switch (type) {
2517 case SSH_SMSG_SUCCESS:
2518 success = 1;
2519 break;
2520 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002521 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002522 break;
2523 default:
2524 /* Unknown packet */
2525 packet_disconnect("Protocol error for port forward request:"
2526 "received packet type %d.", type);
2527 }
2528 }
2529 if (success) {
2530 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2531 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2532 permitted_opens[num_permitted_opens].listen_port = listen_port;
2533 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002534 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002535}
2536
Damien Miller5428f641999-11-25 11:54:57 +11002537/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002538 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002539 * local side.
2540 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002541void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002542channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002543{
2544 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002545
2546 if (!compat20)
2547 return;
2548
2549 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002550 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002551 permitted_opens[i].listen_port == port)
2552 break;
2553 }
2554 if (i >= num_permitted_opens) {
2555 debug("%s: requested forward not found", __func__);
2556 return;
2557 }
2558 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2559 packet_put_cstring("cancel-tcpip-forward");
2560 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002561 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002562 packet_put_int(port);
2563 packet_send();
2564
2565 permitted_opens[i].listen_port = 0;
2566 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002567 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002568 permitted_opens[i].host_to_connect = NULL;
2569}
2570
2571/*
Damien Miller5428f641999-11-25 11:54:57 +11002572 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2573 * listening for the port, and sends back a success reply (or disconnect
2574 * message if there was an error). This never returns if there was an error.
2575 */
Damien Miller4af51302000-04-16 11:18:38 +10002576void
Damien Millere247cc42000-05-07 12:03:14 +10002577channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002578{
Damien Milleraae6c611999-12-06 11:47:28 +11002579 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002580 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002581
Damien Miller95def091999-11-25 00:26:21 +11002582 /* Get arguments from the packet. */
2583 port = packet_get_int();
2584 hostname = packet_get_string(NULL);
2585 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002586
Damien Millerbac2d8a2000-09-05 16:13:06 +11002587#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002588 /*
2589 * Check that an unprivileged user is not trying to forward a
2590 * privileged port.
2591 */
Damien Miller95def091999-11-25 00:26:21 +11002592 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002593 packet_disconnect(
2594 "Requested forwarding of port %d but user is not root.",
2595 port);
2596 if (host_port == 0)
2597 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002598#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002599
Damien Miller0bc1bd82000-11-13 22:57:25 +11002600 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002601 channel_setup_local_fwd_listener(NULL, port, hostname,
2602 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002603
2604 /* Free the argument string. */
2605 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002606}
2607
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002608/*
2609 * Permits opening to any host/port if permitted_opens[] is empty. This is
2610 * usually called by the server, because the user could connect to any port
2611 * anyway, and the server has no way to know but to trust the client anyway.
2612 */
2613void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002614channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002615{
2616 if (num_permitted_opens == 0)
2617 all_opens_permitted = 1;
2618}
2619
Ben Lindstroma3700052001-04-05 23:26:32 +00002620void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002621channel_add_permitted_opens(char *host, int port)
2622{
2623 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2624 fatal("channel_request_remote_forwarding: too many forwards");
2625 debug("allow port forwarding to host %s port %d", host, port);
2626
2627 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2628 permitted_opens[num_permitted_opens].port_to_connect = port;
2629 num_permitted_opens++;
2630
2631 all_opens_permitted = 0;
2632}
2633
Ben Lindstroma3700052001-04-05 23:26:32 +00002634void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002635channel_clear_permitted_opens(void)
2636{
2637 int i;
2638
2639 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002640 if (permitted_opens[i].host_to_connect != NULL)
2641 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002642 num_permitted_opens = 0;
2643
2644}
2645
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002646/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002647static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002648connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002649{
Damien Miller34132e52000-01-14 15:45:46 +11002650 struct addrinfo hints, *ai, *aitop;
2651 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2652 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002653 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002654
Damien Miller34132e52000-01-14 15:45:46 +11002655 memset(&hints, 0, sizeof(hints));
2656 hints.ai_family = IPv4or6;
2657 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002658 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002659 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002660 error("connect_to %.100s: unknown host (%s)", host,
2661 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002662 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002663 }
Damien Miller34132e52000-01-14 15:45:46 +11002664 for (ai = aitop; ai; ai = ai->ai_next) {
2665 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2666 continue;
2667 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2668 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002669 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002670 continue;
2671 }
Damien Miller2372ace2003-05-14 13:42:23 +10002672 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002673 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002674 if (ai->ai_next == NULL)
2675 error("socket: %.100s", strerror(errno));
2676 else
2677 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002678 continue;
2679 }
Damien Miller232711f2004-06-15 10:35:30 +10002680 if (set_nonblock(sock) == -1)
2681 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002682 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2683 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002684 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002685 strerror(errno));
2686 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002687 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002688 }
2689 break; /* success */
2690
2691 }
2692 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002693 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002694 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002695 return -1;
2696 }
2697 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002698 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002699 return sock;
2700}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002701
Damien Miller0bc1bd82000-11-13 22:57:25 +11002702int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002703channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002704{
2705 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002706
Damien Miller0bc1bd82000-11-13 22:57:25 +11002707 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002708 if (permitted_opens[i].host_to_connect != NULL &&
2709 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002710 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002711 permitted_opens[i].host_to_connect,
2712 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002713 error("WARNING: Server requests forwarding for unknown listen_port %d",
2714 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002715 return -1;
2716}
Damien Millerb38eff82000-04-01 11:09:21 +10002717
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002718/* Check if connecting to that port is permitted and connect. */
2719int
2720channel_connect_to(const char *host, u_short port)
2721{
2722 int i, permit;
2723
2724 permit = all_opens_permitted;
2725 if (!permit) {
2726 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002727 if (permitted_opens[i].host_to_connect != NULL &&
2728 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002729 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2730 permit = 1;
2731
2732 }
2733 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002734 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002735 "but the request was denied.", host, port);
2736 return -1;
2737 }
2738 return connect_to(host, port);
2739}
2740
Damien Miller0e220db2004-06-15 10:34:08 +10002741void
2742channel_send_window_changes(void)
2743{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002744 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002745 struct winsize ws;
2746
2747 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002748 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002749 channels[i]->type != SSH_CHANNEL_OPEN)
2750 continue;
2751 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2752 continue;
2753 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002754 packet_put_int((u_int)ws.ws_col);
2755 packet_put_int((u_int)ws.ws_row);
2756 packet_put_int((u_int)ws.ws_xpixel);
2757 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002758 packet_send();
2759 }
2760}
2761
Ben Lindstrome9c99912001-06-09 00:41:05 +00002762/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002763
Damien Miller5428f641999-11-25 11:54:57 +11002764/*
2765 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002766 * Returns 0 and a suitable display number for the DISPLAY variable
2767 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002768 */
Kevin Steves366298c2001-12-19 17:58:01 +00002769int
Damien Miller95c249f2002-02-05 12:11:34 +11002770x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002771 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002772{
Damien Millere7378562001-12-21 14:58:35 +11002773 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002774 int display_number, sock;
2775 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002776 struct addrinfo hints, *ai, *aitop;
2777 char strport[NI_MAXSERV];
2778 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002779
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002780 if (chanids == NULL)
2781 return -1;
2782
Damien Millera34a28b1999-12-14 10:47:15 +11002783 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002784 display_number < MAX_DISPLAYS;
2785 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002786 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002787 memset(&hints, 0, sizeof(hints));
2788 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002789 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002790 hints.ai_socktype = SOCK_STREAM;
2791 snprintf(strport, sizeof strport, "%d", port);
2792 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2793 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002794 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002795 }
Damien Miller34132e52000-01-14 15:45:46 +11002796 for (ai = aitop; ai; ai = ai->ai_next) {
2797 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2798 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002799 sock = socket(ai->ai_family, ai->ai_socktype,
2800 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002801 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002802 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002803 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002804 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002805 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002806 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002807 debug("x11_create_display_inet: Socket family %d not supported",
2808 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002809 continue;
2810 }
Damien Miller34132e52000-01-14 15:45:46 +11002811 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002812#ifdef IPV6_V6ONLY
2813 if (ai->ai_family == AF_INET6) {
2814 int on = 1;
2815 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2816 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2817 }
2818#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002819 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002820 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002821 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002822 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002823
2824 if (ai->ai_next)
2825 continue;
2826
Damien Miller34132e52000-01-14 15:45:46 +11002827 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002828 close(socks[n]);
2829 }
2830 num_socks = 0;
2831 break;
2832 }
2833 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002834#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002835 if (num_socks == NUM_SOCKS)
2836 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002837#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002838 if (x11_use_localhost) {
2839 if (num_socks == NUM_SOCKS)
2840 break;
2841 } else {
2842 break;
2843 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002844#endif
Damien Miller95def091999-11-25 00:26:21 +11002845 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002846 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002847 if (num_socks > 0)
2848 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849 }
Damien Miller95def091999-11-25 00:26:21 +11002850 if (display_number >= MAX_DISPLAYS) {
2851 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002852 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002853 }
Damien Miller95def091999-11-25 00:26:21 +11002854 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002855 for (n = 0; n < num_socks; n++) {
2856 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002857 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002858 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002859 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002860 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002861 }
Damien Miller95def091999-11-25 00:26:21 +11002862 }
Damien Miller34132e52000-01-14 15:45:46 +11002863
Damien Miller34132e52000-01-14 15:45:46 +11002864 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002865 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002866 for (n = 0; n < num_socks; n++) {
2867 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002868 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002869 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2870 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002871 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002872 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002873 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002874 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002875 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002876
Kevin Steves366298c2001-12-19 17:58:01 +00002877 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002878 *display_numberp = display_number;
2879 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002880}
2881
Ben Lindstrombba81212001-06-25 05:01:22 +00002882static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002883connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002884{
Damien Miller95def091999-11-25 00:26:21 +11002885 int sock;
2886 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002887
Damien Miller3afe3752001-12-21 12:39:51 +11002888 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2889 if (sock < 0)
2890 error("socket: %.100s", strerror(errno));
2891 memset(&addr, 0, sizeof(addr));
2892 addr.sun_family = AF_UNIX;
2893 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002894 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002895 return sock;
2896 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002897 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2898 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002899}
2900
Damien Millerbd483e72000-04-30 10:00:53 +10002901int
2902x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002903{
Damien Miller57c4e872006-03-31 23:11:07 +11002904 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002905 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002906 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002907 struct addrinfo hints, *ai, *aitop;
2908 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002909 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002910
Damien Miller95def091999-11-25 00:26:21 +11002911 /* Try to open a socket for the local X server. */
2912 display = getenv("DISPLAY");
2913 if (!display) {
2914 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002915 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002916 }
Damien Miller5428f641999-11-25 11:54:57 +11002917 /*
2918 * Now we decode the value of the DISPLAY variable and make a
2919 * connection to the real X server.
2920 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002921
Damien Miller5428f641999-11-25 11:54:57 +11002922 /*
2923 * Check if it is a unix domain socket. Unix domain displays are in
2924 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2925 */
Damien Miller95def091999-11-25 00:26:21 +11002926 if (strncmp(display, "unix:", 5) == 0 ||
2927 display[0] == ':') {
2928 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11002929 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002930 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002931 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002932 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002933 }
2934 /* Create a socket. */
2935 sock = connect_local_xsocket(display_number);
2936 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002937 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002938
2939 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002940 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002941 }
Damien Miller5428f641999-11-25 11:54:57 +11002942 /*
2943 * Connect to an inet socket. The DISPLAY value is supposedly
2944 * hostname:d[.s], where hostname may also be numeric IP address.
2945 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002946 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002947 cp = strchr(buf, ':');
2948 if (!cp) {
2949 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002950 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002951 }
Damien Miller95def091999-11-25 00:26:21 +11002952 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002953 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11002954 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002955 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002956 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002957 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002958 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002959
Damien Miller34132e52000-01-14 15:45:46 +11002960 /* Look up the host address */
2961 memset(&hints, 0, sizeof(hints));
2962 hints.ai_family = IPv4or6;
2963 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11002964 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11002965 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2966 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002967 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002968 }
Damien Miller34132e52000-01-14 15:45:46 +11002969 for (ai = aitop; ai; ai = ai->ai_next) {
2970 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002971 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002972 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002973 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002974 continue;
2975 }
2976 /* Connect it to the display. */
2977 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11002978 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002979 6000 + display_number, strerror(errno));
2980 close(sock);
2981 continue;
2982 }
2983 /* Success */
2984 break;
Damien Miller34132e52000-01-14 15:45:46 +11002985 }
Damien Miller34132e52000-01-14 15:45:46 +11002986 freeaddrinfo(aitop);
2987 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11002988 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002989 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002990 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002991 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002992 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002993 return sock;
2994}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002995
Damien Millerbd483e72000-04-30 10:00:53 +10002996/*
2997 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2998 * the remote channel number. We should do whatever we want, and respond
2999 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3000 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003001
Damien Millerbd483e72000-04-30 10:00:53 +10003002void
Damien Miller630d6f42002-01-22 23:17:30 +11003003x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003004{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003005 Channel *c = NULL;
3006 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003007 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003008
3009 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003010
3011 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003012
3013 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003014 remote_host = packet_get_string(NULL);
3015 } else {
3016 remote_host = xstrdup("unknown (remote did not supply name)");
3017 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003018 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003019
3020 /* Obtain a connection to the real X display. */
3021 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003022 if (sock != -1) {
3023 /* Allocate a channel for this connection. */
3024 c = channel_new("connected x11 socket",
3025 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3026 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003027 c->remote_id = remote_id;
3028 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003029 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003030 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003031 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003032 /* Send refusal to the remote host. */
3033 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003034 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003035 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003036 /* Send a confirmation to the remote host. */
3037 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003038 packet_put_int(remote_id);
3039 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003040 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003041 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003042}
3043
Damien Miller69b69aa2000-10-28 14:19:58 +11003044/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3045void
Damien Miller630d6f42002-01-22 23:17:30 +11003046deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003047{
3048 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003049
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003050 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003051 case SSH_SMSG_AGENT_OPEN:
3052 error("Warning: ssh server tried agent forwarding.");
3053 break;
3054 case SSH_SMSG_X11_OPEN:
3055 error("Warning: ssh server tried X11 forwarding.");
3056 break;
3057 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003058 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003059 break;
3060 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003061 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003062 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3063 packet_put_int(rchan);
3064 packet_send();
3065}
3066
Damien Miller5428f641999-11-25 11:54:57 +11003067/*
3068 * Requests forwarding of X11 connections, generates fake authentication
3069 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003070 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003071 */
Damien Miller4af51302000-04-16 11:18:38 +10003072void
Damien Miller17e7ed02005-06-17 12:54:33 +10003073x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003074 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003075{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003076 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003077 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003078 char *new_data;
3079 int screen_number;
3080 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003081 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003082
Damien Millerf92c0792005-07-06 09:45:26 +10003083 if (x11_saved_display == NULL)
3084 x11_saved_display = xstrdup(disp);
3085 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003086 error("x11_request_forwarding_with_spoofing: different "
3087 "$DISPLAY already forwarded");
3088 return;
3089 }
3090
Damien Miller17e7ed02005-06-17 12:54:33 +10003091 cp = disp;
3092 if (disp)
3093 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003094 if (cp)
3095 cp = strchr(cp, '.');
3096 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003097 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003098 else
3099 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003100
Damien Miller13390022005-07-06 09:44:19 +10003101 if (x11_saved_proto == NULL) {
3102 /* Save protocol name. */
3103 x11_saved_proto = xstrdup(proto);
3104 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003105 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003106 * of the same length.
3107 */
3108 x11_saved_data = xmalloc(data_len);
3109 x11_fake_data = xmalloc(data_len);
3110 for (i = 0; i < data_len; i++) {
3111 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3112 fatal("x11_request_forwarding: bad "
3113 "authentication data: %.100s", data);
3114 if (i % 4 == 0)
3115 rnd = arc4random();
3116 x11_saved_data[i] = value;
3117 x11_fake_data[i] = rnd & 0xff;
3118 rnd >>= 8;
3119 }
3120 x11_saved_data_len = data_len;
3121 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003122 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003123
Damien Miller95def091999-11-25 00:26:21 +11003124 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003125 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003126
Damien Miller95def091999-11-25 00:26:21 +11003127 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003128 if (compat20) {
3129 channel_request_start(client_session_id, "x11-req", 0);
3130 packet_put_char(0); /* XXX bool single connection */
3131 } else {
3132 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3133 }
3134 packet_put_cstring(proto);
3135 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003136 packet_put_int(screen_number);
3137 packet_send();
3138 packet_write_wait();
3139 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003140}
3141
Ben Lindstrome9c99912001-06-09 00:41:05 +00003142
3143/* -- agent forwarding */
3144
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003145/* Sends a message to the server to request authentication fd forwarding. */
3146
Damien Miller4af51302000-04-16 11:18:38 +10003147void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003148auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149{
Damien Miller95def091999-11-25 00:26:21 +11003150 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3151 packet_send();
3152 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003153}