blob: 0e7d5cf58505bc56dfa194646c9449d7b9f10093 [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 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100131static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000132static 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
Damien Millerd62f2ca2006-03-26 13:57:41 +1100176 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100177 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);
Damien Millerd47c62a2005-12-13 19:33:57 +1100186 }
187 logit("Non-public channel %d, type %d.", id, c->type);
188 return (NULL);
189}
190
191/*
Damien Millere247cc42000-05-07 12:03:14 +1000192 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000193 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100194 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000195static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100196channel_register_fds(Channel *c, int rfd, int wfd, int efd,
197 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198{
Damien Miller95def091999-11-25 00:26:21 +1100199 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100200 channel_max_fd = MAX(channel_max_fd, rfd);
201 channel_max_fd = MAX(channel_max_fd, wfd);
202 channel_max_fd = MAX(channel_max_fd, efd);
203
Damien Miller5428f641999-11-25 11:54:57 +1100204 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000205
Damien Miller6f83b8e2000-05-02 09:23:45 +1000206 c->rfd = rfd;
207 c->wfd = wfd;
208 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000209 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000210 c->efd = efd;
211 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100212
Damien Miller79438cc2001-02-16 12:34:57 +1100213 /* XXX ugly hack: nonblock is only set by the server */
214 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000215 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100216 c->isatty = 1;
217 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000218 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100219 c->self, c->wfd);
220 }
221 } else {
222 c->isatty = 0;
223 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000224 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100225
Damien Miller69b69aa2000-10-28 14:19:58 +1100226 /* enable nonblocking mode */
227 if (nonblock) {
228 if (rfd != -1)
229 set_nonblock(rfd);
230 if (wfd != -1)
231 set_nonblock(wfd);
232 if (efd != -1)
233 set_nonblock(efd);
234 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000235}
236
237/*
238 * Allocate a new channel object and set its type and socket. This will cause
239 * remote_name to be freed.
240 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000241Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000242channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000243 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000244{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000245 int found;
246 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000247 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248
Damien Miller95def091999-11-25 00:26:21 +1100249 /* Do initial allocation if this is the first call. */
250 if (channels_alloc == 0) {
251 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100252 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100253 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000254 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100255 }
256 /* Try to find a free slot where to put the new channel. */
257 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000258 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100259 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000260 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100261 break;
262 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000263 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100264 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100265 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000266 if (channels_alloc > 10000)
267 fatal("channel_new: internal error: channels_alloc %d "
268 "too big.", channels_alloc);
Damien Miller5efcecc2003-09-17 07:31:14 +1000269 channels = xrealloc(channels,
270 (channels_alloc + 10) * sizeof(Channel *));
271 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100272 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100273 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000274 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100275 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000276 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100277 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100278 buffer_init(&c->input);
279 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000280 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100281 c->ostate = CHAN_OUTPUT_OPEN;
282 c->istate = CHAN_INPUT_OPEN;
283 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100284 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100285 c->self = found;
286 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000287 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000288 c->local_window = window;
289 c->local_window_max = window;
290 c->local_consumed = 0;
291 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100292 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000293 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000294 c->remote_window = 0;
295 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000296 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100297 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000298 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100299 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100300 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000301 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000302 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100303 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100304 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000305 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000307
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000308static int
309channel_find_maxfd(void)
310{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000311 u_int i;
312 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000313 Channel *c;
314
315 for (i = 0; i < channels_alloc; i++) {
316 c = channels[i];
317 if (c != NULL) {
318 max = MAX(max, c->rfd);
319 max = MAX(max, c->wfd);
320 max = MAX(max, c->efd);
321 }
322 }
323 return max;
324}
325
326int
327channel_close_fd(int *fdp)
328{
329 int ret = 0, fd = *fdp;
330
331 if (fd != -1) {
332 ret = close(fd);
333 *fdp = -1;
334 if (fd == channel_max_fd)
335 channel_max_fd = channel_find_maxfd();
336 }
337 return ret;
338}
339
Damien Miller6f83b8e2000-05-02 09:23:45 +1000340/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000341static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000342channel_close_fds(Channel *c)
343{
Damien Miller0e220db2004-06-15 10:34:08 +1000344 debug3("channel %d: close_fds r %d w %d e %d c %d",
345 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000346
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000347 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000348 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000349 channel_close_fd(&c->rfd);
350 channel_close_fd(&c->wfd);
351 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000352}
353
354/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000355void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000356channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000358 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000359 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000360
361 for (n = 0, i = 0; i < channels_alloc; i++)
362 if (channels[i])
363 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000364 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000365 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000366
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000367 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000368 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000369 xfree(s);
370
Damien Miller6f83b8e2000-05-02 09:23:45 +1000371 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000372 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000373 if (c->ctl_fd != -1)
374 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000375 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000376 buffer_free(&c->input);
377 buffer_free(&c->output);
378 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000379 if (c->remote_name) {
380 xfree(c->remote_name);
381 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100382 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000383 channels[c->self] = NULL;
384 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385}
386
Ben Lindstrome9c99912001-06-09 00:41:05 +0000387void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000388channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000389{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000390 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000391
Ben Lindstrom601e4362001-06-21 03:19:23 +0000392 for (i = 0; i < channels_alloc; i++)
393 if (channels[i] != NULL)
394 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000395}
396
397/*
398 * Closes the sockets/fds of all channels. This is used to close extra file
399 * descriptors after a fork.
400 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000401void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000402channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000403{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000404 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000405
406 for (i = 0; i < channels_alloc; i++)
407 if (channels[i] != NULL)
408 channel_close_fds(channels[i]);
409}
410
411/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000412 * Stop listening to channels.
413 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000414void
415channel_stop_listening(void)
416{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000417 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000418 Channel *c;
419
420 for (i = 0; i < channels_alloc; i++) {
421 c = channels[i];
422 if (c != NULL) {
423 switch (c->type) {
424 case SSH_CHANNEL_AUTH_SOCKET:
425 case SSH_CHANNEL_PORT_LISTENER:
426 case SSH_CHANNEL_RPORT_LISTENER:
427 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000428 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000429 channel_free(c);
430 break;
431 }
432 }
433 }
434}
435
436/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437 * Returns true if no channel has too much buffered data, and false if one or
438 * more channel is overfull.
439 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000440int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000441channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000442{
443 u_int i;
444 Channel *c;
445
446 for (i = 0; i < channels_alloc; i++) {
447 c = channels[i];
448 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000449#if 0
450 if (!compat20 &&
451 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100452 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000453 c->self, buffer_len(&c->input));
454 return 0;
455 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000456#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000457 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000458 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000459 c->self, buffer_len(&c->output),
460 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000461 return 0;
462 }
463 }
464 }
465 return 1;
466}
467
468/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000469int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000470channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000471{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000472 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000473 Channel *c;
474
475 for (i = 0; i < channels_alloc; i++) {
476 c = channels[i];
477 if (c == NULL)
478 continue;
479 switch (c->type) {
480 case SSH_CHANNEL_X11_LISTENER:
481 case SSH_CHANNEL_PORT_LISTENER:
482 case SSH_CHANNEL_RPORT_LISTENER:
483 case SSH_CHANNEL_CLOSED:
484 case SSH_CHANNEL_AUTH_SOCKET:
485 case SSH_CHANNEL_DYNAMIC:
486 case SSH_CHANNEL_CONNECTING:
487 case SSH_CHANNEL_ZOMBIE:
488 continue;
489 case SSH_CHANNEL_LARVAL:
490 if (!compat20)
491 fatal("cannot happen: SSH_CHANNEL_LARVAL");
492 continue;
493 case SSH_CHANNEL_OPENING:
494 case SSH_CHANNEL_OPEN:
495 case SSH_CHANNEL_X11_OPEN:
496 return 1;
497 case SSH_CHANNEL_INPUT_DRAINING:
498 case SSH_CHANNEL_OUTPUT_DRAINING:
499 if (!compat13)
500 fatal("cannot happen: OUT_DRAIN");
501 return 1;
502 default:
503 fatal("channel_still_open: bad channel type %d", c->type);
504 /* NOTREACHED */
505 }
506 }
507 return 0;
508}
509
510/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000511int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000512channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000514 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000515 Channel *c;
516
517 for (i = 0; i < channels_alloc; i++) {
518 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000519 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000520 continue;
521 switch (c->type) {
522 case SSH_CHANNEL_CLOSED:
523 case SSH_CHANNEL_DYNAMIC:
524 case SSH_CHANNEL_X11_LISTENER:
525 case SSH_CHANNEL_PORT_LISTENER:
526 case SSH_CHANNEL_RPORT_LISTENER:
527 case SSH_CHANNEL_OPENING:
528 case SSH_CHANNEL_CONNECTING:
529 case SSH_CHANNEL_ZOMBIE:
530 continue;
531 case SSH_CHANNEL_LARVAL:
532 case SSH_CHANNEL_AUTH_SOCKET:
533 case SSH_CHANNEL_OPEN:
534 case SSH_CHANNEL_X11_OPEN:
535 return i;
536 case SSH_CHANNEL_INPUT_DRAINING:
537 case SSH_CHANNEL_OUTPUT_DRAINING:
538 if (!compat13)
539 fatal("cannot happen: OUT_DRAIN");
540 return i;
541 default:
542 fatal("channel_find_open: bad channel type %d", c->type);
543 /* NOTREACHED */
544 }
545 }
546 return -1;
547}
548
549
550/*
551 * Returns a message describing the currently open forwarded connections,
552 * suitable for sending to the client. The message contains crlf pairs for
553 * newlines.
554 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000555char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000556channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557{
558 Buffer buffer;
559 Channel *c;
560 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000561 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000562
563 buffer_init(&buffer);
564 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
565 buffer_append(&buffer, buf, strlen(buf));
566 for (i = 0; i < channels_alloc; i++) {
567 c = channels[i];
568 if (c == NULL)
569 continue;
570 switch (c->type) {
571 case SSH_CHANNEL_X11_LISTENER:
572 case SSH_CHANNEL_PORT_LISTENER:
573 case SSH_CHANNEL_RPORT_LISTENER:
574 case SSH_CHANNEL_CLOSED:
575 case SSH_CHANNEL_AUTH_SOCKET:
576 case SSH_CHANNEL_ZOMBIE:
577 continue;
578 case SSH_CHANNEL_LARVAL:
579 case SSH_CHANNEL_OPENING:
580 case SSH_CHANNEL_CONNECTING:
581 case SSH_CHANNEL_DYNAMIC:
582 case SSH_CHANNEL_OPEN:
583 case SSH_CHANNEL_X11_OPEN:
584 case SSH_CHANNEL_INPUT_DRAINING:
585 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000586 snprintf(buf, sizeof buf,
587 " #%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 +0000588 c->self, c->remote_name,
589 c->type, c->remote_id,
590 c->istate, buffer_len(&c->input),
591 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000592 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000593 buffer_append(&buffer, buf, strlen(buf));
594 continue;
595 default:
596 fatal("channel_open_message: bad channel type %d", c->type);
597 /* NOTREACHED */
598 }
599 }
600 buffer_append(&buffer, "\0", 1);
601 cp = xstrdup(buffer_ptr(&buffer));
602 buffer_free(&buffer);
603 return cp;
604}
605
606void
607channel_send_open(int id)
608{
609 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000610
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000612 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000613 return;
614 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000615 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000616 packet_start(SSH2_MSG_CHANNEL_OPEN);
617 packet_put_cstring(c->ctype);
618 packet_put_int(c->self);
619 packet_put_int(c->local_window);
620 packet_put_int(c->local_maxpacket);
621 packet_send();
622}
623
624void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000625channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000626{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000627 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000628
Ben Lindstrome9c99912001-06-09 00:41:05 +0000629 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000630 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000631 return;
632 }
Damien Miller0e220db2004-06-15 10:34:08 +1000633 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000634 packet_start(SSH2_MSG_CHANNEL_REQUEST);
635 packet_put_int(c->remote_id);
636 packet_put_cstring(service);
637 packet_put_char(wantconfirm);
638}
Damien Miller4f7becb2006-03-26 14:10:14 +1100639
Ben Lindstrome9c99912001-06-09 00:41:05 +0000640void
Damien Miller0e220db2004-06-15 10:34:08 +1000641channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642{
643 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000644
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000646 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 return;
648 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100649 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000650 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000651}
Damien Miller4f7becb2006-03-26 14:10:14 +1100652
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653void
Damien Miller39eda6e2005-11-05 14:52:50 +1100654channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655{
Damien Millerd47c62a2005-12-13 19:33:57 +1100656 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000657
Ben Lindstrome9c99912001-06-09 00:41:05 +0000658 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000659 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660 return;
661 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000662 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100663 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664}
Damien Miller4f7becb2006-03-26 14:10:14 +1100665
Ben Lindstrome9c99912001-06-09 00:41:05 +0000666void
667channel_cancel_cleanup(int id)
668{
Damien Millerd47c62a2005-12-13 19:33:57 +1100669 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000670
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000672 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673 return;
674 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000675 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100676 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677}
Damien Miller4f7becb2006-03-26 14:10:14 +1100678
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679void
Damien Miller077b2382005-12-31 16:22:32 +1100680channel_register_filter(int id, channel_infilter_fn *ifn,
681 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682{
683 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000684
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000686 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000687 return;
688 }
Damien Miller077b2382005-12-31 16:22:32 +1100689 c->input_filter = ifn;
690 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691}
692
693void
694channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100695 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696{
697 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000698
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
700 fatal("channel_activate for non-larval channel %d.", id);
701 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
702 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100703 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
705 packet_put_int(c->remote_id);
706 packet_put_int(c->local_window);
707 packet_send();
708}
709
Damien Miller5428f641999-11-25 11:54:57 +1100710/*
Damien Millerb38eff82000-04-01 11:09:21 +1000711 * 'channel_pre*' are called just before select() to add any bits relevant to
712 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100713 */
Damien Millerb38eff82000-04-01 11:09:21 +1000714/*
715 * 'channel_post*': perform any appropriate operations for channels which
716 * have events pending.
717 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100718typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000719chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
720chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
721
Ben Lindstrombba81212001-06-25 05:01:22 +0000722static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100723channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000724{
725 FD_SET(c->sock, readset);
726}
727
Ben Lindstrombba81212001-06-25 05:01:22 +0000728static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100729channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000730{
731 debug3("channel %d: waiting for connection", c->self);
732 FD_SET(c->sock, writeset);
733}
734
Ben Lindstrombba81212001-06-25 05:01:22 +0000735static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100736channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000737{
738 if (buffer_len(&c->input) < packet_get_maxsize())
739 FD_SET(c->sock, readset);
740 if (buffer_len(&c->output) > 0)
741 FD_SET(c->sock, writeset);
742}
743
Ben Lindstrombba81212001-06-25 05:01:22 +0000744static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100745channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000746{
Damien Millerde6987c2002-01-22 23:20:40 +1100747 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000748
Darren Tucker11327cc2005-03-14 23:22:25 +1100749 /* check buffer limits */
750 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
751
Damien Miller33b13562000-04-04 14:38:59 +1000752 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100753 limit > 0 &&
754 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000755 FD_SET(c->rfd, readset);
756 if (c->ostate == CHAN_OUTPUT_OPEN ||
757 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
758 if (buffer_len(&c->output) > 0) {
759 FD_SET(c->wfd, writeset);
760 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000761 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000762 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
763 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000764 else
765 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000766 }
767 }
768 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100769 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000770 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
771 buffer_len(&c->extended) > 0)
772 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000773 else if (!(c->flags & CHAN_EOF_SENT) &&
774 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000775 buffer_len(&c->extended) < c->remote_window)
776 FD_SET(c->efd, readset);
777 }
Damien Miller0e220db2004-06-15 10:34:08 +1000778 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000779 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000780 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
781 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000782}
783
Ben Lindstrombba81212001-06-25 05:01:22 +0000784static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100785channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000786{
787 if (buffer_len(&c->input) == 0) {
788 packet_start(SSH_MSG_CHANNEL_CLOSE);
789 packet_put_int(c->remote_id);
790 packet_send();
791 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000792 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000793 }
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100797channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000798{
799 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000800 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000801 else
Damien Millerb38eff82000-04-01 11:09:21 +1000802 FD_SET(c->sock, writeset);
803}
804
805/*
806 * This is a special state for X11 authentication spoofing. An opened X11
807 * connection (when authentication spoofing is being done) remains in this
808 * state until the first packet has been completely read. The authentication
809 * data in that packet is then substituted by the real data if it matches the
810 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000811 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000812 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000813 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000815x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000816{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000817 u_char *ucp;
818 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000819
820 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000821 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000822 return 0;
823
824 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100825 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000826 if (ucp[0] == 0x42) { /* Byte order MSB first. */
827 proto_len = 256 * ucp[6] + ucp[7];
828 data_len = 256 * ucp[8] + ucp[9];
829 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
830 proto_len = ucp[6] + 256 * ucp[7];
831 data_len = ucp[8] + 256 * ucp[9];
832 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000833 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100834 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000835 return -1;
836 }
837
838 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000839 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000840 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
841 return 0;
842
843 /* Check if authentication protocol matches. */
844 if (proto_len != strlen(x11_saved_proto) ||
845 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000846 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000847 return -1;
848 }
849 /* Check if authentication data matches our fake data. */
850 if (data_len != x11_fake_data_len ||
851 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
852 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000853 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000854 return -1;
855 }
856 /* Check fake data length */
857 if (x11_fake_data_len != x11_saved_data_len) {
858 error("X11 fake_data_len %d != saved_data_len %d",
859 x11_fake_data_len, x11_saved_data_len);
860 return -1;
861 }
862 /*
863 * Received authentication protocol and data match
864 * our fake data. Substitute the fake data with real
865 * data.
866 */
867 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
868 x11_saved_data, x11_saved_data_len);
869 return 1;
870}
871
Ben Lindstrombba81212001-06-25 05:01:22 +0000872static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100873channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000874{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000875 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000876
Damien Millerb38eff82000-04-01 11:09:21 +1000877 if (ret == 1) {
878 /* Start normal processing for the channel. */
879 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000880 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000881 } else if (ret == -1) {
882 /*
883 * We have received an X11 connection that has bad
884 * authentication information.
885 */
Damien Miller996acd22003-04-09 20:59:48 +1000886 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000887 buffer_clear(&c->input);
888 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000889 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000890 c->sock = -1;
891 c->type = SSH_CHANNEL_CLOSED;
892 packet_start(SSH_MSG_CHANNEL_CLOSE);
893 packet_put_int(c->remote_id);
894 packet_send();
895 }
896}
897
Ben Lindstrombba81212001-06-25 05:01:22 +0000898static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100899channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000900{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000901 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000902
903 /* c->force_drain = 1; */
904
Damien Millerb38eff82000-04-01 11:09:21 +1000905 if (ret == 1) {
906 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100907 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000908 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000909 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000910 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100911 chan_read_failed(c);
912 buffer_clear(&c->input);
913 chan_ibuf_empty(c);
914 buffer_clear(&c->output);
915 /* for proto v1, the peer will send an IEOF */
916 if (compat20)
917 chan_write_failed(c);
918 else
919 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000920 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000921 }
922}
923
Ben Lindstromb3921512001-04-11 15:57:50 +0000924/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000925static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100926channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000927{
Damien Millera10f5612002-09-12 09:49:15 +1000928 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000929 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100930 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000931 struct {
932 u_int8_t version;
933 u_int8_t command;
934 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000935 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000936 } s4_req, s4_rsp;
937
Ben Lindstromb3921512001-04-11 15:57:50 +0000938 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000939
940 have = buffer_len(&c->input);
941 len = sizeof(s4_req);
942 if (have < len)
943 return 0;
944 p = buffer_ptr(&c->input);
945 for (found = 0, i = len; i < have; i++) {
946 if (p[i] == '\0') {
947 found = 1;
948 break;
949 }
950 if (i > 1024) {
951 /* the peer is probably sending garbage */
952 debug("channel %d: decode socks4: too long",
953 c->self);
954 return -1;
955 }
956 }
957 if (!found)
958 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000959 buffer_get(&c->input, (char *)&s4_req.version, 1);
960 buffer_get(&c->input, (char *)&s4_req.command, 1);
961 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000962 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000963 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000964 p = buffer_ptr(&c->input);
965 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000966 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000967 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000968 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000969 c->self, len, have);
970 strlcpy(username, p, sizeof(username));
971 buffer_consume(&c->input, len);
972 buffer_consume(&c->input, 1); /* trailing '\0' */
973
Ben Lindstromb3921512001-04-11 15:57:50 +0000974 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000975 strlcpy(c->path, host, sizeof(c->path));
976 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100977
Damien Millerfbdeece2003-09-02 22:52:31 +1000978 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000979 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000980
Ben Lindstromb3921512001-04-11 15:57:50 +0000981 if (s4_req.command != 1) {
982 debug("channel %d: cannot handle: socks4 cn %d",
983 c->self, s4_req.command);
984 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000986 s4_rsp.version = 0; /* vn: 0 for reply */
987 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000988 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000989 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000991 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000992}
993
Darren Tucker46471c92003-07-03 13:55:19 +1000994/* try to decode a socks5 header */
995#define SSH_SOCKS5_AUTHDONE 0x1000
996#define SSH_SOCKS5_NOAUTH 0x00
997#define SSH_SOCKS5_IPV4 0x01
998#define SSH_SOCKS5_DOMAIN 0x03
999#define SSH_SOCKS5_IPV6 0x04
1000#define SSH_SOCKS5_CONNECT 0x01
1001#define SSH_SOCKS5_SUCCESS 0x00
1002
1003static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001004channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001005{
1006 struct {
1007 u_int8_t version;
1008 u_int8_t command;
1009 u_int8_t reserved;
1010 u_int8_t atyp;
1011 } s5_req, s5_rsp;
1012 u_int16_t dest_port;
1013 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +10001014 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001015
1016 debug2("channel %d: decode socks5", c->self);
1017 p = buffer_ptr(&c->input);
1018 if (p[0] != 0x05)
1019 return -1;
1020 have = buffer_len(&c->input);
1021 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1022 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001023 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001024 return 0;
1025 nmethods = p[1];
1026 if (have < nmethods + 2)
1027 return 0;
1028 /* look for method: "NO AUTHENTICATION REQUIRED" */
1029 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1030 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1031 found = 1;
1032 break;
1033 }
1034 }
1035 if (!found) {
1036 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1037 c->self);
1038 return -1;
1039 }
1040 buffer_consume(&c->input, nmethods + 2);
1041 buffer_put_char(&c->output, 0x05); /* version */
1042 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1043 FD_SET(c->sock, writeset);
1044 c->flags |= SSH_SOCKS5_AUTHDONE;
1045 debug2("channel %d: socks5 auth done", c->self);
1046 return 0; /* need more */
1047 }
1048 debug2("channel %d: socks5 post auth", c->self);
1049 if (have < sizeof(s5_req)+1)
1050 return 0; /* need more */
1051 memcpy((char *)&s5_req, p, sizeof(s5_req));
1052 if (s5_req.version != 0x05 ||
1053 s5_req.command != SSH_SOCKS5_CONNECT ||
1054 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001055 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001056 return -1;
1057 }
Darren Tucker47eede72005-03-14 23:08:12 +11001058 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001059 case SSH_SOCKS5_IPV4:
1060 addrlen = 4;
1061 af = AF_INET;
1062 break;
1063 case SSH_SOCKS5_DOMAIN:
1064 addrlen = p[sizeof(s5_req)];
1065 af = -1;
1066 break;
1067 case SSH_SOCKS5_IPV6:
1068 addrlen = 16;
1069 af = AF_INET6;
1070 break;
1071 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001072 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001073 return -1;
1074 }
1075 if (have < 4 + addrlen + 2)
1076 return 0;
1077 buffer_consume(&c->input, sizeof(s5_req));
1078 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1079 buffer_consume(&c->input, 1); /* host string length */
1080 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1081 buffer_get(&c->input, (char *)&dest_port, 2);
1082 dest_addr[addrlen] = '\0';
1083 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001084 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001085 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1086 return -1;
1087 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001088
Damien Millerfbdeece2003-09-02 22:52:31 +10001089 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001090 c->self, c->path, c->host_port, s5_req.command);
1091
1092 s5_rsp.version = 0x05;
1093 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1094 s5_rsp.reserved = 0; /* ignored */
1095 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1096 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1097 dest_port = 0; /* ignored */
1098
1099 buffer_append(&c->output, (char *)&s5_rsp, sizeof(s5_rsp));
1100 buffer_append(&c->output, (char *)&dest_addr, sizeof(struct in_addr));
1101 buffer_append(&c->output, (char *)&dest_port, sizeof(dest_port));
1102 return 1;
1103}
1104
Ben Lindstromb3921512001-04-11 15:57:50 +00001105/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001106static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001107channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001108{
1109 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001110 u_int have;
1111 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001112
1113 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001114 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001115 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001116 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001117 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001118 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001119 /* need more */
1120 FD_SET(c->sock, readset);
1121 return;
1122 }
1123 /* try to guess the protocol */
1124 p = buffer_ptr(&c->input);
1125 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001126 case 0x04:
1127 ret = channel_decode_socks4(c, readset, writeset);
1128 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001129 case 0x05:
1130 ret = channel_decode_socks5(c, readset, writeset);
1131 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001132 default:
1133 ret = -1;
1134 break;
1135 }
1136 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001137 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001138 } else if (ret == 0) {
1139 debug2("channel %d: pre_dynamic: need more", c->self);
1140 /* need more */
1141 FD_SET(c->sock, readset);
1142 } else {
1143 /* switch to the next state */
1144 c->type = SSH_CHANNEL_OPENING;
1145 port_open_helper(c, "direct-tcpip");
1146 }
1147}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001148
Damien Millerb38eff82000-04-01 11:09:21 +10001149/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001150static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001151channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001152{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001153 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001154 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001155 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001156 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001157 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001158 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001159
1160 if (FD_ISSET(c->sock, readset)) {
1161 debug("X11 connection requested.");
1162 addrlen = sizeof(addr);
1163 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001164 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001165 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001166 channel_close_fd(&c->sock);
1167 chan_mark_dead(c);
1168 }
Damien Millerb38eff82000-04-01 11:09:21 +10001169 if (newsock < 0) {
1170 error("accept: %.100s", strerror(errno));
1171 return;
1172 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001173 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001174 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001175 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001176 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001177 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001178
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001179 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001180 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001181 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001182 if (compat20) {
1183 packet_start(SSH2_MSG_CHANNEL_OPEN);
1184 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001185 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001186 packet_put_int(nc->local_window_max);
1187 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001188 /* originator ipaddr and port */
1189 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001190 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001191 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001192 } else {
1193 packet_put_int(remote_port);
1194 }
Damien Millerbd483e72000-04-30 10:00:53 +10001195 packet_send();
1196 } else {
1197 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001198 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001199 if (packet_get_protocol_flags() &
1200 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001201 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001202 packet_send();
1203 }
Damien Millerd83ff352001-01-30 09:19:34 +11001204 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001205 }
1206}
1207
Ben Lindstrombba81212001-06-25 05:01:22 +00001208static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001209port_open_helper(Channel *c, char *rtype)
1210{
1211 int direct;
1212 char buf[1024];
1213 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001214 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001215
1216 direct = (strcmp(rtype, "direct-tcpip") == 0);
1217
1218 snprintf(buf, sizeof buf,
1219 "%s: listening port %d for %.100s port %d, "
1220 "connect from %.200s port %d",
1221 rtype, c->listening_port, c->path, c->host_port,
1222 remote_ipaddr, remote_port);
1223
1224 xfree(c->remote_name);
1225 c->remote_name = xstrdup(buf);
1226
1227 if (compat20) {
1228 packet_start(SSH2_MSG_CHANNEL_OPEN);
1229 packet_put_cstring(rtype);
1230 packet_put_int(c->self);
1231 packet_put_int(c->local_window_max);
1232 packet_put_int(c->local_maxpacket);
1233 if (direct) {
1234 /* target host, port */
1235 packet_put_cstring(c->path);
1236 packet_put_int(c->host_port);
1237 } else {
1238 /* listen address, port */
1239 packet_put_cstring(c->path);
1240 packet_put_int(c->listening_port);
1241 }
1242 /* originator host and port */
1243 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001244 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001245 packet_send();
1246 } else {
1247 packet_start(SSH_MSG_PORT_OPEN);
1248 packet_put_int(c->self);
1249 packet_put_cstring(c->path);
1250 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001251 if (packet_get_protocol_flags() &
1252 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001253 packet_put_cstring(c->remote_name);
1254 packet_send();
1255 }
1256 xfree(remote_ipaddr);
1257}
1258
Damien Miller5e7fd072005-11-05 14:53:39 +11001259static void
1260channel_set_reuseaddr(int fd)
1261{
1262 int on = 1;
1263
1264 /*
1265 * Set socket options.
1266 * Allow local port reuse in TIME_WAIT.
1267 */
1268 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1269 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1270}
1271
Damien Millerb38eff82000-04-01 11:09:21 +10001272/*
1273 * This socket is listening for connections to a forwarded TCP/IP port.
1274 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001275static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001276channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001277{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001278 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001279 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001280 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001281 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001282 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001283
Damien Millerb38eff82000-04-01 11:09:21 +10001284 if (FD_ISSET(c->sock, readset)) {
1285 debug("Connection to port %d forwarding "
1286 "to %.100s port %d requested.",
1287 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001288
Damien Miller4623a752001-10-10 15:03:58 +10001289 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1290 nextstate = SSH_CHANNEL_OPENING;
1291 rtype = "forwarded-tcpip";
1292 } else {
1293 if (c->host_port == 0) {
1294 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001295 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001296 } else {
1297 nextstate = SSH_CHANNEL_OPENING;
1298 rtype = "direct-tcpip";
1299 }
1300 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001301
Damien Millerb38eff82000-04-01 11:09:21 +10001302 addrlen = sizeof(addr);
1303 newsock = accept(c->sock, &addr, &addrlen);
1304 if (newsock < 0) {
1305 error("accept: %.100s", strerror(errno));
1306 return;
1307 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001308 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001309 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1310 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001311 nc->listening_port = c->listening_port;
1312 nc->host_port = c->host_port;
1313 strlcpy(nc->path, c->path, sizeof(nc->path));
1314
Damien Miller4623a752001-10-10 15:03:58 +10001315 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1316 /*
1317 * do not call the channel_post handler until
1318 * this flag has been reset by a pre-handler.
1319 * otherwise the FD_ISSET calls might overflow
1320 */
1321 nc->delayed = 1;
1322 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001323 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001324 }
Damien Millerb38eff82000-04-01 11:09:21 +10001325 }
1326}
1327
1328/*
1329 * This is the authentication agent socket listening for connections from
1330 * clients.
1331 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001332static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001333channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001334{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001335 Channel *nc;
1336 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001337 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001338 socklen_t addrlen;
1339
1340 if (FD_ISSET(c->sock, readset)) {
1341 addrlen = sizeof(addr);
1342 newsock = accept(c->sock, &addr, &addrlen);
1343 if (newsock < 0) {
1344 error("accept from auth socket: %.100s", strerror(errno));
1345 return;
1346 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001347 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001348 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1349 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001350 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001351 if (compat20) {
1352 packet_start(SSH2_MSG_CHANNEL_OPEN);
1353 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001354 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001355 packet_put_int(c->local_window_max);
1356 packet_put_int(c->local_maxpacket);
1357 } else {
1358 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001359 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001360 }
Damien Millerb38eff82000-04-01 11:09:21 +10001361 packet_send();
1362 }
1363}
1364
Ben Lindstrombba81212001-06-25 05:01:22 +00001365static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001366channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001367{
Ben Lindstrom69128662001-05-08 20:07:39 +00001368 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001369 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001370
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001371 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001372 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001373 err = errno;
1374 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001375 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001376 if (err == 0) {
1377 debug("channel %d: connected", c->self);
1378 c->type = SSH_CHANNEL_OPEN;
1379 if (compat20) {
1380 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1381 packet_put_int(c->remote_id);
1382 packet_put_int(c->self);
1383 packet_put_int(c->local_window);
1384 packet_put_int(c->local_maxpacket);
1385 } else {
1386 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1387 packet_put_int(c->remote_id);
1388 packet_put_int(c->self);
1389 }
1390 } else {
1391 debug("channel %d: not connected: %s",
1392 c->self, strerror(err));
1393 if (compat20) {
1394 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1395 packet_put_int(c->remote_id);
1396 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1397 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1398 packet_put_cstring(strerror(err));
1399 packet_put_cstring("");
1400 }
1401 } else {
1402 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1403 packet_put_int(c->remote_id);
1404 }
1405 chan_mark_dead(c);
1406 }
1407 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001408 }
1409}
1410
Ben Lindstrombba81212001-06-25 05:01:22 +00001411static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001412channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001413{
Darren Tucker11327cc2005-03-14 23:22:25 +11001414 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001415 int len;
1416
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001417 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001418 FD_ISSET(c->rfd, readset)) {
1419 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001420 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1421 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001422 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001423 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001424 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001425 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001426 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001427 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001428 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001429 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001430 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001431 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001432 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001433 } else {
1434 chan_read_failed(c);
1435 }
1436 return -1;
1437 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001438 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001439 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001440 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001441 chan_read_failed(c);
1442 }
Damien Millerd27b9472005-12-13 19:29:02 +11001443 } else if (c->datagram) {
1444 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001445 } else {
1446 buffer_append(&c->input, buf, len);
1447 }
Damien Millerb38eff82000-04-01 11:09:21 +10001448 }
1449 return 1;
1450}
Damien Miller4f7becb2006-03-26 14:10:14 +11001451
Ben Lindstrombba81212001-06-25 05:01:22 +00001452static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001453channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001454{
Ben Lindstrome229b252001-03-05 06:28:06 +00001455 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001456 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001457 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001458 int len;
1459
1460 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001461 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001462 FD_ISSET(c->wfd, writeset) &&
1463 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001464 if (c->output_filter != NULL) {
1465 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1466 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001467 if (c->type != SSH_CHANNEL_OPEN)
1468 chan_mark_dead(c);
1469 else
1470 chan_write_failed(c);
1471 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001472 }
1473 } else if (c->datagram) {
1474 buf = data = buffer_get_string(&c->output, &dlen);
1475 } else {
1476 buf = data = buffer_ptr(&c->output);
1477 dlen = buffer_len(&c->output);
1478 }
1479
Damien Millerd27b9472005-12-13 19:29:02 +11001480 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001481 /* ignore truncated writes, datagrams might get lost */
1482 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001483 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001484 xfree(data);
1485 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1486 return 1;
1487 if (len <= 0) {
1488 if (c->type != SSH_CHANNEL_OPEN)
1489 chan_mark_dead(c);
1490 else
1491 chan_write_failed(c);
1492 return -1;
1493 }
1494 return 1;
1495 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001496#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001497 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001498 if (compat20 && c->wfd_isatty)
1499 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001500#endif
Damien Miller077b2382005-12-31 16:22:32 +11001501
1502 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001503 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1504 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001505 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001506 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001507 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001508 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001509 return -1;
1510 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001511 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001512 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001513 c->type = SSH_CHANNEL_INPUT_DRAINING;
1514 } else {
1515 chan_write_failed(c);
1516 }
1517 return -1;
1518 }
Damien Miller077b2382005-12-31 16:22:32 +11001519 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001520 if (tcgetattr(c->wfd, &tio) == 0 &&
1521 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1522 /*
1523 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001524 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001525 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001526 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001527 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001528 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001529 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001530 }
1531 }
Damien Millerb38eff82000-04-01 11:09:21 +10001532 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001533 if (compat20 && len > 0) {
1534 c->local_consumed += len;
1535 }
1536 }
1537 return 1;
1538}
Damien Miller4f7becb2006-03-26 14:10:14 +11001539
Ben Lindstrombba81212001-06-25 05:01:22 +00001540static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001541channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001542{
Darren Tucker11327cc2005-03-14 23:22:25 +11001543 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001544 int len;
1545
Damien Miller1383bd82000-04-06 12:32:37 +10001546/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001547 if (c->efd != -1) {
1548 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1549 FD_ISSET(c->efd, writeset) &&
1550 buffer_len(&c->extended) > 0) {
1551 len = write(c->efd, buffer_ptr(&c->extended),
1552 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001553 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001554 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001555 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1556 return 1;
1557 if (len <= 0) {
1558 debug2("channel %d: closing write-efd %d",
1559 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001560 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001561 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001562 buffer_consume(&c->extended, len);
1563 c->local_consumed += len;
1564 }
1565 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1566 FD_ISSET(c->efd, readset)) {
1567 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001568 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001569 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001570 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1571 return 1;
1572 if (len <= 0) {
1573 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001574 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001575 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001576 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001577 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001578 }
Damien Miller33b13562000-04-04 14:38:59 +10001579 }
1580 }
1581 return 1;
1582}
Damien Miller4f7becb2006-03-26 14:10:14 +11001583
Ben Lindstrombba81212001-06-25 05:01:22 +00001584static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001585channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001586{
1587 char buf[16];
1588 int len;
1589
1590 /* Monitor control fd to detect if the slave client exits */
1591 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1592 len = read(c->ctl_fd, buf, sizeof(buf));
1593 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1594 return 1;
1595 if (len <= 0) {
1596 debug2("channel %d: ctl read<=0", c->self);
1597 if (c->type != SSH_CHANNEL_OPEN) {
1598 debug2("channel %d: not open", c->self);
1599 chan_mark_dead(c);
1600 return -1;
1601 } else {
1602 chan_read_failed(c);
1603 chan_write_failed(c);
1604 }
1605 return -1;
1606 } else
1607 fatal("%s: unexpected data on ctl fd", __func__);
1608 }
1609 return 1;
1610}
Damien Miller4f7becb2006-03-26 14:10:14 +11001611
Damien Miller0e220db2004-06-15 10:34:08 +10001612static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001613channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001614{
Ben Lindstromb3921512001-04-11 15:57:50 +00001615 if (c->type == SSH_CHANNEL_OPEN &&
1616 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001617 c->local_window < c->local_window_max/2 &&
1618 c->local_consumed > 0) {
1619 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1620 packet_put_int(c->remote_id);
1621 packet_put_int(c->local_consumed);
1622 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001623 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001624 c->self, c->local_window,
1625 c->local_consumed);
1626 c->local_window += c->local_consumed;
1627 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001628 }
1629 return 1;
1630}
1631
Ben Lindstrombba81212001-06-25 05:01:22 +00001632static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001633channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001634{
Damien Miller4623a752001-10-10 15:03:58 +10001635 if (c->delayed)
1636 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001637 channel_handle_rfd(c, readset, writeset);
1638 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001639 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001640 return;
Damien Miller33b13562000-04-04 14:38:59 +10001641 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001642 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001643 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001644}
1645
Ben Lindstrombba81212001-06-25 05:01:22 +00001646static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001647channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001648{
1649 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001650
Damien Millerb38eff82000-04-01 11:09:21 +10001651 /* Send buffered output data to the socket. */
1652 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1653 len = write(c->sock, buffer_ptr(&c->output),
1654 buffer_len(&c->output));
1655 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001656 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001657 else
1658 buffer_consume(&c->output, len);
1659 }
1660}
1661
Ben Lindstrombba81212001-06-25 05:01:22 +00001662static void
Damien Miller33b13562000-04-04 14:38:59 +10001663channel_handler_init_20(void)
1664{
Damien Millerde6987c2002-01-22 23:20:40 +11001665 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001666 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001667 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001668 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001669 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001670 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001671 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001672 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001673
Damien Millerde6987c2002-01-22 23:20:40 +11001674 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001675 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001676 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001677 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001678 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001679 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001680 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001681}
1682
Ben Lindstrombba81212001-06-25 05:01:22 +00001683static void
Damien Millerb38eff82000-04-01 11:09:21 +10001684channel_handler_init_13(void)
1685{
1686 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1687 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1688 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1689 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1690 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1691 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1692 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001693 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001694 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001695
Damien Millerde6987c2002-01-22 23:20:40 +11001696 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001697 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1698 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1699 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1700 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001701 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001702 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001703}
1704
Ben Lindstrombba81212001-06-25 05:01:22 +00001705static void
Damien Millerb38eff82000-04-01 11:09:21 +10001706channel_handler_init_15(void)
1707{
Damien Millerde6987c2002-01-22 23:20:40 +11001708 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001709 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001710 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1711 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1712 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001713 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001714 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001715
1716 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1717 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1718 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001719 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001720 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001721 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001722}
1723
Ben Lindstrombba81212001-06-25 05:01:22 +00001724static void
Damien Millerb38eff82000-04-01 11:09:21 +10001725channel_handler_init(void)
1726{
1727 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001728
Damien Miller9f0f5c62001-12-21 14:45:46 +11001729 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001730 channel_pre[i] = NULL;
1731 channel_post[i] = NULL;
1732 }
Damien Miller33b13562000-04-04 14:38:59 +10001733 if (compat20)
1734 channel_handler_init_20();
1735 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001736 channel_handler_init_13();
1737 else
1738 channel_handler_init_15();
1739}
1740
Damien Miller3ec27592001-10-12 11:35:04 +10001741/* gc dead channels */
1742static void
1743channel_garbage_collect(Channel *c)
1744{
1745 if (c == NULL)
1746 return;
1747 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001748 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001749 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001750 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001751 c->detach_user(c->self, NULL);
1752 /* if we still have a callback */
1753 if (c->detach_user != NULL)
1754 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001755 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001756 }
1757 if (!chan_is_dead(c, 1))
1758 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001759 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001760 channel_free(c);
1761}
1762
Ben Lindstrombba81212001-06-25 05:01:22 +00001763static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001764channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001765{
1766 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001767 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001768 Channel *c;
1769
1770 if (!did_init) {
1771 channel_handler_init();
1772 did_init = 1;
1773 }
1774 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001775 c = channels[i];
1776 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001777 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001778 if (ftab[c->type] != NULL)
1779 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001780 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001781 }
1782}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001783
Ben Lindstrome9c99912001-06-09 00:41:05 +00001784/*
1785 * Allocate/update select bitmasks and add any bits relevant to channels in
1786 * select bitmasks.
1787 */
Damien Miller4af51302000-04-16 11:18:38 +10001788void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001789channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001790 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001791{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001792 u_int n, sz;
Damien Miller5e953212001-01-30 09:14:00 +11001793
1794 n = MAX(*maxfdp, channel_max_fd);
1795
1796 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001797 /* perhaps check sz < nalloc/2 and shrink? */
1798 if (*readsetp == NULL || sz > *nallocp) {
1799 *readsetp = xrealloc(*readsetp, sz);
1800 *writesetp = xrealloc(*writesetp, sz);
1801 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001802 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001803 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001804 memset(*readsetp, 0, sz);
1805 memset(*writesetp, 0, sz);
1806
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001807 if (!rekeying)
1808 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001809}
1810
Ben Lindstrome9c99912001-06-09 00:41:05 +00001811/*
1812 * After select, perform any appropriate operations for channels which have
1813 * events pending.
1814 */
Damien Miller4af51302000-04-16 11:18:38 +10001815void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001816channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001817{
Damien Millerb38eff82000-04-01 11:09:21 +10001818 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819}
1820
Ben Lindstrome9c99912001-06-09 00:41:05 +00001821
Damien Miller5e953212001-01-30 09:14:00 +11001822/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001823void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001824channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001825{
Damien Millerb38eff82000-04-01 11:09:21 +10001826 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001827 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001828
Damien Miller95def091999-11-25 00:26:21 +11001829 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001830 c = channels[i];
1831 if (c == NULL)
1832 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001833
Ben Lindstrome9c99912001-06-09 00:41:05 +00001834 /*
1835 * We are only interested in channels that can have buffered
1836 * incoming data.
1837 */
Damien Miller34132e52000-01-14 15:45:46 +11001838 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001839 if (c->type != SSH_CHANNEL_OPEN &&
1840 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001841 continue;
1842 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001843 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001844 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001845 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001846 if (compat20 &&
1847 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001848 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001849 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001850 continue;
1851 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001852
Damien Miller95def091999-11-25 00:26:21 +11001853 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001854 if ((c->istate == CHAN_INPUT_OPEN ||
1855 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1856 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001857 if (c->datagram) {
1858 if (len > 0) {
1859 u_char *data;
1860 u_int dlen;
1861
1862 data = buffer_get_string(&c->input,
1863 &dlen);
1864 packet_start(SSH2_MSG_CHANNEL_DATA);
1865 packet_put_int(c->remote_id);
1866 packet_put_string(data, dlen);
1867 packet_send();
1868 c->remote_window -= dlen + 4;
1869 xfree(data);
1870 }
1871 continue;
1872 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001873 /*
1874 * Send some data for the other side over the secure
1875 * connection.
1876 */
Damien Miller33b13562000-04-04 14:38:59 +10001877 if (compat20) {
1878 if (len > c->remote_window)
1879 len = c->remote_window;
1880 if (len > c->remote_maxpacket)
1881 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001882 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001883 if (packet_is_interactive()) {
1884 if (len > 1024)
1885 len = 512;
1886 } else {
1887 /* Keep the packets at reasonable size. */
1888 if (len > packet_get_maxsize()/2)
1889 len = packet_get_maxsize()/2;
1890 }
Damien Miller95def091999-11-25 00:26:21 +11001891 }
Damien Millerb38eff82000-04-01 11:09:21 +10001892 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001893 packet_start(compat20 ?
1894 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001895 packet_put_int(c->remote_id);
1896 packet_put_string(buffer_ptr(&c->input), len);
1897 packet_send();
1898 buffer_consume(&c->input, len);
1899 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001900 }
1901 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001902 if (compat13)
1903 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001904 /*
1905 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001906 * tell peer, that we will not send more data: send IEOF.
1907 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001908 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001909 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001910 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1911 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001912 else
1913 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001914 }
Damien Miller33b13562000-04-04 14:38:59 +10001915 /* Send extended data, i.e. stderr */
1916 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001917 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001918 c->remote_window > 0 &&
1919 (len = buffer_len(&c->extended)) > 0 &&
1920 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001921 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001922 c->self, c->remote_window, buffer_len(&c->extended),
1923 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001924 if (len > c->remote_window)
1925 len = c->remote_window;
1926 if (len > c->remote_maxpacket)
1927 len = c->remote_maxpacket;
1928 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1929 packet_put_int(c->remote_id);
1930 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1931 packet_put_string(buffer_ptr(&c->extended), len);
1932 packet_send();
1933 buffer_consume(&c->extended, len);
1934 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001935 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001936 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001937 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001938}
1939
Ben Lindstrome9c99912001-06-09 00:41:05 +00001940
1941/* -- protocol input */
Damien Miller4af51302000-04-16 11:18:38 +10001942void
Damien Miller630d6f42002-01-22 23:17:30 +11001943channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001944{
Damien Miller34132e52000-01-14 15:45:46 +11001945 int id;
Damien Miller95def091999-11-25 00:26:21 +11001946 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001947 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001948 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001949
Damien Miller95def091999-11-25 00:26:21 +11001950 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001951 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001952 c = channel_lookup(id);
1953 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001954 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001955
Damien Miller95def091999-11-25 00:26:21 +11001956 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001957 if (c->type != SSH_CHANNEL_OPEN &&
1958 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001959 return;
1960
Damien Miller95def091999-11-25 00:26:21 +11001961 /* Get the data. */
1962 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001963
Damien Millera04ad492004-01-21 11:02:09 +11001964 /*
1965 * Ignore data for protocol > 1.3 if output end is no longer open.
1966 * For protocol 2 the sending side is reducing its window as it sends
1967 * data, so we must 'fake' consumption of the data in order to ensure
1968 * that window updates are sent back. Otherwise the connection might
1969 * deadlock.
1970 */
1971 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1972 if (compat20) {
1973 c->local_window -= data_len;
1974 c->local_consumed += data_len;
1975 }
1976 xfree(data);
1977 return;
1978 }
1979
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001980 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001981 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001982 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001983 c->self, data_len, c->local_maxpacket);
1984 }
1985 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001986 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001987 c->self, data_len, c->local_window);
1988 xfree(data);
1989 return;
1990 }
1991 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001992 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001993 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11001994 if (c->datagram)
1995 buffer_put_string(&c->output, data, data_len);
1996 else
1997 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001998 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001999}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002000
Damien Miller4af51302000-04-16 11:18:38 +10002001void
Damien Miller630d6f42002-01-22 23:17:30 +11002002channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002003{
2004 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002005 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002006 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002007 Channel *c;
2008
2009 /* Get the channel number and verify it. */
2010 id = packet_get_int();
2011 c = channel_lookup(id);
2012
2013 if (c == NULL)
2014 packet_disconnect("Received extended_data for bad channel %d.", id);
2015 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002016 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002017 return;
2018 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002019 if (c->flags & CHAN_EOF_RCVD) {
2020 if (datafellows & SSH_BUG_EXTEOF)
2021 debug("channel %d: accepting ext data after eof", id);
2022 else
2023 packet_disconnect("Received extended_data after EOF "
2024 "on channel %d.", id);
2025 }
Damien Miller33b13562000-04-04 14:38:59 +10002026 tcode = packet_get_int();
2027 if (c->efd == -1 ||
2028 c->extended_usage != CHAN_EXTENDED_WRITE ||
2029 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002030 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002031 return;
2032 }
2033 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002034 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002035 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002036 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002037 c->self, data_len, c->local_window);
2038 xfree(data);
2039 return;
2040 }
Damien Millerd3444942000-09-30 14:20:03 +11002041 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002042 c->local_window -= data_len;
2043 buffer_append(&c->extended, data, data_len);
2044 xfree(data);
2045}
2046
Damien Miller4af51302000-04-16 11:18:38 +10002047void
Damien Miller630d6f42002-01-22 23:17:30 +11002048channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002049{
2050 int id;
2051 Channel *c;
2052
Damien Millerb38eff82000-04-01 11:09:21 +10002053 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002054 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002055 c = channel_lookup(id);
2056 if (c == NULL)
2057 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2058 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002059
2060 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002061 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002062 debug("channel %d: FORCE input drain", c->self);
2063 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002064 if (buffer_len(&c->input) == 0)
2065 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002066 }
2067
Damien Millerb38eff82000-04-01 11:09:21 +10002068}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002069
Damien Miller4af51302000-04-16 11:18:38 +10002070void
Damien Miller630d6f42002-01-22 23:17:30 +11002071channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002072{
Damien Millerb38eff82000-04-01 11:09:21 +10002073 int id;
2074 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002075
Damien Millerb38eff82000-04-01 11:09:21 +10002076 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002077 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002078 c = channel_lookup(id);
2079 if (c == NULL)
2080 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002081
2082 /*
2083 * Send a confirmation that we have closed the channel and no more
2084 * data is coming for it.
2085 */
Damien Miller95def091999-11-25 00:26:21 +11002086 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002087 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002088 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002089
Damien Miller5428f641999-11-25 11:54:57 +11002090 /*
2091 * If the channel is in closed state, we have sent a close request,
2092 * and the other side will eventually respond with a confirmation.
2093 * Thus, we cannot free the channel here, because then there would be
2094 * no-one to receive the confirmation. The channel gets freed when
2095 * the confirmation arrives.
2096 */
Damien Millerb38eff82000-04-01 11:09:21 +10002097 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002098 /*
2099 * Not a closed channel - mark it as draining, which will
2100 * cause it to be freed later.
2101 */
Damien Miller76765c02002-01-22 23:21:15 +11002102 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002103 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002104 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002105}
2106
Damien Millerb38eff82000-04-01 11:09:21 +10002107/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10002108void
Damien Miller630d6f42002-01-22 23:17:30 +11002109channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002110{
Damien Millerb38eff82000-04-01 11:09:21 +10002111 int id = packet_get_int();
2112 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002113
Damien Miller48b03fc2002-01-22 23:11:40 +11002114 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002115 if (c == NULL)
2116 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2117 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002118}
2119
Damien Miller4af51302000-04-16 11:18:38 +10002120void
Damien Miller630d6f42002-01-22 23:17:30 +11002121channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002122{
2123 int id = packet_get_int();
2124 Channel *c = channel_lookup(id);
2125
Damien Miller48b03fc2002-01-22 23:11:40 +11002126 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002127 if (c == NULL)
2128 packet_disconnect("Received close confirmation for "
2129 "out-of-range channel %d.", id);
2130 if (c->type != SSH_CHANNEL_CLOSED)
2131 packet_disconnect("Received close confirmation for "
2132 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002133 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002134}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002135
Damien Miller4af51302000-04-16 11:18:38 +10002136void
Damien Miller630d6f42002-01-22 23:17:30 +11002137channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002138{
Damien Millerb38eff82000-04-01 11:09:21 +10002139 int id, remote_id;
2140 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002141
Damien Millerb38eff82000-04-01 11:09:21 +10002142 id = packet_get_int();
2143 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002144
Damien Millerb38eff82000-04-01 11:09:21 +10002145 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2146 packet_disconnect("Received open confirmation for "
2147 "non-opening channel %d.", id);
2148 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002149 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002150 c->remote_id = remote_id;
2151 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002152
2153 if (compat20) {
2154 c->remote_window = packet_get_int();
2155 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002156 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002157 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002158 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002159 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002160 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002161 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002162 c->remote_window, c->remote_maxpacket);
2163 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002164 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002165}
2166
Ben Lindstrombba81212001-06-25 05:01:22 +00002167static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002168reason2txt(int reason)
2169{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002170 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002171 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2172 return "administratively prohibited";
2173 case SSH2_OPEN_CONNECT_FAILED:
2174 return "connect failed";
2175 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2176 return "unknown channel type";
2177 case SSH2_OPEN_RESOURCE_SHORTAGE:
2178 return "resource shortage";
2179 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002180 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002181}
2182
Damien Miller4af51302000-04-16 11:18:38 +10002183void
Damien Miller630d6f42002-01-22 23:17:30 +11002184channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002185{
Kevin Steves12057502001-02-05 14:54:34 +00002186 int id, reason;
2187 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002188 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002189
Damien Millerb38eff82000-04-01 11:09:21 +10002190 id = packet_get_int();
2191 c = channel_lookup(id);
2192
2193 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2194 packet_disconnect("Received open failure for "
2195 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002196 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002197 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002198 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002199 msg = packet_get_string(NULL);
2200 lang = packet_get_string(NULL);
2201 }
Damien Miller996acd22003-04-09 20:59:48 +10002202 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002203 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002204 if (msg != NULL)
2205 xfree(msg);
2206 if (lang != NULL)
2207 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002208 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002209 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002210 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002211 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002212}
2213
Damien Miller33b13562000-04-04 14:38:59 +10002214void
Damien Miller630d6f42002-01-22 23:17:30 +11002215channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002216{
2217 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002218 int id;
2219 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002220
2221 if (!compat20)
2222 return;
2223
2224 /* Get the channel number and verify it. */
2225 id = packet_get_int();
2226 c = channel_lookup(id);
2227
Damien Millerd47c62a2005-12-13 19:33:57 +11002228 if (c == NULL) {
2229 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002230 return;
2231 }
2232 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002233 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002234 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002235 c->remote_window += adjust;
2236}
2237
Damien Miller4af51302000-04-16 11:18:38 +10002238void
Damien Miller630d6f42002-01-22 23:17:30 +11002239channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002241 Channel *c = NULL;
2242 u_short host_port;
2243 char *host, *originator_string;
2244 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002245
Ben Lindstrome9c99912001-06-09 00:41:05 +00002246 remote_id = packet_get_int();
2247 host = packet_get_string(NULL);
2248 host_port = packet_get_int();
2249
2250 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2251 originator_string = packet_get_string(NULL);
2252 } else {
2253 originator_string = xstrdup("unknown (remote did not supply name)");
2254 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002255 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002256 sock = channel_connect_to(host, host_port);
2257 if (sock != -1) {
2258 c = channel_new("connected socket",
2259 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2260 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002261 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002262 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002263 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002264 if (c == NULL) {
2265 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2266 packet_put_int(remote_id);
2267 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002268 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002269 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002270}
2271
2272
Ben Lindstrome9c99912001-06-09 00:41:05 +00002273/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002274
Ben Lindstrom908afed2001-10-03 17:34:59 +00002275void
2276channel_set_af(int af)
2277{
2278 IPv4or6 = af;
2279}
2280
Damien Millerb16461c2002-01-22 23:29:22 +11002281static int
2282channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2283 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002284{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002285 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002286 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002287 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002288 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002289 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002290
Damien Millerb16461c2002-01-22 23:29:22 +11002291 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2292 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002293 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002294
Damien Millerb16461c2002-01-22 23:29:22 +11002295 if (host == NULL) {
2296 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002297 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002298 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002299 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002300 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002301 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002302 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303
Damien Miller5428f641999-11-25 11:54:57 +11002304 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002305 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002306 * specified address or wildcard. On the client, a specified bind
2307 * address will always override gateway_ports. On the server, a
2308 * gateway_ports of 1 (``yes'') will override the client's
2309 * specification and force a wildcard bind, whereas a value of 2
2310 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002311 * asked for.
2312 *
2313 * Special-case listen_addrs are:
2314 *
2315 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2316 * "" (empty string), "*" -> wildcard v4/v6
2317 * "localhost" -> loopback v4/v6
2318 */
2319 addr = NULL;
2320 if (listen_addr == NULL) {
2321 /* No address specified: default to gateway_ports setting */
2322 if (gateway_ports)
2323 wildcard = 1;
2324 } else if (gateway_ports || is_client) {
2325 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2326 strcmp(listen_addr, "0.0.0.0") == 0) ||
2327 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2328 (!is_client && gateway_ports == 1))
2329 wildcard = 1;
2330 else if (strcmp(listen_addr, "localhost") != 0)
2331 addr = listen_addr;
2332 }
2333
2334 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2335 type, wildcard, (addr == NULL) ? "NULL" : addr);
2336
2337 /*
Damien Miller34132e52000-01-14 15:45:46 +11002338 * getaddrinfo returns a loopback address if the hostname is
2339 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002340 */
Damien Miller34132e52000-01-14 15:45:46 +11002341 memset(&hints, 0, sizeof(hints));
2342 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002343 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002344 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002345 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002346 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2347 if (addr == NULL) {
2348 /* This really shouldn't happen */
2349 packet_disconnect("getaddrinfo: fatal error: %s",
2350 gai_strerror(r));
2351 } else {
Damien Millera7270302005-07-06 09:36:05 +10002352 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002353 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2354 }
Damien Millera7270302005-07-06 09:36:05 +10002355 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002356 }
Damien Miller5428f641999-11-25 11:54:57 +11002357
Damien Miller34132e52000-01-14 15:45:46 +11002358 for (ai = aitop; ai; ai = ai->ai_next) {
2359 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2360 continue;
2361 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2362 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002363 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002364 continue;
2365 }
2366 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002367 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002368 if (sock < 0) {
2369 /* this is no error since kernel may not support ipv6 */
2370 verbose("socket: %.100s", strerror(errno));
2371 continue;
2372 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002373
2374 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002375
Damien Miller34132e52000-01-14 15:45:46 +11002376 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002377
Damien Miller34132e52000-01-14 15:45:46 +11002378 /* Bind the socket to the address. */
2379 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2380 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002381 if (!ai->ai_next)
2382 error("bind: %.100s", strerror(errno));
2383 else
2384 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002385
Damien Miller34132e52000-01-14 15:45:46 +11002386 close(sock);
2387 continue;
2388 }
2389 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002390 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002391 error("listen: %.100s", strerror(errno));
2392 close(sock);
2393 continue;
2394 }
2395 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002396 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002397 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002398 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002399 strlcpy(c->path, host, sizeof(c->path));
2400 c->host_port = port_to_connect;
2401 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002402 success = 1;
2403 }
2404 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002405 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002406 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002407 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002408 return success;
Damien Miller95def091999-11-25 00:26:21 +11002409}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002410
Darren Tuckere7066df2004-05-24 10:18:05 +10002411int
2412channel_cancel_rport_listener(const char *host, u_short port)
2413{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002414 u_int i;
2415 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002416
Darren Tucker47eede72005-03-14 23:08:12 +11002417 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002418 Channel *c = channels[i];
2419
2420 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2421 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002422 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002423 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002424 channel_free(c);
2425 found = 1;
2426 }
2427 }
2428
2429 return (found);
2430}
2431
Damien Millerb16461c2002-01-22 23:29:22 +11002432/* protocol local port fwd, used by ssh (and sshd in v1) */
2433int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002434channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002435 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2436{
2437 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002438 listen_host, listen_port, host_to_connect, port_to_connect,
2439 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002440}
2441
2442/* protocol v2 remote port fwd, used by sshd */
2443int
2444channel_setup_remote_fwd_listener(const char *listen_address,
2445 u_short listen_port, int gateway_ports)
2446{
2447 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2448 listen_address, listen_port, NULL, 0, gateway_ports);
2449}
2450
Damien Miller5428f641999-11-25 11:54:57 +11002451/*
2452 * Initiate forwarding of connections to port "port" on remote host through
2453 * the secure channel to host:port from local side.
2454 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002455
Damien Miller4af51302000-04-16 11:18:38 +10002456void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002457channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002458 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459{
Damien Millerdff50992002-01-22 23:16:32 +11002460 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002461
Damien Miller95def091999-11-25 00:26:21 +11002462 /* Record locally that connection to this host/port is permitted. */
2463 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2464 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002465
Damien Miller95def091999-11-25 00:26:21 +11002466 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002467 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002468 const char *address_to_bind;
2469 if (listen_host == NULL)
2470 address_to_bind = "localhost";
2471 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2472 address_to_bind = "";
2473 else
2474 address_to_bind = listen_host;
2475
Damien Miller33b13562000-04-04 14:38:59 +10002476 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2477 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002478 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002479 packet_put_cstring(address_to_bind);
2480 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002481 packet_send();
2482 packet_write_wait();
2483 /* Assume that server accepts the request */
2484 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002485 } else {
2486 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002487 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002488 packet_put_cstring(host_to_connect);
2489 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002490 packet_send();
2491 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002492
2493 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002494 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002495 switch (type) {
2496 case SSH_SMSG_SUCCESS:
2497 success = 1;
2498 break;
2499 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002500 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002501 break;
2502 default:
2503 /* Unknown packet */
2504 packet_disconnect("Protocol error for port forward request:"
2505 "received packet type %d.", type);
2506 }
2507 }
2508 if (success) {
2509 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2510 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2511 permitted_opens[num_permitted_opens].listen_port = listen_port;
2512 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514}
2515
Damien Miller5428f641999-11-25 11:54:57 +11002516/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002517 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002518 * local side.
2519 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002520void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002521channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002522{
2523 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002524
2525 if (!compat20)
2526 return;
2527
2528 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002529 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002530 permitted_opens[i].listen_port == port)
2531 break;
2532 }
2533 if (i >= num_permitted_opens) {
2534 debug("%s: requested forward not found", __func__);
2535 return;
2536 }
2537 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2538 packet_put_cstring("cancel-tcpip-forward");
2539 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002540 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002541 packet_put_int(port);
2542 packet_send();
2543
2544 permitted_opens[i].listen_port = 0;
2545 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002546 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002547 permitted_opens[i].host_to_connect = NULL;
2548}
2549
2550/*
Damien Miller5428f641999-11-25 11:54:57 +11002551 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2552 * listening for the port, and sends back a success reply (or disconnect
2553 * message if there was an error). This never returns if there was an error.
2554 */
Damien Miller4af51302000-04-16 11:18:38 +10002555void
Damien Millere247cc42000-05-07 12:03:14 +10002556channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002557{
Damien Milleraae6c611999-12-06 11:47:28 +11002558 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002559 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002560
Damien Miller95def091999-11-25 00:26:21 +11002561 /* Get arguments from the packet. */
2562 port = packet_get_int();
2563 hostname = packet_get_string(NULL);
2564 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002565
Damien Millerbac2d8a2000-09-05 16:13:06 +11002566#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002567 /*
2568 * Check that an unprivileged user is not trying to forward a
2569 * privileged port.
2570 */
Damien Miller95def091999-11-25 00:26:21 +11002571 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002572 packet_disconnect(
2573 "Requested forwarding of port %d but user is not root.",
2574 port);
2575 if (host_port == 0)
2576 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002577#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002578
Damien Miller0bc1bd82000-11-13 22:57:25 +11002579 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002580 channel_setup_local_fwd_listener(NULL, port, hostname,
2581 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002582
2583 /* Free the argument string. */
2584 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002585}
2586
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002587/*
2588 * Permits opening to any host/port if permitted_opens[] is empty. This is
2589 * usually called by the server, because the user could connect to any port
2590 * anyway, and the server has no way to know but to trust the client anyway.
2591 */
2592void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002593channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002594{
2595 if (num_permitted_opens == 0)
2596 all_opens_permitted = 1;
2597}
2598
Ben Lindstroma3700052001-04-05 23:26:32 +00002599void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002600channel_add_permitted_opens(char *host, int port)
2601{
2602 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2603 fatal("channel_request_remote_forwarding: too many forwards");
2604 debug("allow port forwarding to host %s port %d", host, port);
2605
2606 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2607 permitted_opens[num_permitted_opens].port_to_connect = port;
2608 num_permitted_opens++;
2609
2610 all_opens_permitted = 0;
2611}
2612
Ben Lindstroma3700052001-04-05 23:26:32 +00002613void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002614channel_clear_permitted_opens(void)
2615{
2616 int i;
2617
2618 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002619 if (permitted_opens[i].host_to_connect != NULL)
2620 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002621 num_permitted_opens = 0;
2622
2623}
2624
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002625/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002626static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002627connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002628{
Damien Miller34132e52000-01-14 15:45:46 +11002629 struct addrinfo hints, *ai, *aitop;
2630 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2631 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002632 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002633
Damien Miller34132e52000-01-14 15:45:46 +11002634 memset(&hints, 0, sizeof(hints));
2635 hints.ai_family = IPv4or6;
2636 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002637 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002638 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002639 error("connect_to %.100s: unknown host (%s)", host,
2640 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002641 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002642 }
Damien Miller34132e52000-01-14 15:45:46 +11002643 for (ai = aitop; ai; ai = ai->ai_next) {
2644 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2645 continue;
2646 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2647 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002648 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002649 continue;
2650 }
Damien Miller2372ace2003-05-14 13:42:23 +10002651 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002652 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002653 if (ai->ai_next == NULL)
2654 error("socket: %.100s", strerror(errno));
2655 else
2656 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002657 continue;
2658 }
Damien Miller232711f2004-06-15 10:35:30 +10002659 if (set_nonblock(sock) == -1)
2660 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002661 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2662 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002663 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002664 strerror(errno));
2665 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002666 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002667 }
2668 break; /* success */
2669
2670 }
2671 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002672 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002673 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002674 return -1;
2675 }
2676 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002677 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002678 return sock;
2679}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002680
Damien Miller0bc1bd82000-11-13 22:57:25 +11002681int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002682channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002683{
2684 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002685
Damien Miller0bc1bd82000-11-13 22:57:25 +11002686 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002687 if (permitted_opens[i].host_to_connect != NULL &&
2688 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002689 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002690 permitted_opens[i].host_to_connect,
2691 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002692 error("WARNING: Server requests forwarding for unknown listen_port %d",
2693 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002694 return -1;
2695}
Damien Millerb38eff82000-04-01 11:09:21 +10002696
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002697/* Check if connecting to that port is permitted and connect. */
2698int
2699channel_connect_to(const char *host, u_short port)
2700{
2701 int i, permit;
2702
2703 permit = all_opens_permitted;
2704 if (!permit) {
2705 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002706 if (permitted_opens[i].host_to_connect != NULL &&
2707 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002708 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2709 permit = 1;
2710
2711 }
2712 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002713 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002714 "but the request was denied.", host, port);
2715 return -1;
2716 }
2717 return connect_to(host, port);
2718}
2719
Damien Miller0e220db2004-06-15 10:34:08 +10002720void
2721channel_send_window_changes(void)
2722{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002723 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002724 struct winsize ws;
2725
2726 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002727 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002728 channels[i]->type != SSH_CHANNEL_OPEN)
2729 continue;
2730 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2731 continue;
2732 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002733 packet_put_int((u_int)ws.ws_col);
2734 packet_put_int((u_int)ws.ws_row);
2735 packet_put_int((u_int)ws.ws_xpixel);
2736 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002737 packet_send();
2738 }
2739}
2740
Ben Lindstrome9c99912001-06-09 00:41:05 +00002741/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002742
Damien Miller5428f641999-11-25 11:54:57 +11002743/*
2744 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002745 * Returns 0 and a suitable display number for the DISPLAY variable
2746 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002747 */
Kevin Steves366298c2001-12-19 17:58:01 +00002748int
Damien Miller95c249f2002-02-05 12:11:34 +11002749x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002750 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002751{
Damien Millere7378562001-12-21 14:58:35 +11002752 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002753 int display_number, sock;
2754 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002755 struct addrinfo hints, *ai, *aitop;
2756 char strport[NI_MAXSERV];
2757 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002758
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002759 if (chanids == NULL)
2760 return -1;
2761
Damien Millera34a28b1999-12-14 10:47:15 +11002762 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002763 display_number < MAX_DISPLAYS;
2764 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002765 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002766 memset(&hints, 0, sizeof(hints));
2767 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002768 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002769 hints.ai_socktype = SOCK_STREAM;
2770 snprintf(strport, sizeof strport, "%d", port);
2771 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2772 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002773 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002774 }
Damien Miller34132e52000-01-14 15:45:46 +11002775 for (ai = aitop; ai; ai = ai->ai_next) {
2776 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2777 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002778 sock = socket(ai->ai_family, ai->ai_socktype,
2779 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002780 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002781 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002782 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002783 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002784 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002785 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002786 debug("x11_create_display_inet: Socket family %d not supported",
2787 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002788 continue;
2789 }
Damien Miller34132e52000-01-14 15:45:46 +11002790 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002791#ifdef IPV6_V6ONLY
2792 if (ai->ai_family == AF_INET6) {
2793 int on = 1;
2794 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2795 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2796 }
2797#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002798 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002799 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002800 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002801 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002802
2803 if (ai->ai_next)
2804 continue;
2805
Damien Miller34132e52000-01-14 15:45:46 +11002806 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002807 close(socks[n]);
2808 }
2809 num_socks = 0;
2810 break;
2811 }
2812 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002813#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002814 if (num_socks == NUM_SOCKS)
2815 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002816#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002817 if (x11_use_localhost) {
2818 if (num_socks == NUM_SOCKS)
2819 break;
2820 } else {
2821 break;
2822 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002823#endif
Damien Miller95def091999-11-25 00:26:21 +11002824 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002825 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002826 if (num_socks > 0)
2827 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828 }
Damien Miller95def091999-11-25 00:26:21 +11002829 if (display_number >= MAX_DISPLAYS) {
2830 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002831 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002832 }
Damien Miller95def091999-11-25 00:26:21 +11002833 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002834 for (n = 0; n < num_socks; n++) {
2835 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002836 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002837 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002838 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002839 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002840 }
Damien Miller95def091999-11-25 00:26:21 +11002841 }
Damien Miller34132e52000-01-14 15:45:46 +11002842
Damien Miller34132e52000-01-14 15:45:46 +11002843 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002844 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002845 for (n = 0; n < num_socks; n++) {
2846 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002847 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002848 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2849 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002850 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002851 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002852 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002853 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002854 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002855
Kevin Steves366298c2001-12-19 17:58:01 +00002856 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002857 *display_numberp = display_number;
2858 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002859}
2860
Ben Lindstrombba81212001-06-25 05:01:22 +00002861static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002862connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863{
Damien Miller95def091999-11-25 00:26:21 +11002864 int sock;
2865 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002866
Damien Miller3afe3752001-12-21 12:39:51 +11002867 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2868 if (sock < 0)
2869 error("socket: %.100s", strerror(errno));
2870 memset(&addr, 0, sizeof(addr));
2871 addr.sun_family = AF_UNIX;
2872 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002873 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002874 return sock;
2875 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002876 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2877 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002878}
2879
Damien Millerbd483e72000-04-30 10:00:53 +10002880int
2881x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002882{
Damien Miller398e1cf2002-02-05 11:52:13 +11002883 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002884 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002885 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002886 struct addrinfo hints, *ai, *aitop;
2887 char strport[NI_MAXSERV];
2888 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002889
Damien Miller95def091999-11-25 00:26:21 +11002890 /* Try to open a socket for the local X server. */
2891 display = getenv("DISPLAY");
2892 if (!display) {
2893 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002894 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002895 }
Damien Miller5428f641999-11-25 11:54:57 +11002896 /*
2897 * Now we decode the value of the DISPLAY variable and make a
2898 * connection to the real X server.
2899 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002900
Damien Miller5428f641999-11-25 11:54:57 +11002901 /*
2902 * Check if it is a unix domain socket. Unix domain displays are in
2903 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2904 */
Damien Miller95def091999-11-25 00:26:21 +11002905 if (strncmp(display, "unix:", 5) == 0 ||
2906 display[0] == ':') {
2907 /* Connect to the unix domain socket. */
2908 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2909 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002910 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002911 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002912 }
2913 /* Create a socket. */
2914 sock = connect_local_xsocket(display_number);
2915 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002916 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002917
2918 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002919 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002920 }
Damien Miller5428f641999-11-25 11:54:57 +11002921 /*
2922 * Connect to an inet socket. The DISPLAY value is supposedly
2923 * hostname:d[.s], where hostname may also be numeric IP address.
2924 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002925 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002926 cp = strchr(buf, ':');
2927 if (!cp) {
2928 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002929 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002930 }
Damien Miller95def091999-11-25 00:26:21 +11002931 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002932 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002933 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2934 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002935 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002936 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002937 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002938
Damien Miller34132e52000-01-14 15:45:46 +11002939 /* Look up the host address */
2940 memset(&hints, 0, sizeof(hints));
2941 hints.ai_family = IPv4or6;
2942 hints.ai_socktype = SOCK_STREAM;
2943 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2944 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2945 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002946 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002947 }
Damien Miller34132e52000-01-14 15:45:46 +11002948 for (ai = aitop; ai; ai = ai->ai_next) {
2949 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002950 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002951 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002952 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002953 continue;
2954 }
2955 /* Connect it to the display. */
2956 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002957 debug2("connect %.100s port %d: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002958 6000 + display_number, strerror(errno));
2959 close(sock);
2960 continue;
2961 }
2962 /* Success */
2963 break;
Damien Miller34132e52000-01-14 15:45:46 +11002964 }
Damien Miller34132e52000-01-14 15:45:46 +11002965 freeaddrinfo(aitop);
2966 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002967 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002968 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002969 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002970 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002971 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002972 return sock;
2973}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002974
Damien Millerbd483e72000-04-30 10:00:53 +10002975/*
2976 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2977 * the remote channel number. We should do whatever we want, and respond
2978 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2979 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002980
Damien Millerbd483e72000-04-30 10:00:53 +10002981void
Damien Miller630d6f42002-01-22 23:17:30 +11002982x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002983{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002984 Channel *c = NULL;
2985 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002986 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002987
2988 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002989
2990 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002991
2992 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002993 remote_host = packet_get_string(NULL);
2994 } else {
2995 remote_host = xstrdup("unknown (remote did not supply name)");
2996 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002997 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002998
2999 /* Obtain a connection to the real X display. */
3000 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003001 if (sock != -1) {
3002 /* Allocate a channel for this connection. */
3003 c = channel_new("connected x11 socket",
3004 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3005 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003006 c->remote_id = remote_id;
3007 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003008 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003009 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003010 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003011 /* Send refusal to the remote host. */
3012 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003013 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003014 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003015 /* Send a confirmation to the remote host. */
3016 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003017 packet_put_int(remote_id);
3018 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003019 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003020 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003021}
3022
Damien Miller69b69aa2000-10-28 14:19:58 +11003023/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3024void
Damien Miller630d6f42002-01-22 23:17:30 +11003025deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003026{
3027 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003028
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003029 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003030 case SSH_SMSG_AGENT_OPEN:
3031 error("Warning: ssh server tried agent forwarding.");
3032 break;
3033 case SSH_SMSG_X11_OPEN:
3034 error("Warning: ssh server tried X11 forwarding.");
3035 break;
3036 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003037 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003038 break;
3039 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003040 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003041 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3042 packet_put_int(rchan);
3043 packet_send();
3044}
3045
Damien Miller5428f641999-11-25 11:54:57 +11003046/*
3047 * Requests forwarding of X11 connections, generates fake authentication
3048 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003049 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003050 */
Damien Miller4af51302000-04-16 11:18:38 +10003051void
Damien Miller17e7ed02005-06-17 12:54:33 +10003052x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003053 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003054{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003055 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003056 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003057 char *new_data;
3058 int screen_number;
3059 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003060 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003061
Damien Millerf92c0792005-07-06 09:45:26 +10003062 if (x11_saved_display == NULL)
3063 x11_saved_display = xstrdup(disp);
3064 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003065 error("x11_request_forwarding_with_spoofing: different "
3066 "$DISPLAY already forwarded");
3067 return;
3068 }
3069
Damien Miller17e7ed02005-06-17 12:54:33 +10003070 cp = disp;
3071 if (disp)
3072 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003073 if (cp)
3074 cp = strchr(cp, '.');
3075 if (cp)
3076 screen_number = atoi(cp + 1);
3077 else
3078 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003079
Damien Miller13390022005-07-06 09:44:19 +10003080 if (x11_saved_proto == NULL) {
3081 /* Save protocol name. */
3082 x11_saved_proto = xstrdup(proto);
3083 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003084 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003085 * of the same length.
3086 */
3087 x11_saved_data = xmalloc(data_len);
3088 x11_fake_data = xmalloc(data_len);
3089 for (i = 0; i < data_len; i++) {
3090 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3091 fatal("x11_request_forwarding: bad "
3092 "authentication data: %.100s", data);
3093 if (i % 4 == 0)
3094 rnd = arc4random();
3095 x11_saved_data[i] = value;
3096 x11_fake_data[i] = rnd & 0xff;
3097 rnd >>= 8;
3098 }
3099 x11_saved_data_len = data_len;
3100 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003101 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003102
Damien Miller95def091999-11-25 00:26:21 +11003103 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003104 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003105
Damien Miller95def091999-11-25 00:26:21 +11003106 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003107 if (compat20) {
3108 channel_request_start(client_session_id, "x11-req", 0);
3109 packet_put_char(0); /* XXX bool single connection */
3110 } else {
3111 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3112 }
3113 packet_put_cstring(proto);
3114 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003115 packet_put_int(screen_number);
3116 packet_send();
3117 packet_write_wait();
3118 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003119}
3120
Ben Lindstrome9c99912001-06-09 00:41:05 +00003121
3122/* -- agent forwarding */
3123
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003124/* Sends a message to the server to request authentication fd forwarding. */
3125
Damien Miller4af51302000-04-16 11:18:38 +10003126void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003127auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003128{
Damien Miller95def091999-11-25 00:26:21 +11003129 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3130 packet_send();
3131 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003132}