blob: 30c6d3870d71c1a41fb83a517101fd5e5b00800e [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110016 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110042
43#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
45#include <sys/un.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110046
47#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
49#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "ssh1.h"
51#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "packet.h"
53#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "log.h"
55#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100059#include "key.h"
60#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110061#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100062#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Ben Lindstrome9c99912001-06-09 00:41:05 +000064/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Pointer to an array containing all allocated channels. The array is
68 * dynamically extended as needed.
69 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000070static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller5428f641999-11-25 11:54:57 +110072/*
73 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000074 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110075 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100076static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Miller5428f641999-11-25 11:54:57 +110078/*
79 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000080 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110081 */
Damien Miller5e953212001-01-30 09:14:00 +110082static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Ben Lindstrome9c99912001-06-09 00:41:05 +000085/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * Data structure for storing which hosts are permitted for forward requests.
89 * The local sides of any remote forwards are stored in this array to prevent
90 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
91 * network (which might be behind a firewall).
92 */
Damien Miller95def091999-11-25 00:26:21 +110093typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100094 char *host_to_connect; /* Connect to 'host'. */
95 u_short port_to_connect; /* Connect to 'port'. */
96 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097} ForwardPermission;
98
99/* List of all permitted host/port pairs to connect. */
100static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000101
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102/* Number of permitted host/port pairs in the array. */
103static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * If this is true, all opens are permitted. This is the case on the server
106 * on which we have to trust the client anyway, and the user could do
107 * anything after logging in anyway.
108 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109static int all_opens_permitted = 0;
110
Ben Lindstrome9c99912001-06-09 00:41:05 +0000111
112/* -- X11 forwarding */
113
114/* Maximum number of fake X11 displays to try. */
115#define MAX_DISPLAYS 1000
116
Damien Miller13390022005-07-06 09:44:19 +1000117/* Saved X11 local (client) display. */
118static char *x11_saved_display = NULL;
119
Ben Lindstrome9c99912001-06-09 00:41:05 +0000120/* Saved X11 authentication protocol name. */
121static char *x11_saved_proto = NULL;
122
123/* Saved X11 authentication data. This is the real data. */
124static char *x11_saved_data = NULL;
125static u_int x11_saved_data_len = 0;
126
127/*
128 * Fake X11 authentication data. This is what the server will be sending us;
129 * we should replace any occurrences of this by the real data.
130 */
131static char *x11_fake_data = NULL;
132static u_int x11_fake_data_len;
133
134
135/* -- agent forwarding */
136
137#define NUM_SOCKS 10
138
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000139/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000140static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000141
Ben Lindstrome9c99912001-06-09 00:41:05 +0000142/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000143static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000144
Ben Lindstrome9c99912001-06-09 00:41:05 +0000145/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000146
147Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100148channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000149{
150 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000151
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000152 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100153 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000154 return NULL;
155 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000156 c = channels[id];
157 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100158 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000159 return NULL;
160 }
161 return c;
162}
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100165 * Returns the channel if it is allowed to receive protocol messages.
166 * Private channels, like listening sockets, may not receive messages.
167 */
168Channel *
169channel_lookup(int id)
170{
171 Channel *c;
172
173 if ((c = channel_by_id(id)) == NULL)
174 return (NULL);
175
176 switch(c->type) {
177 case SSH_CHANNEL_X11_OPEN:
178 case SSH_CHANNEL_LARVAL:
179 case SSH_CHANNEL_CONNECTING:
180 case SSH_CHANNEL_DYNAMIC:
181 case SSH_CHANNEL_OPENING:
182 case SSH_CHANNEL_OPEN:
183 case SSH_CHANNEL_INPUT_DRAINING:
184 case SSH_CHANNEL_OUTPUT_DRAINING:
185 return (c);
186 break;
187 }
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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Ben Lindstrombba81212001-06-25 05:01:22 +0000197static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100198channel_register_fds(Channel *c, int rfd, int wfd, int efd,
199 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200{
Damien Miller95def091999-11-25 00:26:21 +1100201 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100202 channel_max_fd = MAX(channel_max_fd, rfd);
203 channel_max_fd = MAX(channel_max_fd, wfd);
204 channel_max_fd = MAX(channel_max_fd, efd);
205
Damien Miller5428f641999-11-25 11:54:57 +1100206 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000207
Damien Miller6f83b8e2000-05-02 09:23:45 +1000208 c->rfd = rfd;
209 c->wfd = wfd;
210 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000211 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000212 c->efd = efd;
213 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100214
Damien Miller79438cc2001-02-16 12:34:57 +1100215 /* XXX ugly hack: nonblock is only set by the server */
216 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000217 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100218 c->isatty = 1;
219 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000220 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100221 c->self, c->wfd);
222 }
223 } else {
224 c->isatty = 0;
225 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000226 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100227
Damien Miller69b69aa2000-10-28 14:19:58 +1100228 /* enable nonblocking mode */
229 if (nonblock) {
230 if (rfd != -1)
231 set_nonblock(rfd);
232 if (wfd != -1)
233 set_nonblock(wfd);
234 if (efd != -1)
235 set_nonblock(efd);
236 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000237}
238
239/*
240 * Allocate a new channel object and set its type and socket. This will cause
241 * remote_name to be freed.
242 */
243
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000244Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000245channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000246 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000247{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000248 int found;
249 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000250 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Damien Miller95def091999-11-25 00:26:21 +1100252 /* Do initial allocation if this is the first call. */
253 if (channels_alloc == 0) {
254 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000255 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100256 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000257 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100258 }
259 /* Try to find a free slot where to put the new channel. */
260 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000261 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100262 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000263 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100264 break;
265 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000266 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100267 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100268 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000269 if (channels_alloc > 10000)
270 fatal("channel_new: internal error: channels_alloc %d "
271 "too big.", channels_alloc);
Damien Miller5efcecc2003-09-17 07:31:14 +1000272 channels = xrealloc(channels,
273 (channels_alloc + 10) * sizeof(Channel *));
274 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100275 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100276 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000277 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100278 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000279 /* Initialize and return new channel. */
280 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000281 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100282 buffer_init(&c->input);
283 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000284 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100285 c->ostate = CHAN_OUTPUT_OPEN;
286 c->istate = CHAN_INPUT_OPEN;
287 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100288 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100289 c->self = found;
290 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000291 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000292 c->local_window = window;
293 c->local_window_max = window;
294 c->local_consumed = 0;
295 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100296 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000297 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 c->remote_window = 0;
299 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000300 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100301 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000302 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100303 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100304 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000305 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000306 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100307 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100308 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000309 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000311
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000312static int
313channel_find_maxfd(void)
314{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000315 u_int i;
316 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000317 Channel *c;
318
319 for (i = 0; i < channels_alloc; i++) {
320 c = channels[i];
321 if (c != NULL) {
322 max = MAX(max, c->rfd);
323 max = MAX(max, c->wfd);
324 max = MAX(max, c->efd);
325 }
326 }
327 return max;
328}
329
330int
331channel_close_fd(int *fdp)
332{
333 int ret = 0, fd = *fdp;
334
335 if (fd != -1) {
336 ret = close(fd);
337 *fdp = -1;
338 if (fd == channel_max_fd)
339 channel_max_fd = channel_find_maxfd();
340 }
341 return ret;
342}
343
Damien Miller6f83b8e2000-05-02 09:23:45 +1000344/* Close all channel fd/socket. */
345
Ben Lindstrombba81212001-06-25 05:01:22 +0000346static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000347channel_close_fds(Channel *c)
348{
Damien Miller0e220db2004-06-15 10:34:08 +1000349 debug3("channel %d: close_fds r %d w %d e %d c %d",
350 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000351
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000352 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000353 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000354 channel_close_fd(&c->rfd);
355 channel_close_fd(&c->wfd);
356 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000357}
358
359/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360
Damien Miller4af51302000-04-16 11:18:38 +1000361void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000362channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000364 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000365 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000366
367 for (n = 0, i = 0; i < channels_alloc; i++)
368 if (channels[i])
369 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000370 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000371 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000372
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000373 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000374 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000375 xfree(s);
376
Damien Miller6f83b8e2000-05-02 09:23:45 +1000377 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000378 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000379 if (c->ctl_fd != -1)
380 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000381 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000382 buffer_free(&c->input);
383 buffer_free(&c->output);
384 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000385 if (c->remote_name) {
386 xfree(c->remote_name);
387 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100388 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 channels[c->self] = NULL;
390 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391}
392
Ben Lindstrome9c99912001-06-09 00:41:05 +0000393void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000394channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000395{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000396 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000397
Ben Lindstrom601e4362001-06-21 03:19:23 +0000398 for (i = 0; i < channels_alloc; i++)
399 if (channels[i] != NULL)
400 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000401}
402
403/*
404 * Closes the sockets/fds of all channels. This is used to close extra file
405 * descriptors after a fork.
406 */
407
408void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000409channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000410{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000411 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000412
413 for (i = 0; i < channels_alloc; i++)
414 if (channels[i] != NULL)
415 channel_close_fds(channels[i]);
416}
417
418/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000419 * Stop listening to channels.
420 */
421
422void
423channel_stop_listening(void)
424{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000425 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000426 Channel *c;
427
428 for (i = 0; i < channels_alloc; i++) {
429 c = channels[i];
430 if (c != NULL) {
431 switch (c->type) {
432 case SSH_CHANNEL_AUTH_SOCKET:
433 case SSH_CHANNEL_PORT_LISTENER:
434 case SSH_CHANNEL_RPORT_LISTENER:
435 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000436 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000437 channel_free(c);
438 break;
439 }
440 }
441 }
442}
443
444/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445 * Returns true if no channel has too much buffered data, and false if one or
446 * more channel is overfull.
447 */
448
449int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000450channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451{
452 u_int i;
453 Channel *c;
454
455 for (i = 0; i < channels_alloc; i++) {
456 c = channels[i];
457 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000458#if 0
459 if (!compat20 &&
460 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100461 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000462 c->self, buffer_len(&c->input));
463 return 0;
464 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000465#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000466 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000467 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000468 c->self, buffer_len(&c->output),
469 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000470 return 0;
471 }
472 }
473 }
474 return 1;
475}
476
477/* Returns true if any channel is still open. */
478
479int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000480channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000481{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000482 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000483 Channel *c;
484
485 for (i = 0; i < channels_alloc; i++) {
486 c = channels[i];
487 if (c == NULL)
488 continue;
489 switch (c->type) {
490 case SSH_CHANNEL_X11_LISTENER:
491 case SSH_CHANNEL_PORT_LISTENER:
492 case SSH_CHANNEL_RPORT_LISTENER:
493 case SSH_CHANNEL_CLOSED:
494 case SSH_CHANNEL_AUTH_SOCKET:
495 case SSH_CHANNEL_DYNAMIC:
496 case SSH_CHANNEL_CONNECTING:
497 case SSH_CHANNEL_ZOMBIE:
498 continue;
499 case SSH_CHANNEL_LARVAL:
500 if (!compat20)
501 fatal("cannot happen: SSH_CHANNEL_LARVAL");
502 continue;
503 case SSH_CHANNEL_OPENING:
504 case SSH_CHANNEL_OPEN:
505 case SSH_CHANNEL_X11_OPEN:
506 return 1;
507 case SSH_CHANNEL_INPUT_DRAINING:
508 case SSH_CHANNEL_OUTPUT_DRAINING:
509 if (!compat13)
510 fatal("cannot happen: OUT_DRAIN");
511 return 1;
512 default:
513 fatal("channel_still_open: bad channel type %d", c->type);
514 /* NOTREACHED */
515 }
516 }
517 return 0;
518}
519
520/* Returns the id of an open channel suitable for keepaliving */
521
522int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000523channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000524{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000525 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526 Channel *c;
527
528 for (i = 0; i < channels_alloc; i++) {
529 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000530 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000531 continue;
532 switch (c->type) {
533 case SSH_CHANNEL_CLOSED:
534 case SSH_CHANNEL_DYNAMIC:
535 case SSH_CHANNEL_X11_LISTENER:
536 case SSH_CHANNEL_PORT_LISTENER:
537 case SSH_CHANNEL_RPORT_LISTENER:
538 case SSH_CHANNEL_OPENING:
539 case SSH_CHANNEL_CONNECTING:
540 case SSH_CHANNEL_ZOMBIE:
541 continue;
542 case SSH_CHANNEL_LARVAL:
543 case SSH_CHANNEL_AUTH_SOCKET:
544 case SSH_CHANNEL_OPEN:
545 case SSH_CHANNEL_X11_OPEN:
546 return i;
547 case SSH_CHANNEL_INPUT_DRAINING:
548 case SSH_CHANNEL_OUTPUT_DRAINING:
549 if (!compat13)
550 fatal("cannot happen: OUT_DRAIN");
551 return i;
552 default:
553 fatal("channel_find_open: bad channel type %d", c->type);
554 /* NOTREACHED */
555 }
556 }
557 return -1;
558}
559
560
561/*
562 * Returns a message describing the currently open forwarded connections,
563 * suitable for sending to the client. The message contains crlf pairs for
564 * newlines.
565 */
566
567char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000568channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000569{
570 Buffer buffer;
571 Channel *c;
572 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000573 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000574
575 buffer_init(&buffer);
576 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
577 buffer_append(&buffer, buf, strlen(buf));
578 for (i = 0; i < channels_alloc; i++) {
579 c = channels[i];
580 if (c == NULL)
581 continue;
582 switch (c->type) {
583 case SSH_CHANNEL_X11_LISTENER:
584 case SSH_CHANNEL_PORT_LISTENER:
585 case SSH_CHANNEL_RPORT_LISTENER:
586 case SSH_CHANNEL_CLOSED:
587 case SSH_CHANNEL_AUTH_SOCKET:
588 case SSH_CHANNEL_ZOMBIE:
589 continue;
590 case SSH_CHANNEL_LARVAL:
591 case SSH_CHANNEL_OPENING:
592 case SSH_CHANNEL_CONNECTING:
593 case SSH_CHANNEL_DYNAMIC:
594 case SSH_CHANNEL_OPEN:
595 case SSH_CHANNEL_X11_OPEN:
596 case SSH_CHANNEL_INPUT_DRAINING:
597 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000598 snprintf(buf, sizeof buf,
599 " #%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 +0000600 c->self, c->remote_name,
601 c->type, c->remote_id,
602 c->istate, buffer_len(&c->input),
603 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000604 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605 buffer_append(&buffer, buf, strlen(buf));
606 continue;
607 default:
608 fatal("channel_open_message: bad channel type %d", c->type);
609 /* NOTREACHED */
610 }
611 }
612 buffer_append(&buffer, "\0", 1);
613 cp = xstrdup(buffer_ptr(&buffer));
614 buffer_free(&buffer);
615 return cp;
616}
617
618void
619channel_send_open(int id)
620{
621 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000622
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000624 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625 return;
626 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000627 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000628 packet_start(SSH2_MSG_CHANNEL_OPEN);
629 packet_put_cstring(c->ctype);
630 packet_put_int(c->self);
631 packet_put_int(c->local_window);
632 packet_put_int(c->local_maxpacket);
633 packet_send();
634}
635
636void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000637channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000639 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000640
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000642 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 return;
644 }
Damien Miller0e220db2004-06-15 10:34:08 +1000645 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646 packet_start(SSH2_MSG_CHANNEL_REQUEST);
647 packet_put_int(c->remote_id);
648 packet_put_cstring(service);
649 packet_put_char(wantconfirm);
650}
651void
Damien Miller0e220db2004-06-15 10:34:08 +1000652channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653{
654 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000655
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000657 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000658 return;
659 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100660 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000661 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662}
663void
Damien Miller39eda6e2005-11-05 14:52:50 +1100664channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665{
Damien Millerd47c62a2005-12-13 19:33:57 +1100666 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000667
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000669 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670 return;
671 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000672 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100673 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674}
675void
676channel_cancel_cleanup(int id)
677{
Damien Millerd47c62a2005-12-13 19:33:57 +1100678 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000679
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000681 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682 return;
683 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000684 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100685 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686}
687void
Damien Miller077b2382005-12-31 16:22:32 +1100688channel_register_filter(int id, channel_infilter_fn *ifn,
689 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690{
691 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000692
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000694 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000695 return;
696 }
Damien Miller077b2382005-12-31 16:22:32 +1100697 c->input_filter = ifn;
698 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699}
700
701void
702channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100703 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704{
705 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000706
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
708 fatal("channel_activate for non-larval channel %d.", id);
709 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
710 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100711 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
713 packet_put_int(c->remote_id);
714 packet_put_int(c->local_window);
715 packet_send();
716}
717
Damien Miller5428f641999-11-25 11:54:57 +1100718/*
Damien Millerb38eff82000-04-01 11:09:21 +1000719 * 'channel_pre*' are called just before select() to add any bits relevant to
720 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100721 */
Damien Millerb38eff82000-04-01 11:09:21 +1000722/*
723 * 'channel_post*': perform any appropriate operations for channels which
724 * have events pending.
725 */
726typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
727chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
728chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
729
Ben Lindstrombba81212001-06-25 05:01:22 +0000730static void
Damien Millerb38eff82000-04-01 11:09:21 +1000731channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
732{
733 FD_SET(c->sock, readset);
734}
735
Ben Lindstrombba81212001-06-25 05:01:22 +0000736static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000737channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
738{
739 debug3("channel %d: waiting for connection", c->self);
740 FD_SET(c->sock, writeset);
741}
742
Ben Lindstrombba81212001-06-25 05:01:22 +0000743static void
Damien Millerb38eff82000-04-01 11:09:21 +1000744channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
745{
746 if (buffer_len(&c->input) < packet_get_maxsize())
747 FD_SET(c->sock, readset);
748 if (buffer_len(&c->output) > 0)
749 FD_SET(c->sock, writeset);
750}
751
Ben Lindstrombba81212001-06-25 05:01:22 +0000752static void
Damien Millerde6987c2002-01-22 23:20:40 +1100753channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000754{
Damien Millerde6987c2002-01-22 23:20:40 +1100755 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000756
Darren Tucker11327cc2005-03-14 23:22:25 +1100757 /* check buffer limits */
758 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
759
Damien Miller33b13562000-04-04 14:38:59 +1000760 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100761 limit > 0 &&
762 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000763 FD_SET(c->rfd, readset);
764 if (c->ostate == CHAN_OUTPUT_OPEN ||
765 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
766 if (buffer_len(&c->output) > 0) {
767 FD_SET(c->wfd, writeset);
768 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000769 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000770 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
771 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000772 else
773 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000774 }
775 }
776 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100777 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000778 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
779 buffer_len(&c->extended) > 0)
780 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000781 else if (!(c->flags & CHAN_EOF_SENT) &&
782 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000783 buffer_len(&c->extended) < c->remote_window)
784 FD_SET(c->efd, readset);
785 }
Damien Miller0e220db2004-06-15 10:34:08 +1000786 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000787 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000788 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
789 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000790}
791
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Damien Millerb38eff82000-04-01 11:09:21 +1000793channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
794{
795 if (buffer_len(&c->input) == 0) {
796 packet_start(SSH_MSG_CHANNEL_CLOSE);
797 packet_put_int(c->remote_id);
798 packet_send();
799 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000800 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000801 }
802}
803
Ben Lindstrombba81212001-06-25 05:01:22 +0000804static void
Damien Millerb38eff82000-04-01 11:09:21 +1000805channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
806{
807 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000808 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000809 else
Damien Millerb38eff82000-04-01 11:09:21 +1000810 FD_SET(c->sock, writeset);
811}
812
813/*
814 * This is a special state for X11 authentication spoofing. An opened X11
815 * connection (when authentication spoofing is being done) remains in this
816 * state until the first packet has been completely read. The authentication
817 * data in that packet is then substituted by the real data if it matches the
818 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000819 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000820 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000821 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000823x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000824{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000825 u_char *ucp;
826 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000827
828 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000829 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000830 return 0;
831
832 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100833 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000834 if (ucp[0] == 0x42) { /* Byte order MSB first. */
835 proto_len = 256 * ucp[6] + ucp[7];
836 data_len = 256 * ucp[8] + ucp[9];
837 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
838 proto_len = ucp[6] + 256 * ucp[7];
839 data_len = ucp[8] + 256 * ucp[9];
840 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000841 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100842 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000843 return -1;
844 }
845
846 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000847 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000848 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
849 return 0;
850
851 /* Check if authentication protocol matches. */
852 if (proto_len != strlen(x11_saved_proto) ||
853 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000854 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000855 return -1;
856 }
857 /* Check if authentication data matches our fake data. */
858 if (data_len != x11_fake_data_len ||
859 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
860 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000861 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000862 return -1;
863 }
864 /* Check fake data length */
865 if (x11_fake_data_len != x11_saved_data_len) {
866 error("X11 fake_data_len %d != saved_data_len %d",
867 x11_fake_data_len, x11_saved_data_len);
868 return -1;
869 }
870 /*
871 * Received authentication protocol and data match
872 * our fake data. Substitute the fake data with real
873 * data.
874 */
875 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
876 x11_saved_data, x11_saved_data_len);
877 return 1;
878}
879
Ben Lindstrombba81212001-06-25 05:01:22 +0000880static void
Damien Millerb38eff82000-04-01 11:09:21 +1000881channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
882{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000883 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000884
Damien Millerb38eff82000-04-01 11:09:21 +1000885 if (ret == 1) {
886 /* Start normal processing for the channel. */
887 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000888 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000889 } else if (ret == -1) {
890 /*
891 * We have received an X11 connection that has bad
892 * authentication information.
893 */
Damien Miller996acd22003-04-09 20:59:48 +1000894 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000895 buffer_clear(&c->input);
896 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000897 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000898 c->sock = -1;
899 c->type = SSH_CHANNEL_CLOSED;
900 packet_start(SSH_MSG_CHANNEL_CLOSE);
901 packet_put_int(c->remote_id);
902 packet_send();
903 }
904}
905
Ben Lindstrombba81212001-06-25 05:01:22 +0000906static void
Damien Millerbd483e72000-04-30 10:00:53 +1000907channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000908{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000909 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000910
911 /* c->force_drain = 1; */
912
Damien Millerb38eff82000-04-01 11:09:21 +1000913 if (ret == 1) {
914 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100915 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000916 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000917 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000918 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100919 chan_read_failed(c);
920 buffer_clear(&c->input);
921 chan_ibuf_empty(c);
922 buffer_clear(&c->output);
923 /* for proto v1, the peer will send an IEOF */
924 if (compat20)
925 chan_write_failed(c);
926 else
927 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000928 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000929 }
930}
931
Ben Lindstromb3921512001-04-11 15:57:50 +0000932/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000934channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935{
Damien Millera10f5612002-09-12 09:49:15 +1000936 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000937 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100938 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000939 struct {
940 u_int8_t version;
941 u_int8_t command;
942 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000943 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000944 } s4_req, s4_rsp;
945
Ben Lindstromb3921512001-04-11 15:57:50 +0000946 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000947
948 have = buffer_len(&c->input);
949 len = sizeof(s4_req);
950 if (have < len)
951 return 0;
952 p = buffer_ptr(&c->input);
953 for (found = 0, i = len; i < have; i++) {
954 if (p[i] == '\0') {
955 found = 1;
956 break;
957 }
958 if (i > 1024) {
959 /* the peer is probably sending garbage */
960 debug("channel %d: decode socks4: too long",
961 c->self);
962 return -1;
963 }
964 }
965 if (!found)
966 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000967 buffer_get(&c->input, (char *)&s4_req.version, 1);
968 buffer_get(&c->input, (char *)&s4_req.command, 1);
969 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000970 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000971 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000972 p = buffer_ptr(&c->input);
973 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000974 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000975 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000976 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000977 c->self, len, have);
978 strlcpy(username, p, sizeof(username));
979 buffer_consume(&c->input, len);
980 buffer_consume(&c->input, 1); /* trailing '\0' */
981
Ben Lindstromb3921512001-04-11 15:57:50 +0000982 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000983 strlcpy(c->path, host, sizeof(c->path));
984 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100985
Damien Millerfbdeece2003-09-02 22:52:31 +1000986 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000987 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000988
Ben Lindstromb3921512001-04-11 15:57:50 +0000989 if (s4_req.command != 1) {
990 debug("channel %d: cannot handle: socks4 cn %d",
991 c->self, s4_req.command);
992 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000993 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000994 s4_rsp.version = 0; /* vn: 0 for reply */
995 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000996 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000997 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000998 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000999 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001000}
1001
Darren Tucker46471c92003-07-03 13:55:19 +10001002/* try to decode a socks5 header */
1003#define SSH_SOCKS5_AUTHDONE 0x1000
1004#define SSH_SOCKS5_NOAUTH 0x00
1005#define SSH_SOCKS5_IPV4 0x01
1006#define SSH_SOCKS5_DOMAIN 0x03
1007#define SSH_SOCKS5_IPV6 0x04
1008#define SSH_SOCKS5_CONNECT 0x01
1009#define SSH_SOCKS5_SUCCESS 0x00
1010
1011static int
1012channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset)
1013{
1014 struct {
1015 u_int8_t version;
1016 u_int8_t command;
1017 u_int8_t reserved;
1018 u_int8_t atyp;
1019 } s5_req, s5_rsp;
1020 u_int16_t dest_port;
1021 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +10001022 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001023
1024 debug2("channel %d: decode socks5", c->self);
1025 p = buffer_ptr(&c->input);
1026 if (p[0] != 0x05)
1027 return -1;
1028 have = buffer_len(&c->input);
1029 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1030 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001031 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001032 return 0;
1033 nmethods = p[1];
1034 if (have < nmethods + 2)
1035 return 0;
1036 /* look for method: "NO AUTHENTICATION REQUIRED" */
1037 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1038 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1039 found = 1;
1040 break;
1041 }
1042 }
1043 if (!found) {
1044 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1045 c->self);
1046 return -1;
1047 }
1048 buffer_consume(&c->input, nmethods + 2);
1049 buffer_put_char(&c->output, 0x05); /* version */
1050 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1051 FD_SET(c->sock, writeset);
1052 c->flags |= SSH_SOCKS5_AUTHDONE;
1053 debug2("channel %d: socks5 auth done", c->self);
1054 return 0; /* need more */
1055 }
1056 debug2("channel %d: socks5 post auth", c->self);
1057 if (have < sizeof(s5_req)+1)
1058 return 0; /* need more */
1059 memcpy((char *)&s5_req, p, sizeof(s5_req));
1060 if (s5_req.version != 0x05 ||
1061 s5_req.command != SSH_SOCKS5_CONNECT ||
1062 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001063 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001064 return -1;
1065 }
Darren Tucker47eede72005-03-14 23:08:12 +11001066 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001067 case SSH_SOCKS5_IPV4:
1068 addrlen = 4;
1069 af = AF_INET;
1070 break;
1071 case SSH_SOCKS5_DOMAIN:
1072 addrlen = p[sizeof(s5_req)];
1073 af = -1;
1074 break;
1075 case SSH_SOCKS5_IPV6:
1076 addrlen = 16;
1077 af = AF_INET6;
1078 break;
1079 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001080 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001081 return -1;
1082 }
1083 if (have < 4 + addrlen + 2)
1084 return 0;
1085 buffer_consume(&c->input, sizeof(s5_req));
1086 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1087 buffer_consume(&c->input, 1); /* host string length */
1088 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1089 buffer_get(&c->input, (char *)&dest_port, 2);
1090 dest_addr[addrlen] = '\0';
1091 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001092 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001093 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1094 return -1;
1095 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001096
Damien Millerfbdeece2003-09-02 22:52:31 +10001097 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001098 c->self, c->path, c->host_port, s5_req.command);
1099
1100 s5_rsp.version = 0x05;
1101 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1102 s5_rsp.reserved = 0; /* ignored */
1103 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1104 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1105 dest_port = 0; /* ignored */
1106
1107 buffer_append(&c->output, (char *)&s5_rsp, sizeof(s5_rsp));
1108 buffer_append(&c->output, (char *)&dest_addr, sizeof(struct in_addr));
1109 buffer_append(&c->output, (char *)&dest_port, sizeof(dest_port));
1110 return 1;
1111}
1112
Ben Lindstromb3921512001-04-11 15:57:50 +00001113/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001114static void
Ben Lindstromb3921512001-04-11 15:57:50 +00001115channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
1116{
1117 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001118 u_int have;
1119 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001120
1121 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001122 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001123 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001124 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001125 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001126 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001127 /* need more */
1128 FD_SET(c->sock, readset);
1129 return;
1130 }
1131 /* try to guess the protocol */
1132 p = buffer_ptr(&c->input);
1133 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001134 case 0x04:
1135 ret = channel_decode_socks4(c, readset, writeset);
1136 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001137 case 0x05:
1138 ret = channel_decode_socks5(c, readset, writeset);
1139 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001140 default:
1141 ret = -1;
1142 break;
1143 }
1144 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001145 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001146 } else if (ret == 0) {
1147 debug2("channel %d: pre_dynamic: need more", c->self);
1148 /* need more */
1149 FD_SET(c->sock, readset);
1150 } else {
1151 /* switch to the next state */
1152 c->type = SSH_CHANNEL_OPENING;
1153 port_open_helper(c, "direct-tcpip");
1154 }
1155}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001156
Damien Millerb38eff82000-04-01 11:09:21 +10001157/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001158static void
Damien Millerb38eff82000-04-01 11:09:21 +10001159channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
1160{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001161 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001162 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001163 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001164 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001165 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001166 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001167
1168 if (FD_ISSET(c->sock, readset)) {
1169 debug("X11 connection requested.");
1170 addrlen = sizeof(addr);
1171 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001172 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001173 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001174 channel_close_fd(&c->sock);
1175 chan_mark_dead(c);
1176 }
Damien Millerb38eff82000-04-01 11:09:21 +10001177 if (newsock < 0) {
1178 error("accept: %.100s", strerror(errno));
1179 return;
1180 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001181 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001182 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001183 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001184 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001185 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001186
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001187 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001188 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001189 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001190 if (compat20) {
1191 packet_start(SSH2_MSG_CHANNEL_OPEN);
1192 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001193 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001194 packet_put_int(nc->local_window_max);
1195 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001196 /* originator ipaddr and port */
1197 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001198 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001199 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001200 } else {
1201 packet_put_int(remote_port);
1202 }
Damien Millerbd483e72000-04-30 10:00:53 +10001203 packet_send();
1204 } else {
1205 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001206 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001207 if (packet_get_protocol_flags() &
1208 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001209 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001210 packet_send();
1211 }
Damien Millerd83ff352001-01-30 09:19:34 +11001212 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001213 }
1214}
1215
Ben Lindstrombba81212001-06-25 05:01:22 +00001216static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001217port_open_helper(Channel *c, char *rtype)
1218{
1219 int direct;
1220 char buf[1024];
1221 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001222 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001223
1224 direct = (strcmp(rtype, "direct-tcpip") == 0);
1225
1226 snprintf(buf, sizeof buf,
1227 "%s: listening port %d for %.100s port %d, "
1228 "connect from %.200s port %d",
1229 rtype, c->listening_port, c->path, c->host_port,
1230 remote_ipaddr, remote_port);
1231
1232 xfree(c->remote_name);
1233 c->remote_name = xstrdup(buf);
1234
1235 if (compat20) {
1236 packet_start(SSH2_MSG_CHANNEL_OPEN);
1237 packet_put_cstring(rtype);
1238 packet_put_int(c->self);
1239 packet_put_int(c->local_window_max);
1240 packet_put_int(c->local_maxpacket);
1241 if (direct) {
1242 /* target host, port */
1243 packet_put_cstring(c->path);
1244 packet_put_int(c->host_port);
1245 } else {
1246 /* listen address, port */
1247 packet_put_cstring(c->path);
1248 packet_put_int(c->listening_port);
1249 }
1250 /* originator host and port */
1251 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001252 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001253 packet_send();
1254 } else {
1255 packet_start(SSH_MSG_PORT_OPEN);
1256 packet_put_int(c->self);
1257 packet_put_cstring(c->path);
1258 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001259 if (packet_get_protocol_flags() &
1260 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001261 packet_put_cstring(c->remote_name);
1262 packet_send();
1263 }
1264 xfree(remote_ipaddr);
1265}
1266
Damien Miller5e7fd072005-11-05 14:53:39 +11001267static void
1268channel_set_reuseaddr(int fd)
1269{
1270 int on = 1;
1271
1272 /*
1273 * Set socket options.
1274 * Allow local port reuse in TIME_WAIT.
1275 */
1276 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1277 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1278}
1279
Damien Millerb38eff82000-04-01 11:09:21 +10001280/*
1281 * This socket is listening for connections to a forwarded TCP/IP port.
1282 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001283static void
Damien Millerb38eff82000-04-01 11:09:21 +10001284channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1285{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001286 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001287 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001288 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001289 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001290 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001291
Damien Millerb38eff82000-04-01 11:09:21 +10001292 if (FD_ISSET(c->sock, readset)) {
1293 debug("Connection to port %d forwarding "
1294 "to %.100s port %d requested.",
1295 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001296
Damien Miller4623a752001-10-10 15:03:58 +10001297 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1298 nextstate = SSH_CHANNEL_OPENING;
1299 rtype = "forwarded-tcpip";
1300 } else {
1301 if (c->host_port == 0) {
1302 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001303 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001304 } else {
1305 nextstate = SSH_CHANNEL_OPENING;
1306 rtype = "direct-tcpip";
1307 }
1308 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001309
Damien Millerb38eff82000-04-01 11:09:21 +10001310 addrlen = sizeof(addr);
1311 newsock = accept(c->sock, &addr, &addrlen);
1312 if (newsock < 0) {
1313 error("accept: %.100s", strerror(errno));
1314 return;
1315 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001316 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001317 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1318 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001319 nc->listening_port = c->listening_port;
1320 nc->host_port = c->host_port;
1321 strlcpy(nc->path, c->path, sizeof(nc->path));
1322
Damien Miller4623a752001-10-10 15:03:58 +10001323 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1324 /*
1325 * do not call the channel_post handler until
1326 * this flag has been reset by a pre-handler.
1327 * otherwise the FD_ISSET calls might overflow
1328 */
1329 nc->delayed = 1;
1330 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001331 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001332 }
Damien Millerb38eff82000-04-01 11:09:21 +10001333 }
1334}
1335
1336/*
1337 * This is the authentication agent socket listening for connections from
1338 * clients.
1339 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001340static void
Damien Millerb38eff82000-04-01 11:09:21 +10001341channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1342{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001343 Channel *nc;
1344 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001345 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001346 socklen_t addrlen;
1347
1348 if (FD_ISSET(c->sock, readset)) {
1349 addrlen = sizeof(addr);
1350 newsock = accept(c->sock, &addr, &addrlen);
1351 if (newsock < 0) {
1352 error("accept from auth socket: %.100s", strerror(errno));
1353 return;
1354 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001355 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001356 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1357 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001358 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001359 if (compat20) {
1360 packet_start(SSH2_MSG_CHANNEL_OPEN);
1361 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001362 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001363 packet_put_int(c->local_window_max);
1364 packet_put_int(c->local_maxpacket);
1365 } else {
1366 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001367 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001368 }
Damien Millerb38eff82000-04-01 11:09:21 +10001369 packet_send();
1370 }
1371}
1372
Ben Lindstrombba81212001-06-25 05:01:22 +00001373static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001374channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1375{
Ben Lindstrom69128662001-05-08 20:07:39 +00001376 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001377 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001378
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001379 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001380 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001381 err = errno;
1382 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001383 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001384 if (err == 0) {
1385 debug("channel %d: connected", c->self);
1386 c->type = SSH_CHANNEL_OPEN;
1387 if (compat20) {
1388 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1389 packet_put_int(c->remote_id);
1390 packet_put_int(c->self);
1391 packet_put_int(c->local_window);
1392 packet_put_int(c->local_maxpacket);
1393 } else {
1394 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1395 packet_put_int(c->remote_id);
1396 packet_put_int(c->self);
1397 }
1398 } else {
1399 debug("channel %d: not connected: %s",
1400 c->self, strerror(err));
1401 if (compat20) {
1402 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1403 packet_put_int(c->remote_id);
1404 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1405 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1406 packet_put_cstring(strerror(err));
1407 packet_put_cstring("");
1408 }
1409 } else {
1410 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1411 packet_put_int(c->remote_id);
1412 }
1413 chan_mark_dead(c);
1414 }
1415 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001416 }
1417}
1418
Ben Lindstrombba81212001-06-25 05:01:22 +00001419static int
Damien Millerb38eff82000-04-01 11:09:21 +10001420channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1421{
Darren Tucker11327cc2005-03-14 23:22:25 +11001422 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001423 int len;
1424
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001425 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001426 FD_ISSET(c->rfd, readset)) {
1427 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001428 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1429 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001430 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001431 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001432 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001433 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001434 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001435 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001436 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001437 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001438 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001439 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001440 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001441 } else {
1442 chan_read_failed(c);
1443 }
1444 return -1;
1445 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001446 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001447 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001448 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001449 chan_read_failed(c);
1450 }
Damien Millerd27b9472005-12-13 19:29:02 +11001451 } else if (c->datagram) {
1452 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001453 } else {
1454 buffer_append(&c->input, buf, len);
1455 }
Damien Millerb38eff82000-04-01 11:09:21 +10001456 }
1457 return 1;
1458}
Ben Lindstrombba81212001-06-25 05:01:22 +00001459static int
Damien Millerb38eff82000-04-01 11:09:21 +10001460channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1461{
Ben Lindstrome229b252001-03-05 06:28:06 +00001462 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001463 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001464 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001465 int len;
1466
1467 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001468 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001469 FD_ISSET(c->wfd, writeset) &&
1470 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001471 if (c->output_filter != NULL) {
1472 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1473 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001474 if (c->type != SSH_CHANNEL_OPEN)
1475 chan_mark_dead(c);
1476 else
1477 chan_write_failed(c);
1478 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001479 }
1480 } else if (c->datagram) {
1481 buf = data = buffer_get_string(&c->output, &dlen);
1482 } else {
1483 buf = data = buffer_ptr(&c->output);
1484 dlen = buffer_len(&c->output);
1485 }
1486
Damien Millerd27b9472005-12-13 19:29:02 +11001487 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001488 /* ignore truncated writes, datagrams might get lost */
1489 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001490 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001491 xfree(data);
1492 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1493 return 1;
1494 if (len <= 0) {
1495 if (c->type != SSH_CHANNEL_OPEN)
1496 chan_mark_dead(c);
1497 else
1498 chan_write_failed(c);
1499 return -1;
1500 }
1501 return 1;
1502 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001503#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001504 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001505 if (compat20 && c->wfd_isatty)
1506 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001507#endif
Damien Miller077b2382005-12-31 16:22:32 +11001508
1509 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001510 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1511 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001512 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001513 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001514 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001515 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001516 return -1;
1517 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001518 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001519 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001520 c->type = SSH_CHANNEL_INPUT_DRAINING;
1521 } else {
1522 chan_write_failed(c);
1523 }
1524 return -1;
1525 }
Damien Miller077b2382005-12-31 16:22:32 +11001526 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001527 if (tcgetattr(c->wfd, &tio) == 0 &&
1528 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1529 /*
1530 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001531 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001532 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001533 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001534 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001535 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001536 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001537 }
1538 }
Damien Millerb38eff82000-04-01 11:09:21 +10001539 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001540 if (compat20 && len > 0) {
1541 c->local_consumed += len;
1542 }
1543 }
1544 return 1;
1545}
Ben Lindstrombba81212001-06-25 05:01:22 +00001546static int
Damien Miller33b13562000-04-04 14:38:59 +10001547channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1548{
Darren Tucker11327cc2005-03-14 23:22:25 +11001549 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001550 int len;
1551
Damien Miller1383bd82000-04-06 12:32:37 +10001552/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001553 if (c->efd != -1) {
1554 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1555 FD_ISSET(c->efd, writeset) &&
1556 buffer_len(&c->extended) > 0) {
1557 len = write(c->efd, buffer_ptr(&c->extended),
1558 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001559 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001560 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001561 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1562 return 1;
1563 if (len <= 0) {
1564 debug2("channel %d: closing write-efd %d",
1565 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001566 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001567 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001568 buffer_consume(&c->extended, len);
1569 c->local_consumed += len;
1570 }
1571 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1572 FD_ISSET(c->efd, readset)) {
1573 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001574 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001575 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001576 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1577 return 1;
1578 if (len <= 0) {
1579 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001580 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001581 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001582 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001583 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001584 }
Damien Miller33b13562000-04-04 14:38:59 +10001585 }
1586 }
1587 return 1;
1588}
Ben Lindstrombba81212001-06-25 05:01:22 +00001589static int
Damien Miller0e220db2004-06-15 10:34:08 +10001590channel_handle_ctl(Channel *c, fd_set * readset, fd_set * writeset)
1591{
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}
1616static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001617channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001618{
Ben Lindstromb3921512001-04-11 15:57:50 +00001619 if (c->type == SSH_CHANNEL_OPEN &&
1620 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001621 c->local_window < c->local_window_max/2 &&
1622 c->local_consumed > 0) {
1623 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1624 packet_put_int(c->remote_id);
1625 packet_put_int(c->local_consumed);
1626 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001627 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001628 c->self, c->local_window,
1629 c->local_consumed);
1630 c->local_window += c->local_consumed;
1631 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001632 }
1633 return 1;
1634}
1635
Ben Lindstrombba81212001-06-25 05:01:22 +00001636static void
Damien Millerde6987c2002-01-22 23:20:40 +11001637channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001638{
Damien Miller4623a752001-10-10 15:03:58 +10001639 if (c->delayed)
1640 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001641 channel_handle_rfd(c, readset, writeset);
1642 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001643 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001644 return;
Damien Miller33b13562000-04-04 14:38:59 +10001645 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001646 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001647 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001648}
1649
Ben Lindstrombba81212001-06-25 05:01:22 +00001650static void
Damien Millerb38eff82000-04-01 11:09:21 +10001651channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1652{
1653 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001654
Damien Millerb38eff82000-04-01 11:09:21 +10001655 /* Send buffered output data to the socket. */
1656 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1657 len = write(c->sock, buffer_ptr(&c->output),
1658 buffer_len(&c->output));
1659 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001660 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001661 else
1662 buffer_consume(&c->output, len);
1663 }
1664}
1665
Ben Lindstrombba81212001-06-25 05:01:22 +00001666static void
Damien Miller33b13562000-04-04 14:38:59 +10001667channel_handler_init_20(void)
1668{
Damien Millerde6987c2002-01-22 23:20:40 +11001669 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001670 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001671 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001672 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001673 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001674 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001675 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001676 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001677
Damien Millerde6987c2002-01-22 23:20:40 +11001678 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001679 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001680 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001681 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001682 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001683 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001684 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001685}
1686
Ben Lindstrombba81212001-06-25 05:01:22 +00001687static void
Damien Millerb38eff82000-04-01 11:09:21 +10001688channel_handler_init_13(void)
1689{
1690 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1691 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1692 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1693 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1694 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1695 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1696 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001697 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001698 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001699
Damien Millerde6987c2002-01-22 23:20:40 +11001700 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001701 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1702 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1703 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1704 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001705 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001706 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001707}
1708
Ben Lindstrombba81212001-06-25 05:01:22 +00001709static void
Damien Millerb38eff82000-04-01 11:09:21 +10001710channel_handler_init_15(void)
1711{
Damien Millerde6987c2002-01-22 23:20:40 +11001712 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001713 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001714 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1715 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1716 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001717 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001718 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001719
1720 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1721 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1722 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001723 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001724 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001725 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001726}
1727
Ben Lindstrombba81212001-06-25 05:01:22 +00001728static void
Damien Millerb38eff82000-04-01 11:09:21 +10001729channel_handler_init(void)
1730{
1731 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001732
Damien Miller9f0f5c62001-12-21 14:45:46 +11001733 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001734 channel_pre[i] = NULL;
1735 channel_post[i] = NULL;
1736 }
Damien Miller33b13562000-04-04 14:38:59 +10001737 if (compat20)
1738 channel_handler_init_20();
1739 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001740 channel_handler_init_13();
1741 else
1742 channel_handler_init_15();
1743}
1744
Damien Miller3ec27592001-10-12 11:35:04 +10001745/* gc dead channels */
1746static void
1747channel_garbage_collect(Channel *c)
1748{
1749 if (c == NULL)
1750 return;
1751 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001752 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001753 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001754 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001755 c->detach_user(c->self, NULL);
1756 /* if we still have a callback */
1757 if (c->detach_user != NULL)
1758 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001759 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001760 }
1761 if (!chan_is_dead(c, 1))
1762 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001763 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001764 channel_free(c);
1765}
1766
Ben Lindstrombba81212001-06-25 05:01:22 +00001767static void
Damien Millerb38eff82000-04-01 11:09:21 +10001768channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1769{
1770 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001771 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001772 Channel *c;
1773
1774 if (!did_init) {
1775 channel_handler_init();
1776 did_init = 1;
1777 }
1778 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001779 c = channels[i];
1780 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001781 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001782 if (ftab[c->type] != NULL)
1783 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001784 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001785 }
1786}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001787
Ben Lindstrome9c99912001-06-09 00:41:05 +00001788/*
1789 * Allocate/update select bitmasks and add any bits relevant to channels in
1790 * select bitmasks.
1791 */
Damien Miller4af51302000-04-16 11:18:38 +10001792void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001793channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001794 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001795{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001796 u_int n, sz;
Damien Miller5e953212001-01-30 09:14:00 +11001797
1798 n = MAX(*maxfdp, channel_max_fd);
1799
1800 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001801 /* perhaps check sz < nalloc/2 and shrink? */
1802 if (*readsetp == NULL || sz > *nallocp) {
1803 *readsetp = xrealloc(*readsetp, sz);
1804 *writesetp = xrealloc(*writesetp, sz);
1805 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001806 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001807 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001808 memset(*readsetp, 0, sz);
1809 memset(*writesetp, 0, sz);
1810
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001811 if (!rekeying)
1812 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001813}
1814
Ben Lindstrome9c99912001-06-09 00:41:05 +00001815/*
1816 * After select, perform any appropriate operations for channels which have
1817 * events pending.
1818 */
Damien Miller4af51302000-04-16 11:18:38 +10001819void
Damien Miller95def091999-11-25 00:26:21 +11001820channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001821{
Damien Millerb38eff82000-04-01 11:09:21 +10001822 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001823}
1824
Ben Lindstrome9c99912001-06-09 00:41:05 +00001825
Damien Miller5e953212001-01-30 09:14:00 +11001826/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001827
Damien Miller4af51302000-04-16 11:18:38 +10001828void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001829channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001830{
Damien Millerb38eff82000-04-01 11:09:21 +10001831 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001832 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001833
Damien Miller95def091999-11-25 00:26:21 +11001834 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001835 c = channels[i];
1836 if (c == NULL)
1837 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001838
Ben Lindstrome9c99912001-06-09 00:41:05 +00001839 /*
1840 * We are only interested in channels that can have buffered
1841 * incoming data.
1842 */
Damien Miller34132e52000-01-14 15:45:46 +11001843 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001844 if (c->type != SSH_CHANNEL_OPEN &&
1845 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001846 continue;
1847 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001848 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001849 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001850 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001851 if (compat20 &&
1852 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001853 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001854 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001855 continue;
1856 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001857
Damien Miller95def091999-11-25 00:26:21 +11001858 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001859 if ((c->istate == CHAN_INPUT_OPEN ||
1860 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1861 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001862 if (c->datagram) {
1863 if (len > 0) {
1864 u_char *data;
1865 u_int dlen;
1866
1867 data = buffer_get_string(&c->input,
1868 &dlen);
1869 packet_start(SSH2_MSG_CHANNEL_DATA);
1870 packet_put_int(c->remote_id);
1871 packet_put_string(data, dlen);
1872 packet_send();
1873 c->remote_window -= dlen + 4;
1874 xfree(data);
1875 }
1876 continue;
1877 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001878 /*
1879 * Send some data for the other side over the secure
1880 * connection.
1881 */
Damien Miller33b13562000-04-04 14:38:59 +10001882 if (compat20) {
1883 if (len > c->remote_window)
1884 len = c->remote_window;
1885 if (len > c->remote_maxpacket)
1886 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001887 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001888 if (packet_is_interactive()) {
1889 if (len > 1024)
1890 len = 512;
1891 } else {
1892 /* Keep the packets at reasonable size. */
1893 if (len > packet_get_maxsize()/2)
1894 len = packet_get_maxsize()/2;
1895 }
Damien Miller95def091999-11-25 00:26:21 +11001896 }
Damien Millerb38eff82000-04-01 11:09:21 +10001897 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001898 packet_start(compat20 ?
1899 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001900 packet_put_int(c->remote_id);
1901 packet_put_string(buffer_ptr(&c->input), len);
1902 packet_send();
1903 buffer_consume(&c->input, len);
1904 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001905 }
1906 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001907 if (compat13)
1908 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001909 /*
1910 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001911 * tell peer, that we will not send more data: send IEOF.
1912 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001913 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001914 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001915 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1916 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001917 else
1918 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001919 }
Damien Miller33b13562000-04-04 14:38:59 +10001920 /* Send extended data, i.e. stderr */
1921 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001922 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001923 c->remote_window > 0 &&
1924 (len = buffer_len(&c->extended)) > 0 &&
1925 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001926 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001927 c->self, c->remote_window, buffer_len(&c->extended),
1928 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001929 if (len > c->remote_window)
1930 len = c->remote_window;
1931 if (len > c->remote_maxpacket)
1932 len = c->remote_maxpacket;
1933 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1934 packet_put_int(c->remote_id);
1935 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1936 packet_put_string(buffer_ptr(&c->extended), len);
1937 packet_send();
1938 buffer_consume(&c->extended, len);
1939 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001940 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001941 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001943}
1944
Ben Lindstrome9c99912001-06-09 00:41:05 +00001945
1946/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001947
Damien Miller4af51302000-04-16 11:18:38 +10001948void
Damien Miller630d6f42002-01-22 23:17:30 +11001949channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001950{
Damien Miller34132e52000-01-14 15:45:46 +11001951 int id;
Damien Miller95def091999-11-25 00:26:21 +11001952 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001953 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001954 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001955
Damien Miller95def091999-11-25 00:26:21 +11001956 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001957 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001958 c = channel_lookup(id);
1959 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001960 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001961
Damien Miller95def091999-11-25 00:26:21 +11001962 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001963 if (c->type != SSH_CHANNEL_OPEN &&
1964 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001965 return;
1966
Damien Miller95def091999-11-25 00:26:21 +11001967 /* Get the data. */
1968 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001969
Damien Millera04ad492004-01-21 11:02:09 +11001970 /*
1971 * Ignore data for protocol > 1.3 if output end is no longer open.
1972 * For protocol 2 the sending side is reducing its window as it sends
1973 * data, so we must 'fake' consumption of the data in order to ensure
1974 * that window updates are sent back. Otherwise the connection might
1975 * deadlock.
1976 */
1977 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1978 if (compat20) {
1979 c->local_window -= data_len;
1980 c->local_consumed += data_len;
1981 }
1982 xfree(data);
1983 return;
1984 }
1985
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001986 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001987 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001988 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001989 c->self, data_len, c->local_maxpacket);
1990 }
1991 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001992 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001993 c->self, data_len, c->local_window);
1994 xfree(data);
1995 return;
1996 }
1997 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001998 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001999 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002000 if (c->datagram)
2001 buffer_put_string(&c->output, data, data_len);
2002 else
2003 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002004 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002005}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002006
Damien Miller4af51302000-04-16 11:18:38 +10002007void
Damien Miller630d6f42002-01-22 23:17:30 +11002008channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002009{
2010 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002011 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002012 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002013 Channel *c;
2014
2015 /* Get the channel number and verify it. */
2016 id = packet_get_int();
2017 c = channel_lookup(id);
2018
2019 if (c == NULL)
2020 packet_disconnect("Received extended_data for bad channel %d.", id);
2021 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002022 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002023 return;
2024 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002025 if (c->flags & CHAN_EOF_RCVD) {
2026 if (datafellows & SSH_BUG_EXTEOF)
2027 debug("channel %d: accepting ext data after eof", id);
2028 else
2029 packet_disconnect("Received extended_data after EOF "
2030 "on channel %d.", id);
2031 }
Damien Miller33b13562000-04-04 14:38:59 +10002032 tcode = packet_get_int();
2033 if (c->efd == -1 ||
2034 c->extended_usage != CHAN_EXTENDED_WRITE ||
2035 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002036 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002037 return;
2038 }
2039 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002040 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002041 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002042 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002043 c->self, data_len, c->local_window);
2044 xfree(data);
2045 return;
2046 }
Damien Millerd3444942000-09-30 14:20:03 +11002047 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002048 c->local_window -= data_len;
2049 buffer_append(&c->extended, data, data_len);
2050 xfree(data);
2051}
2052
Damien Miller4af51302000-04-16 11:18:38 +10002053void
Damien Miller630d6f42002-01-22 23:17:30 +11002054channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002055{
2056 int id;
2057 Channel *c;
2058
Damien Millerb38eff82000-04-01 11:09:21 +10002059 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002060 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002061 c = channel_lookup(id);
2062 if (c == NULL)
2063 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2064 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002065
2066 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002067 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002068 debug("channel %d: FORCE input drain", c->self);
2069 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002070 if (buffer_len(&c->input) == 0)
2071 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002072 }
2073
Damien Millerb38eff82000-04-01 11:09:21 +10002074}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002075
Damien Miller4af51302000-04-16 11:18:38 +10002076void
Damien Miller630d6f42002-01-22 23:17:30 +11002077channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002078{
Damien Millerb38eff82000-04-01 11:09:21 +10002079 int id;
2080 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002081
Damien Millerb38eff82000-04-01 11:09:21 +10002082 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002083 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002084 c = channel_lookup(id);
2085 if (c == NULL)
2086 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002087
2088 /*
2089 * Send a confirmation that we have closed the channel and no more
2090 * data is coming for it.
2091 */
Damien Miller95def091999-11-25 00:26:21 +11002092 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002093 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002094 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002095
Damien Miller5428f641999-11-25 11:54:57 +11002096 /*
2097 * If the channel is in closed state, we have sent a close request,
2098 * and the other side will eventually respond with a confirmation.
2099 * Thus, we cannot free the channel here, because then there would be
2100 * no-one to receive the confirmation. The channel gets freed when
2101 * the confirmation arrives.
2102 */
Damien Millerb38eff82000-04-01 11:09:21 +10002103 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002104 /*
2105 * Not a closed channel - mark it as draining, which will
2106 * cause it to be freed later.
2107 */
Damien Miller76765c02002-01-22 23:21:15 +11002108 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002109 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002110 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002111}
2112
Damien Millerb38eff82000-04-01 11:09:21 +10002113/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10002114void
Damien Miller630d6f42002-01-22 23:17:30 +11002115channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002116{
Damien Millerb38eff82000-04-01 11:09:21 +10002117 int id = packet_get_int();
2118 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002119
Damien Miller48b03fc2002-01-22 23:11:40 +11002120 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002121 if (c == NULL)
2122 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2123 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124}
2125
Damien Miller4af51302000-04-16 11:18:38 +10002126void
Damien Miller630d6f42002-01-22 23:17:30 +11002127channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002128{
2129 int id = packet_get_int();
2130 Channel *c = channel_lookup(id);
2131
Damien Miller48b03fc2002-01-22 23:11:40 +11002132 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002133 if (c == NULL)
2134 packet_disconnect("Received close confirmation for "
2135 "out-of-range channel %d.", id);
2136 if (c->type != SSH_CHANNEL_CLOSED)
2137 packet_disconnect("Received close confirmation for "
2138 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002139 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002140}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002141
Damien Miller4af51302000-04-16 11:18:38 +10002142void
Damien Miller630d6f42002-01-22 23:17:30 +11002143channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002144{
Damien Millerb38eff82000-04-01 11:09:21 +10002145 int id, remote_id;
2146 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002147
Damien Millerb38eff82000-04-01 11:09:21 +10002148 id = packet_get_int();
2149 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002150
Damien Millerb38eff82000-04-01 11:09:21 +10002151 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2152 packet_disconnect("Received open confirmation for "
2153 "non-opening channel %d.", id);
2154 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002155 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002156 c->remote_id = remote_id;
2157 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002158
2159 if (compat20) {
2160 c->remote_window = packet_get_int();
2161 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002162 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002163 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002164 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002165 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002166 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002167 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002168 c->remote_window, c->remote_maxpacket);
2169 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002170 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171}
2172
Ben Lindstrombba81212001-06-25 05:01:22 +00002173static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002174reason2txt(int reason)
2175{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002176 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002177 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2178 return "administratively prohibited";
2179 case SSH2_OPEN_CONNECT_FAILED:
2180 return "connect failed";
2181 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2182 return "unknown channel type";
2183 case SSH2_OPEN_RESOURCE_SHORTAGE:
2184 return "resource shortage";
2185 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002186 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002187}
2188
Damien Miller4af51302000-04-16 11:18:38 +10002189void
Damien Miller630d6f42002-01-22 23:17:30 +11002190channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002191{
Kevin Steves12057502001-02-05 14:54:34 +00002192 int id, reason;
2193 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002194 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002195
Damien Millerb38eff82000-04-01 11:09:21 +10002196 id = packet_get_int();
2197 c = channel_lookup(id);
2198
2199 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2200 packet_disconnect("Received open failure for "
2201 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002202 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002203 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002204 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002205 msg = packet_get_string(NULL);
2206 lang = packet_get_string(NULL);
2207 }
Damien Miller996acd22003-04-09 20:59:48 +10002208 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002209 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002210 if (msg != NULL)
2211 xfree(msg);
2212 if (lang != NULL)
2213 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002214 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002215 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002216 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002217 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002218}
2219
Damien Miller33b13562000-04-04 14:38:59 +10002220void
Damien Miller630d6f42002-01-22 23:17:30 +11002221channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002222{
2223 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002224 int id;
2225 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002226
2227 if (!compat20)
2228 return;
2229
2230 /* Get the channel number and verify it. */
2231 id = packet_get_int();
2232 c = channel_lookup(id);
2233
Damien Millerd47c62a2005-12-13 19:33:57 +11002234 if (c == NULL) {
2235 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002236 return;
2237 }
2238 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002239 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002240 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002241 c->remote_window += adjust;
2242}
2243
Damien Miller4af51302000-04-16 11:18:38 +10002244void
Damien Miller630d6f42002-01-22 23:17:30 +11002245channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002246{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002247 Channel *c = NULL;
2248 u_short host_port;
2249 char *host, *originator_string;
2250 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002251
Ben Lindstrome9c99912001-06-09 00:41:05 +00002252 remote_id = packet_get_int();
2253 host = packet_get_string(NULL);
2254 host_port = packet_get_int();
2255
2256 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2257 originator_string = packet_get_string(NULL);
2258 } else {
2259 originator_string = xstrdup("unknown (remote did not supply name)");
2260 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002261 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002262 sock = channel_connect_to(host, host_port);
2263 if (sock != -1) {
2264 c = channel_new("connected socket",
2265 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2266 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002267 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002268 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002269 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002270 if (c == NULL) {
2271 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2272 packet_put_int(remote_id);
2273 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002274 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002275 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002276}
2277
2278
Ben Lindstrome9c99912001-06-09 00:41:05 +00002279/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002280
Ben Lindstrom908afed2001-10-03 17:34:59 +00002281void
2282channel_set_af(int af)
2283{
2284 IPv4or6 = af;
2285}
2286
Damien Millerb16461c2002-01-22 23:29:22 +11002287static int
2288channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2289 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002290{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002291 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002292 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002293 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002294 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002295 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002296
Damien Millerb16461c2002-01-22 23:29:22 +11002297 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2298 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002299 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002300
Damien Millerb16461c2002-01-22 23:29:22 +11002301 if (host == NULL) {
2302 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002303 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002304 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002305 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002306 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002307 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002308 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002309
Damien Miller5428f641999-11-25 11:54:57 +11002310 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002311 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002312 * specified address or wildcard. On the client, a specified bind
2313 * address will always override gateway_ports. On the server, a
2314 * gateway_ports of 1 (``yes'') will override the client's
2315 * specification and force a wildcard bind, whereas a value of 2
2316 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002317 * asked for.
2318 *
2319 * Special-case listen_addrs are:
2320 *
2321 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2322 * "" (empty string), "*" -> wildcard v4/v6
2323 * "localhost" -> loopback v4/v6
2324 */
2325 addr = NULL;
2326 if (listen_addr == NULL) {
2327 /* No address specified: default to gateway_ports setting */
2328 if (gateway_ports)
2329 wildcard = 1;
2330 } else if (gateway_ports || is_client) {
2331 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2332 strcmp(listen_addr, "0.0.0.0") == 0) ||
2333 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2334 (!is_client && gateway_ports == 1))
2335 wildcard = 1;
2336 else if (strcmp(listen_addr, "localhost") != 0)
2337 addr = listen_addr;
2338 }
2339
2340 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2341 type, wildcard, (addr == NULL) ? "NULL" : addr);
2342
2343 /*
Damien Miller34132e52000-01-14 15:45:46 +11002344 * getaddrinfo returns a loopback address if the hostname is
2345 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002346 */
Damien Miller34132e52000-01-14 15:45:46 +11002347 memset(&hints, 0, sizeof(hints));
2348 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002349 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002350 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002351 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002352 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2353 if (addr == NULL) {
2354 /* This really shouldn't happen */
2355 packet_disconnect("getaddrinfo: fatal error: %s",
2356 gai_strerror(r));
2357 } else {
Damien Millera7270302005-07-06 09:36:05 +10002358 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002359 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2360 }
Damien Millera7270302005-07-06 09:36:05 +10002361 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002362 }
Damien Miller5428f641999-11-25 11:54:57 +11002363
Damien Miller34132e52000-01-14 15:45:46 +11002364 for (ai = aitop; ai; ai = ai->ai_next) {
2365 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2366 continue;
2367 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2368 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002369 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002370 continue;
2371 }
2372 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002373 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002374 if (sock < 0) {
2375 /* this is no error since kernel may not support ipv6 */
2376 verbose("socket: %.100s", strerror(errno));
2377 continue;
2378 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002379
2380 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002381
Damien Miller34132e52000-01-14 15:45:46 +11002382 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002383
Damien Miller34132e52000-01-14 15:45:46 +11002384 /* Bind the socket to the address. */
2385 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2386 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002387 if (!ai->ai_next)
2388 error("bind: %.100s", strerror(errno));
2389 else
2390 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002391
Damien Miller34132e52000-01-14 15:45:46 +11002392 close(sock);
2393 continue;
2394 }
2395 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002396 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002397 error("listen: %.100s", strerror(errno));
2398 close(sock);
2399 continue;
2400 }
2401 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002402 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002403 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002404 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002405 strlcpy(c->path, host, sizeof(c->path));
2406 c->host_port = port_to_connect;
2407 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002408 success = 1;
2409 }
2410 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002411 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002412 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002413 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002414 return success;
Damien Miller95def091999-11-25 00:26:21 +11002415}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002416
Darren Tuckere7066df2004-05-24 10:18:05 +10002417int
2418channel_cancel_rport_listener(const char *host, u_short port)
2419{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002420 u_int i;
2421 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002422
Darren Tucker47eede72005-03-14 23:08:12 +11002423 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002424 Channel *c = channels[i];
2425
2426 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2427 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002428 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002429 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002430 channel_free(c);
2431 found = 1;
2432 }
2433 }
2434
2435 return (found);
2436}
2437
Damien Millerb16461c2002-01-22 23:29:22 +11002438/* protocol local port fwd, used by ssh (and sshd in v1) */
2439int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002440channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002441 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2442{
2443 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002444 listen_host, listen_port, host_to_connect, port_to_connect,
2445 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002446}
2447
2448/* protocol v2 remote port fwd, used by sshd */
2449int
2450channel_setup_remote_fwd_listener(const char *listen_address,
2451 u_short listen_port, int gateway_ports)
2452{
2453 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2454 listen_address, listen_port, NULL, 0, gateway_ports);
2455}
2456
Damien Miller5428f641999-11-25 11:54:57 +11002457/*
2458 * Initiate forwarding of connections to port "port" on remote host through
2459 * the secure channel to host:port from local side.
2460 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002461
Damien Miller4af51302000-04-16 11:18:38 +10002462void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002463channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002464 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002465{
Damien Millerdff50992002-01-22 23:16:32 +11002466 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002467
Damien Miller95def091999-11-25 00:26:21 +11002468 /* Record locally that connection to this host/port is permitted. */
2469 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2470 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002471
Damien Miller95def091999-11-25 00:26:21 +11002472 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002473 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002474 const char *address_to_bind;
2475 if (listen_host == NULL)
2476 address_to_bind = "localhost";
2477 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2478 address_to_bind = "";
2479 else
2480 address_to_bind = listen_host;
2481
Damien Miller33b13562000-04-04 14:38:59 +10002482 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2483 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002484 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002485 packet_put_cstring(address_to_bind);
2486 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002487 packet_send();
2488 packet_write_wait();
2489 /* Assume that server accepts the request */
2490 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002491 } else {
2492 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002493 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002494 packet_put_cstring(host_to_connect);
2495 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002496 packet_send();
2497 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002498
2499 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002500 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002501 switch (type) {
2502 case SSH_SMSG_SUCCESS:
2503 success = 1;
2504 break;
2505 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002506 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002507 break;
2508 default:
2509 /* Unknown packet */
2510 packet_disconnect("Protocol error for port forward request:"
2511 "received packet type %d.", type);
2512 }
2513 }
2514 if (success) {
2515 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2516 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2517 permitted_opens[num_permitted_opens].listen_port = listen_port;
2518 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002519 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002520}
2521
Damien Miller5428f641999-11-25 11:54:57 +11002522/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002523 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002524 * local side.
2525 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002526void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002527channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002528{
2529 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002530
2531 if (!compat20)
2532 return;
2533
2534 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002535 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002536 permitted_opens[i].listen_port == port)
2537 break;
2538 }
2539 if (i >= num_permitted_opens) {
2540 debug("%s: requested forward not found", __func__);
2541 return;
2542 }
2543 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2544 packet_put_cstring("cancel-tcpip-forward");
2545 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002546 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002547 packet_put_int(port);
2548 packet_send();
2549
2550 permitted_opens[i].listen_port = 0;
2551 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002552 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002553 permitted_opens[i].host_to_connect = NULL;
2554}
2555
2556/*
Damien Miller5428f641999-11-25 11:54:57 +11002557 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2558 * listening for the port, and sends back a success reply (or disconnect
2559 * message if there was an error). This never returns if there was an error.
2560 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002561
Damien Miller4af51302000-04-16 11:18:38 +10002562void
Damien Millere247cc42000-05-07 12:03:14 +10002563channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002564{
Damien Milleraae6c611999-12-06 11:47:28 +11002565 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002566 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002567
Damien Miller95def091999-11-25 00:26:21 +11002568 /* Get arguments from the packet. */
2569 port = packet_get_int();
2570 hostname = packet_get_string(NULL);
2571 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002572
Damien Millerbac2d8a2000-09-05 16:13:06 +11002573#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002574 /*
2575 * Check that an unprivileged user is not trying to forward a
2576 * privileged port.
2577 */
Damien Miller95def091999-11-25 00:26:21 +11002578 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002579 packet_disconnect(
2580 "Requested forwarding of port %d but user is not root.",
2581 port);
2582 if (host_port == 0)
2583 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002584#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002585
Damien Miller0bc1bd82000-11-13 22:57:25 +11002586 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002587 channel_setup_local_fwd_listener(NULL, port, hostname,
2588 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002589
2590 /* Free the argument string. */
2591 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002592}
2593
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002594/*
2595 * Permits opening to any host/port if permitted_opens[] is empty. This is
2596 * usually called by the server, because the user could connect to any port
2597 * anyway, and the server has no way to know but to trust the client anyway.
2598 */
2599void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002600channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002601{
2602 if (num_permitted_opens == 0)
2603 all_opens_permitted = 1;
2604}
2605
Ben Lindstroma3700052001-04-05 23:26:32 +00002606void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002607channel_add_permitted_opens(char *host, int port)
2608{
2609 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2610 fatal("channel_request_remote_forwarding: too many forwards");
2611 debug("allow port forwarding to host %s port %d", host, port);
2612
2613 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2614 permitted_opens[num_permitted_opens].port_to_connect = port;
2615 num_permitted_opens++;
2616
2617 all_opens_permitted = 0;
2618}
2619
Ben Lindstroma3700052001-04-05 23:26:32 +00002620void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002621channel_clear_permitted_opens(void)
2622{
2623 int i;
2624
2625 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002626 if (permitted_opens[i].host_to_connect != NULL)
2627 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002628 num_permitted_opens = 0;
2629
2630}
2631
2632
2633/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002634static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002635connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002636{
Damien Miller34132e52000-01-14 15:45:46 +11002637 struct addrinfo hints, *ai, *aitop;
2638 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2639 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002640 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002641
Damien Miller34132e52000-01-14 15:45:46 +11002642 memset(&hints, 0, sizeof(hints));
2643 hints.ai_family = IPv4or6;
2644 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002645 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002646 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002647 error("connect_to %.100s: unknown host (%s)", host,
2648 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002649 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002650 }
Damien Miller34132e52000-01-14 15:45:46 +11002651 for (ai = aitop; ai; ai = ai->ai_next) {
2652 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2653 continue;
2654 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2655 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002656 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002657 continue;
2658 }
Damien Miller2372ace2003-05-14 13:42:23 +10002659 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002660 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002661 if (ai->ai_next == NULL)
2662 error("socket: %.100s", strerror(errno));
2663 else
2664 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002665 continue;
2666 }
Damien Miller232711f2004-06-15 10:35:30 +10002667 if (set_nonblock(sock) == -1)
2668 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002669 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2670 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002671 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002672 strerror(errno));
2673 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002674 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002675 }
2676 break; /* success */
2677
2678 }
2679 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002680 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002681 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002682 return -1;
2683 }
2684 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002685 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002686 return sock;
2687}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002688
Damien Miller0bc1bd82000-11-13 22:57:25 +11002689int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002690channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002691{
2692 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002693
Damien Miller0bc1bd82000-11-13 22:57:25 +11002694 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002695 if (permitted_opens[i].host_to_connect != NULL &&
2696 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002697 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002698 permitted_opens[i].host_to_connect,
2699 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002700 error("WARNING: Server requests forwarding for unknown listen_port %d",
2701 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002702 return -1;
2703}
Damien Millerb38eff82000-04-01 11:09:21 +10002704
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002705/* Check if connecting to that port is permitted and connect. */
2706int
2707channel_connect_to(const char *host, u_short port)
2708{
2709 int i, permit;
2710
2711 permit = all_opens_permitted;
2712 if (!permit) {
2713 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002714 if (permitted_opens[i].host_to_connect != NULL &&
2715 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002716 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2717 permit = 1;
2718
2719 }
2720 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002721 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002722 "but the request was denied.", host, port);
2723 return -1;
2724 }
2725 return connect_to(host, port);
2726}
2727
Damien Miller0e220db2004-06-15 10:34:08 +10002728void
2729channel_send_window_changes(void)
2730{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002731 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002732 struct winsize ws;
2733
2734 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002735 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002736 channels[i]->type != SSH_CHANNEL_OPEN)
2737 continue;
2738 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2739 continue;
2740 channel_request_start(i, "window-change", 0);
2741 packet_put_int(ws.ws_col);
2742 packet_put_int(ws.ws_row);
2743 packet_put_int(ws.ws_xpixel);
2744 packet_put_int(ws.ws_ypixel);
2745 packet_send();
2746 }
2747}
2748
Ben Lindstrome9c99912001-06-09 00:41:05 +00002749/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002750
Damien Miller5428f641999-11-25 11:54:57 +11002751/*
2752 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002753 * Returns 0 and a suitable display number for the DISPLAY variable
2754 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002755 */
Kevin Steves366298c2001-12-19 17:58:01 +00002756int
Damien Miller95c249f2002-02-05 12:11:34 +11002757x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002758 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002759{
Damien Millere7378562001-12-21 14:58:35 +11002760 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002761 int display_number, sock;
2762 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002763 struct addrinfo hints, *ai, *aitop;
2764 char strport[NI_MAXSERV];
2765 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002766
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002767 if (chanids == NULL)
2768 return -1;
2769
Damien Millera34a28b1999-12-14 10:47:15 +11002770 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002771 display_number < MAX_DISPLAYS;
2772 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002773 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002774 memset(&hints, 0, sizeof(hints));
2775 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002776 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002777 hints.ai_socktype = SOCK_STREAM;
2778 snprintf(strport, sizeof strport, "%d", port);
2779 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2780 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002781 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002782 }
Damien Miller34132e52000-01-14 15:45:46 +11002783 for (ai = aitop; ai; ai = ai->ai_next) {
2784 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2785 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002786 sock = socket(ai->ai_family, ai->ai_socktype,
2787 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002788 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002789 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002790 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002791 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002792 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002793 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002794 debug("x11_create_display_inet: Socket family %d not supported",
2795 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002796 continue;
2797 }
Damien Miller34132e52000-01-14 15:45:46 +11002798 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002799#ifdef IPV6_V6ONLY
2800 if (ai->ai_family == AF_INET6) {
2801 int on = 1;
2802 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2803 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2804 }
2805#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002806 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002807 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002808 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002809 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002810
2811 if (ai->ai_next)
2812 continue;
2813
Damien Miller34132e52000-01-14 15:45:46 +11002814 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002815 close(socks[n]);
2816 }
2817 num_socks = 0;
2818 break;
2819 }
2820 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002821#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002822 if (num_socks == NUM_SOCKS)
2823 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002824#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002825 if (x11_use_localhost) {
2826 if (num_socks == NUM_SOCKS)
2827 break;
2828 } else {
2829 break;
2830 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002831#endif
Damien Miller95def091999-11-25 00:26:21 +11002832 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002833 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002834 if (num_socks > 0)
2835 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002836 }
Damien Miller95def091999-11-25 00:26:21 +11002837 if (display_number >= MAX_DISPLAYS) {
2838 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002839 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002840 }
Damien Miller95def091999-11-25 00:26:21 +11002841 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002842 for (n = 0; n < num_socks; n++) {
2843 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002844 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002845 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002846 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002847 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002848 }
Damien Miller95def091999-11-25 00:26:21 +11002849 }
Damien Miller34132e52000-01-14 15:45:46 +11002850
Damien Miller34132e52000-01-14 15:45:46 +11002851 /* Allocate a channel for each socket. */
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002852 *chanids = xmalloc(sizeof(**chanids) * (num_socks + 1));
Damien Miller34132e52000-01-14 15:45:46 +11002853 for (n = 0; n < num_socks; n++) {
2854 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002855 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002856 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2857 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002858 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002859 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002860 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002861 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002862 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863
Kevin Steves366298c2001-12-19 17:58:01 +00002864 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002865 *display_numberp = display_number;
2866 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002867}
2868
Ben Lindstrombba81212001-06-25 05:01:22 +00002869static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002870connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002871{
Damien Miller95def091999-11-25 00:26:21 +11002872 int sock;
2873 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002874
Damien Miller3afe3752001-12-21 12:39:51 +11002875 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2876 if (sock < 0)
2877 error("socket: %.100s", strerror(errno));
2878 memset(&addr, 0, sizeof(addr));
2879 addr.sun_family = AF_UNIX;
2880 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2881 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2882 return sock;
2883 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002884 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2885 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002886}
2887
Damien Millerbd483e72000-04-30 10:00:53 +10002888int
2889x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002890{
Damien Miller398e1cf2002-02-05 11:52:13 +11002891 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002892 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002893 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002894 struct addrinfo hints, *ai, *aitop;
2895 char strport[NI_MAXSERV];
2896 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002897
Damien Miller95def091999-11-25 00:26:21 +11002898 /* Try to open a socket for the local X server. */
2899 display = getenv("DISPLAY");
2900 if (!display) {
2901 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002902 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002903 }
Damien Miller5428f641999-11-25 11:54:57 +11002904 /*
2905 * Now we decode the value of the DISPLAY variable and make a
2906 * connection to the real X server.
2907 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002908
Damien Miller5428f641999-11-25 11:54:57 +11002909 /*
2910 * Check if it is a unix domain socket. Unix domain displays are in
2911 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2912 */
Damien Miller95def091999-11-25 00:26:21 +11002913 if (strncmp(display, "unix:", 5) == 0 ||
2914 display[0] == ':') {
2915 /* Connect to the unix domain socket. */
2916 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2917 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002918 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002919 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002920 }
2921 /* Create a socket. */
2922 sock = connect_local_xsocket(display_number);
2923 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002924 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002925
2926 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002927 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002928 }
Damien Miller5428f641999-11-25 11:54:57 +11002929 /*
2930 * Connect to an inet socket. The DISPLAY value is supposedly
2931 * hostname:d[.s], where hostname may also be numeric IP address.
2932 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002933 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002934 cp = strchr(buf, ':');
2935 if (!cp) {
2936 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002937 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002938 }
Damien Miller95def091999-11-25 00:26:21 +11002939 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002940 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002941 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2942 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002943 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002944 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002945 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002946
Damien Miller34132e52000-01-14 15:45:46 +11002947 /* Look up the host address */
2948 memset(&hints, 0, sizeof(hints));
2949 hints.ai_family = IPv4or6;
2950 hints.ai_socktype = SOCK_STREAM;
2951 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2952 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2953 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002954 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002955 }
Damien Miller34132e52000-01-14 15:45:46 +11002956 for (ai = aitop; ai; ai = ai->ai_next) {
2957 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002958 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002959 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002960 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002961 continue;
2962 }
2963 /* Connect it to the display. */
2964 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002965 debug2("connect %.100s port %d: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002966 6000 + display_number, strerror(errno));
2967 close(sock);
2968 continue;
2969 }
2970 /* Success */
2971 break;
Damien Miller34132e52000-01-14 15:45:46 +11002972 }
Damien Miller34132e52000-01-14 15:45:46 +11002973 freeaddrinfo(aitop);
2974 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002975 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002976 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002977 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002978 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002979 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002980 return sock;
2981}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002982
Damien Millerbd483e72000-04-30 10:00:53 +10002983/*
2984 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2985 * the remote channel number. We should do whatever we want, and respond
2986 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2987 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002988
Damien Millerbd483e72000-04-30 10:00:53 +10002989void
Damien Miller630d6f42002-01-22 23:17:30 +11002990x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002991{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002992 Channel *c = NULL;
2993 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002994 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002995
2996 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002997
2998 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002999
3000 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003001 remote_host = packet_get_string(NULL);
3002 } else {
3003 remote_host = xstrdup("unknown (remote did not supply name)");
3004 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003005 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003006
3007 /* Obtain a connection to the real X display. */
3008 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003009 if (sock != -1) {
3010 /* Allocate a channel for this connection. */
3011 c = channel_new("connected x11 socket",
3012 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3013 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003014 c->remote_id = remote_id;
3015 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003016 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003017 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003018 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003019 /* Send refusal to the remote host. */
3020 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003021 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003022 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003023 /* Send a confirmation to the remote host. */
3024 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003025 packet_put_int(remote_id);
3026 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003027 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003028 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003029}
3030
Damien Miller69b69aa2000-10-28 14:19:58 +11003031/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3032void
Damien Miller630d6f42002-01-22 23:17:30 +11003033deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003034{
3035 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003036
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003037 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003038 case SSH_SMSG_AGENT_OPEN:
3039 error("Warning: ssh server tried agent forwarding.");
3040 break;
3041 case SSH_SMSG_X11_OPEN:
3042 error("Warning: ssh server tried X11 forwarding.");
3043 break;
3044 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003045 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003046 break;
3047 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003048 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003049 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3050 packet_put_int(rchan);
3051 packet_send();
3052}
3053
Damien Miller5428f641999-11-25 11:54:57 +11003054/*
3055 * Requests forwarding of X11 connections, generates fake authentication
3056 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003057 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003058 */
Damien Miller4af51302000-04-16 11:18:38 +10003059void
Damien Miller17e7ed02005-06-17 12:54:33 +10003060x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003061 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003062{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003063 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003064 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003065 char *new_data;
3066 int screen_number;
3067 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003068 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003069
Damien Millerf92c0792005-07-06 09:45:26 +10003070 if (x11_saved_display == NULL)
3071 x11_saved_display = xstrdup(disp);
3072 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003073 error("x11_request_forwarding_with_spoofing: different "
3074 "$DISPLAY already forwarded");
3075 return;
3076 }
3077
Damien Miller17e7ed02005-06-17 12:54:33 +10003078 cp = disp;
3079 if (disp)
3080 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003081 if (cp)
3082 cp = strchr(cp, '.');
3083 if (cp)
3084 screen_number = atoi(cp + 1);
3085 else
3086 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003087
Damien Miller13390022005-07-06 09:44:19 +10003088 if (x11_saved_proto == NULL) {
3089 /* Save protocol name. */
3090 x11_saved_proto = xstrdup(proto);
3091 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003092 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003093 * of the same length.
3094 */
3095 x11_saved_data = xmalloc(data_len);
3096 x11_fake_data = xmalloc(data_len);
3097 for (i = 0; i < data_len; i++) {
3098 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3099 fatal("x11_request_forwarding: bad "
3100 "authentication data: %.100s", data);
3101 if (i % 4 == 0)
3102 rnd = arc4random();
3103 x11_saved_data[i] = value;
3104 x11_fake_data[i] = rnd & 0xff;
3105 rnd >>= 8;
3106 }
3107 x11_saved_data_len = data_len;
3108 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003109 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003110
Damien Miller95def091999-11-25 00:26:21 +11003111 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003112 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003113
Damien Miller95def091999-11-25 00:26:21 +11003114 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003115 if (compat20) {
3116 channel_request_start(client_session_id, "x11-req", 0);
3117 packet_put_char(0); /* XXX bool single connection */
3118 } else {
3119 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3120 }
3121 packet_put_cstring(proto);
3122 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003123 packet_put_int(screen_number);
3124 packet_send();
3125 packet_write_wait();
3126 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003127}
3128
Ben Lindstrome9c99912001-06-09 00:41:05 +00003129
3130/* -- agent forwarding */
3131
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003132/* Sends a message to the server to request authentication fd forwarding. */
3133
Damien Miller4af51302000-04-16 11:18:38 +10003134void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003135auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003136{
Damien Miller95def091999-11-25 00:26:21 +11003137 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3138 packet_send();
3139 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003140}