blob: 78d4d918729cb100e479ab2c0f5bb25e2265297b [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 Miller99bd21e2006-03-15 11:11:28 +110042RCSID("$OpenBSD: channels.c,v 1.233 2006/02/07 01:42:00 stevesk Exp $");
43
44#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
46#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "ssh1.h"
48#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "packet.h"
50#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "log.h"
52#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100056#include "key.h"
57#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110058#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100059#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Ben Lindstrome9c99912001-06-09 00:41:05 +000061/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller5428f641999-11-25 11:54:57 +110063/*
64 * Pointer to an array containing all allocated channels. The array is
65 * dynamically extended as needed.
66 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000067static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller5428f641999-11-25 11:54:57 +110069/*
70 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000071 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110072 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100073static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075/*
76 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000077 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110078 */
Damien Miller5e953212001-01-30 09:14:00 +110079static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Ben Lindstrome9c99912001-06-09 00:41:05 +000082/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller5428f641999-11-25 11:54:57 +110084/*
85 * Data structure for storing which hosts are permitted for forward requests.
86 * The local sides of any remote forwards are stored in this array to prevent
87 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
88 * network (which might be behind a firewall).
89 */
Damien Miller95def091999-11-25 00:26:21 +110090typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100091 char *host_to_connect; /* Connect to 'host'. */
92 u_short port_to_connect; /* Connect to 'port'. */
93 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094} ForwardPermission;
95
96/* List of all permitted host/port pairs to connect. */
97static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000098
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099/* Number of permitted host/port pairs in the array. */
100static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * If this is true, all opens are permitted. This is the case on the server
103 * on which we have to trust the client anyway, and the user could do
104 * anything after logging in anyway.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106static int all_opens_permitted = 0;
107
Ben Lindstrome9c99912001-06-09 00:41:05 +0000108
109/* -- X11 forwarding */
110
111/* Maximum number of fake X11 displays to try. */
112#define MAX_DISPLAYS 1000
113
Damien Miller13390022005-07-06 09:44:19 +1000114/* Saved X11 local (client) display. */
115static char *x11_saved_display = NULL;
116
Ben Lindstrome9c99912001-06-09 00:41:05 +0000117/* Saved X11 authentication protocol name. */
118static char *x11_saved_proto = NULL;
119
120/* Saved X11 authentication data. This is the real data. */
121static char *x11_saved_data = NULL;
122static u_int x11_saved_data_len = 0;
123
124/*
125 * Fake X11 authentication data. This is what the server will be sending us;
126 * we should replace any occurrences of this by the real data.
127 */
128static char *x11_fake_data = NULL;
129static u_int x11_fake_data_len;
130
131
132/* -- agent forwarding */
133
134#define NUM_SOCKS 10
135
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000137static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000138
Ben Lindstrome9c99912001-06-09 00:41:05 +0000139/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000141
Ben Lindstrome9c99912001-06-09 00:41:05 +0000142/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000143
144Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100145channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000146{
147 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000149 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100150 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000151 return NULL;
152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000153 c = channels[id];
154 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100155 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000156 return NULL;
157 }
158 return c;
159}
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100162 * Returns the channel if it is allowed to receive protocol messages.
163 * Private channels, like listening sockets, may not receive messages.
164 */
165Channel *
166channel_lookup(int id)
167{
168 Channel *c;
169
170 if ((c = channel_by_id(id)) == NULL)
171 return (NULL);
172
173 switch(c->type) {
174 case SSH_CHANNEL_X11_OPEN:
175 case SSH_CHANNEL_LARVAL:
176 case SSH_CHANNEL_CONNECTING:
177 case SSH_CHANNEL_DYNAMIC:
178 case SSH_CHANNEL_OPENING:
179 case SSH_CHANNEL_OPEN:
180 case SSH_CHANNEL_INPUT_DRAINING:
181 case SSH_CHANNEL_OUTPUT_DRAINING:
182 return (c);
183 break;
184 }
185 logit("Non-public channel %d, type %d.", id, c->type);
186 return (NULL);
187}
188
189/*
Damien Millere247cc42000-05-07 12:03:14 +1000190 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000191 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100192 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100195channel_register_fds(Channel *c, int rfd, int wfd, int efd,
196 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller95def091999-11-25 00:26:21 +1100198 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100199 channel_max_fd = MAX(channel_max_fd, rfd);
200 channel_max_fd = MAX(channel_max_fd, wfd);
201 channel_max_fd = MAX(channel_max_fd, efd);
202
Damien Miller5428f641999-11-25 11:54:57 +1100203 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000204
Damien Miller6f83b8e2000-05-02 09:23:45 +1000205 c->rfd = rfd;
206 c->wfd = wfd;
207 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000208 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000209 c->efd = efd;
210 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100211
Damien Miller79438cc2001-02-16 12:34:57 +1100212 /* XXX ugly hack: nonblock is only set by the server */
213 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000214 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100215 c->isatty = 1;
216 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000217 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100218 c->self, c->wfd);
219 }
220 } else {
221 c->isatty = 0;
222 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000223 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100224
Damien Miller69b69aa2000-10-28 14:19:58 +1100225 /* enable nonblocking mode */
226 if (nonblock) {
227 if (rfd != -1)
228 set_nonblock(rfd);
229 if (wfd != -1)
230 set_nonblock(wfd);
231 if (efd != -1)
232 set_nonblock(efd);
233 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000234}
235
236/*
237 * Allocate a new channel object and set its type and socket. This will cause
238 * remote_name to be freed.
239 */
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;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000252 channels = xmalloc(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. */
277 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000278 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100279 buffer_init(&c->input);
280 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000281 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100282 c->ostate = CHAN_OUTPUT_OPEN;
283 c->istate = CHAN_INPUT_OPEN;
284 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100285 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100286 c->self = found;
287 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000288 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000289 c->local_window = window;
290 c->local_window_max = window;
291 c->local_consumed = 0;
292 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100293 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000294 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000295 c->remote_window = 0;
296 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000297 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100298 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000299 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100300 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100301 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000302 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000303 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100304 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100305 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000306 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000308
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000309static int
310channel_find_maxfd(void)
311{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000312 u_int i;
313 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000314 Channel *c;
315
316 for (i = 0; i < channels_alloc; i++) {
317 c = channels[i];
318 if (c != NULL) {
319 max = MAX(max, c->rfd);
320 max = MAX(max, c->wfd);
321 max = MAX(max, c->efd);
322 }
323 }
324 return max;
325}
326
327int
328channel_close_fd(int *fdp)
329{
330 int ret = 0, fd = *fdp;
331
332 if (fd != -1) {
333 ret = close(fd);
334 *fdp = -1;
335 if (fd == channel_max_fd)
336 channel_max_fd = channel_find_maxfd();
337 }
338 return ret;
339}
340
Damien Miller6f83b8e2000-05-02 09:23:45 +1000341/* Close all channel fd/socket. */
342
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000344channel_close_fds(Channel *c)
345{
Damien Miller0e220db2004-06-15 10:34:08 +1000346 debug3("channel %d: close_fds r %d w %d e %d c %d",
347 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000348
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000349 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000350 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000351 channel_close_fd(&c->rfd);
352 channel_close_fd(&c->wfd);
353 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000354}
355
356/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000357
Damien Miller4af51302000-04-16 11:18:38 +1000358void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000359channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000361 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000362 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000363
364 for (n = 0, i = 0; i < channels_alloc; i++)
365 if (channels[i])
366 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000367 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000368 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000369
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000370 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000371 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000372 xfree(s);
373
Damien Miller6f83b8e2000-05-02 09:23:45 +1000374 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000375 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000376 if (c->ctl_fd != -1)
377 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000378 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000379 buffer_free(&c->input);
380 buffer_free(&c->output);
381 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000382 if (c->remote_name) {
383 xfree(c->remote_name);
384 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100385 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000386 channels[c->self] = NULL;
387 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388}
389
Ben Lindstrome9c99912001-06-09 00:41:05 +0000390void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000391channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000392{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000393 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000394
Ben Lindstrom601e4362001-06-21 03:19:23 +0000395 for (i = 0; i < channels_alloc; i++)
396 if (channels[i] != NULL)
397 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000398}
399
400/*
401 * Closes the sockets/fds of all channels. This is used to close extra file
402 * descriptors after a fork.
403 */
404
405void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000406channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000408 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409
410 for (i = 0; i < channels_alloc; i++)
411 if (channels[i] != NULL)
412 channel_close_fds(channels[i]);
413}
414
415/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000416 * Stop listening to channels.
417 */
418
419void
420channel_stop_listening(void)
421{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000422 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000423 Channel *c;
424
425 for (i = 0; i < channels_alloc; i++) {
426 c = channels[i];
427 if (c != NULL) {
428 switch (c->type) {
429 case SSH_CHANNEL_AUTH_SOCKET:
430 case SSH_CHANNEL_PORT_LISTENER:
431 case SSH_CHANNEL_RPORT_LISTENER:
432 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000433 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000434 channel_free(c);
435 break;
436 }
437 }
438 }
439}
440
441/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000442 * Returns true if no channel has too much buffered data, and false if one or
443 * more channel is overfull.
444 */
445
446int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000447channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448{
449 u_int i;
450 Channel *c;
451
452 for (i = 0; i < channels_alloc; i++) {
453 c = channels[i];
454 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000455#if 0
456 if (!compat20 &&
457 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100458 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000459 c->self, buffer_len(&c->input));
460 return 0;
461 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000462#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000463 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000464 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000465 c->self, buffer_len(&c->output),
466 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000467 return 0;
468 }
469 }
470 }
471 return 1;
472}
473
474/* Returns true if any channel is still open. */
475
476int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000477channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000478{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000479 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480 Channel *c;
481
482 for (i = 0; i < channels_alloc; i++) {
483 c = channels[i];
484 if (c == NULL)
485 continue;
486 switch (c->type) {
487 case SSH_CHANNEL_X11_LISTENER:
488 case SSH_CHANNEL_PORT_LISTENER:
489 case SSH_CHANNEL_RPORT_LISTENER:
490 case SSH_CHANNEL_CLOSED:
491 case SSH_CHANNEL_AUTH_SOCKET:
492 case SSH_CHANNEL_DYNAMIC:
493 case SSH_CHANNEL_CONNECTING:
494 case SSH_CHANNEL_ZOMBIE:
495 continue;
496 case SSH_CHANNEL_LARVAL:
497 if (!compat20)
498 fatal("cannot happen: SSH_CHANNEL_LARVAL");
499 continue;
500 case SSH_CHANNEL_OPENING:
501 case SSH_CHANNEL_OPEN:
502 case SSH_CHANNEL_X11_OPEN:
503 return 1;
504 case SSH_CHANNEL_INPUT_DRAINING:
505 case SSH_CHANNEL_OUTPUT_DRAINING:
506 if (!compat13)
507 fatal("cannot happen: OUT_DRAIN");
508 return 1;
509 default:
510 fatal("channel_still_open: bad channel type %d", c->type);
511 /* NOTREACHED */
512 }
513 }
514 return 0;
515}
516
517/* Returns the id of an open channel suitable for keepaliving */
518
519int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000520channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000522 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000523 Channel *c;
524
525 for (i = 0; i < channels_alloc; i++) {
526 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000527 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000528 continue;
529 switch (c->type) {
530 case SSH_CHANNEL_CLOSED:
531 case SSH_CHANNEL_DYNAMIC:
532 case SSH_CHANNEL_X11_LISTENER:
533 case SSH_CHANNEL_PORT_LISTENER:
534 case SSH_CHANNEL_RPORT_LISTENER:
535 case SSH_CHANNEL_OPENING:
536 case SSH_CHANNEL_CONNECTING:
537 case SSH_CHANNEL_ZOMBIE:
538 continue;
539 case SSH_CHANNEL_LARVAL:
540 case SSH_CHANNEL_AUTH_SOCKET:
541 case SSH_CHANNEL_OPEN:
542 case SSH_CHANNEL_X11_OPEN:
543 return i;
544 case SSH_CHANNEL_INPUT_DRAINING:
545 case SSH_CHANNEL_OUTPUT_DRAINING:
546 if (!compat13)
547 fatal("cannot happen: OUT_DRAIN");
548 return i;
549 default:
550 fatal("channel_find_open: bad channel type %d", c->type);
551 /* NOTREACHED */
552 }
553 }
554 return -1;
555}
556
557
558/*
559 * Returns a message describing the currently open forwarded connections,
560 * suitable for sending to the client. The message contains crlf pairs for
561 * newlines.
562 */
563
564char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000565channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566{
567 Buffer buffer;
568 Channel *c;
569 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000570 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000571
572 buffer_init(&buffer);
573 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
574 buffer_append(&buffer, buf, strlen(buf));
575 for (i = 0; i < channels_alloc; i++) {
576 c = channels[i];
577 if (c == NULL)
578 continue;
579 switch (c->type) {
580 case SSH_CHANNEL_X11_LISTENER:
581 case SSH_CHANNEL_PORT_LISTENER:
582 case SSH_CHANNEL_RPORT_LISTENER:
583 case SSH_CHANNEL_CLOSED:
584 case SSH_CHANNEL_AUTH_SOCKET:
585 case SSH_CHANNEL_ZOMBIE:
586 continue;
587 case SSH_CHANNEL_LARVAL:
588 case SSH_CHANNEL_OPENING:
589 case SSH_CHANNEL_CONNECTING:
590 case SSH_CHANNEL_DYNAMIC:
591 case SSH_CHANNEL_OPEN:
592 case SSH_CHANNEL_X11_OPEN:
593 case SSH_CHANNEL_INPUT_DRAINING:
594 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000595 snprintf(buf, sizeof buf,
596 " #%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 +0000597 c->self, c->remote_name,
598 c->type, c->remote_id,
599 c->istate, buffer_len(&c->input),
600 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000601 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602 buffer_append(&buffer, buf, strlen(buf));
603 continue;
604 default:
605 fatal("channel_open_message: bad channel type %d", c->type);
606 /* NOTREACHED */
607 }
608 }
609 buffer_append(&buffer, "\0", 1);
610 cp = xstrdup(buffer_ptr(&buffer));
611 buffer_free(&buffer);
612 return cp;
613}
614
615void
616channel_send_open(int id)
617{
618 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000619
Ben Lindstrome9c99912001-06-09 00:41:05 +0000620 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000621 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000622 return;
623 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000624 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625 packet_start(SSH2_MSG_CHANNEL_OPEN);
626 packet_put_cstring(c->ctype);
627 packet_put_int(c->self);
628 packet_put_int(c->local_window);
629 packet_put_int(c->local_maxpacket);
630 packet_send();
631}
632
633void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000634channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000635{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000636 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000637
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000639 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000640 return;
641 }
Damien Miller0e220db2004-06-15 10:34:08 +1000642 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 packet_start(SSH2_MSG_CHANNEL_REQUEST);
644 packet_put_int(c->remote_id);
645 packet_put_cstring(service);
646 packet_put_char(wantconfirm);
647}
648void
Damien Miller0e220db2004-06-15 10:34:08 +1000649channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000650{
651 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000652
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000654 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655 return;
656 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100657 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000658 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659}
660void
Damien Miller39eda6e2005-11-05 14:52:50 +1100661channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662{
Damien Millerd47c62a2005-12-13 19:33:57 +1100663 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000664
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000666 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 return;
668 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000669 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100670 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671}
672void
673channel_cancel_cleanup(int id)
674{
Damien Millerd47c62a2005-12-13 19:33:57 +1100675 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000676
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000678 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 return;
680 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000681 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100682 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683}
684void
Damien Miller077b2382005-12-31 16:22:32 +1100685channel_register_filter(int id, channel_infilter_fn *ifn,
686 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000687{
688 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000689
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000691 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000692 return;
693 }
Damien Miller077b2382005-12-31 16:22:32 +1100694 c->input_filter = ifn;
695 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696}
697
698void
699channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100700 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701{
702 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000703
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
705 fatal("channel_activate for non-larval channel %d.", id);
706 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
707 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100708 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
710 packet_put_int(c->remote_id);
711 packet_put_int(c->local_window);
712 packet_send();
713}
714
Damien Miller5428f641999-11-25 11:54:57 +1100715/*
Damien Millerb38eff82000-04-01 11:09:21 +1000716 * 'channel_pre*' are called just before select() to add any bits relevant to
717 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100718 */
Damien Millerb38eff82000-04-01 11:09:21 +1000719/*
720 * 'channel_post*': perform any appropriate operations for channels which
721 * have events pending.
722 */
723typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
724chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
725chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
726
Ben Lindstrombba81212001-06-25 05:01:22 +0000727static void
Damien Millerb38eff82000-04-01 11:09:21 +1000728channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
729{
730 FD_SET(c->sock, readset);
731}
732
Ben Lindstrombba81212001-06-25 05:01:22 +0000733static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000734channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
735{
736 debug3("channel %d: waiting for connection", c->self);
737 FD_SET(c->sock, writeset);
738}
739
Ben Lindstrombba81212001-06-25 05:01:22 +0000740static void
Damien Millerb38eff82000-04-01 11:09:21 +1000741channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
742{
743 if (buffer_len(&c->input) < packet_get_maxsize())
744 FD_SET(c->sock, readset);
745 if (buffer_len(&c->output) > 0)
746 FD_SET(c->sock, writeset);
747}
748
Ben Lindstrombba81212001-06-25 05:01:22 +0000749static void
Damien Millerde6987c2002-01-22 23:20:40 +1100750channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000751{
Damien Millerde6987c2002-01-22 23:20:40 +1100752 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000753
Darren Tucker11327cc2005-03-14 23:22:25 +1100754 /* check buffer limits */
755 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
756
Damien Miller33b13562000-04-04 14:38:59 +1000757 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100758 limit > 0 &&
759 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000760 FD_SET(c->rfd, readset);
761 if (c->ostate == CHAN_OUTPUT_OPEN ||
762 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
763 if (buffer_len(&c->output) > 0) {
764 FD_SET(c->wfd, writeset);
765 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000766 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000767 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
768 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000769 else
770 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000771 }
772 }
773 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100774 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000775 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
776 buffer_len(&c->extended) > 0)
777 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000778 else if (!(c->flags & CHAN_EOF_SENT) &&
779 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000780 buffer_len(&c->extended) < c->remote_window)
781 FD_SET(c->efd, readset);
782 }
Damien Miller0e220db2004-06-15 10:34:08 +1000783 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000784 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000785 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
786 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000787}
788
Ben Lindstrombba81212001-06-25 05:01:22 +0000789static void
Damien Millerb38eff82000-04-01 11:09:21 +1000790channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
791{
792 if (buffer_len(&c->input) == 0) {
793 packet_start(SSH_MSG_CHANNEL_CLOSE);
794 packet_put_int(c->remote_id);
795 packet_send();
796 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000797 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000798 }
799}
800
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static void
Damien Millerb38eff82000-04-01 11:09:21 +1000802channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
803{
804 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000805 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000806 else
Damien Millerb38eff82000-04-01 11:09:21 +1000807 FD_SET(c->sock, writeset);
808}
809
810/*
811 * This is a special state for X11 authentication spoofing. An opened X11
812 * connection (when authentication spoofing is being done) remains in this
813 * state until the first packet has been completely read. The authentication
814 * data in that packet is then substituted by the real data if it matches the
815 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000816 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000817 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000818 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000819static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000820x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000821{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000822 u_char *ucp;
823 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000824
825 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000826 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000827 return 0;
828
829 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100830 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000831 if (ucp[0] == 0x42) { /* Byte order MSB first. */
832 proto_len = 256 * ucp[6] + ucp[7];
833 data_len = 256 * ucp[8] + ucp[9];
834 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
835 proto_len = ucp[6] + 256 * ucp[7];
836 data_len = ucp[8] + 256 * ucp[9];
837 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000838 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100839 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000840 return -1;
841 }
842
843 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000844 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000845 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
846 return 0;
847
848 /* Check if authentication protocol matches. */
849 if (proto_len != strlen(x11_saved_proto) ||
850 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000851 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000852 return -1;
853 }
854 /* Check if authentication data matches our fake data. */
855 if (data_len != x11_fake_data_len ||
856 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
857 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000858 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000859 return -1;
860 }
861 /* Check fake data length */
862 if (x11_fake_data_len != x11_saved_data_len) {
863 error("X11 fake_data_len %d != saved_data_len %d",
864 x11_fake_data_len, x11_saved_data_len);
865 return -1;
866 }
867 /*
868 * Received authentication protocol and data match
869 * our fake data. Substitute the fake data with real
870 * data.
871 */
872 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
873 x11_saved_data, x11_saved_data_len);
874 return 1;
875}
876
Ben Lindstrombba81212001-06-25 05:01:22 +0000877static void
Damien Millerb38eff82000-04-01 11:09:21 +1000878channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
879{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000880 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000881
Damien Millerb38eff82000-04-01 11:09:21 +1000882 if (ret == 1) {
883 /* Start normal processing for the channel. */
884 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000885 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000886 } else if (ret == -1) {
887 /*
888 * We have received an X11 connection that has bad
889 * authentication information.
890 */
Damien Miller996acd22003-04-09 20:59:48 +1000891 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000892 buffer_clear(&c->input);
893 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000894 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000895 c->sock = -1;
896 c->type = SSH_CHANNEL_CLOSED;
897 packet_start(SSH_MSG_CHANNEL_CLOSE);
898 packet_put_int(c->remote_id);
899 packet_send();
900 }
901}
902
Ben Lindstrombba81212001-06-25 05:01:22 +0000903static void
Damien Millerbd483e72000-04-30 10:00:53 +1000904channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000905{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000906 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000907
908 /* c->force_drain = 1; */
909
Damien Millerb38eff82000-04-01 11:09:21 +1000910 if (ret == 1) {
911 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100912 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000913 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000914 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000915 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100916 chan_read_failed(c);
917 buffer_clear(&c->input);
918 chan_ibuf_empty(c);
919 buffer_clear(&c->output);
920 /* for proto v1, the peer will send an IEOF */
921 if (compat20)
922 chan_write_failed(c);
923 else
924 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000925 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000926 }
927}
928
Ben Lindstromb3921512001-04-11 15:57:50 +0000929/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000930static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000931channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000932{
Damien Millera10f5612002-09-12 09:49:15 +1000933 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000934 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100935 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000936 struct {
937 u_int8_t version;
938 u_int8_t command;
939 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000940 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000941 } s4_req, s4_rsp;
942
Ben Lindstromb3921512001-04-11 15:57:50 +0000943 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000944
945 have = buffer_len(&c->input);
946 len = sizeof(s4_req);
947 if (have < len)
948 return 0;
949 p = buffer_ptr(&c->input);
950 for (found = 0, i = len; i < have; i++) {
951 if (p[i] == '\0') {
952 found = 1;
953 break;
954 }
955 if (i > 1024) {
956 /* the peer is probably sending garbage */
957 debug("channel %d: decode socks4: too long",
958 c->self);
959 return -1;
960 }
961 }
962 if (!found)
963 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000964 buffer_get(&c->input, (char *)&s4_req.version, 1);
965 buffer_get(&c->input, (char *)&s4_req.command, 1);
966 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000967 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000968 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000969 p = buffer_ptr(&c->input);
970 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000971 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000972 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000973 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000974 c->self, len, have);
975 strlcpy(username, p, sizeof(username));
976 buffer_consume(&c->input, len);
977 buffer_consume(&c->input, 1); /* trailing '\0' */
978
Ben Lindstromb3921512001-04-11 15:57:50 +0000979 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000980 strlcpy(c->path, host, sizeof(c->path));
981 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100982
Damien Millerfbdeece2003-09-02 22:52:31 +1000983 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000984 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985
Ben Lindstromb3921512001-04-11 15:57:50 +0000986 if (s4_req.command != 1) {
987 debug("channel %d: cannot handle: socks4 cn %d",
988 c->self, s4_req.command);
989 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000991 s4_rsp.version = 0; /* vn: 0 for reply */
992 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000993 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000994 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000995 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000996 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000997}
998
Darren Tucker46471c92003-07-03 13:55:19 +1000999/* try to decode a socks5 header */
1000#define SSH_SOCKS5_AUTHDONE 0x1000
1001#define SSH_SOCKS5_NOAUTH 0x00
1002#define SSH_SOCKS5_IPV4 0x01
1003#define SSH_SOCKS5_DOMAIN 0x03
1004#define SSH_SOCKS5_IPV6 0x04
1005#define SSH_SOCKS5_CONNECT 0x01
1006#define SSH_SOCKS5_SUCCESS 0x00
1007
1008static int
1009channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset)
1010{
1011 struct {
1012 u_int8_t version;
1013 u_int8_t command;
1014 u_int8_t reserved;
1015 u_int8_t atyp;
1016 } s5_req, s5_rsp;
1017 u_int16_t dest_port;
1018 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +10001019 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001020
1021 debug2("channel %d: decode socks5", c->self);
1022 p = buffer_ptr(&c->input);
1023 if (p[0] != 0x05)
1024 return -1;
1025 have = buffer_len(&c->input);
1026 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1027 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001028 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001029 return 0;
1030 nmethods = p[1];
1031 if (have < nmethods + 2)
1032 return 0;
1033 /* look for method: "NO AUTHENTICATION REQUIRED" */
1034 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1035 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1036 found = 1;
1037 break;
1038 }
1039 }
1040 if (!found) {
1041 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1042 c->self);
1043 return -1;
1044 }
1045 buffer_consume(&c->input, nmethods + 2);
1046 buffer_put_char(&c->output, 0x05); /* version */
1047 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1048 FD_SET(c->sock, writeset);
1049 c->flags |= SSH_SOCKS5_AUTHDONE;
1050 debug2("channel %d: socks5 auth done", c->self);
1051 return 0; /* need more */
1052 }
1053 debug2("channel %d: socks5 post auth", c->self);
1054 if (have < sizeof(s5_req)+1)
1055 return 0; /* need more */
1056 memcpy((char *)&s5_req, p, sizeof(s5_req));
1057 if (s5_req.version != 0x05 ||
1058 s5_req.command != SSH_SOCKS5_CONNECT ||
1059 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001060 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001061 return -1;
1062 }
Darren Tucker47eede72005-03-14 23:08:12 +11001063 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001064 case SSH_SOCKS5_IPV4:
1065 addrlen = 4;
1066 af = AF_INET;
1067 break;
1068 case SSH_SOCKS5_DOMAIN:
1069 addrlen = p[sizeof(s5_req)];
1070 af = -1;
1071 break;
1072 case SSH_SOCKS5_IPV6:
1073 addrlen = 16;
1074 af = AF_INET6;
1075 break;
1076 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001077 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001078 return -1;
1079 }
1080 if (have < 4 + addrlen + 2)
1081 return 0;
1082 buffer_consume(&c->input, sizeof(s5_req));
1083 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1084 buffer_consume(&c->input, 1); /* host string length */
1085 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1086 buffer_get(&c->input, (char *)&dest_port, 2);
1087 dest_addr[addrlen] = '\0';
1088 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001089 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001090 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1091 return -1;
1092 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001093
Damien Millerfbdeece2003-09-02 22:52:31 +10001094 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001095 c->self, c->path, c->host_port, s5_req.command);
1096
1097 s5_rsp.version = 0x05;
1098 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1099 s5_rsp.reserved = 0; /* ignored */
1100 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1101 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1102 dest_port = 0; /* ignored */
1103
1104 buffer_append(&c->output, (char *)&s5_rsp, sizeof(s5_rsp));
1105 buffer_append(&c->output, (char *)&dest_addr, sizeof(struct in_addr));
1106 buffer_append(&c->output, (char *)&dest_port, sizeof(dest_port));
1107 return 1;
1108}
1109
Ben Lindstromb3921512001-04-11 15:57:50 +00001110/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001111static void
Ben Lindstromb3921512001-04-11 15:57:50 +00001112channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
1113{
1114 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001115 u_int have;
1116 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001117
1118 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001119 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001120 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001121 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001122 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001123 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001124 /* need more */
1125 FD_SET(c->sock, readset);
1126 return;
1127 }
1128 /* try to guess the protocol */
1129 p = buffer_ptr(&c->input);
1130 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001131 case 0x04:
1132 ret = channel_decode_socks4(c, readset, writeset);
1133 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001134 case 0x05:
1135 ret = channel_decode_socks5(c, readset, writeset);
1136 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001137 default:
1138 ret = -1;
1139 break;
1140 }
1141 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001142 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001143 } else if (ret == 0) {
1144 debug2("channel %d: pre_dynamic: need more", c->self);
1145 /* need more */
1146 FD_SET(c->sock, readset);
1147 } else {
1148 /* switch to the next state */
1149 c->type = SSH_CHANNEL_OPENING;
1150 port_open_helper(c, "direct-tcpip");
1151 }
1152}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001153
Damien Millerb38eff82000-04-01 11:09:21 +10001154/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001155static void
Damien Millerb38eff82000-04-01 11:09:21 +10001156channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
1157{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001158 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001159 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001160 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001161 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001162 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001163 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001164
1165 if (FD_ISSET(c->sock, readset)) {
1166 debug("X11 connection requested.");
1167 addrlen = sizeof(addr);
1168 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001169 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001170 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001171 channel_close_fd(&c->sock);
1172 chan_mark_dead(c);
1173 }
Damien Millerb38eff82000-04-01 11:09:21 +10001174 if (newsock < 0) {
1175 error("accept: %.100s", strerror(errno));
1176 return;
1177 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001178 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001179 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001180 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001181 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001182 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001183
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001184 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001185 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001186 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001187 if (compat20) {
1188 packet_start(SSH2_MSG_CHANNEL_OPEN);
1189 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001190 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001191 packet_put_int(nc->local_window_max);
1192 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001193 /* originator ipaddr and port */
1194 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001195 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001196 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001197 } else {
1198 packet_put_int(remote_port);
1199 }
Damien Millerbd483e72000-04-30 10:00:53 +10001200 packet_send();
1201 } else {
1202 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001203 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001204 if (packet_get_protocol_flags() &
1205 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001206 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001207 packet_send();
1208 }
Damien Millerd83ff352001-01-30 09:19:34 +11001209 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001210 }
1211}
1212
Ben Lindstrombba81212001-06-25 05:01:22 +00001213static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001214port_open_helper(Channel *c, char *rtype)
1215{
1216 int direct;
1217 char buf[1024];
1218 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001219 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001220
1221 direct = (strcmp(rtype, "direct-tcpip") == 0);
1222
1223 snprintf(buf, sizeof buf,
1224 "%s: listening port %d for %.100s port %d, "
1225 "connect from %.200s port %d",
1226 rtype, c->listening_port, c->path, c->host_port,
1227 remote_ipaddr, remote_port);
1228
1229 xfree(c->remote_name);
1230 c->remote_name = xstrdup(buf);
1231
1232 if (compat20) {
1233 packet_start(SSH2_MSG_CHANNEL_OPEN);
1234 packet_put_cstring(rtype);
1235 packet_put_int(c->self);
1236 packet_put_int(c->local_window_max);
1237 packet_put_int(c->local_maxpacket);
1238 if (direct) {
1239 /* target host, port */
1240 packet_put_cstring(c->path);
1241 packet_put_int(c->host_port);
1242 } else {
1243 /* listen address, port */
1244 packet_put_cstring(c->path);
1245 packet_put_int(c->listening_port);
1246 }
1247 /* originator host and port */
1248 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001249 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001250 packet_send();
1251 } else {
1252 packet_start(SSH_MSG_PORT_OPEN);
1253 packet_put_int(c->self);
1254 packet_put_cstring(c->path);
1255 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001256 if (packet_get_protocol_flags() &
1257 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001258 packet_put_cstring(c->remote_name);
1259 packet_send();
1260 }
1261 xfree(remote_ipaddr);
1262}
1263
Damien Miller5e7fd072005-11-05 14:53:39 +11001264static void
1265channel_set_reuseaddr(int fd)
1266{
1267 int on = 1;
1268
1269 /*
1270 * Set socket options.
1271 * Allow local port reuse in TIME_WAIT.
1272 */
1273 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1274 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1275}
1276
Damien Millerb38eff82000-04-01 11:09:21 +10001277/*
1278 * This socket is listening for connections to a forwarded TCP/IP port.
1279 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001280static void
Damien Millerb38eff82000-04-01 11:09:21 +10001281channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1282{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001283 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001284 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001285 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001286 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001287 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001288
Damien Millerb38eff82000-04-01 11:09:21 +10001289 if (FD_ISSET(c->sock, readset)) {
1290 debug("Connection to port %d forwarding "
1291 "to %.100s port %d requested.",
1292 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001293
Damien Miller4623a752001-10-10 15:03:58 +10001294 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1295 nextstate = SSH_CHANNEL_OPENING;
1296 rtype = "forwarded-tcpip";
1297 } else {
1298 if (c->host_port == 0) {
1299 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001300 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001301 } else {
1302 nextstate = SSH_CHANNEL_OPENING;
1303 rtype = "direct-tcpip";
1304 }
1305 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001306
Damien Millerb38eff82000-04-01 11:09:21 +10001307 addrlen = sizeof(addr);
1308 newsock = accept(c->sock, &addr, &addrlen);
1309 if (newsock < 0) {
1310 error("accept: %.100s", strerror(errno));
1311 return;
1312 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001313 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001314 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1315 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001316 nc->listening_port = c->listening_port;
1317 nc->host_port = c->host_port;
1318 strlcpy(nc->path, c->path, sizeof(nc->path));
1319
Damien Miller4623a752001-10-10 15:03:58 +10001320 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1321 /*
1322 * do not call the channel_post handler until
1323 * this flag has been reset by a pre-handler.
1324 * otherwise the FD_ISSET calls might overflow
1325 */
1326 nc->delayed = 1;
1327 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001328 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001329 }
Damien Millerb38eff82000-04-01 11:09:21 +10001330 }
1331}
1332
1333/*
1334 * This is the authentication agent socket listening for connections from
1335 * clients.
1336 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001337static void
Damien Millerb38eff82000-04-01 11:09:21 +10001338channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1339{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001340 Channel *nc;
1341 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001342 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001343 socklen_t addrlen;
1344
1345 if (FD_ISSET(c->sock, readset)) {
1346 addrlen = sizeof(addr);
1347 newsock = accept(c->sock, &addr, &addrlen);
1348 if (newsock < 0) {
1349 error("accept from auth socket: %.100s", strerror(errno));
1350 return;
1351 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001352 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001353 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1354 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001355 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001356 if (compat20) {
1357 packet_start(SSH2_MSG_CHANNEL_OPEN);
1358 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001359 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001360 packet_put_int(c->local_window_max);
1361 packet_put_int(c->local_maxpacket);
1362 } else {
1363 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001364 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001365 }
Damien Millerb38eff82000-04-01 11:09:21 +10001366 packet_send();
1367 }
1368}
1369
Ben Lindstrombba81212001-06-25 05:01:22 +00001370static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001371channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1372{
Ben Lindstrom69128662001-05-08 20:07:39 +00001373 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001374 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001375
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001376 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001377 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001378 err = errno;
1379 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001380 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001381 if (err == 0) {
1382 debug("channel %d: connected", c->self);
1383 c->type = SSH_CHANNEL_OPEN;
1384 if (compat20) {
1385 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1386 packet_put_int(c->remote_id);
1387 packet_put_int(c->self);
1388 packet_put_int(c->local_window);
1389 packet_put_int(c->local_maxpacket);
1390 } else {
1391 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1392 packet_put_int(c->remote_id);
1393 packet_put_int(c->self);
1394 }
1395 } else {
1396 debug("channel %d: not connected: %s",
1397 c->self, strerror(err));
1398 if (compat20) {
1399 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1400 packet_put_int(c->remote_id);
1401 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1402 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1403 packet_put_cstring(strerror(err));
1404 packet_put_cstring("");
1405 }
1406 } else {
1407 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1408 packet_put_int(c->remote_id);
1409 }
1410 chan_mark_dead(c);
1411 }
1412 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001413 }
1414}
1415
Ben Lindstrombba81212001-06-25 05:01:22 +00001416static int
Damien Millerb38eff82000-04-01 11:09:21 +10001417channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1418{
Darren Tucker11327cc2005-03-14 23:22:25 +11001419 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001420 int len;
1421
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001422 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001423 FD_ISSET(c->rfd, readset)) {
1424 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001425 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1426 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001427 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001428 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001429 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001430 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001431 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001432 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001433 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001434 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001435 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001436 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001437 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001438 } else {
1439 chan_read_failed(c);
1440 }
1441 return -1;
1442 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001443 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001444 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001445 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001446 chan_read_failed(c);
1447 }
Damien Millerd27b9472005-12-13 19:29:02 +11001448 } else if (c->datagram) {
1449 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001450 } else {
1451 buffer_append(&c->input, buf, len);
1452 }
Damien Millerb38eff82000-04-01 11:09:21 +10001453 }
1454 return 1;
1455}
Ben Lindstrombba81212001-06-25 05:01:22 +00001456static int
Damien Millerb38eff82000-04-01 11:09:21 +10001457channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1458{
Ben Lindstrome229b252001-03-05 06:28:06 +00001459 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001460 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001461 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001462 int len;
1463
1464 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001465 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001466 FD_ISSET(c->wfd, writeset) &&
1467 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001468 if (c->output_filter != NULL) {
1469 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1470 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001471 if (c->type != SSH_CHANNEL_OPEN)
1472 chan_mark_dead(c);
1473 else
1474 chan_write_failed(c);
1475 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001476 }
1477 } else if (c->datagram) {
1478 buf = data = buffer_get_string(&c->output, &dlen);
1479 } else {
1480 buf = data = buffer_ptr(&c->output);
1481 dlen = buffer_len(&c->output);
1482 }
1483
Damien Millerd27b9472005-12-13 19:29:02 +11001484 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001485 /* ignore truncated writes, datagrams might get lost */
1486 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001487 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001488 xfree(data);
1489 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1490 return 1;
1491 if (len <= 0) {
1492 if (c->type != SSH_CHANNEL_OPEN)
1493 chan_mark_dead(c);
1494 else
1495 chan_write_failed(c);
1496 return -1;
1497 }
1498 return 1;
1499 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001500#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001501 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001502 if (compat20 && c->wfd_isatty)
1503 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001504#endif
Damien Miller077b2382005-12-31 16:22:32 +11001505
1506 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001507 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1508 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001509 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001510 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001511 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001512 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001513 return -1;
1514 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001515 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001516 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001517 c->type = SSH_CHANNEL_INPUT_DRAINING;
1518 } else {
1519 chan_write_failed(c);
1520 }
1521 return -1;
1522 }
Damien Miller077b2382005-12-31 16:22:32 +11001523 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001524 if (tcgetattr(c->wfd, &tio) == 0 &&
1525 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1526 /*
1527 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001528 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001529 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001530 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001531 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001532 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001533 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001534 }
1535 }
Damien Millerb38eff82000-04-01 11:09:21 +10001536 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001537 if (compat20 && len > 0) {
1538 c->local_consumed += len;
1539 }
1540 }
1541 return 1;
1542}
Ben Lindstrombba81212001-06-25 05:01:22 +00001543static int
Damien Miller33b13562000-04-04 14:38:59 +10001544channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1545{
Darren Tucker11327cc2005-03-14 23:22:25 +11001546 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001547 int len;
1548
Damien Miller1383bd82000-04-06 12:32:37 +10001549/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001550 if (c->efd != -1) {
1551 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1552 FD_ISSET(c->efd, writeset) &&
1553 buffer_len(&c->extended) > 0) {
1554 len = write(c->efd, buffer_ptr(&c->extended),
1555 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001556 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001557 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001558 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1559 return 1;
1560 if (len <= 0) {
1561 debug2("channel %d: closing write-efd %d",
1562 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001563 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001564 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001565 buffer_consume(&c->extended, len);
1566 c->local_consumed += len;
1567 }
1568 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1569 FD_ISSET(c->efd, readset)) {
1570 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001571 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001572 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001573 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1574 return 1;
1575 if (len <= 0) {
1576 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001577 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001578 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001579 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001580 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001581 }
Damien Miller33b13562000-04-04 14:38:59 +10001582 }
1583 }
1584 return 1;
1585}
Ben Lindstrombba81212001-06-25 05:01:22 +00001586static int
Damien Miller0e220db2004-06-15 10:34:08 +10001587channel_handle_ctl(Channel *c, fd_set * readset, fd_set * writeset)
1588{
1589 char buf[16];
1590 int len;
1591
1592 /* Monitor control fd to detect if the slave client exits */
1593 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1594 len = read(c->ctl_fd, buf, sizeof(buf));
1595 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1596 return 1;
1597 if (len <= 0) {
1598 debug2("channel %d: ctl read<=0", c->self);
1599 if (c->type != SSH_CHANNEL_OPEN) {
1600 debug2("channel %d: not open", c->self);
1601 chan_mark_dead(c);
1602 return -1;
1603 } else {
1604 chan_read_failed(c);
1605 chan_write_failed(c);
1606 }
1607 return -1;
1608 } else
1609 fatal("%s: unexpected data on ctl fd", __func__);
1610 }
1611 return 1;
1612}
1613static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001614channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001615{
Ben Lindstromb3921512001-04-11 15:57:50 +00001616 if (c->type == SSH_CHANNEL_OPEN &&
1617 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001618 c->local_window < c->local_window_max/2 &&
1619 c->local_consumed > 0) {
1620 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1621 packet_put_int(c->remote_id);
1622 packet_put_int(c->local_consumed);
1623 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001624 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001625 c->self, c->local_window,
1626 c->local_consumed);
1627 c->local_window += c->local_consumed;
1628 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001629 }
1630 return 1;
1631}
1632
Ben Lindstrombba81212001-06-25 05:01:22 +00001633static void
Damien Millerde6987c2002-01-22 23:20:40 +11001634channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001635{
Damien Miller4623a752001-10-10 15:03:58 +10001636 if (c->delayed)
1637 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001638 channel_handle_rfd(c, readset, writeset);
1639 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001640 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001641 return;
Damien Miller33b13562000-04-04 14:38:59 +10001642 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001643 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001644 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001645}
1646
Ben Lindstrombba81212001-06-25 05:01:22 +00001647static void
Damien Millerb38eff82000-04-01 11:09:21 +10001648channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1649{
1650 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001651
Damien Millerb38eff82000-04-01 11:09:21 +10001652 /* Send buffered output data to the socket. */
1653 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1654 len = write(c->sock, buffer_ptr(&c->output),
1655 buffer_len(&c->output));
1656 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001657 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001658 else
1659 buffer_consume(&c->output, len);
1660 }
1661}
1662
Ben Lindstrombba81212001-06-25 05:01:22 +00001663static void
Damien Miller33b13562000-04-04 14:38:59 +10001664channel_handler_init_20(void)
1665{
Damien Millerde6987c2002-01-22 23:20:40 +11001666 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001667 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001668 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001670 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001671 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001672 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001673 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001674
Damien Millerde6987c2002-01-22 23:20:40 +11001675 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001676 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001677 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001678 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001679 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001680 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001681 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001682}
1683
Ben Lindstrombba81212001-06-25 05:01:22 +00001684static void
Damien Millerb38eff82000-04-01 11:09:21 +10001685channel_handler_init_13(void)
1686{
1687 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1688 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1689 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1690 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1691 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1692 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1693 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001694 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001695 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001696
Damien Millerde6987c2002-01-22 23:20:40 +11001697 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001698 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1699 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1700 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1701 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001702 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001703 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001704}
1705
Ben Lindstrombba81212001-06-25 05:01:22 +00001706static void
Damien Millerb38eff82000-04-01 11:09:21 +10001707channel_handler_init_15(void)
1708{
Damien Millerde6987c2002-01-22 23:20:40 +11001709 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001710 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001711 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1712 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1713 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001714 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001715 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001716
1717 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1718 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1719 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001720 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001721 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001722 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001723}
1724
Ben Lindstrombba81212001-06-25 05:01:22 +00001725static void
Damien Millerb38eff82000-04-01 11:09:21 +10001726channel_handler_init(void)
1727{
1728 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001729
Damien Miller9f0f5c62001-12-21 14:45:46 +11001730 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001731 channel_pre[i] = NULL;
1732 channel_post[i] = NULL;
1733 }
Damien Miller33b13562000-04-04 14:38:59 +10001734 if (compat20)
1735 channel_handler_init_20();
1736 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001737 channel_handler_init_13();
1738 else
1739 channel_handler_init_15();
1740}
1741
Damien Miller3ec27592001-10-12 11:35:04 +10001742/* gc dead channels */
1743static void
1744channel_garbage_collect(Channel *c)
1745{
1746 if (c == NULL)
1747 return;
1748 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001749 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001750 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001751 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001752 c->detach_user(c->self, NULL);
1753 /* if we still have a callback */
1754 if (c->detach_user != NULL)
1755 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001756 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001757 }
1758 if (!chan_is_dead(c, 1))
1759 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001760 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001761 channel_free(c);
1762}
1763
Ben Lindstrombba81212001-06-25 05:01:22 +00001764static void
Damien Millerb38eff82000-04-01 11:09:21 +10001765channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1766{
1767 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001768 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001769 Channel *c;
1770
1771 if (!did_init) {
1772 channel_handler_init();
1773 did_init = 1;
1774 }
1775 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001776 c = channels[i];
1777 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001778 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001779 if (ftab[c->type] != NULL)
1780 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001781 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001782 }
1783}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001784
Ben Lindstrome9c99912001-06-09 00:41:05 +00001785/*
1786 * Allocate/update select bitmasks and add any bits relevant to channels in
1787 * select bitmasks.
1788 */
Damien Miller4af51302000-04-16 11:18:38 +10001789void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001790channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001791 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001792{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001793 u_int n, sz;
Damien Miller5e953212001-01-30 09:14:00 +11001794
1795 n = MAX(*maxfdp, channel_max_fd);
1796
1797 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001798 /* perhaps check sz < nalloc/2 and shrink? */
1799 if (*readsetp == NULL || sz > *nallocp) {
1800 *readsetp = xrealloc(*readsetp, sz);
1801 *writesetp = xrealloc(*writesetp, sz);
1802 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001803 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001804 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001805 memset(*readsetp, 0, sz);
1806 memset(*writesetp, 0, sz);
1807
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001808 if (!rekeying)
1809 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001810}
1811
Ben Lindstrome9c99912001-06-09 00:41:05 +00001812/*
1813 * After select, perform any appropriate operations for channels which have
1814 * events pending.
1815 */
Damien Miller4af51302000-04-16 11:18:38 +10001816void
Damien Miller95def091999-11-25 00:26:21 +11001817channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001818{
Damien Millerb38eff82000-04-01 11:09:21 +10001819 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001820}
1821
Ben Lindstrome9c99912001-06-09 00:41:05 +00001822
Damien Miller5e953212001-01-30 09:14:00 +11001823/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001824
Damien Miller4af51302000-04-16 11:18:38 +10001825void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001826channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001827{
Damien Millerb38eff82000-04-01 11:09:21 +10001828 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001829 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001830
Damien Miller95def091999-11-25 00:26:21 +11001831 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001832 c = channels[i];
1833 if (c == NULL)
1834 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001835
Ben Lindstrome9c99912001-06-09 00:41:05 +00001836 /*
1837 * We are only interested in channels that can have buffered
1838 * incoming data.
1839 */
Damien Miller34132e52000-01-14 15:45:46 +11001840 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001841 if (c->type != SSH_CHANNEL_OPEN &&
1842 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001843 continue;
1844 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001845 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001846 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001847 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001848 if (compat20 &&
1849 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001850 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001851 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001852 continue;
1853 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001854
Damien Miller95def091999-11-25 00:26:21 +11001855 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001856 if ((c->istate == CHAN_INPUT_OPEN ||
1857 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1858 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001859 if (c->datagram) {
1860 if (len > 0) {
1861 u_char *data;
1862 u_int dlen;
1863
1864 data = buffer_get_string(&c->input,
1865 &dlen);
1866 packet_start(SSH2_MSG_CHANNEL_DATA);
1867 packet_put_int(c->remote_id);
1868 packet_put_string(data, dlen);
1869 packet_send();
1870 c->remote_window -= dlen + 4;
1871 xfree(data);
1872 }
1873 continue;
1874 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001875 /*
1876 * Send some data for the other side over the secure
1877 * connection.
1878 */
Damien Miller33b13562000-04-04 14:38:59 +10001879 if (compat20) {
1880 if (len > c->remote_window)
1881 len = c->remote_window;
1882 if (len > c->remote_maxpacket)
1883 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001884 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001885 if (packet_is_interactive()) {
1886 if (len > 1024)
1887 len = 512;
1888 } else {
1889 /* Keep the packets at reasonable size. */
1890 if (len > packet_get_maxsize()/2)
1891 len = packet_get_maxsize()/2;
1892 }
Damien Miller95def091999-11-25 00:26:21 +11001893 }
Damien Millerb38eff82000-04-01 11:09:21 +10001894 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001895 packet_start(compat20 ?
1896 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001897 packet_put_int(c->remote_id);
1898 packet_put_string(buffer_ptr(&c->input), len);
1899 packet_send();
1900 buffer_consume(&c->input, len);
1901 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001902 }
1903 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001904 if (compat13)
1905 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001906 /*
1907 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001908 * tell peer, that we will not send more data: send IEOF.
1909 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001910 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001911 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001912 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1913 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001914 else
1915 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001916 }
Damien Miller33b13562000-04-04 14:38:59 +10001917 /* Send extended data, i.e. stderr */
1918 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001919 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001920 c->remote_window > 0 &&
1921 (len = buffer_len(&c->extended)) > 0 &&
1922 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001923 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001924 c->self, c->remote_window, buffer_len(&c->extended),
1925 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001926 if (len > c->remote_window)
1927 len = c->remote_window;
1928 if (len > c->remote_maxpacket)
1929 len = c->remote_maxpacket;
1930 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1931 packet_put_int(c->remote_id);
1932 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1933 packet_put_string(buffer_ptr(&c->extended), len);
1934 packet_send();
1935 buffer_consume(&c->extended, len);
1936 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001937 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001938 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001939 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001940}
1941
Ben Lindstrome9c99912001-06-09 00:41:05 +00001942
1943/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001944
Damien Miller4af51302000-04-16 11:18:38 +10001945void
Damien Miller630d6f42002-01-22 23:17:30 +11001946channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001947{
Damien Miller34132e52000-01-14 15:45:46 +11001948 int id;
Damien Miller95def091999-11-25 00:26:21 +11001949 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001950 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001951 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001952
Damien Miller95def091999-11-25 00:26:21 +11001953 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001954 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001955 c = channel_lookup(id);
1956 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001957 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001958
Damien Miller95def091999-11-25 00:26:21 +11001959 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001960 if (c->type != SSH_CHANNEL_OPEN &&
1961 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001962 return;
1963
Damien Miller95def091999-11-25 00:26:21 +11001964 /* Get the data. */
1965 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001966
Damien Millera04ad492004-01-21 11:02:09 +11001967 /*
1968 * Ignore data for protocol > 1.3 if output end is no longer open.
1969 * For protocol 2 the sending side is reducing its window as it sends
1970 * data, so we must 'fake' consumption of the data in order to ensure
1971 * that window updates are sent back. Otherwise the connection might
1972 * deadlock.
1973 */
1974 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1975 if (compat20) {
1976 c->local_window -= data_len;
1977 c->local_consumed += data_len;
1978 }
1979 xfree(data);
1980 return;
1981 }
1982
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001983 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001984 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001985 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001986 c->self, data_len, c->local_maxpacket);
1987 }
1988 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001989 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001990 c->self, data_len, c->local_window);
1991 xfree(data);
1992 return;
1993 }
1994 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001995 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001996 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11001997 if (c->datagram)
1998 buffer_put_string(&c->output, data, data_len);
1999 else
2000 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002001 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002002}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002003
Damien Miller4af51302000-04-16 11:18:38 +10002004void
Damien Miller630d6f42002-01-22 23:17:30 +11002005channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002006{
2007 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002008 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002009 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002010 Channel *c;
2011
2012 /* Get the channel number and verify it. */
2013 id = packet_get_int();
2014 c = channel_lookup(id);
2015
2016 if (c == NULL)
2017 packet_disconnect("Received extended_data for bad channel %d.", id);
2018 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002019 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002020 return;
2021 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002022 if (c->flags & CHAN_EOF_RCVD) {
2023 if (datafellows & SSH_BUG_EXTEOF)
2024 debug("channel %d: accepting ext data after eof", id);
2025 else
2026 packet_disconnect("Received extended_data after EOF "
2027 "on channel %d.", id);
2028 }
Damien Miller33b13562000-04-04 14:38:59 +10002029 tcode = packet_get_int();
2030 if (c->efd == -1 ||
2031 c->extended_usage != CHAN_EXTENDED_WRITE ||
2032 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002033 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002034 return;
2035 }
2036 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002037 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002038 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002039 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002040 c->self, data_len, c->local_window);
2041 xfree(data);
2042 return;
2043 }
Damien Millerd3444942000-09-30 14:20:03 +11002044 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002045 c->local_window -= data_len;
2046 buffer_append(&c->extended, data, data_len);
2047 xfree(data);
2048}
2049
Damien Miller4af51302000-04-16 11:18:38 +10002050void
Damien Miller630d6f42002-01-22 23:17:30 +11002051channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002052{
2053 int id;
2054 Channel *c;
2055
Damien Millerb38eff82000-04-01 11:09:21 +10002056 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002057 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002058 c = channel_lookup(id);
2059 if (c == NULL)
2060 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2061 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002062
2063 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002064 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002065 debug("channel %d: FORCE input drain", c->self);
2066 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002067 if (buffer_len(&c->input) == 0)
2068 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002069 }
2070
Damien Millerb38eff82000-04-01 11:09:21 +10002071}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002072
Damien Miller4af51302000-04-16 11:18:38 +10002073void
Damien Miller630d6f42002-01-22 23:17:30 +11002074channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002075{
Damien Millerb38eff82000-04-01 11:09:21 +10002076 int id;
2077 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002078
Damien Millerb38eff82000-04-01 11:09:21 +10002079 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002080 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002081 c = channel_lookup(id);
2082 if (c == NULL)
2083 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002084
2085 /*
2086 * Send a confirmation that we have closed the channel and no more
2087 * data is coming for it.
2088 */
Damien Miller95def091999-11-25 00:26:21 +11002089 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002090 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002091 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002092
Damien Miller5428f641999-11-25 11:54:57 +11002093 /*
2094 * If the channel is in closed state, we have sent a close request,
2095 * and the other side will eventually respond with a confirmation.
2096 * Thus, we cannot free the channel here, because then there would be
2097 * no-one to receive the confirmation. The channel gets freed when
2098 * the confirmation arrives.
2099 */
Damien Millerb38eff82000-04-01 11:09:21 +10002100 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002101 /*
2102 * Not a closed channel - mark it as draining, which will
2103 * cause it to be freed later.
2104 */
Damien Miller76765c02002-01-22 23:21:15 +11002105 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002106 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002107 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002108}
2109
Damien Millerb38eff82000-04-01 11:09:21 +10002110/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10002111void
Damien Miller630d6f42002-01-22 23:17:30 +11002112channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002113{
Damien Millerb38eff82000-04-01 11:09:21 +10002114 int id = packet_get_int();
2115 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002116
Damien Miller48b03fc2002-01-22 23:11:40 +11002117 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002118 if (c == NULL)
2119 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2120 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002121}
2122
Damien Miller4af51302000-04-16 11:18:38 +10002123void
Damien Miller630d6f42002-01-22 23:17:30 +11002124channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002125{
2126 int id = packet_get_int();
2127 Channel *c = channel_lookup(id);
2128
Damien Miller48b03fc2002-01-22 23:11:40 +11002129 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002130 if (c == NULL)
2131 packet_disconnect("Received close confirmation for "
2132 "out-of-range channel %d.", id);
2133 if (c->type != SSH_CHANNEL_CLOSED)
2134 packet_disconnect("Received close confirmation for "
2135 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002136 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002137}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002138
Damien Miller4af51302000-04-16 11:18:38 +10002139void
Damien Miller630d6f42002-01-22 23:17:30 +11002140channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002141{
Damien Millerb38eff82000-04-01 11:09:21 +10002142 int id, remote_id;
2143 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002144
Damien Millerb38eff82000-04-01 11:09:21 +10002145 id = packet_get_int();
2146 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002147
Damien Millerb38eff82000-04-01 11:09:21 +10002148 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2149 packet_disconnect("Received open confirmation for "
2150 "non-opening channel %d.", id);
2151 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002152 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002153 c->remote_id = remote_id;
2154 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002155
2156 if (compat20) {
2157 c->remote_window = packet_get_int();
2158 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002159 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002160 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002161 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002162 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002163 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002164 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002165 c->remote_window, c->remote_maxpacket);
2166 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002167 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168}
2169
Ben Lindstrombba81212001-06-25 05:01:22 +00002170static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002171reason2txt(int reason)
2172{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002173 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002174 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2175 return "administratively prohibited";
2176 case SSH2_OPEN_CONNECT_FAILED:
2177 return "connect failed";
2178 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2179 return "unknown channel type";
2180 case SSH2_OPEN_RESOURCE_SHORTAGE:
2181 return "resource shortage";
2182 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002183 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002184}
2185
Damien Miller4af51302000-04-16 11:18:38 +10002186void
Damien Miller630d6f42002-01-22 23:17:30 +11002187channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002188{
Kevin Steves12057502001-02-05 14:54:34 +00002189 int id, reason;
2190 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002191 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002192
Damien Millerb38eff82000-04-01 11:09:21 +10002193 id = packet_get_int();
2194 c = channel_lookup(id);
2195
2196 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2197 packet_disconnect("Received open failure for "
2198 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002199 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002200 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002201 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002202 msg = packet_get_string(NULL);
2203 lang = packet_get_string(NULL);
2204 }
Damien Miller996acd22003-04-09 20:59:48 +10002205 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002206 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002207 if (msg != NULL)
2208 xfree(msg);
2209 if (lang != NULL)
2210 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002211 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002212 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002213 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002214 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002215}
2216
Damien Miller33b13562000-04-04 14:38:59 +10002217void
Damien Miller630d6f42002-01-22 23:17:30 +11002218channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002219{
2220 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002221 int id;
2222 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002223
2224 if (!compat20)
2225 return;
2226
2227 /* Get the channel number and verify it. */
2228 id = packet_get_int();
2229 c = channel_lookup(id);
2230
Damien Millerd47c62a2005-12-13 19:33:57 +11002231 if (c == NULL) {
2232 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002233 return;
2234 }
2235 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002236 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002237 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002238 c->remote_window += adjust;
2239}
2240
Damien Miller4af51302000-04-16 11:18:38 +10002241void
Damien Miller630d6f42002-01-22 23:17:30 +11002242channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002243{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002244 Channel *c = NULL;
2245 u_short host_port;
2246 char *host, *originator_string;
2247 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002248
Ben Lindstrome9c99912001-06-09 00:41:05 +00002249 remote_id = packet_get_int();
2250 host = packet_get_string(NULL);
2251 host_port = packet_get_int();
2252
2253 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2254 originator_string = packet_get_string(NULL);
2255 } else {
2256 originator_string = xstrdup("unknown (remote did not supply name)");
2257 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002258 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002259 sock = channel_connect_to(host, host_port);
2260 if (sock != -1) {
2261 c = channel_new("connected socket",
2262 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2263 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002264 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002265 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002266 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002267 if (c == NULL) {
2268 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2269 packet_put_int(remote_id);
2270 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002271 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002272 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002273}
2274
2275
Ben Lindstrome9c99912001-06-09 00:41:05 +00002276/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002277
Ben Lindstrom908afed2001-10-03 17:34:59 +00002278void
2279channel_set_af(int af)
2280{
2281 IPv4or6 = af;
2282}
2283
Damien Millerb16461c2002-01-22 23:29:22 +11002284static int
2285channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2286 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002287{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002288 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002289 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002290 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002291 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002292 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002293
Damien Millerb16461c2002-01-22 23:29:22 +11002294 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2295 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002296 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002297
Damien Millerb16461c2002-01-22 23:29:22 +11002298 if (host == NULL) {
2299 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002300 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002301 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002302 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002303 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002304 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002305 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002306
Damien Miller5428f641999-11-25 11:54:57 +11002307 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002308 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002309 * specified address or wildcard. On the client, a specified bind
2310 * address will always override gateway_ports. On the server, a
2311 * gateway_ports of 1 (``yes'') will override the client's
2312 * specification and force a wildcard bind, whereas a value of 2
2313 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002314 * asked for.
2315 *
2316 * Special-case listen_addrs are:
2317 *
2318 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2319 * "" (empty string), "*" -> wildcard v4/v6
2320 * "localhost" -> loopback v4/v6
2321 */
2322 addr = NULL;
2323 if (listen_addr == NULL) {
2324 /* No address specified: default to gateway_ports setting */
2325 if (gateway_ports)
2326 wildcard = 1;
2327 } else if (gateway_ports || is_client) {
2328 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2329 strcmp(listen_addr, "0.0.0.0") == 0) ||
2330 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2331 (!is_client && gateway_ports == 1))
2332 wildcard = 1;
2333 else if (strcmp(listen_addr, "localhost") != 0)
2334 addr = listen_addr;
2335 }
2336
2337 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2338 type, wildcard, (addr == NULL) ? "NULL" : addr);
2339
2340 /*
Damien Miller34132e52000-01-14 15:45:46 +11002341 * getaddrinfo returns a loopback address if the hostname is
2342 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002343 */
Damien Miller34132e52000-01-14 15:45:46 +11002344 memset(&hints, 0, sizeof(hints));
2345 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002346 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002347 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002348 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002349 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2350 if (addr == NULL) {
2351 /* This really shouldn't happen */
2352 packet_disconnect("getaddrinfo: fatal error: %s",
2353 gai_strerror(r));
2354 } else {
Damien Millera7270302005-07-06 09:36:05 +10002355 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002356 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2357 }
Damien Millera7270302005-07-06 09:36:05 +10002358 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002359 }
Damien Miller5428f641999-11-25 11:54:57 +11002360
Damien Miller34132e52000-01-14 15:45:46 +11002361 for (ai = aitop; ai; ai = ai->ai_next) {
2362 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2363 continue;
2364 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2365 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002366 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002367 continue;
2368 }
2369 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002370 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002371 if (sock < 0) {
2372 /* this is no error since kernel may not support ipv6 */
2373 verbose("socket: %.100s", strerror(errno));
2374 continue;
2375 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002376
2377 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002378
Damien Miller34132e52000-01-14 15:45:46 +11002379 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002380
Damien Miller34132e52000-01-14 15:45:46 +11002381 /* Bind the socket to the address. */
2382 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2383 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002384 if (!ai->ai_next)
2385 error("bind: %.100s", strerror(errno));
2386 else
2387 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002388
Damien Miller34132e52000-01-14 15:45:46 +11002389 close(sock);
2390 continue;
2391 }
2392 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002393 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002394 error("listen: %.100s", strerror(errno));
2395 close(sock);
2396 continue;
2397 }
2398 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002399 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002400 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002401 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002402 strlcpy(c->path, host, sizeof(c->path));
2403 c->host_port = port_to_connect;
2404 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002405 success = 1;
2406 }
2407 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002408 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002409 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002410 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002411 return success;
Damien Miller95def091999-11-25 00:26:21 +11002412}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002413
Darren Tuckere7066df2004-05-24 10:18:05 +10002414int
2415channel_cancel_rport_listener(const char *host, u_short port)
2416{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002417 u_int i;
2418 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002419
Darren Tucker47eede72005-03-14 23:08:12 +11002420 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002421 Channel *c = channels[i];
2422
2423 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2424 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002425 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002426 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002427 channel_free(c);
2428 found = 1;
2429 }
2430 }
2431
2432 return (found);
2433}
2434
Damien Millerb16461c2002-01-22 23:29:22 +11002435/* protocol local port fwd, used by ssh (and sshd in v1) */
2436int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002437channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002438 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2439{
2440 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002441 listen_host, listen_port, host_to_connect, port_to_connect,
2442 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002443}
2444
2445/* protocol v2 remote port fwd, used by sshd */
2446int
2447channel_setup_remote_fwd_listener(const char *listen_address,
2448 u_short listen_port, int gateway_ports)
2449{
2450 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2451 listen_address, listen_port, NULL, 0, gateway_ports);
2452}
2453
Damien Miller5428f641999-11-25 11:54:57 +11002454/*
2455 * Initiate forwarding of connections to port "port" on remote host through
2456 * the secure channel to host:port from local side.
2457 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002458
Damien Miller4af51302000-04-16 11:18:38 +10002459void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002460channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002461 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002462{
Damien Millerdff50992002-01-22 23:16:32 +11002463 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002464
Damien Miller95def091999-11-25 00:26:21 +11002465 /* Record locally that connection to this host/port is permitted. */
2466 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2467 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002468
Damien Miller95def091999-11-25 00:26:21 +11002469 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002470 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002471 const char *address_to_bind;
2472 if (listen_host == NULL)
2473 address_to_bind = "localhost";
2474 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2475 address_to_bind = "";
2476 else
2477 address_to_bind = listen_host;
2478
Damien Miller33b13562000-04-04 14:38:59 +10002479 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2480 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002481 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002482 packet_put_cstring(address_to_bind);
2483 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002484 packet_send();
2485 packet_write_wait();
2486 /* Assume that server accepts the request */
2487 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002488 } else {
2489 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002490 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002491 packet_put_cstring(host_to_connect);
2492 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002493 packet_send();
2494 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002495
2496 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002497 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002498 switch (type) {
2499 case SSH_SMSG_SUCCESS:
2500 success = 1;
2501 break;
2502 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002503 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002504 break;
2505 default:
2506 /* Unknown packet */
2507 packet_disconnect("Protocol error for port forward request:"
2508 "received packet type %d.", type);
2509 }
2510 }
2511 if (success) {
2512 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2513 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2514 permitted_opens[num_permitted_opens].listen_port = listen_port;
2515 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002516 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517}
2518
Damien Miller5428f641999-11-25 11:54:57 +11002519/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002520 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002521 * local side.
2522 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002523void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002524channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002525{
2526 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002527
2528 if (!compat20)
2529 return;
2530
2531 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002532 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002533 permitted_opens[i].listen_port == port)
2534 break;
2535 }
2536 if (i >= num_permitted_opens) {
2537 debug("%s: requested forward not found", __func__);
2538 return;
2539 }
2540 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2541 packet_put_cstring("cancel-tcpip-forward");
2542 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002543 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002544 packet_put_int(port);
2545 packet_send();
2546
2547 permitted_opens[i].listen_port = 0;
2548 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002549 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002550 permitted_opens[i].host_to_connect = NULL;
2551}
2552
2553/*
Damien Miller5428f641999-11-25 11:54:57 +11002554 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2555 * listening for the port, and sends back a success reply (or disconnect
2556 * message if there was an error). This never returns if there was an error.
2557 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002558
Damien Miller4af51302000-04-16 11:18:38 +10002559void
Damien Millere247cc42000-05-07 12:03:14 +10002560channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002561{
Damien Milleraae6c611999-12-06 11:47:28 +11002562 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002563 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002564
Damien Miller95def091999-11-25 00:26:21 +11002565 /* Get arguments from the packet. */
2566 port = packet_get_int();
2567 hostname = packet_get_string(NULL);
2568 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002569
Damien Millerbac2d8a2000-09-05 16:13:06 +11002570#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002571 /*
2572 * Check that an unprivileged user is not trying to forward a
2573 * privileged port.
2574 */
Damien Miller95def091999-11-25 00:26:21 +11002575 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002576 packet_disconnect(
2577 "Requested forwarding of port %d but user is not root.",
2578 port);
2579 if (host_port == 0)
2580 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002581#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002582
Damien Miller0bc1bd82000-11-13 22:57:25 +11002583 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002584 channel_setup_local_fwd_listener(NULL, port, hostname,
2585 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002586
2587 /* Free the argument string. */
2588 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002589}
2590
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002591/*
2592 * Permits opening to any host/port if permitted_opens[] is empty. This is
2593 * usually called by the server, because the user could connect to any port
2594 * anyway, and the server has no way to know but to trust the client anyway.
2595 */
2596void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002597channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002598{
2599 if (num_permitted_opens == 0)
2600 all_opens_permitted = 1;
2601}
2602
Ben Lindstroma3700052001-04-05 23:26:32 +00002603void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002604channel_add_permitted_opens(char *host, int port)
2605{
2606 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2607 fatal("channel_request_remote_forwarding: too many forwards");
2608 debug("allow port forwarding to host %s port %d", host, port);
2609
2610 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2611 permitted_opens[num_permitted_opens].port_to_connect = port;
2612 num_permitted_opens++;
2613
2614 all_opens_permitted = 0;
2615}
2616
Ben Lindstroma3700052001-04-05 23:26:32 +00002617void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002618channel_clear_permitted_opens(void)
2619{
2620 int i;
2621
2622 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002623 if (permitted_opens[i].host_to_connect != NULL)
2624 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002625 num_permitted_opens = 0;
2626
2627}
2628
2629
2630/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002631static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002632connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002633{
Damien Miller34132e52000-01-14 15:45:46 +11002634 struct addrinfo hints, *ai, *aitop;
2635 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2636 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002637 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002638
Damien Miller34132e52000-01-14 15:45:46 +11002639 memset(&hints, 0, sizeof(hints));
2640 hints.ai_family = IPv4or6;
2641 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002642 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002643 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002644 error("connect_to %.100s: unknown host (%s)", host,
2645 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002646 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002647 }
Damien Miller34132e52000-01-14 15:45:46 +11002648 for (ai = aitop; ai; ai = ai->ai_next) {
2649 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2650 continue;
2651 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2652 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002653 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002654 continue;
2655 }
Damien Miller2372ace2003-05-14 13:42:23 +10002656 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002657 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002658 if (ai->ai_next == NULL)
2659 error("socket: %.100s", strerror(errno));
2660 else
2661 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002662 continue;
2663 }
Damien Miller232711f2004-06-15 10:35:30 +10002664 if (set_nonblock(sock) == -1)
2665 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002666 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2667 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002668 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002669 strerror(errno));
2670 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002671 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002672 }
2673 break; /* success */
2674
2675 }
2676 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002677 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002678 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002679 return -1;
2680 }
2681 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002682 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002683 return sock;
2684}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002685
Damien Miller0bc1bd82000-11-13 22:57:25 +11002686int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002687channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002688{
2689 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002690
Damien Miller0bc1bd82000-11-13 22:57:25 +11002691 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002692 if (permitted_opens[i].host_to_connect != NULL &&
2693 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002694 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002695 permitted_opens[i].host_to_connect,
2696 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002697 error("WARNING: Server requests forwarding for unknown listen_port %d",
2698 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002699 return -1;
2700}
Damien Millerb38eff82000-04-01 11:09:21 +10002701
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002702/* Check if connecting to that port is permitted and connect. */
2703int
2704channel_connect_to(const char *host, u_short port)
2705{
2706 int i, permit;
2707
2708 permit = all_opens_permitted;
2709 if (!permit) {
2710 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002711 if (permitted_opens[i].host_to_connect != NULL &&
2712 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002713 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2714 permit = 1;
2715
2716 }
2717 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002718 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002719 "but the request was denied.", host, port);
2720 return -1;
2721 }
2722 return connect_to(host, port);
2723}
2724
Damien Miller0e220db2004-06-15 10:34:08 +10002725void
2726channel_send_window_changes(void)
2727{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002728 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002729 struct winsize ws;
2730
2731 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002732 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002733 channels[i]->type != SSH_CHANNEL_OPEN)
2734 continue;
2735 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2736 continue;
2737 channel_request_start(i, "window-change", 0);
2738 packet_put_int(ws.ws_col);
2739 packet_put_int(ws.ws_row);
2740 packet_put_int(ws.ws_xpixel);
2741 packet_put_int(ws.ws_ypixel);
2742 packet_send();
2743 }
2744}
2745
Ben Lindstrome9c99912001-06-09 00:41:05 +00002746/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002747
Damien Miller5428f641999-11-25 11:54:57 +11002748/*
2749 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002750 * Returns 0 and a suitable display number for the DISPLAY variable
2751 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002752 */
Kevin Steves366298c2001-12-19 17:58:01 +00002753int
Damien Miller95c249f2002-02-05 12:11:34 +11002754x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002755 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002756{
Damien Millere7378562001-12-21 14:58:35 +11002757 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002758 int display_number, sock;
2759 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002760 struct addrinfo hints, *ai, *aitop;
2761 char strport[NI_MAXSERV];
2762 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002763
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002764 if (chanids == NULL)
2765 return -1;
2766
Damien Millera34a28b1999-12-14 10:47:15 +11002767 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002768 display_number < MAX_DISPLAYS;
2769 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002770 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002771 memset(&hints, 0, sizeof(hints));
2772 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002773 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002774 hints.ai_socktype = SOCK_STREAM;
2775 snprintf(strport, sizeof strport, "%d", port);
2776 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2777 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002778 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002779 }
Damien Miller34132e52000-01-14 15:45:46 +11002780 for (ai = aitop; ai; ai = ai->ai_next) {
2781 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2782 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002783 sock = socket(ai->ai_family, ai->ai_socktype,
2784 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002785 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002786 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002787 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002788 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002789 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002790 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002791 debug("x11_create_display_inet: Socket family %d not supported",
2792 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002793 continue;
2794 }
Damien Miller34132e52000-01-14 15:45:46 +11002795 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002796#ifdef IPV6_V6ONLY
2797 if (ai->ai_family == AF_INET6) {
2798 int on = 1;
2799 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2800 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2801 }
2802#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002803 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002804 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002805 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002806 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002807
2808 if (ai->ai_next)
2809 continue;
2810
Damien Miller34132e52000-01-14 15:45:46 +11002811 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002812 close(socks[n]);
2813 }
2814 num_socks = 0;
2815 break;
2816 }
2817 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002818#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002819 if (num_socks == NUM_SOCKS)
2820 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002821#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002822 if (x11_use_localhost) {
2823 if (num_socks == NUM_SOCKS)
2824 break;
2825 } else {
2826 break;
2827 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002828#endif
Damien Miller95def091999-11-25 00:26:21 +11002829 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002830 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002831 if (num_socks > 0)
2832 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002833 }
Damien Miller95def091999-11-25 00:26:21 +11002834 if (display_number >= MAX_DISPLAYS) {
2835 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002836 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002837 }
Damien Miller95def091999-11-25 00:26:21 +11002838 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002839 for (n = 0; n < num_socks; n++) {
2840 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002841 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002842 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002843 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002844 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002845 }
Damien Miller95def091999-11-25 00:26:21 +11002846 }
Damien Miller34132e52000-01-14 15:45:46 +11002847
Damien Miller34132e52000-01-14 15:45:46 +11002848 /* Allocate a channel for each socket. */
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002849 *chanids = xmalloc(sizeof(**chanids) * (num_socks + 1));
Damien Miller34132e52000-01-14 15:45:46 +11002850 for (n = 0; n < num_socks; n++) {
2851 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002852 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002853 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2854 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002855 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002856 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002857 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002858 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002859 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002860
Kevin Steves366298c2001-12-19 17:58:01 +00002861 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002862 *display_numberp = display_number;
2863 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002864}
2865
Ben Lindstrombba81212001-06-25 05:01:22 +00002866static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002867connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002868{
Damien Miller95def091999-11-25 00:26:21 +11002869 int sock;
2870 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002871
Damien Miller3afe3752001-12-21 12:39:51 +11002872 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2873 if (sock < 0)
2874 error("socket: %.100s", strerror(errno));
2875 memset(&addr, 0, sizeof(addr));
2876 addr.sun_family = AF_UNIX;
2877 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2878 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2879 return sock;
2880 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002881 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2882 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002883}
2884
Damien Millerbd483e72000-04-30 10:00:53 +10002885int
2886x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002887{
Damien Miller398e1cf2002-02-05 11:52:13 +11002888 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002889 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002890 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002891 struct addrinfo hints, *ai, *aitop;
2892 char strport[NI_MAXSERV];
2893 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002894
Damien Miller95def091999-11-25 00:26:21 +11002895 /* Try to open a socket for the local X server. */
2896 display = getenv("DISPLAY");
2897 if (!display) {
2898 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002899 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002900 }
Damien Miller5428f641999-11-25 11:54:57 +11002901 /*
2902 * Now we decode the value of the DISPLAY variable and make a
2903 * connection to the real X server.
2904 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002905
Damien Miller5428f641999-11-25 11:54:57 +11002906 /*
2907 * Check if it is a unix domain socket. Unix domain displays are in
2908 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2909 */
Damien Miller95def091999-11-25 00:26:21 +11002910 if (strncmp(display, "unix:", 5) == 0 ||
2911 display[0] == ':') {
2912 /* Connect to the unix domain socket. */
2913 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2914 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002915 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002916 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002917 }
2918 /* Create a socket. */
2919 sock = connect_local_xsocket(display_number);
2920 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002921 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002922
2923 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002924 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002925 }
Damien Miller5428f641999-11-25 11:54:57 +11002926 /*
2927 * Connect to an inet socket. The DISPLAY value is supposedly
2928 * hostname:d[.s], where hostname may also be numeric IP address.
2929 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002930 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002931 cp = strchr(buf, ':');
2932 if (!cp) {
2933 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002934 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002935 }
Damien Miller95def091999-11-25 00:26:21 +11002936 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002937 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002938 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2939 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002940 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002941 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002942 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002943
Damien Miller34132e52000-01-14 15:45:46 +11002944 /* Look up the host address */
2945 memset(&hints, 0, sizeof(hints));
2946 hints.ai_family = IPv4or6;
2947 hints.ai_socktype = SOCK_STREAM;
2948 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2949 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2950 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002951 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002952 }
Damien Miller34132e52000-01-14 15:45:46 +11002953 for (ai = aitop; ai; ai = ai->ai_next) {
2954 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002955 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002956 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002957 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002958 continue;
2959 }
2960 /* Connect it to the display. */
2961 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002962 debug2("connect %.100s port %d: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002963 6000 + display_number, strerror(errno));
2964 close(sock);
2965 continue;
2966 }
2967 /* Success */
2968 break;
Damien Miller34132e52000-01-14 15:45:46 +11002969 }
Damien Miller34132e52000-01-14 15:45:46 +11002970 freeaddrinfo(aitop);
2971 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002972 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002973 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002974 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002975 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002976 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002977 return sock;
2978}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002979
Damien Millerbd483e72000-04-30 10:00:53 +10002980/*
2981 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2982 * the remote channel number. We should do whatever we want, and respond
2983 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2984 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002985
Damien Millerbd483e72000-04-30 10:00:53 +10002986void
Damien Miller630d6f42002-01-22 23:17:30 +11002987x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002988{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002989 Channel *c = NULL;
2990 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002991 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002992
2993 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002994
2995 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002996
2997 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002998 remote_host = packet_get_string(NULL);
2999 } else {
3000 remote_host = xstrdup("unknown (remote did not supply name)");
3001 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003002 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003003
3004 /* Obtain a connection to the real X display. */
3005 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003006 if (sock != -1) {
3007 /* Allocate a channel for this connection. */
3008 c = channel_new("connected x11 socket",
3009 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3010 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003011 c->remote_id = remote_id;
3012 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003013 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003014 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003015 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003016 /* Send refusal to the remote host. */
3017 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003018 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003019 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003020 /* Send a confirmation to the remote host. */
3021 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003022 packet_put_int(remote_id);
3023 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003024 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003025 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003026}
3027
Damien Miller69b69aa2000-10-28 14:19:58 +11003028/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3029void
Damien Miller630d6f42002-01-22 23:17:30 +11003030deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003031{
3032 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003033
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003034 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003035 case SSH_SMSG_AGENT_OPEN:
3036 error("Warning: ssh server tried agent forwarding.");
3037 break;
3038 case SSH_SMSG_X11_OPEN:
3039 error("Warning: ssh server tried X11 forwarding.");
3040 break;
3041 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003042 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003043 break;
3044 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003045 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003046 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3047 packet_put_int(rchan);
3048 packet_send();
3049}
3050
Damien Miller5428f641999-11-25 11:54:57 +11003051/*
3052 * Requests forwarding of X11 connections, generates fake authentication
3053 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003054 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003055 */
Damien Miller4af51302000-04-16 11:18:38 +10003056void
Damien Miller17e7ed02005-06-17 12:54:33 +10003057x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003058 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003059{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003060 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003061 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003062 char *new_data;
3063 int screen_number;
3064 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003065 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003066
Damien Millerf92c0792005-07-06 09:45:26 +10003067 if (x11_saved_display == NULL)
3068 x11_saved_display = xstrdup(disp);
3069 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003070 error("x11_request_forwarding_with_spoofing: different "
3071 "$DISPLAY already forwarded");
3072 return;
3073 }
3074
Damien Miller17e7ed02005-06-17 12:54:33 +10003075 cp = disp;
3076 if (disp)
3077 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003078 if (cp)
3079 cp = strchr(cp, '.');
3080 if (cp)
3081 screen_number = atoi(cp + 1);
3082 else
3083 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003084
Damien Miller13390022005-07-06 09:44:19 +10003085 if (x11_saved_proto == NULL) {
3086 /* Save protocol name. */
3087 x11_saved_proto = xstrdup(proto);
3088 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003089 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003090 * of the same length.
3091 */
3092 x11_saved_data = xmalloc(data_len);
3093 x11_fake_data = xmalloc(data_len);
3094 for (i = 0; i < data_len; i++) {
3095 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3096 fatal("x11_request_forwarding: bad "
3097 "authentication data: %.100s", data);
3098 if (i % 4 == 0)
3099 rnd = arc4random();
3100 x11_saved_data[i] = value;
3101 x11_fake_data[i] = rnd & 0xff;
3102 rnd >>= 8;
3103 }
3104 x11_saved_data_len = data_len;
3105 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003106 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003107
Damien Miller95def091999-11-25 00:26:21 +11003108 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003109 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003110
Damien Miller95def091999-11-25 00:26:21 +11003111 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003112 if (compat20) {
3113 channel_request_start(client_session_id, "x11-req", 0);
3114 packet_put_char(0); /* XXX bool single connection */
3115 } else {
3116 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3117 }
3118 packet_put_cstring(proto);
3119 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003120 packet_put_int(screen_number);
3121 packet_send();
3122 packet_write_wait();
3123 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003124}
3125
Ben Lindstrome9c99912001-06-09 00:41:05 +00003126
3127/* -- agent forwarding */
3128
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003129/* Sends a message to the server to request authentication fd forwarding. */
3130
Damien Miller4af51302000-04-16 11:18:38 +10003131void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003132auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003133{
Damien Miller95def091999-11-25 00:26:21 +11003134 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3135 packet_send();
3136 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003137}