blob: 325f278f00c11c031fb17ac22d826a0779245385 [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"
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +000042RCSID("$OpenBSD: channels.c,v 1.169 2002/02/24 19:59:42 stevesk Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh1.h"
46#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "packet.h"
48#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "log.h"
51#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100055#include "key.h"
56#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110057#include "pathnames.h"
Damien Miller994cf142000-07-21 10:19:44 +100058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Ben Lindstrome9c99912001-06-09 00:41:05 +000060/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Damien Miller5428f641999-11-25 11:54:57 +110062/*
63 * Pointer to an array containing all allocated channels. The array is
64 * dynamically extended as needed.
65 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000066static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller5428f641999-11-25 11:54:57 +110068/*
69 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000070 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110071 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072static int channels_alloc = 0;
73
Damien Miller5428f641999-11-25 11:54:57 +110074/*
75 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000076 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110077 */
Damien Miller5e953212001-01-30 09:14:00 +110078static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Data structure for storing which hosts are permitted for forward requests.
85 * The local sides of any remote forwards are stored in this array to prevent
86 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
87 * network (which might be behind a firewall).
88 */
Damien Miller95def091999-11-25 00:26:21 +110089typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100090 char *host_to_connect; /* Connect to 'host'. */
91 u_short port_to_connect; /* Connect to 'port'. */
92 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093} ForwardPermission;
94
95/* List of all permitted host/port pairs to connect. */
96static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000097
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098/* Number of permitted host/port pairs in the array. */
99static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * If this is true, all opens are permitted. This is the case on the server
102 * on which we have to trust the client anyway, and the user could do
103 * anything after logging in anyway.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105static int all_opens_permitted = 0;
106
Ben Lindstrome9c99912001-06-09 00:41:05 +0000107
108/* -- X11 forwarding */
109
110/* Maximum number of fake X11 displays to try. */
111#define MAX_DISPLAYS 1000
112
113/* Saved X11 authentication protocol name. */
114static char *x11_saved_proto = NULL;
115
116/* Saved X11 authentication data. This is the real data. */
117static char *x11_saved_data = NULL;
118static u_int x11_saved_data_len = 0;
119
120/*
121 * Fake X11 authentication data. This is what the server will be sending us;
122 * we should replace any occurrences of this by the real data.
123 */
124static char *x11_fake_data = NULL;
125static u_int x11_fake_data_len;
126
127
128/* -- agent forwarding */
129
130#define NUM_SOCKS 10
131
132/* Name and directory of socket for authentication agent forwarding. */
133static char *auth_sock_name = NULL;
134static char *auth_sock_dir = NULL;
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 *
145channel_lookup(int id)
146{
147 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148
Damien Millerc0fd17f2000-06-26 10:22:53 +1000149 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000150 log("channel_lookup: %d: bad id", id);
151 return NULL;
152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000153 c = channels[id];
154 if (c == NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +1000155 log("channel_lookup: %d: bad id: channel free", id);
156 return NULL;
157 }
158 return c;
159}
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Damien Millere247cc42000-05-07 12:03:14 +1000162 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000163 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100167channel_register_fds(Channel *c, int rfd, int wfd, int efd,
168 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100171 channel_max_fd = MAX(channel_max_fd, rfd);
172 channel_max_fd = MAX(channel_max_fd, wfd);
173 channel_max_fd = MAX(channel_max_fd, efd);
174
Damien Miller5428f641999-11-25 11:54:57 +1100175 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000176
Damien Miller6f83b8e2000-05-02 09:23:45 +1000177 c->rfd = rfd;
178 c->wfd = wfd;
179 c->sock = (rfd == wfd) ? rfd : -1;
180 c->efd = efd;
181 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100182
Damien Miller79438cc2001-02-16 12:34:57 +1100183 /* XXX ugly hack: nonblock is only set by the server */
184 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000185 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100186 c->isatty = 1;
187 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000188 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100189 c->self, c->wfd);
190 }
191 } else {
192 c->isatty = 0;
193 }
194
Damien Miller69b69aa2000-10-28 14:19:58 +1100195 /* enable nonblocking mode */
196 if (nonblock) {
197 if (rfd != -1)
198 set_nonblock(rfd);
199 if (wfd != -1)
200 set_nonblock(wfd);
201 if (efd != -1)
202 set_nonblock(efd);
203 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000204}
205
206/*
207 * Allocate a new channel object and set its type and socket. This will cause
208 * remote_name to be freed.
209 */
210
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000211Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000212channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Damien Miller69b69aa2000-10-28 14:19:58 +1100213 int window, int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000214{
215 int i, found;
216 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Do initial allocation if this is the first call. */
219 if (channels_alloc == 0) {
220 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000221 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100222 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000223 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000224 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100225 }
226 /* Try to find a free slot where to put the new channel. */
227 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000228 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100229 /* Found a free slot. */
230 found = i;
231 break;
232 }
233 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100234 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100235 found = channels_alloc;
236 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100237 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000238 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100239 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000240 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100241 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000242 /* Initialize and return new channel. */
243 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000244 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100245 buffer_init(&c->input);
246 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000247 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100248 c->ostate = CHAN_OUTPUT_OPEN;
249 c->istate = CHAN_INPUT_OPEN;
250 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100251 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100252 c->self = found;
253 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000254 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000255 c->local_window = window;
256 c->local_window_max = window;
257 c->local_consumed = 0;
258 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100259 c->remote_id = -1;
260 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000261 c->remote_window = 0;
262 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000263 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100264 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000265 c->detach_user = NULL;
Damien Miller67f0bc02002-02-05 12:23:08 +1100266 c->confirm = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000267 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100268 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000269 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000272static int
273channel_find_maxfd(void)
274{
275 int i, max = 0;
276 Channel *c;
277
278 for (i = 0; i < channels_alloc; i++) {
279 c = channels[i];
280 if (c != NULL) {
281 max = MAX(max, c->rfd);
282 max = MAX(max, c->wfd);
283 max = MAX(max, c->efd);
284 }
285 }
286 return max;
287}
288
289int
290channel_close_fd(int *fdp)
291{
292 int ret = 0, fd = *fdp;
293
294 if (fd != -1) {
295 ret = close(fd);
296 *fdp = -1;
297 if (fd == channel_max_fd)
298 channel_max_fd = channel_find_maxfd();
299 }
300 return ret;
301}
302
Damien Miller6f83b8e2000-05-02 09:23:45 +1000303/* Close all channel fd/socket. */
304
Ben Lindstrombba81212001-06-25 05:01:22 +0000305static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000306channel_close_fds(Channel *c)
307{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000308 debug3("channel_close_fds: channel %d: r %d w %d e %d",
309 c->self, c->rfd, c->wfd, c->efd);
310
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000311 channel_close_fd(&c->sock);
312 channel_close_fd(&c->rfd);
313 channel_close_fd(&c->wfd);
314 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000315}
316
317/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller4af51302000-04-16 11:18:38 +1000319void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000320channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000322 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000323 int i, n;
324
325 for (n = 0, i = 0; i < channels_alloc; i++)
326 if (channels[i])
327 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000328 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000329 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000330
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000331 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000332 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000333 xfree(s);
334
Damien Miller6f83b8e2000-05-02 09:23:45 +1000335 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000336 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000337 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000338 buffer_free(&c->input);
339 buffer_free(&c->output);
340 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000341 if (c->remote_name) {
342 xfree(c->remote_name);
343 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100344 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000345 channels[c->self] = NULL;
346 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347}
348
Ben Lindstrome9c99912001-06-09 00:41:05 +0000349void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000350channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000351{
352 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000353
Ben Lindstrom601e4362001-06-21 03:19:23 +0000354 for (i = 0; i < channels_alloc; i++)
355 if (channels[i] != NULL)
356 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000357}
358
359/*
360 * Closes the sockets/fds of all channels. This is used to close extra file
361 * descriptors after a fork.
362 */
363
364void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000365channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000366{
367 int i;
368
369 for (i = 0; i < channels_alloc; i++)
370 if (channels[i] != NULL)
371 channel_close_fds(channels[i]);
372}
373
374/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000375 * Stop listening to channels.
376 */
377
378void
379channel_stop_listening(void)
380{
381 int i;
382 Channel *c;
383
384 for (i = 0; i < channels_alloc; i++) {
385 c = channels[i];
386 if (c != NULL) {
387 switch (c->type) {
388 case SSH_CHANNEL_AUTH_SOCKET:
389 case SSH_CHANNEL_PORT_LISTENER:
390 case SSH_CHANNEL_RPORT_LISTENER:
391 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000392 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000393 channel_free(c);
394 break;
395 }
396 }
397 }
398}
399
400/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000401 * Returns true if no channel has too much buffered data, and false if one or
402 * more channel is overfull.
403 */
404
405int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000406channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407{
408 u_int i;
409 Channel *c;
410
411 for (i = 0; i < channels_alloc; i++) {
412 c = channels[i];
413 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000414#if 0
415 if (!compat20 &&
416 buffer_len(&c->input) > packet_get_maxsize()) {
Ben Lindstrome9c99912001-06-09 00:41:05 +0000417 debug("channel %d: big input buffer %d",
418 c->self, buffer_len(&c->input));
419 return 0;
420 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000421#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000422 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000423 debug("channel %d: big output buffer %d > %d",
424 c->self, buffer_len(&c->output),
425 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426 return 0;
427 }
428 }
429 }
430 return 1;
431}
432
433/* Returns true if any channel is still open. */
434
435int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000436channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437{
438 int i;
439 Channel *c;
440
441 for (i = 0; i < channels_alloc; i++) {
442 c = channels[i];
443 if (c == NULL)
444 continue;
445 switch (c->type) {
446 case SSH_CHANNEL_X11_LISTENER:
447 case SSH_CHANNEL_PORT_LISTENER:
448 case SSH_CHANNEL_RPORT_LISTENER:
449 case SSH_CHANNEL_CLOSED:
450 case SSH_CHANNEL_AUTH_SOCKET:
451 case SSH_CHANNEL_DYNAMIC:
452 case SSH_CHANNEL_CONNECTING:
453 case SSH_CHANNEL_ZOMBIE:
454 continue;
455 case SSH_CHANNEL_LARVAL:
456 if (!compat20)
457 fatal("cannot happen: SSH_CHANNEL_LARVAL");
458 continue;
459 case SSH_CHANNEL_OPENING:
460 case SSH_CHANNEL_OPEN:
461 case SSH_CHANNEL_X11_OPEN:
462 return 1;
463 case SSH_CHANNEL_INPUT_DRAINING:
464 case SSH_CHANNEL_OUTPUT_DRAINING:
465 if (!compat13)
466 fatal("cannot happen: OUT_DRAIN");
467 return 1;
468 default:
469 fatal("channel_still_open: bad channel type %d", c->type);
470 /* NOTREACHED */
471 }
472 }
473 return 0;
474}
475
476/* Returns the id of an open channel suitable for keepaliving */
477
478int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000479channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480{
481 int i;
482 Channel *c;
483
484 for (i = 0; i < channels_alloc; i++) {
485 c = channels[i];
486 if (c == NULL)
487 continue;
488 switch (c->type) {
489 case SSH_CHANNEL_CLOSED:
490 case SSH_CHANNEL_DYNAMIC:
491 case SSH_CHANNEL_X11_LISTENER:
492 case SSH_CHANNEL_PORT_LISTENER:
493 case SSH_CHANNEL_RPORT_LISTENER:
494 case SSH_CHANNEL_OPENING:
495 case SSH_CHANNEL_CONNECTING:
496 case SSH_CHANNEL_ZOMBIE:
497 continue;
498 case SSH_CHANNEL_LARVAL:
499 case SSH_CHANNEL_AUTH_SOCKET:
500 case SSH_CHANNEL_OPEN:
501 case SSH_CHANNEL_X11_OPEN:
502 return i;
503 case SSH_CHANNEL_INPUT_DRAINING:
504 case SSH_CHANNEL_OUTPUT_DRAINING:
505 if (!compat13)
506 fatal("cannot happen: OUT_DRAIN");
507 return i;
508 default:
509 fatal("channel_find_open: bad channel type %d", c->type);
510 /* NOTREACHED */
511 }
512 }
513 return -1;
514}
515
516
517/*
518 * Returns a message describing the currently open forwarded connections,
519 * suitable for sending to the client. The message contains crlf pairs for
520 * newlines.
521 */
522
523char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000524channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000525{
526 Buffer buffer;
527 Channel *c;
528 char buf[1024], *cp;
529 int i;
530
531 buffer_init(&buffer);
532 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
533 buffer_append(&buffer, buf, strlen(buf));
534 for (i = 0; i < channels_alloc; i++) {
535 c = channels[i];
536 if (c == NULL)
537 continue;
538 switch (c->type) {
539 case SSH_CHANNEL_X11_LISTENER:
540 case SSH_CHANNEL_PORT_LISTENER:
541 case SSH_CHANNEL_RPORT_LISTENER:
542 case SSH_CHANNEL_CLOSED:
543 case SSH_CHANNEL_AUTH_SOCKET:
544 case SSH_CHANNEL_ZOMBIE:
545 continue;
546 case SSH_CHANNEL_LARVAL:
547 case SSH_CHANNEL_OPENING:
548 case SSH_CHANNEL_CONNECTING:
549 case SSH_CHANNEL_DYNAMIC:
550 case SSH_CHANNEL_OPEN:
551 case SSH_CHANNEL_X11_OPEN:
552 case SSH_CHANNEL_INPUT_DRAINING:
553 case SSH_CHANNEL_OUTPUT_DRAINING:
554 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
555 c->self, c->remote_name,
556 c->type, c->remote_id,
557 c->istate, buffer_len(&c->input),
558 c->ostate, buffer_len(&c->output),
559 c->rfd, c->wfd);
560 buffer_append(&buffer, buf, strlen(buf));
561 continue;
562 default:
563 fatal("channel_open_message: bad channel type %d", c->type);
564 /* NOTREACHED */
565 }
566 }
567 buffer_append(&buffer, "\0", 1);
568 cp = xstrdup(buffer_ptr(&buffer));
569 buffer_free(&buffer);
570 return cp;
571}
572
573void
574channel_send_open(int id)
575{
576 Channel *c = channel_lookup(id);
577 if (c == NULL) {
578 log("channel_send_open: %d: bad id", id);
579 return;
580 }
581 debug("send channel open %d", id);
582 packet_start(SSH2_MSG_CHANNEL_OPEN);
583 packet_put_cstring(c->ctype);
584 packet_put_int(c->self);
585 packet_put_int(c->local_window);
586 packet_put_int(c->local_maxpacket);
587 packet_send();
588}
589
590void
Damien Millera500cd62002-02-08 22:04:26 +1100591channel_request_start(int local_id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592{
Damien Millera500cd62002-02-08 22:04:26 +1100593 Channel *c = channel_lookup(local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594 if (c == NULL) {
Damien Millera500cd62002-02-08 22:04:26 +1100595 log("channel_request_start: %d: unknown channel id", local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000596 return;
597 }
Damien Millera500cd62002-02-08 22:04:26 +1100598 debug("channel request %d: %s", local_id, service) ;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000599 packet_start(SSH2_MSG_CHANNEL_REQUEST);
600 packet_put_int(c->remote_id);
601 packet_put_cstring(service);
602 packet_put_char(wantconfirm);
603}
604void
Damien Miller67f0bc02002-02-05 12:23:08 +1100605channel_register_confirm(int id, channel_callback_fn *fn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606{
607 Channel *c = channel_lookup(id);
608 if (c == NULL) {
Damien Miller67f0bc02002-02-05 12:23:08 +1100609 log("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000610 return;
611 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100612 c->confirm = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000613}
614void
615channel_register_cleanup(int id, channel_callback_fn *fn)
616{
617 Channel *c = channel_lookup(id);
618 if (c == NULL) {
619 log("channel_register_cleanup: %d: bad id", id);
620 return;
621 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000622 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623}
624void
625channel_cancel_cleanup(int id)
626{
627 Channel *c = channel_lookup(id);
628 if (c == NULL) {
629 log("channel_cancel_cleanup: %d: bad id", id);
630 return;
631 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000632 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633}
634void
635channel_register_filter(int id, channel_filter_fn *fn)
636{
637 Channel *c = channel_lookup(id);
638 if (c == NULL) {
639 log("channel_register_filter: %d: bad id", id);
640 return;
641 }
642 c->input_filter = fn;
643}
644
645void
646channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100647 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648{
649 Channel *c = channel_lookup(id);
650 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
651 fatal("channel_activate for non-larval channel %d.", id);
652 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
653 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100654 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
656 packet_put_int(c->remote_id);
657 packet_put_int(c->local_window);
658 packet_send();
659}
660
Damien Miller5428f641999-11-25 11:54:57 +1100661/*
Damien Millerb38eff82000-04-01 11:09:21 +1000662 * 'channel_pre*' are called just before select() to add any bits relevant to
663 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100664 */
Damien Millerb38eff82000-04-01 11:09:21 +1000665/*
666 * 'channel_post*': perform any appropriate operations for channels which
667 * have events pending.
668 */
669typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
670chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
671chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
672
Ben Lindstrombba81212001-06-25 05:01:22 +0000673static void
Damien Millerb38eff82000-04-01 11:09:21 +1000674channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
675{
676 FD_SET(c->sock, readset);
677}
678
Ben Lindstrombba81212001-06-25 05:01:22 +0000679static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000680channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
681{
682 debug3("channel %d: waiting for connection", c->self);
683 FD_SET(c->sock, writeset);
684}
685
Ben Lindstrombba81212001-06-25 05:01:22 +0000686static void
Damien Millerb38eff82000-04-01 11:09:21 +1000687channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
688{
689 if (buffer_len(&c->input) < packet_get_maxsize())
690 FD_SET(c->sock, readset);
691 if (buffer_len(&c->output) > 0)
692 FD_SET(c->sock, writeset);
693}
694
Ben Lindstrombba81212001-06-25 05:01:22 +0000695static void
Damien Millerde6987c2002-01-22 23:20:40 +1100696channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000697{
Damien Millerde6987c2002-01-22 23:20:40 +1100698 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000699
Damien Miller33b13562000-04-04 14:38:59 +1000700 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100701 limit > 0 &&
702 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000703 FD_SET(c->rfd, readset);
704 if (c->ostate == CHAN_OUTPUT_OPEN ||
705 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
706 if (buffer_len(&c->output) > 0) {
707 FD_SET(c->wfd, writeset);
708 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
709 chan_obuf_empty(c);
710 }
711 }
712 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100713 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000714 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
715 buffer_len(&c->extended) > 0)
716 FD_SET(c->efd, writeset);
717 else if (c->extended_usage == CHAN_EXTENDED_READ &&
718 buffer_len(&c->extended) < c->remote_window)
719 FD_SET(c->efd, readset);
720 }
721}
722
Ben Lindstrombba81212001-06-25 05:01:22 +0000723static void
Damien Millerb38eff82000-04-01 11:09:21 +1000724channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
725{
726 if (buffer_len(&c->input) == 0) {
727 packet_start(SSH_MSG_CHANNEL_CLOSE);
728 packet_put_int(c->remote_id);
729 packet_send();
730 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000731 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000732 }
733}
734
Ben Lindstrombba81212001-06-25 05:01:22 +0000735static void
Damien Millerb38eff82000-04-01 11:09:21 +1000736channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
737{
738 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000739 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000740 else
Damien Millerb38eff82000-04-01 11:09:21 +1000741 FD_SET(c->sock, writeset);
742}
743
744/*
745 * This is a special state for X11 authentication spoofing. An opened X11
746 * connection (when authentication spoofing is being done) remains in this
747 * state until the first packet has been completely read. The authentication
748 * data in that packet is then substituted by the real data if it matches the
749 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000750 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000752 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000753static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000755{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000756 u_char *ucp;
757 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000758
759 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000761 return 0;
762
763 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100764 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000765 if (ucp[0] == 0x42) { /* Byte order MSB first. */
766 proto_len = 256 * ucp[6] + ucp[7];
767 data_len = 256 * ucp[8] + ucp[9];
768 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
769 proto_len = ucp[6] + 256 * ucp[7];
770 data_len = ucp[8] + 256 * ucp[9];
771 } else {
772 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100773 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000774 return -1;
775 }
776
777 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000778 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000779 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
780 return 0;
781
782 /* Check if authentication protocol matches. */
783 if (proto_len != strlen(x11_saved_proto) ||
784 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
785 debug("X11 connection uses different authentication protocol.");
786 return -1;
787 }
788 /* Check if authentication data matches our fake data. */
789 if (data_len != x11_fake_data_len ||
790 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
791 x11_fake_data, x11_fake_data_len) != 0) {
792 debug("X11 auth data does not match fake data.");
793 return -1;
794 }
795 /* Check fake data length */
796 if (x11_fake_data_len != x11_saved_data_len) {
797 error("X11 fake_data_len %d != saved_data_len %d",
798 x11_fake_data_len, x11_saved_data_len);
799 return -1;
800 }
801 /*
802 * Received authentication protocol and data match
803 * our fake data. Substitute the fake data with real
804 * data.
805 */
806 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
807 x11_saved_data, x11_saved_data_len);
808 return 1;
809}
810
Ben Lindstrombba81212001-06-25 05:01:22 +0000811static void
Damien Millerb38eff82000-04-01 11:09:21 +1000812channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
813{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000814 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000815 if (ret == 1) {
816 /* Start normal processing for the channel. */
817 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000818 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000819 } else if (ret == -1) {
820 /*
821 * We have received an X11 connection that has bad
822 * authentication information.
823 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000824 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000825 buffer_clear(&c->input);
826 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000827 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000828 c->sock = -1;
829 c->type = SSH_CHANNEL_CLOSED;
830 packet_start(SSH_MSG_CHANNEL_CLOSE);
831 packet_put_int(c->remote_id);
832 packet_send();
833 }
834}
835
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Millerbd483e72000-04-30 10:00:53 +1000837channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000839 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000840
841 /* c->force_drain = 1; */
842
Damien Millerb38eff82000-04-01 11:09:21 +1000843 if (ret == 1) {
844 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100845 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000846 } else if (ret == -1) {
Damien Millera90fc082002-01-22 23:19:38 +1100847 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000848 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100849 chan_read_failed(c);
850 buffer_clear(&c->input);
851 chan_ibuf_empty(c);
852 buffer_clear(&c->output);
853 /* for proto v1, the peer will send an IEOF */
854 if (compat20)
855 chan_write_failed(c);
856 else
857 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000858 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
859 }
860}
861
Ben Lindstromb3921512001-04-11 15:57:50 +0000862/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000863static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000864channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000865{
866 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000867 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100868 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000869 struct {
870 u_int8_t version;
871 u_int8_t command;
872 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000873 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000874 } s4_req, s4_rsp;
875
Ben Lindstromb3921512001-04-11 15:57:50 +0000876 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000877
878 have = buffer_len(&c->input);
879 len = sizeof(s4_req);
880 if (have < len)
881 return 0;
882 p = buffer_ptr(&c->input);
883 for (found = 0, i = len; i < have; i++) {
884 if (p[i] == '\0') {
885 found = 1;
886 break;
887 }
888 if (i > 1024) {
889 /* the peer is probably sending garbage */
890 debug("channel %d: decode socks4: too long",
891 c->self);
892 return -1;
893 }
894 }
895 if (!found)
896 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000897 buffer_get(&c->input, (char *)&s4_req.version, 1);
898 buffer_get(&c->input, (char *)&s4_req.command, 1);
899 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000900 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000901 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000902 p = buffer_ptr(&c->input);
903 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000904 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000905 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000906 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000907 c->self, len, have);
908 strlcpy(username, p, sizeof(username));
909 buffer_consume(&c->input, len);
910 buffer_consume(&c->input, 1); /* trailing '\0' */
911
Ben Lindstromb3921512001-04-11 15:57:50 +0000912 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000913 strlcpy(c->path, host, sizeof(c->path));
914 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100915
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000916 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
917 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000918
Ben Lindstromb3921512001-04-11 15:57:50 +0000919 if (s4_req.command != 1) {
920 debug("channel %d: cannot handle: socks4 cn %d",
921 c->self, s4_req.command);
922 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000923 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000924 s4_rsp.version = 0; /* vn: 0 for reply */
925 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000926 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000927 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000928 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000929 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000930}
931
Ben Lindstromb3921512001-04-11 15:57:50 +0000932/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000934channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
935{
936 u_char *p;
937 int have, ret;
938
939 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000940 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000941 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000942 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000943 /* check if the fixed size part of the packet is in buffer. */
944 if (have < 4) {
945 /* need more */
946 FD_SET(c->sock, readset);
947 return;
948 }
949 /* try to guess the protocol */
950 p = buffer_ptr(&c->input);
951 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000952 case 0x04:
953 ret = channel_decode_socks4(c, readset, writeset);
954 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000955 default:
956 ret = -1;
957 break;
958 }
959 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000960 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000961 } else if (ret == 0) {
962 debug2("channel %d: pre_dynamic: need more", c->self);
963 /* need more */
964 FD_SET(c->sock, readset);
965 } else {
966 /* switch to the next state */
967 c->type = SSH_CHANNEL_OPENING;
968 port_open_helper(c, "direct-tcpip");
969 }
970}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000971
Damien Millerb38eff82000-04-01 11:09:21 +1000972/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000973static void
Damien Millerb38eff82000-04-01 11:09:21 +1000974channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
975{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000976 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000977 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +1100978 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +1000979 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100980 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000981 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000982
983 if (FD_ISSET(c->sock, readset)) {
984 debug("X11 connection requested.");
985 addrlen = sizeof(addr);
986 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100987 if (c->single_connection) {
988 debug("single_connection: closing X11 listener.");
989 channel_close_fd(&c->sock);
990 chan_mark_dead(c);
991 }
Damien Millerb38eff82000-04-01 11:09:21 +1000992 if (newsock < 0) {
993 error("accept: %.100s", strerror(errno));
994 return;
995 }
Damien Miller398e1cf2002-02-05 11:52:13 +1100996 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +1100997 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000998 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +1000999 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001000 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001001
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001002 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001003 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1004 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001005 0, xstrdup(buf), 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001006 if (compat20) {
1007 packet_start(SSH2_MSG_CHANNEL_OPEN);
1008 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001009 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001010 packet_put_int(nc->local_window_max);
1011 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001012 /* originator ipaddr and port */
1013 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001014 if (datafellows & SSH_BUG_X11FWD) {
1015 debug("ssh2 x11 bug compat mode");
1016 } else {
1017 packet_put_int(remote_port);
1018 }
Damien Millerbd483e72000-04-30 10:00:53 +10001019 packet_send();
1020 } else {
1021 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001022 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001023 if (packet_get_protocol_flags() &
1024 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001025 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001026 packet_send();
1027 }
Damien Millerd83ff352001-01-30 09:19:34 +11001028 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001029 }
1030}
1031
Ben Lindstrombba81212001-06-25 05:01:22 +00001032static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001033port_open_helper(Channel *c, char *rtype)
1034{
1035 int direct;
1036 char buf[1024];
1037 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1038 u_short remote_port = get_peer_port(c->sock);
1039
1040 direct = (strcmp(rtype, "direct-tcpip") == 0);
1041
1042 snprintf(buf, sizeof buf,
1043 "%s: listening port %d for %.100s port %d, "
1044 "connect from %.200s port %d",
1045 rtype, c->listening_port, c->path, c->host_port,
1046 remote_ipaddr, remote_port);
1047
1048 xfree(c->remote_name);
1049 c->remote_name = xstrdup(buf);
1050
1051 if (compat20) {
1052 packet_start(SSH2_MSG_CHANNEL_OPEN);
1053 packet_put_cstring(rtype);
1054 packet_put_int(c->self);
1055 packet_put_int(c->local_window_max);
1056 packet_put_int(c->local_maxpacket);
1057 if (direct) {
1058 /* target host, port */
1059 packet_put_cstring(c->path);
1060 packet_put_int(c->host_port);
1061 } else {
1062 /* listen address, port */
1063 packet_put_cstring(c->path);
1064 packet_put_int(c->listening_port);
1065 }
1066 /* originator host and port */
1067 packet_put_cstring(remote_ipaddr);
1068 packet_put_int(remote_port);
1069 packet_send();
1070 } else {
1071 packet_start(SSH_MSG_PORT_OPEN);
1072 packet_put_int(c->self);
1073 packet_put_cstring(c->path);
1074 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001075 if (packet_get_protocol_flags() &
1076 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001077 packet_put_cstring(c->remote_name);
1078 packet_send();
1079 }
1080 xfree(remote_ipaddr);
1081}
1082
Damien Millerb38eff82000-04-01 11:09:21 +10001083/*
1084 * This socket is listening for connections to a forwarded TCP/IP port.
1085 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001086static void
Damien Millerb38eff82000-04-01 11:09:21 +10001087channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1088{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001089 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001090 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001091 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001092 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001093 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001094
Damien Millerb38eff82000-04-01 11:09:21 +10001095 if (FD_ISSET(c->sock, readset)) {
1096 debug("Connection to port %d forwarding "
1097 "to %.100s port %d requested.",
1098 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001099
Damien Miller4623a752001-10-10 15:03:58 +10001100 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1101 nextstate = SSH_CHANNEL_OPENING;
1102 rtype = "forwarded-tcpip";
1103 } else {
1104 if (c->host_port == 0) {
1105 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001106 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001107 } else {
1108 nextstate = SSH_CHANNEL_OPENING;
1109 rtype = "direct-tcpip";
1110 }
1111 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001112
Damien Millerb38eff82000-04-01 11:09:21 +10001113 addrlen = sizeof(addr);
1114 newsock = accept(c->sock, &addr, &addrlen);
1115 if (newsock < 0) {
1116 error("accept: %.100s", strerror(errno));
1117 return;
1118 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001119 set_nodelay(newsock);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001120 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001121 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001122 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001123 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001124 nc->listening_port = c->listening_port;
1125 nc->host_port = c->host_port;
1126 strlcpy(nc->path, c->path, sizeof(nc->path));
1127
Damien Miller4623a752001-10-10 15:03:58 +10001128 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1129 /*
1130 * do not call the channel_post handler until
1131 * this flag has been reset by a pre-handler.
1132 * otherwise the FD_ISSET calls might overflow
1133 */
1134 nc->delayed = 1;
1135 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001136 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001137 }
Damien Millerb38eff82000-04-01 11:09:21 +10001138 }
1139}
1140
1141/*
1142 * This is the authentication agent socket listening for connections from
1143 * clients.
1144 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001145static void
Damien Millerb38eff82000-04-01 11:09:21 +10001146channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1147{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001148 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001149 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001150 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001151 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001152 socklen_t addrlen;
1153
1154 if (FD_ISSET(c->sock, readset)) {
1155 addrlen = sizeof(addr);
1156 newsock = accept(c->sock, &addr, &addrlen);
1157 if (newsock < 0) {
1158 error("accept from auth socket: %.100s", strerror(errno));
1159 return;
1160 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001161 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001162 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001163 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1164 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001165 0, name, 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001166 if (compat20) {
1167 packet_start(SSH2_MSG_CHANNEL_OPEN);
1168 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001169 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001170 packet_put_int(c->local_window_max);
1171 packet_put_int(c->local_maxpacket);
1172 } else {
1173 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001174 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001175 }
Damien Millerb38eff82000-04-01 11:09:21 +10001176 packet_send();
1177 }
1178}
1179
Ben Lindstrombba81212001-06-25 05:01:22 +00001180static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001181channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1182{
Ben Lindstrom69128662001-05-08 20:07:39 +00001183 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001184 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001185
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001186 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001187 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1188 &sz) < 0) {
1189 err = errno;
1190 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001191 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001192 if (err == 0) {
1193 debug("channel %d: connected", c->self);
1194 c->type = SSH_CHANNEL_OPEN;
1195 if (compat20) {
1196 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1197 packet_put_int(c->remote_id);
1198 packet_put_int(c->self);
1199 packet_put_int(c->local_window);
1200 packet_put_int(c->local_maxpacket);
1201 } else {
1202 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1203 packet_put_int(c->remote_id);
1204 packet_put_int(c->self);
1205 }
1206 } else {
1207 debug("channel %d: not connected: %s",
1208 c->self, strerror(err));
1209 if (compat20) {
1210 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1211 packet_put_int(c->remote_id);
1212 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1213 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1214 packet_put_cstring(strerror(err));
1215 packet_put_cstring("");
1216 }
1217 } else {
1218 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1219 packet_put_int(c->remote_id);
1220 }
1221 chan_mark_dead(c);
1222 }
1223 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001224 }
1225}
1226
Ben Lindstrombba81212001-06-25 05:01:22 +00001227static int
Damien Millerb38eff82000-04-01 11:09:21 +10001228channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1229{
1230 char buf[16*1024];
1231 int len;
1232
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001233 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001234 FD_ISSET(c->rfd, readset)) {
1235 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001236 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1237 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001238 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001239 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001240 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001241 if (c->type != SSH_CHANNEL_OPEN) {
1242 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001243 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001244 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001245 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001246 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001247 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001248 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001249 } else {
1250 chan_read_failed(c);
1251 }
1252 return -1;
1253 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001254 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001255 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001256 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001257 chan_read_failed(c);
1258 }
1259 } else {
1260 buffer_append(&c->input, buf, len);
1261 }
Damien Millerb38eff82000-04-01 11:09:21 +10001262 }
1263 return 1;
1264}
Ben Lindstrombba81212001-06-25 05:01:22 +00001265static int
Damien Millerb38eff82000-04-01 11:09:21 +10001266channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1267{
Ben Lindstrome229b252001-03-05 06:28:06 +00001268 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001269 u_char *data;
1270 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001271 int len;
1272
1273 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001274 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001275 FD_ISSET(c->wfd, writeset) &&
1276 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001277 data = buffer_ptr(&c->output);
1278 dlen = buffer_len(&c->output);
1279 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001280 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1281 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001282 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001283 if (c->type != SSH_CHANNEL_OPEN) {
1284 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001285 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001286 return -1;
1287 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001288 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001289 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001290 c->type = SSH_CHANNEL_INPUT_DRAINING;
1291 } else {
1292 chan_write_failed(c);
1293 }
1294 return -1;
1295 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001296 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001297 if (tcgetattr(c->wfd, &tio) == 0 &&
1298 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1299 /*
1300 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001301 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001302 * size of a SSH2_MSG_CHANNEL_DATA message
1303 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001304 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001305 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001306 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001307 }
1308 }
Damien Millerb38eff82000-04-01 11:09:21 +10001309 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001310 if (compat20 && len > 0) {
1311 c->local_consumed += len;
1312 }
1313 }
1314 return 1;
1315}
Ben Lindstrombba81212001-06-25 05:01:22 +00001316static int
Damien Miller33b13562000-04-04 14:38:59 +10001317channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1318{
1319 char buf[16*1024];
1320 int len;
1321
Damien Miller1383bd82000-04-06 12:32:37 +10001322/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001323 if (c->efd != -1) {
1324 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1325 FD_ISSET(c->efd, writeset) &&
1326 buffer_len(&c->extended) > 0) {
1327 len = write(c->efd, buffer_ptr(&c->extended),
1328 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001329 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001330 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001331 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1332 return 1;
1333 if (len <= 0) {
1334 debug2("channel %d: closing write-efd %d",
1335 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001336 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001337 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001338 buffer_consume(&c->extended, len);
1339 c->local_consumed += len;
1340 }
1341 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1342 FD_ISSET(c->efd, readset)) {
1343 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001344 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001345 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001346 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1347 return 1;
1348 if (len <= 0) {
1349 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001350 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001351 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001352 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001353 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001354 }
Damien Miller33b13562000-04-04 14:38:59 +10001355 }
1356 }
1357 return 1;
1358}
Ben Lindstrombba81212001-06-25 05:01:22 +00001359static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001360channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001361{
Ben Lindstromb3921512001-04-11 15:57:50 +00001362 if (c->type == SSH_CHANNEL_OPEN &&
1363 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001364 c->local_window < c->local_window_max/2 &&
1365 c->local_consumed > 0) {
1366 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1367 packet_put_int(c->remote_id);
1368 packet_put_int(c->local_consumed);
1369 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001370 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001371 c->self, c->local_window,
1372 c->local_consumed);
1373 c->local_window += c->local_consumed;
1374 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001375 }
1376 return 1;
1377}
1378
Ben Lindstrombba81212001-06-25 05:01:22 +00001379static void
Damien Millerde6987c2002-01-22 23:20:40 +11001380channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001381{
Damien Miller4623a752001-10-10 15:03:58 +10001382 if (c->delayed)
1383 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001384 channel_handle_rfd(c, readset, writeset);
1385 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001386 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001387 return;
Damien Miller33b13562000-04-04 14:38:59 +10001388 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001389 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001390}
1391
Ben Lindstrombba81212001-06-25 05:01:22 +00001392static void
Damien Millerb38eff82000-04-01 11:09:21 +10001393channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1394{
1395 int len;
1396 /* Send buffered output data to the socket. */
1397 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1398 len = write(c->sock, buffer_ptr(&c->output),
1399 buffer_len(&c->output));
1400 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001401 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001402 else
1403 buffer_consume(&c->output, len);
1404 }
1405}
1406
Ben Lindstrombba81212001-06-25 05:01:22 +00001407static void
Damien Miller33b13562000-04-04 14:38:59 +10001408channel_handler_init_20(void)
1409{
Damien Millerde6987c2002-01-22 23:20:40 +11001410 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001411 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001412 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001413 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001414 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001415 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001416 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001417 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001418
Damien Millerde6987c2002-01-22 23:20:40 +11001419 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001420 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001421 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001422 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001423 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001424 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001425 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001426}
1427
Ben Lindstrombba81212001-06-25 05:01:22 +00001428static void
Damien Millerb38eff82000-04-01 11:09:21 +10001429channel_handler_init_13(void)
1430{
1431 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1432 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1433 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1434 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1435 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1436 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1437 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001438 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001439 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001440
Damien Millerde6987c2002-01-22 23:20:40 +11001441 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001442 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1443 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1444 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1445 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001446 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001447 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001448}
1449
Ben Lindstrombba81212001-06-25 05:01:22 +00001450static void
Damien Millerb38eff82000-04-01 11:09:21 +10001451channel_handler_init_15(void)
1452{
Damien Millerde6987c2002-01-22 23:20:40 +11001453 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001454 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001455 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1456 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1457 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001458 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001459 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001460
1461 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1462 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1463 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001464 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001465 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001466 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001467}
1468
Ben Lindstrombba81212001-06-25 05:01:22 +00001469static void
Damien Millerb38eff82000-04-01 11:09:21 +10001470channel_handler_init(void)
1471{
1472 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001473 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001474 channel_pre[i] = NULL;
1475 channel_post[i] = NULL;
1476 }
Damien Miller33b13562000-04-04 14:38:59 +10001477 if (compat20)
1478 channel_handler_init_20();
1479 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001480 channel_handler_init_13();
1481 else
1482 channel_handler_init_15();
1483}
1484
Damien Miller3ec27592001-10-12 11:35:04 +10001485/* gc dead channels */
1486static void
1487channel_garbage_collect(Channel *c)
1488{
1489 if (c == NULL)
1490 return;
1491 if (c->detach_user != NULL) {
1492 if (!chan_is_dead(c, 0))
1493 return;
1494 debug("channel %d: gc: notify user", c->self);
1495 c->detach_user(c->self, NULL);
1496 /* if we still have a callback */
1497 if (c->detach_user != NULL)
1498 return;
1499 debug("channel %d: gc: user detached", c->self);
1500 }
1501 if (!chan_is_dead(c, 1))
1502 return;
1503 debug("channel %d: garbage collecting", c->self);
1504 channel_free(c);
1505}
1506
Ben Lindstrombba81212001-06-25 05:01:22 +00001507static void
Damien Millerb38eff82000-04-01 11:09:21 +10001508channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1509{
1510 static int did_init = 0;
1511 int i;
1512 Channel *c;
1513
1514 if (!did_init) {
1515 channel_handler_init();
1516 did_init = 1;
1517 }
1518 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001519 c = channels[i];
1520 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001521 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001522 if (ftab[c->type] != NULL)
1523 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001524 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001525 }
1526}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001527
Ben Lindstrome9c99912001-06-09 00:41:05 +00001528/*
1529 * Allocate/update select bitmasks and add any bits relevant to channels in
1530 * select bitmasks.
1531 */
Damien Miller4af51302000-04-16 11:18:38 +10001532void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001533channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001534 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001535{
Damien Miller5e953212001-01-30 09:14:00 +11001536 int n;
1537 u_int sz;
1538
1539 n = MAX(*maxfdp, channel_max_fd);
1540
1541 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001542 /* perhaps check sz < nalloc/2 and shrink? */
1543 if (*readsetp == NULL || sz > *nallocp) {
1544 *readsetp = xrealloc(*readsetp, sz);
1545 *writesetp = xrealloc(*writesetp, sz);
1546 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001547 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001548 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001549 memset(*readsetp, 0, sz);
1550 memset(*writesetp, 0, sz);
1551
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001552 if (!rekeying)
1553 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001554}
1555
Ben Lindstrome9c99912001-06-09 00:41:05 +00001556/*
1557 * After select, perform any appropriate operations for channels which have
1558 * events pending.
1559 */
Damien Miller4af51302000-04-16 11:18:38 +10001560void
Damien Miller95def091999-11-25 00:26:21 +11001561channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001562{
Damien Millerb38eff82000-04-01 11:09:21 +10001563 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564}
1565
Ben Lindstrome9c99912001-06-09 00:41:05 +00001566
Damien Miller5e953212001-01-30 09:14:00 +11001567/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001568
Damien Miller4af51302000-04-16 11:18:38 +10001569void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001570channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571{
Damien Miller95def091999-11-25 00:26:21 +11001572 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001573 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001574
Damien Miller95def091999-11-25 00:26:21 +11001575 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001576 c = channels[i];
1577 if (c == NULL)
1578 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001579
Ben Lindstrome9c99912001-06-09 00:41:05 +00001580 /*
1581 * We are only interested in channels that can have buffered
1582 * incoming data.
1583 */
Damien Miller34132e52000-01-14 15:45:46 +11001584 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001585 if (c->type != SSH_CHANNEL_OPEN &&
1586 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001587 continue;
1588 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001589 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001590 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001591 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001592 if (compat20 &&
1593 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001594 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001595 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001596 continue;
1597 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001598
Damien Miller95def091999-11-25 00:26:21 +11001599 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001600 if ((c->istate == CHAN_INPUT_OPEN ||
1601 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1602 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001603 /*
1604 * Send some data for the other side over the secure
1605 * connection.
1606 */
Damien Miller33b13562000-04-04 14:38:59 +10001607 if (compat20) {
1608 if (len > c->remote_window)
1609 len = c->remote_window;
1610 if (len > c->remote_maxpacket)
1611 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001612 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001613 if (packet_is_interactive()) {
1614 if (len > 1024)
1615 len = 512;
1616 } else {
1617 /* Keep the packets at reasonable size. */
1618 if (len > packet_get_maxsize()/2)
1619 len = packet_get_maxsize()/2;
1620 }
Damien Miller95def091999-11-25 00:26:21 +11001621 }
Damien Millerb38eff82000-04-01 11:09:21 +10001622 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001623 packet_start(compat20 ?
1624 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001625 packet_put_int(c->remote_id);
1626 packet_put_string(buffer_ptr(&c->input), len);
1627 packet_send();
1628 buffer_consume(&c->input, len);
1629 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001630 }
1631 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001632 if (compat13)
1633 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001634 /*
1635 * input-buffer is empty and read-socket shutdown:
1636 * tell peer, that we will not send more data: send IEOF
1637 */
Damien Millerb38eff82000-04-01 11:09:21 +10001638 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001639 }
Damien Miller33b13562000-04-04 14:38:59 +10001640 /* Send extended data, i.e. stderr */
1641 if (compat20 &&
1642 c->remote_window > 0 &&
1643 (len = buffer_len(&c->extended)) > 0 &&
1644 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001645 debug2("channel %d: rwin %d elen %d euse %d",
1646 c->self, c->remote_window, buffer_len(&c->extended),
1647 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001648 if (len > c->remote_window)
1649 len = c->remote_window;
1650 if (len > c->remote_maxpacket)
1651 len = c->remote_maxpacket;
1652 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1653 packet_put_int(c->remote_id);
1654 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1655 packet_put_string(buffer_ptr(&c->extended), len);
1656 packet_send();
1657 buffer_consume(&c->extended, len);
1658 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001659 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001660 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001661 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001662}
1663
Ben Lindstrome9c99912001-06-09 00:41:05 +00001664
1665/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001666
Damien Miller4af51302000-04-16 11:18:38 +10001667void
Damien Miller630d6f42002-01-22 23:17:30 +11001668channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001669{
Damien Miller34132e52000-01-14 15:45:46 +11001670 int id;
Damien Miller95def091999-11-25 00:26:21 +11001671 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001672 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001673 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001674
Damien Miller95def091999-11-25 00:26:21 +11001675 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001676 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001677 c = channel_lookup(id);
1678 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001679 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001680
Damien Miller95def091999-11-25 00:26:21 +11001681 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001682 if (c->type != SSH_CHANNEL_OPEN &&
1683 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001684 return;
1685
1686 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001687 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001688 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689
Damien Miller95def091999-11-25 00:26:21 +11001690 /* Get the data. */
1691 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001692
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001693 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001694 if (data_len > c->local_maxpacket) {
1695 log("channel %d: rcvd big packet %d, maxpack %d",
1696 c->self, data_len, c->local_maxpacket);
1697 }
1698 if (data_len > c->local_window) {
1699 log("channel %d: rcvd too much data %d, win %d",
1700 c->self, data_len, c->local_window);
1701 xfree(data);
1702 return;
1703 }
1704 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001705 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001706 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001707 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001708 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001709}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001710
Damien Miller4af51302000-04-16 11:18:38 +10001711void
Damien Miller630d6f42002-01-22 23:17:30 +11001712channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001713{
1714 int id;
1715 int tcode;
1716 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001717 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001718 Channel *c;
1719
1720 /* Get the channel number and verify it. */
1721 id = packet_get_int();
1722 c = channel_lookup(id);
1723
1724 if (c == NULL)
1725 packet_disconnect("Received extended_data for bad channel %d.", id);
1726 if (c->type != SSH_CHANNEL_OPEN) {
1727 log("channel %d: ext data for non open", id);
1728 return;
1729 }
1730 tcode = packet_get_int();
1731 if (c->efd == -1 ||
1732 c->extended_usage != CHAN_EXTENDED_WRITE ||
1733 tcode != SSH2_EXTENDED_DATA_STDERR) {
1734 log("channel %d: bad ext data", c->self);
1735 return;
1736 }
1737 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001738 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001739 if (data_len > c->local_window) {
1740 log("channel %d: rcvd too much extended_data %d, win %d",
1741 c->self, data_len, c->local_window);
1742 xfree(data);
1743 return;
1744 }
Damien Millerd3444942000-09-30 14:20:03 +11001745 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001746 c->local_window -= data_len;
1747 buffer_append(&c->extended, data, data_len);
1748 xfree(data);
1749}
1750
Damien Miller4af51302000-04-16 11:18:38 +10001751void
Damien Miller630d6f42002-01-22 23:17:30 +11001752channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001753{
1754 int id;
1755 Channel *c;
1756
Damien Millerb38eff82000-04-01 11:09:21 +10001757 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001758 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001759 c = channel_lookup(id);
1760 if (c == NULL)
1761 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1762 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001763
1764 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001765 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001766 debug("channel %d: FORCE input drain", c->self);
1767 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11001768 if (buffer_len(&c->input) == 0)
1769 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001770 }
1771
Damien Millerb38eff82000-04-01 11:09:21 +10001772}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001773
Damien Miller4af51302000-04-16 11:18:38 +10001774void
Damien Miller630d6f42002-01-22 23:17:30 +11001775channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001776{
Damien Millerb38eff82000-04-01 11:09:21 +10001777 int id;
1778 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001779
Damien Millerb38eff82000-04-01 11:09:21 +10001780 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001781 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001782 c = channel_lookup(id);
1783 if (c == NULL)
1784 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001785
1786 /*
1787 * Send a confirmation that we have closed the channel and no more
1788 * data is coming for it.
1789 */
Damien Miller95def091999-11-25 00:26:21 +11001790 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001791 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001792 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001793
Damien Miller5428f641999-11-25 11:54:57 +11001794 /*
1795 * If the channel is in closed state, we have sent a close request,
1796 * and the other side will eventually respond with a confirmation.
1797 * Thus, we cannot free the channel here, because then there would be
1798 * no-one to receive the confirmation. The channel gets freed when
1799 * the confirmation arrives.
1800 */
Damien Millerb38eff82000-04-01 11:09:21 +10001801 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001802 /*
1803 * Not a closed channel - mark it as draining, which will
1804 * cause it to be freed later.
1805 */
Damien Miller76765c02002-01-22 23:21:15 +11001806 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001807 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001808 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001809}
1810
Damien Millerb38eff82000-04-01 11:09:21 +10001811/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001812void
Damien Miller630d6f42002-01-22 23:17:30 +11001813channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001814{
Damien Millerb38eff82000-04-01 11:09:21 +10001815 int id = packet_get_int();
1816 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001817
Damien Miller48b03fc2002-01-22 23:11:40 +11001818 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001819 if (c == NULL)
1820 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1821 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001822}
1823
Damien Miller4af51302000-04-16 11:18:38 +10001824void
Damien Miller630d6f42002-01-22 23:17:30 +11001825channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001826{
1827 int id = packet_get_int();
1828 Channel *c = channel_lookup(id);
1829
Damien Miller48b03fc2002-01-22 23:11:40 +11001830 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001831 if (c == NULL)
1832 packet_disconnect("Received close confirmation for "
1833 "out-of-range channel %d.", id);
1834 if (c->type != SSH_CHANNEL_CLOSED)
1835 packet_disconnect("Received close confirmation for "
1836 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001837 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001838}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001839
Damien Miller4af51302000-04-16 11:18:38 +10001840void
Damien Miller630d6f42002-01-22 23:17:30 +11001841channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001842{
Damien Millerb38eff82000-04-01 11:09:21 +10001843 int id, remote_id;
1844 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845
Damien Millerb38eff82000-04-01 11:09:21 +10001846 id = packet_get_int();
1847 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848
Damien Millerb38eff82000-04-01 11:09:21 +10001849 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1850 packet_disconnect("Received open confirmation for "
1851 "non-opening channel %d.", id);
1852 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001853 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001854 c->remote_id = remote_id;
1855 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001856
1857 if (compat20) {
1858 c->remote_window = packet_get_int();
1859 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11001860 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11001861 debug2("callback start");
Damien Miller67f0bc02002-02-05 12:23:08 +11001862 c->confirm(c->self, NULL);
Damien Millerd3444942000-09-30 14:20:03 +11001863 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001864 }
1865 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1866 c->remote_window, c->remote_maxpacket);
1867 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001868 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001869}
1870
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001872reason2txt(int reason)
1873{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001874 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001875 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1876 return "administratively prohibited";
1877 case SSH2_OPEN_CONNECT_FAILED:
1878 return "connect failed";
1879 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1880 return "unknown channel type";
1881 case SSH2_OPEN_RESOURCE_SHORTAGE:
1882 return "resource shortage";
1883 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001884 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001885}
1886
Damien Miller4af51302000-04-16 11:18:38 +10001887void
Damien Miller630d6f42002-01-22 23:17:30 +11001888channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001889{
Kevin Steves12057502001-02-05 14:54:34 +00001890 int id, reason;
1891 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001892 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001893
Damien Millerb38eff82000-04-01 11:09:21 +10001894 id = packet_get_int();
1895 c = channel_lookup(id);
1896
1897 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1898 packet_disconnect("Received open failure for "
1899 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001900 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001901 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001902 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001903 msg = packet_get_string(NULL);
1904 lang = packet_get_string(NULL);
1905 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001906 log("channel %d: open failed: %s%s%s", id,
1907 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001908 if (msg != NULL)
1909 xfree(msg);
1910 if (lang != NULL)
1911 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001912 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001913 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001914 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001915 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001916}
1917
Damien Miller33b13562000-04-04 14:38:59 +10001918void
Damien Miller630d6f42002-01-22 23:17:30 +11001919channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001920{
1921 Channel *c;
1922 int id, adjust;
1923
1924 if (!compat20)
1925 return;
1926
1927 /* Get the channel number and verify it. */
1928 id = packet_get_int();
1929 c = channel_lookup(id);
1930
1931 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1932 log("Received window adjust for "
1933 "non-open channel %d.", id);
1934 return;
1935 }
1936 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001937 packet_check_eom();
Damien Millerd3444942000-09-30 14:20:03 +11001938 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001939 c->remote_window += adjust;
1940}
1941
Damien Miller4af51302000-04-16 11:18:38 +10001942void
Damien Miller630d6f42002-01-22 23:17:30 +11001943channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001944{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001945 Channel *c = NULL;
1946 u_short host_port;
1947 char *host, *originator_string;
1948 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001949
Ben Lindstrome9c99912001-06-09 00:41:05 +00001950 remote_id = packet_get_int();
1951 host = packet_get_string(NULL);
1952 host_port = packet_get_int();
1953
1954 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1955 originator_string = packet_get_string(NULL);
1956 } else {
1957 originator_string = xstrdup("unknown (remote did not supply name)");
1958 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001959 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00001960 sock = channel_connect_to(host, host_port);
1961 if (sock != -1) {
1962 c = channel_new("connected socket",
1963 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
1964 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11001965 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001966 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001967 if (c == NULL) {
1968 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1969 packet_put_int(remote_id);
1970 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001971 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001972 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001973}
1974
1975
Ben Lindstrome9c99912001-06-09 00:41:05 +00001976/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001977
Ben Lindstrom908afed2001-10-03 17:34:59 +00001978void
1979channel_set_af(int af)
1980{
1981 IPv4or6 = af;
1982}
1983
Damien Millerb16461c2002-01-22 23:29:22 +11001984static int
1985channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
1986 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001987{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001988 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11001989 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11001990 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001991 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11001992 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11001993 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001994
Kevin Steves12057502001-02-05 14:54:34 +00001995 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11001996 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
1997 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00001998
Damien Millerb16461c2002-01-22 23:29:22 +11001999 if (host == NULL) {
2000 error("No forward host name.");
2001 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002002 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002003 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002004 error("Forward host name too long.");
2005 return success;
2006 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002007
Damien Miller5428f641999-11-25 11:54:57 +11002008 /*
Damien Miller34132e52000-01-14 15:45:46 +11002009 * getaddrinfo returns a loopback address if the hostname is
2010 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002011 */
Damien Miller34132e52000-01-14 15:45:46 +11002012 memset(&hints, 0, sizeof(hints));
2013 hints.ai_family = IPv4or6;
2014 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2015 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002016 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002017 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2018 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002019
Damien Miller34132e52000-01-14 15:45:46 +11002020 for (ai = aitop; ai; ai = ai->ai_next) {
2021 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2022 continue;
2023 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2024 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002025 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002026 continue;
2027 }
2028 /* Create a port to listen for the host. */
2029 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2030 if (sock < 0) {
2031 /* this is no error since kernel may not support ipv6 */
2032 verbose("socket: %.100s", strerror(errno));
2033 continue;
2034 }
2035 /*
2036 * Set socket options. We would like the socket to disappear
2037 * as soon as it has been closed for whatever reason.
2038 */
2039 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2040 linger.l_onoff = 1;
2041 linger.l_linger = 5;
2042 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2043 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002044
Damien Miller34132e52000-01-14 15:45:46 +11002045 /* Bind the socket to the address. */
2046 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2047 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002048 if (!ai->ai_next)
2049 error("bind: %.100s", strerror(errno));
2050 else
2051 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002052
Damien Miller34132e52000-01-14 15:45:46 +11002053 close(sock);
2054 continue;
2055 }
2056 /* Start listening for connections on the socket. */
2057 if (listen(sock, 5) < 0) {
2058 error("listen: %.100s", strerror(errno));
2059 close(sock);
2060 continue;
2061 }
2062 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002063 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002064 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002065 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002066 strlcpy(c->path, host, sizeof(c->path));
2067 c->host_port = port_to_connect;
2068 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002069 success = 1;
2070 }
2071 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002072 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002073 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002074 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002075 return success;
Damien Miller95def091999-11-25 00:26:21 +11002076}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002077
Damien Millerb16461c2002-01-22 23:29:22 +11002078/* protocol local port fwd, used by ssh (and sshd in v1) */
2079int
2080channel_setup_local_fwd_listener(u_short listen_port,
2081 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2082{
2083 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2084 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2085}
2086
2087/* protocol v2 remote port fwd, used by sshd */
2088int
2089channel_setup_remote_fwd_listener(const char *listen_address,
2090 u_short listen_port, int gateway_ports)
2091{
2092 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2093 listen_address, listen_port, NULL, 0, gateway_ports);
2094}
2095
Damien Miller5428f641999-11-25 11:54:57 +11002096/*
2097 * Initiate forwarding of connections to port "port" on remote host through
2098 * the secure channel to host:port from local side.
2099 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002100
Damien Miller4af51302000-04-16 11:18:38 +10002101void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002102channel_request_remote_forwarding(u_short listen_port,
2103 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002104{
Damien Millerdff50992002-01-22 23:16:32 +11002105 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002106
Damien Miller95def091999-11-25 00:26:21 +11002107 /* Record locally that connection to this host/port is permitted. */
2108 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2109 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002110
Damien Miller95def091999-11-25 00:26:21 +11002111 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002112 if (compat20) {
2113 const char *address_to_bind = "0.0.0.0";
2114 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2115 packet_put_cstring("tcpip-forward");
2116 packet_put_char(0); /* boolean: want reply */
2117 packet_put_cstring(address_to_bind);
2118 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002119 packet_send();
2120 packet_write_wait();
2121 /* Assume that server accepts the request */
2122 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002123 } else {
2124 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002125 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002126 packet_put_cstring(host_to_connect);
2127 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002128 packet_send();
2129 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002130
2131 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002132 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002133 switch (type) {
2134 case SSH_SMSG_SUCCESS:
2135 success = 1;
2136 break;
2137 case SSH_SMSG_FAILURE:
2138 log("Warning: Server denied remote port forwarding.");
2139 break;
2140 default:
2141 /* Unknown packet */
2142 packet_disconnect("Protocol error for port forward request:"
2143 "received packet type %d.", type);
2144 }
2145 }
2146 if (success) {
2147 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2148 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2149 permitted_opens[num_permitted_opens].listen_port = listen_port;
2150 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002151 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002152}
2153
Damien Miller5428f641999-11-25 11:54:57 +11002154/*
2155 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2156 * listening for the port, and sends back a success reply (or disconnect
2157 * message if there was an error). This never returns if there was an error.
2158 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002159
Damien Miller4af51302000-04-16 11:18:38 +10002160void
Damien Millere247cc42000-05-07 12:03:14 +10002161channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002162{
Damien Milleraae6c611999-12-06 11:47:28 +11002163 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002164 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002165
Damien Miller95def091999-11-25 00:26:21 +11002166 /* Get arguments from the packet. */
2167 port = packet_get_int();
2168 hostname = packet_get_string(NULL);
2169 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170
Damien Millerbac2d8a2000-09-05 16:13:06 +11002171#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002172 /*
2173 * Check that an unprivileged user is not trying to forward a
2174 * privileged port.
2175 */
Damien Miller95def091999-11-25 00:26:21 +11002176 if (port < IPPORT_RESERVED && !is_root)
2177 packet_disconnect("Requested forwarding of port %d but user is not root.",
2178 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002179#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002180 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002181 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002182
2183 /* Free the argument string. */
2184 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002185}
2186
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002187/*
2188 * Permits opening to any host/port if permitted_opens[] is empty. This is
2189 * usually called by the server, because the user could connect to any port
2190 * anyway, and the server has no way to know but to trust the client anyway.
2191 */
2192void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002193channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002194{
2195 if (num_permitted_opens == 0)
2196 all_opens_permitted = 1;
2197}
2198
Ben Lindstroma3700052001-04-05 23:26:32 +00002199void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002200channel_add_permitted_opens(char *host, int port)
2201{
2202 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2203 fatal("channel_request_remote_forwarding: too many forwards");
2204 debug("allow port forwarding to host %s port %d", host, port);
2205
2206 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2207 permitted_opens[num_permitted_opens].port_to_connect = port;
2208 num_permitted_opens++;
2209
2210 all_opens_permitted = 0;
2211}
2212
Ben Lindstroma3700052001-04-05 23:26:32 +00002213void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002214channel_clear_permitted_opens(void)
2215{
2216 int i;
2217
2218 for (i = 0; i < num_permitted_opens; i++)
2219 xfree(permitted_opens[i].host_to_connect);
2220 num_permitted_opens = 0;
2221
2222}
2223
2224
2225/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002226static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002227connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002228{
Damien Miller34132e52000-01-14 15:45:46 +11002229 struct addrinfo hints, *ai, *aitop;
2230 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2231 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002232 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002233
Damien Miller34132e52000-01-14 15:45:46 +11002234 memset(&hints, 0, sizeof(hints));
2235 hints.ai_family = IPv4or6;
2236 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002237 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002238 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002239 error("connect_to %.100s: unknown host (%s)", host,
2240 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002241 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242 }
Damien Miller34132e52000-01-14 15:45:46 +11002243 for (ai = aitop; ai; ai = ai->ai_next) {
2244 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2245 continue;
2246 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2247 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002248 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002249 continue;
2250 }
Damien Miller34132e52000-01-14 15:45:46 +11002251 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2252 if (sock < 0) {
2253 error("socket: %.100s", strerror(errno));
2254 continue;
2255 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002256 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002257 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002258 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2259 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002260 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002261 strerror(errno));
2262 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002263 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002264 }
2265 break; /* success */
2266
2267 }
2268 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002269 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002270 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002271 return -1;
2272 }
2273 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002274 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002275 return sock;
2276}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002277
Damien Miller0bc1bd82000-11-13 22:57:25 +11002278int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002279channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002280{
2281 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002282
Damien Miller0bc1bd82000-11-13 22:57:25 +11002283 for (i = 0; i < num_permitted_opens; i++)
2284 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002285 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002286 permitted_opens[i].host_to_connect,
2287 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002288 error("WARNING: Server requests forwarding for unknown listen_port %d",
2289 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002290 return -1;
2291}
Damien Millerb38eff82000-04-01 11:09:21 +10002292
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002293/* Check if connecting to that port is permitted and connect. */
2294int
2295channel_connect_to(const char *host, u_short port)
2296{
2297 int i, permit;
2298
2299 permit = all_opens_permitted;
2300 if (!permit) {
2301 for (i = 0; i < num_permitted_opens; i++)
2302 if (permitted_opens[i].port_to_connect == port &&
2303 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2304 permit = 1;
2305
2306 }
2307 if (!permit) {
2308 log("Received request to connect to host %.100s port %d, "
2309 "but the request was denied.", host, port);
2310 return -1;
2311 }
2312 return connect_to(host, port);
2313}
2314
Ben Lindstrome9c99912001-06-09 00:41:05 +00002315/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002316
Damien Miller5428f641999-11-25 11:54:57 +11002317/*
2318 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002319 * Returns a suitable display number for the DISPLAY variable, or -1 if
2320 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002321 */
Kevin Steves366298c2001-12-19 17:58:01 +00002322int
Damien Miller95c249f2002-02-05 12:11:34 +11002323x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Millere7378562001-12-21 14:58:35 +11002324 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002325{
Damien Millere7378562001-12-21 14:58:35 +11002326 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002327 int display_number, sock;
2328 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002329 struct addrinfo hints, *ai, *aitop;
2330 char strport[NI_MAXSERV];
2331 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002332
Damien Millera34a28b1999-12-14 10:47:15 +11002333 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002334 display_number < MAX_DISPLAYS;
2335 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002336 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002337 memset(&hints, 0, sizeof(hints));
2338 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002339 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002340 hints.ai_socktype = SOCK_STREAM;
2341 snprintf(strport, sizeof strport, "%d", port);
2342 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2343 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002344 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002345 }
Damien Miller34132e52000-01-14 15:45:46 +11002346 for (ai = aitop; ai; ai = ai->ai_next) {
2347 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2348 continue;
2349 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2350 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002351 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002352 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002353 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002354 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002355 debug("x11_create_display_inet: Socket family %d not supported",
2356 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002357 continue;
2358 }
Damien Miller34132e52000-01-14 15:45:46 +11002359 }
2360 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2361 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002362 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002363
2364 if (ai->ai_next)
2365 continue;
2366
Damien Miller34132e52000-01-14 15:45:46 +11002367 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002368 close(socks[n]);
2369 }
2370 num_socks = 0;
2371 break;
2372 }
2373 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002374#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002375 if (num_socks == NUM_SOCKS)
2376 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002377#else
2378 break;
2379#endif
Damien Miller95def091999-11-25 00:26:21 +11002380 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002381 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002382 if (num_socks > 0)
2383 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002384 }
Damien Miller95def091999-11-25 00:26:21 +11002385 if (display_number >= MAX_DISPLAYS) {
2386 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002387 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002388 }
Damien Miller95def091999-11-25 00:26:21 +11002389 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002390 for (n = 0; n < num_socks; n++) {
2391 sock = socks[n];
2392 if (listen(sock, 5) < 0) {
2393 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002394 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002395 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002396 }
Damien Miller95def091999-11-25 00:26:21 +11002397 }
Damien Miller34132e52000-01-14 15:45:46 +11002398
Damien Miller34132e52000-01-14 15:45:46 +11002399 /* Allocate a channel for each socket. */
2400 for (n = 0; n < num_socks; n++) {
2401 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002402 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002403 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2404 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002405 0, xstrdup("X11 inet listener"), 1);
Damien Miller699d0032002-02-08 22:07:16 +11002406 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002407 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002408
Kevin Steves366298c2001-12-19 17:58:01 +00002409 /* Return the display number for the DISPLAY environment variable. */
2410 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002411}
2412
Ben Lindstrombba81212001-06-25 05:01:22 +00002413static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002414connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002415{
Damien Miller95def091999-11-25 00:26:21 +11002416 int sock;
2417 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002418
Damien Miller3afe3752001-12-21 12:39:51 +11002419 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2420 if (sock < 0)
2421 error("socket: %.100s", strerror(errno));
2422 memset(&addr, 0, sizeof(addr));
2423 addr.sun_family = AF_UNIX;
2424 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2425 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2426 return sock;
2427 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002428 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2429 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002430}
2431
Damien Millerbd483e72000-04-30 10:00:53 +10002432int
2433x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002434{
Damien Miller398e1cf2002-02-05 11:52:13 +11002435 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002436 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002437 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002438 struct addrinfo hints, *ai, *aitop;
2439 char strport[NI_MAXSERV];
2440 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002441
Damien Miller95def091999-11-25 00:26:21 +11002442 /* Try to open a socket for the local X server. */
2443 display = getenv("DISPLAY");
2444 if (!display) {
2445 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002446 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002447 }
Damien Miller5428f641999-11-25 11:54:57 +11002448 /*
2449 * Now we decode the value of the DISPLAY variable and make a
2450 * connection to the real X server.
2451 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002452
Damien Miller5428f641999-11-25 11:54:57 +11002453 /*
2454 * Check if it is a unix domain socket. Unix domain displays are in
2455 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2456 */
Damien Miller95def091999-11-25 00:26:21 +11002457 if (strncmp(display, "unix:", 5) == 0 ||
2458 display[0] == ':') {
2459 /* Connect to the unix domain socket. */
2460 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2461 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002462 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002463 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002464 }
2465 /* Create a socket. */
2466 sock = connect_local_xsocket(display_number);
2467 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002468 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002469
2470 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002471 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002472 }
Damien Miller5428f641999-11-25 11:54:57 +11002473 /*
2474 * Connect to an inet socket. The DISPLAY value is supposedly
2475 * hostname:d[.s], where hostname may also be numeric IP address.
2476 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002477 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002478 cp = strchr(buf, ':');
2479 if (!cp) {
2480 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002481 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002482 }
Damien Miller95def091999-11-25 00:26:21 +11002483 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002484 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002485 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2486 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002487 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002488 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002489 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002490
Damien Miller34132e52000-01-14 15:45:46 +11002491 /* Look up the host address */
2492 memset(&hints, 0, sizeof(hints));
2493 hints.ai_family = IPv4or6;
2494 hints.ai_socktype = SOCK_STREAM;
2495 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2496 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2497 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002498 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002499 }
Damien Miller34132e52000-01-14 15:45:46 +11002500 for (ai = aitop; ai; ai = ai->ai_next) {
2501 /* Create a socket. */
2502 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2503 if (sock < 0) {
2504 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002505 continue;
2506 }
2507 /* Connect it to the display. */
2508 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2509 debug("connect %.100s port %d: %.100s", buf,
2510 6000 + display_number, strerror(errno));
2511 close(sock);
2512 continue;
2513 }
2514 /* Success */
2515 break;
Damien Miller34132e52000-01-14 15:45:46 +11002516 }
Damien Miller34132e52000-01-14 15:45:46 +11002517 freeaddrinfo(aitop);
2518 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002519 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002520 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002521 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002522 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002523 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002524 return sock;
2525}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002526
Damien Millerbd483e72000-04-30 10:00:53 +10002527/*
2528 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2529 * the remote channel number. We should do whatever we want, and respond
2530 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2531 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002532
Damien Millerbd483e72000-04-30 10:00:53 +10002533void
Damien Miller630d6f42002-01-22 23:17:30 +11002534x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002535{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002536 Channel *c = NULL;
2537 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002538 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002539
2540 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002541
2542 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002543
2544 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002545 remote_host = packet_get_string(NULL);
2546 } else {
2547 remote_host = xstrdup("unknown (remote did not supply name)");
2548 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002549 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002550
2551 /* Obtain a connection to the real X display. */
2552 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002553 if (sock != -1) {
2554 /* Allocate a channel for this connection. */
2555 c = channel_new("connected x11 socket",
2556 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2557 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002558 c->remote_id = remote_id;
2559 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002560 }
2561 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002562 /* Send refusal to the remote host. */
2563 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002564 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002565 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002566 /* Send a confirmation to the remote host. */
2567 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002568 packet_put_int(remote_id);
2569 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002570 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002571 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002572}
2573
Damien Miller69b69aa2000-10-28 14:19:58 +11002574/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2575void
Damien Miller630d6f42002-01-22 23:17:30 +11002576deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002577{
2578 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002579 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002580 case SSH_SMSG_AGENT_OPEN:
2581 error("Warning: ssh server tried agent forwarding.");
2582 break;
2583 case SSH_SMSG_X11_OPEN:
2584 error("Warning: ssh server tried X11 forwarding.");
2585 break;
2586 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002587 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002588 break;
2589 }
2590 error("Warning: this is probably a break in attempt by a malicious server.");
2591 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2592 packet_put_int(rchan);
2593 packet_send();
2594}
2595
Damien Miller5428f641999-11-25 11:54:57 +11002596/*
2597 * Requests forwarding of X11 connections, generates fake authentication
2598 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002599 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002600 */
Damien Miller4af51302000-04-16 11:18:38 +10002601void
Damien Millerbd483e72000-04-30 10:00:53 +10002602x11_request_forwarding_with_spoofing(int client_session_id,
2603 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002604{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002605 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002606 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002607 char *new_data;
2608 int screen_number;
2609 const char *cp;
2610 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002611
Damien Miller95def091999-11-25 00:26:21 +11002612 cp = getenv("DISPLAY");
2613 if (cp)
2614 cp = strchr(cp, ':');
2615 if (cp)
2616 cp = strchr(cp, '.');
2617 if (cp)
2618 screen_number = atoi(cp + 1);
2619 else
2620 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002621
Damien Miller95def091999-11-25 00:26:21 +11002622 /* Save protocol name. */
2623 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002624
Damien Miller5428f641999-11-25 11:54:57 +11002625 /*
2626 * Extract real authentication data and generate fake data of the
2627 * same length.
2628 */
Damien Miller95def091999-11-25 00:26:21 +11002629 x11_saved_data = xmalloc(data_len);
2630 x11_fake_data = xmalloc(data_len);
2631 for (i = 0; i < data_len; i++) {
2632 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2633 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2634 if (i % 4 == 0)
2635 rand = arc4random();
2636 x11_saved_data[i] = value;
2637 x11_fake_data[i] = rand & 0xff;
2638 rand >>= 8;
2639 }
2640 x11_saved_data_len = data_len;
2641 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002642
Damien Miller95def091999-11-25 00:26:21 +11002643 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002644 len = 2 * data_len + 1;
2645 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002646 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002647 snprintf(new_data + 2 * i, len - 2 * i,
2648 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002649
Damien Miller95def091999-11-25 00:26:21 +11002650 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002651 if (compat20) {
2652 channel_request_start(client_session_id, "x11-req", 0);
2653 packet_put_char(0); /* XXX bool single connection */
2654 } else {
2655 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2656 }
2657 packet_put_cstring(proto);
2658 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002659 packet_put_int(screen_number);
2660 packet_send();
2661 packet_write_wait();
2662 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002663}
2664
Ben Lindstrome9c99912001-06-09 00:41:05 +00002665
2666/* -- agent forwarding */
2667
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002668/* Sends a message to the server to request authentication fd forwarding. */
2669
Damien Miller4af51302000-04-16 11:18:38 +10002670void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002671auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002672{
Damien Miller95def091999-11-25 00:26:21 +11002673 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2674 packet_send();
2675 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002676}
2677
Damien Miller5428f641999-11-25 11:54:57 +11002678/*
2679 * Returns the name of the forwarded authentication socket. Returns NULL if
2680 * there is no forwarded authentication socket. The returned value points to
2681 * a static buffer.
2682 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002683
Damien Miller95def091999-11-25 00:26:21 +11002684char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002685auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002686{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002687 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002688}
2689
2690/* removes the agent forwarding socket */
2691
Damien Miller4af51302000-04-16 11:18:38 +10002692void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002693auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002694{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002695 struct passwd *pw = _pw;
2696
Ben Lindstrom838394c2001-06-09 01:11:59 +00002697 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002698 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002699 unlink(auth_sock_name);
2700 rmdir(auth_sock_dir);
2701 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002702 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002703 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002704}
2705
Damien Miller5428f641999-11-25 11:54:57 +11002706/*
Damien Millerd3a18572000-06-07 19:55:44 +10002707 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002708 * This starts forwarding authentication requests.
2709 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002710
Damien Millerd3a18572000-06-07 19:55:44 +10002711int
Damien Miller95def091999-11-25 00:26:21 +11002712auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002713{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002714 Channel *nc;
2715 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002716 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002717
Ben Lindstrome9c99912001-06-09 00:41:05 +00002718 if (auth_get_socket_name() != NULL) {
2719 error("authentication forwarding requested twice.");
2720 return 0;
2721 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002722
Damien Miller95def091999-11-25 00:26:21 +11002723 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002724 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002725
Damien Miller95def091999-11-25 00:26:21 +11002726 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002727 auth_sock_name = xmalloc(MAXPATHLEN);
2728 auth_sock_dir = xmalloc(MAXPATHLEN);
2729 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002730
Damien Miller95def091999-11-25 00:26:21 +11002731 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002732 if (mkdtemp(auth_sock_dir) == NULL) {
2733 packet_send_debug("Agent forwarding disabled: "
2734 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002735 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002736 xfree(auth_sock_name);
2737 xfree(auth_sock_dir);
2738 auth_sock_name = NULL;
2739 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002740 return 0;
2741 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002742 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2743 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002744
Ben Lindstrom838394c2001-06-09 01:11:59 +00002745 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002746 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002747
Damien Miller95def091999-11-25 00:26:21 +11002748 /* Create the socket. */
2749 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2750 if (sock < 0)
2751 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752
Damien Miller95def091999-11-25 00:26:21 +11002753 /* Bind it to the name. */
2754 memset(&sunaddr, 0, sizeof(sunaddr));
2755 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002756 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002757
Damien Miller95def091999-11-25 00:26:21 +11002758 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2759 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002760
Damien Miller95def091999-11-25 00:26:21 +11002761 /* Restore the privileged uid. */
2762 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002763
Damien Miller95def091999-11-25 00:26:21 +11002764 /* Start listening on the socket. */
2765 if (listen(sock, 5) < 0)
2766 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002767
Damien Miller95def091999-11-25 00:26:21 +11002768 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002769 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002770 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2771 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2772 0, xstrdup("auth socket"), 1);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002773 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002774 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002775}
2776
2777/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2778
Damien Miller4af51302000-04-16 11:18:38 +10002779void
Damien Miller630d6f42002-01-22 23:17:30 +11002780auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002781{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002782 Channel *c = NULL;
2783 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002784 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002785
Damien Miller95def091999-11-25 00:26:21 +11002786 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002787 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002788 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002789
Damien Miller5428f641999-11-25 11:54:57 +11002790 /*
2791 * Get a connection to the local authentication agent (this may again
2792 * get forwarded).
2793 */
Damien Miller95def091999-11-25 00:26:21 +11002794 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002795
Damien Miller5428f641999-11-25 11:54:57 +11002796 /*
2797 * If we could not connect the agent, send an error message back to
2798 * the server. This should never happen unless the agent dies,
2799 * because authentication forwarding is only enabled if we have an
2800 * agent.
2801 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002802 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002803 name = xstrdup("authentication agent connection");
2804 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2805 -1, 0, 0, 0, name, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002806 c->remote_id = remote_id;
2807 c->force_drain = 1;
Damien Miller95def091999-11-25 00:26:21 +11002808 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002809 if (c == NULL) {
2810 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2811 packet_put_int(remote_id);
2812 } else {
2813 /* Send a confirmation to the remote host. */
2814 debug("Forwarding authentication connection.");
2815 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2816 packet_put_int(remote_id);
2817 packet_put_int(c->self);
2818 }
Damien Miller95def091999-11-25 00:26:21 +11002819 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002820}