blob: bf11716b82707b96d39722108effff0388481c3e [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.
Ben Lindstrom44697232001-07-04 03:32:30 +000016 * Copyright (c) 1999, 2000, 2001 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 Lindstrom944c4f02001-09-18 05:51:13 +000042RCSID("$OpenBSD: channels.c,v 1.133 2001/09/17 20:52:47 markus 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"
57
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrome9c99912001-06-09 00:41:05 +000059/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller5428f641999-11-25 11:54:57 +110061/*
62 * Pointer to an array containing all allocated channels. The array is
63 * dynamically extended as needed.
64 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000065static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller5428f641999-11-25 11:54:57 +110067/*
68 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000069 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110070 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071static int channels_alloc = 0;
72
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000075 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110076 */
Damien Miller5e953212001-01-30 09:14:00 +110077static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Ben Lindstrome9c99912001-06-09 00:41:05 +000080/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Data structure for storing which hosts are permitted for forward requests.
84 * The local sides of any remote forwards are stored in this array to prevent
85 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
86 * network (which might be behind a firewall).
87 */
Damien Miller95def091999-11-25 00:26:21 +110088typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100089 char *host_to_connect; /* Connect to 'host'. */
90 u_short port_to_connect; /* Connect to 'port'. */
91 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092} ForwardPermission;
93
94/* List of all permitted host/port pairs to connect. */
95static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000096
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097/* Number of permitted host/port pairs in the array. */
98static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * If this is true, all opens are permitted. This is the case on the server
101 * on which we have to trust the client anyway, and the user could do
102 * anything after logging in anyway.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104static int all_opens_permitted = 0;
105
Ben Lindstrome9c99912001-06-09 00:41:05 +0000106
107/* -- X11 forwarding */
108
109/* Maximum number of fake X11 displays to try. */
110#define MAX_DISPLAYS 1000
111
112/* Saved X11 authentication protocol name. */
113static char *x11_saved_proto = NULL;
114
115/* Saved X11 authentication data. This is the real data. */
116static char *x11_saved_data = NULL;
117static u_int x11_saved_data_len = 0;
118
119/*
120 * Fake X11 authentication data. This is what the server will be sending us;
121 * we should replace any occurrences of this by the real data.
122 */
123static char *x11_fake_data = NULL;
124static u_int x11_fake_data_len;
125
126
127/* -- agent forwarding */
128
129#define NUM_SOCKS 10
130
131/* Name and directory of socket for authentication agent forwarding. */
132static char *auth_sock_name = NULL;
133static char *auth_sock_dir = NULL;
134
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000135/* AF_UNSPEC or AF_INET or AF_INET6 */
136extern int IPv4or6;
137
Ben Lindstrome9c99912001-06-09 00:41:05 +0000138/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000139static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000140
Ben Lindstrome9c99912001-06-09 00:41:05 +0000141/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000142
143Channel *
144channel_lookup(int id)
145{
146 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000147
Damien Millerc0fd17f2000-06-26 10:22:53 +1000148 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000149 log("channel_lookup: %d: bad id", id);
150 return NULL;
151 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000152 c = channels[id];
153 if (c == NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +1000154 log("channel_lookup: %d: bad id: channel free", id);
155 return NULL;
156 }
157 return c;
158}
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
Damien Millere247cc42000-05-07 12:03:14 +1000161 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000162 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
Ben Lindstrombba81212001-06-25 05:01:22 +0000165static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100166channel_register_fds(Channel *c, int rfd, int wfd, int efd,
167 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168{
Damien Miller95def091999-11-25 00:26:21 +1100169 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100170 channel_max_fd = MAX(channel_max_fd, rfd);
171 channel_max_fd = MAX(channel_max_fd, wfd);
172 channel_max_fd = MAX(channel_max_fd, efd);
173
Damien Miller5428f641999-11-25 11:54:57 +1100174 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000175
Damien Miller6f83b8e2000-05-02 09:23:45 +1000176 c->rfd = rfd;
177 c->wfd = wfd;
178 c->sock = (rfd == wfd) ? rfd : -1;
179 c->efd = efd;
180 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100181
Damien Miller79438cc2001-02-16 12:34:57 +1100182 /* XXX ugly hack: nonblock is only set by the server */
183 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000184 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100185 c->isatty = 1;
186 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000187 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100188 c->self, c->wfd);
189 }
190 } else {
191 c->isatty = 0;
192 }
193
Damien Miller69b69aa2000-10-28 14:19:58 +1100194 /* enable nonblocking mode */
195 if (nonblock) {
196 if (rfd != -1)
197 set_nonblock(rfd);
198 if (wfd != -1)
199 set_nonblock(wfd);
200 if (efd != -1)
201 set_nonblock(efd);
202 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000203}
204
205/*
206 * Allocate a new channel object and set its type and socket. This will cause
207 * remote_name to be freed.
208 */
209
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000210Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000211channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Damien Miller69b69aa2000-10-28 14:19:58 +1100212 int window, int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000213{
214 int i, found;
215 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216
Damien Miller95def091999-11-25 00:26:21 +1100217 /* Do initial allocation if this is the first call. */
218 if (channels_alloc == 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000219 chan_init();
Damien Miller95def091999-11-25 00:26:21 +1100220 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 Miller95def091999-11-25 00:26:21 +1100244 buffer_init(&c->input);
245 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000246 buffer_init(&c->extended);
Damien Miller95def091999-11-25 00:26:21 +1100247 chan_init_iostates(c);
Damien Miller69b69aa2000-10-28 14:19:58 +1100248 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100249 c->self = found;
250 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000251 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000252 c->local_window = window;
253 c->local_window_max = window;
254 c->local_consumed = 0;
255 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100256 c->remote_id = -1;
257 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000258 c->remote_window = 0;
259 c->remote_maxpacket = 0;
260 c->cb_fn = NULL;
261 c->cb_arg = NULL;
262 c->cb_event = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000263 c->force_drain = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000264 c->detach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000265 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100266 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000267 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000269
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000270static int
271channel_find_maxfd(void)
272{
273 int i, max = 0;
274 Channel *c;
275
276 for (i = 0; i < channels_alloc; i++) {
277 c = channels[i];
278 if (c != NULL) {
279 max = MAX(max, c->rfd);
280 max = MAX(max, c->wfd);
281 max = MAX(max, c->efd);
282 }
283 }
284 return max;
285}
286
287int
288channel_close_fd(int *fdp)
289{
290 int ret = 0, fd = *fdp;
291
292 if (fd != -1) {
293 ret = close(fd);
294 *fdp = -1;
295 if (fd == channel_max_fd)
296 channel_max_fd = channel_find_maxfd();
297 }
298 return ret;
299}
300
Damien Miller6f83b8e2000-05-02 09:23:45 +1000301/* Close all channel fd/socket. */
302
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000304channel_close_fds(Channel *c)
305{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000306 debug3("channel_close_fds: channel %d: r %d w %d e %d",
307 c->self, c->rfd, c->wfd, c->efd);
308
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000309 channel_close_fd(&c->sock);
310 channel_close_fd(&c->rfd);
311 channel_close_fd(&c->wfd);
312 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000313}
314
315/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316
Damien Miller4af51302000-04-16 11:18:38 +1000317void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000318channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000320 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000321 int i, n;
322
323 for (n = 0, i = 0; i < channels_alloc; i++)
324 if (channels[i])
325 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000326 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000327 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000328
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000329 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000330 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000331 xfree(s);
332
Ben Lindstrom809744e2001-07-04 05:26:06 +0000333 if (c->detach_user != NULL) {
334 debug("channel_free: channel %d: detaching channel user", c->self);
335 c->detach_user(c->self, NULL);
Damien Miller33b13562000-04-04 14:38:59 +1000336 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000337 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000338 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000339 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000340 buffer_free(&c->input);
341 buffer_free(&c->output);
342 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000343 if (c->remote_name) {
344 xfree(c->remote_name);
345 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100346 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000347 channels[c->self] = NULL;
348 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349}
350
Ben Lindstrome9c99912001-06-09 00:41:05 +0000351void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000352channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000353{
354 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000355
Ben Lindstrom601e4362001-06-21 03:19:23 +0000356 for (i = 0; i < channels_alloc; i++)
357 if (channels[i] != NULL)
358 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000359}
360
Ben Lindstrom809744e2001-07-04 05:26:06 +0000361void
362channel_detach_all(void)
363{
364 int i;
365 Channel *c;
366
367 for (i = 0; i < channels_alloc; i++) {
368 c = channels[i];
369 if (c != NULL && c->detach_user != NULL) {
370 debug("channel_detach_all: channel %d", c->self);
371 c->detach_user(c->self, NULL);
372 c->detach_user = NULL;
373 }
374 }
375}
376
Ben Lindstrome9c99912001-06-09 00:41:05 +0000377/*
378 * Closes the sockets/fds of all channels. This is used to close extra file
379 * descriptors after a fork.
380 */
381
382void
383channel_close_all()
384{
385 int i;
386
387 for (i = 0; i < channels_alloc; i++)
388 if (channels[i] != NULL)
389 channel_close_fds(channels[i]);
390}
391
392/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000393 * Stop listening to channels.
394 */
395
396void
397channel_stop_listening(void)
398{
399 int i;
400 Channel *c;
401
402 for (i = 0; i < channels_alloc; i++) {
403 c = channels[i];
404 if (c != NULL) {
405 switch (c->type) {
406 case SSH_CHANNEL_AUTH_SOCKET:
407 case SSH_CHANNEL_PORT_LISTENER:
408 case SSH_CHANNEL_RPORT_LISTENER:
409 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000410 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000411 channel_free(c);
412 break;
413 }
414 }
415 }
416}
417
418/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000419 * Returns true if no channel has too much buffered data, and false if one or
420 * more channel is overfull.
421 */
422
423int
424channel_not_very_much_buffered_data()
425{
426 u_int i;
427 Channel *c;
428
429 for (i = 0; i < channels_alloc; i++) {
430 c = channels[i];
431 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
432 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
433 debug("channel %d: big input buffer %d",
434 c->self, buffer_len(&c->input));
435 return 0;
436 }
437 if (buffer_len(&c->output) > packet_get_maxsize()) {
438 debug("channel %d: big output buffer %d",
439 c->self, buffer_len(&c->output));
440 return 0;
441 }
442 }
443 }
444 return 1;
445}
446
447/* Returns true if any channel is still open. */
448
449int
450channel_still_open()
451{
452 int i;
453 Channel *c;
454
455 for (i = 0; i < channels_alloc; i++) {
456 c = channels[i];
457 if (c == NULL)
458 continue;
459 switch (c->type) {
460 case SSH_CHANNEL_X11_LISTENER:
461 case SSH_CHANNEL_PORT_LISTENER:
462 case SSH_CHANNEL_RPORT_LISTENER:
463 case SSH_CHANNEL_CLOSED:
464 case SSH_CHANNEL_AUTH_SOCKET:
465 case SSH_CHANNEL_DYNAMIC:
466 case SSH_CHANNEL_CONNECTING:
467 case SSH_CHANNEL_ZOMBIE:
468 continue;
469 case SSH_CHANNEL_LARVAL:
470 if (!compat20)
471 fatal("cannot happen: SSH_CHANNEL_LARVAL");
472 continue;
473 case SSH_CHANNEL_OPENING:
474 case SSH_CHANNEL_OPEN:
475 case SSH_CHANNEL_X11_OPEN:
476 return 1;
477 case SSH_CHANNEL_INPUT_DRAINING:
478 case SSH_CHANNEL_OUTPUT_DRAINING:
479 if (!compat13)
480 fatal("cannot happen: OUT_DRAIN");
481 return 1;
482 default:
483 fatal("channel_still_open: bad channel type %d", c->type);
484 /* NOTREACHED */
485 }
486 }
487 return 0;
488}
489
490/* Returns the id of an open channel suitable for keepaliving */
491
492int
493channel_find_open()
494{
495 int i;
496 Channel *c;
497
498 for (i = 0; i < channels_alloc; i++) {
499 c = channels[i];
500 if (c == NULL)
501 continue;
502 switch (c->type) {
503 case SSH_CHANNEL_CLOSED:
504 case SSH_CHANNEL_DYNAMIC:
505 case SSH_CHANNEL_X11_LISTENER:
506 case SSH_CHANNEL_PORT_LISTENER:
507 case SSH_CHANNEL_RPORT_LISTENER:
508 case SSH_CHANNEL_OPENING:
509 case SSH_CHANNEL_CONNECTING:
510 case SSH_CHANNEL_ZOMBIE:
511 continue;
512 case SSH_CHANNEL_LARVAL:
513 case SSH_CHANNEL_AUTH_SOCKET:
514 case SSH_CHANNEL_OPEN:
515 case SSH_CHANNEL_X11_OPEN:
516 return i;
517 case SSH_CHANNEL_INPUT_DRAINING:
518 case SSH_CHANNEL_OUTPUT_DRAINING:
519 if (!compat13)
520 fatal("cannot happen: OUT_DRAIN");
521 return i;
522 default:
523 fatal("channel_find_open: bad channel type %d", c->type);
524 /* NOTREACHED */
525 }
526 }
527 return -1;
528}
529
530
531/*
532 * Returns a message describing the currently open forwarded connections,
533 * suitable for sending to the client. The message contains crlf pairs for
534 * newlines.
535 */
536
537char *
538channel_open_message()
539{
540 Buffer buffer;
541 Channel *c;
542 char buf[1024], *cp;
543 int i;
544
545 buffer_init(&buffer);
546 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
547 buffer_append(&buffer, buf, strlen(buf));
548 for (i = 0; i < channels_alloc; i++) {
549 c = channels[i];
550 if (c == NULL)
551 continue;
552 switch (c->type) {
553 case SSH_CHANNEL_X11_LISTENER:
554 case SSH_CHANNEL_PORT_LISTENER:
555 case SSH_CHANNEL_RPORT_LISTENER:
556 case SSH_CHANNEL_CLOSED:
557 case SSH_CHANNEL_AUTH_SOCKET:
558 case SSH_CHANNEL_ZOMBIE:
559 continue;
560 case SSH_CHANNEL_LARVAL:
561 case SSH_CHANNEL_OPENING:
562 case SSH_CHANNEL_CONNECTING:
563 case SSH_CHANNEL_DYNAMIC:
564 case SSH_CHANNEL_OPEN:
565 case SSH_CHANNEL_X11_OPEN:
566 case SSH_CHANNEL_INPUT_DRAINING:
567 case SSH_CHANNEL_OUTPUT_DRAINING:
568 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
569 c->self, c->remote_name,
570 c->type, c->remote_id,
571 c->istate, buffer_len(&c->input),
572 c->ostate, buffer_len(&c->output),
573 c->rfd, c->wfd);
574 buffer_append(&buffer, buf, strlen(buf));
575 continue;
576 default:
577 fatal("channel_open_message: bad channel type %d", c->type);
578 /* NOTREACHED */
579 }
580 }
581 buffer_append(&buffer, "\0", 1);
582 cp = xstrdup(buffer_ptr(&buffer));
583 buffer_free(&buffer);
584 return cp;
585}
586
587void
588channel_send_open(int id)
589{
590 Channel *c = channel_lookup(id);
591 if (c == NULL) {
592 log("channel_send_open: %d: bad id", id);
593 return;
594 }
595 debug("send channel open %d", id);
596 packet_start(SSH2_MSG_CHANNEL_OPEN);
597 packet_put_cstring(c->ctype);
598 packet_put_int(c->self);
599 packet_put_int(c->local_window);
600 packet_put_int(c->local_maxpacket);
601 packet_send();
602}
603
604void
605channel_request(int id, char *service, int wantconfirm)
606{
607 channel_request_start(id, service, wantconfirm);
608 packet_send();
609 debug("channel request %d: %s", id, service) ;
610}
611void
612channel_request_start(int id, char *service, int wantconfirm)
613{
614 Channel *c = channel_lookup(id);
615 if (c == NULL) {
616 log("channel_request: %d: bad id", id);
617 return;
618 }
619 packet_start(SSH2_MSG_CHANNEL_REQUEST);
620 packet_put_int(c->remote_id);
621 packet_put_cstring(service);
622 packet_put_char(wantconfirm);
623}
624void
625channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
626{
627 Channel *c = channel_lookup(id);
628 if (c == NULL) {
629 log("channel_register_callback: %d: bad id", id);
630 return;
631 }
632 c->cb_event = mtype;
633 c->cb_fn = fn;
634 c->cb_arg = arg;
635}
636void
637channel_register_cleanup(int id, channel_callback_fn *fn)
638{
639 Channel *c = channel_lookup(id);
640 if (c == NULL) {
641 log("channel_register_cleanup: %d: bad id", id);
642 return;
643 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000644 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645}
646void
647channel_cancel_cleanup(int id)
648{
649 Channel *c = channel_lookup(id);
650 if (c == NULL) {
651 log("channel_cancel_cleanup: %d: bad id", id);
652 return;
653 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000654 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655}
656void
657channel_register_filter(int id, channel_filter_fn *fn)
658{
659 Channel *c = channel_lookup(id);
660 if (c == NULL) {
661 log("channel_register_filter: %d: bad id", id);
662 return;
663 }
664 c->input_filter = fn;
665}
666
667void
668channel_set_fds(int id, int rfd, int wfd, int efd,
669 int extusage, int nonblock)
670{
671 Channel *c = channel_lookup(id);
672 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
673 fatal("channel_activate for non-larval channel %d.", id);
674 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
675 c->type = SSH_CHANNEL_OPEN;
676 /* XXX window size? */
677 c->local_window = c->local_window_max = c->local_maxpacket * 2;
678 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
679 packet_put_int(c->remote_id);
680 packet_put_int(c->local_window);
681 packet_send();
682}
683
Damien Miller5428f641999-11-25 11:54:57 +1100684/*
Damien Millerb38eff82000-04-01 11:09:21 +1000685 * 'channel_pre*' are called just before select() to add any bits relevant to
686 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100687 */
Damien Millerb38eff82000-04-01 11:09:21 +1000688/*
689 * 'channel_post*': perform any appropriate operations for channels which
690 * have events pending.
691 */
692typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
693chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
694chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
695
Ben Lindstrombba81212001-06-25 05:01:22 +0000696static void
Damien Millerb38eff82000-04-01 11:09:21 +1000697channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
698{
699 FD_SET(c->sock, readset);
700}
701
Ben Lindstrombba81212001-06-25 05:01:22 +0000702static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000703channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
704{
705 debug3("channel %d: waiting for connection", c->self);
706 FD_SET(c->sock, writeset);
707}
708
Ben Lindstrombba81212001-06-25 05:01:22 +0000709static void
Damien Millerb38eff82000-04-01 11:09:21 +1000710channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
711{
712 if (buffer_len(&c->input) < packet_get_maxsize())
713 FD_SET(c->sock, readset);
714 if (buffer_len(&c->output) > 0)
715 FD_SET(c->sock, writeset);
716}
717
Ben Lindstrombba81212001-06-25 05:01:22 +0000718static void
Damien Millerb38eff82000-04-01 11:09:21 +1000719channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
720{
721 /* test whether sockets are 'alive' for read/write */
722 if (c->istate == CHAN_INPUT_OPEN)
723 if (buffer_len(&c->input) < packet_get_maxsize())
724 FD_SET(c->sock, readset);
725 if (c->ostate == CHAN_OUTPUT_OPEN ||
726 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
727 if (buffer_len(&c->output) > 0) {
728 FD_SET(c->sock, writeset);
729 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
730 chan_obuf_empty(c);
731 }
732 }
733}
734
Ben Lindstrombba81212001-06-25 05:01:22 +0000735static void
Damien Miller33b13562000-04-04 14:38:59 +1000736channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
737{
738 if (c->istate == CHAN_INPUT_OPEN &&
739 c->remote_window > 0 &&
740 buffer_len(&c->input) < c->remote_window)
741 FD_SET(c->rfd, readset);
742 if (c->ostate == CHAN_OUTPUT_OPEN ||
743 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
744 if (buffer_len(&c->output) > 0) {
745 FD_SET(c->wfd, writeset);
746 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
747 chan_obuf_empty(c);
748 }
749 }
750 /** XXX check close conditions, too */
751 if (c->efd != -1) {
752 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
753 buffer_len(&c->extended) > 0)
754 FD_SET(c->efd, writeset);
755 else if (c->extended_usage == CHAN_EXTENDED_READ &&
756 buffer_len(&c->extended) < c->remote_window)
757 FD_SET(c->efd, readset);
758 }
759}
760
Ben Lindstrombba81212001-06-25 05:01:22 +0000761static void
Damien Millerb38eff82000-04-01 11:09:21 +1000762channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
763{
764 if (buffer_len(&c->input) == 0) {
765 packet_start(SSH_MSG_CHANNEL_CLOSE);
766 packet_put_int(c->remote_id);
767 packet_send();
768 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000769 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000770 }
771}
772
Ben Lindstrombba81212001-06-25 05:01:22 +0000773static void
Damien Millerb38eff82000-04-01 11:09:21 +1000774channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
775{
776 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000777 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000778 else
Damien Millerb38eff82000-04-01 11:09:21 +1000779 FD_SET(c->sock, writeset);
780}
781
782/*
783 * This is a special state for X11 authentication spoofing. An opened X11
784 * connection (when authentication spoofing is being done) remains in this
785 * state until the first packet has been completely read. The authentication
786 * data in that packet is then substituted by the real data if it matches the
787 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000788 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000790 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000791static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000792x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000793{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000794 u_char *ucp;
795 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000796
797 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000798 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000799 return 0;
800
801 /* Parse the lengths of variable-length fields. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000802 ucp = (u_char *) buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000803 if (ucp[0] == 0x42) { /* Byte order MSB first. */
804 proto_len = 256 * ucp[6] + ucp[7];
805 data_len = 256 * ucp[8] + ucp[9];
806 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
807 proto_len = ucp[6] + 256 * ucp[7];
808 data_len = ucp[8] + 256 * ucp[9];
809 } else {
810 debug("Initial X11 packet contains bad byte order byte: 0x%x",
811 ucp[0]);
812 return -1;
813 }
814
815 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000816 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000817 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
818 return 0;
819
820 /* Check if authentication protocol matches. */
821 if (proto_len != strlen(x11_saved_proto) ||
822 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
823 debug("X11 connection uses different authentication protocol.");
824 return -1;
825 }
826 /* Check if authentication data matches our fake data. */
827 if (data_len != x11_fake_data_len ||
828 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
829 x11_fake_data, x11_fake_data_len) != 0) {
830 debug("X11 auth data does not match fake data.");
831 return -1;
832 }
833 /* Check fake data length */
834 if (x11_fake_data_len != x11_saved_data_len) {
835 error("X11 fake_data_len %d != saved_data_len %d",
836 x11_fake_data_len, x11_saved_data_len);
837 return -1;
838 }
839 /*
840 * Received authentication protocol and data match
841 * our fake data. Substitute the fake data with real
842 * data.
843 */
844 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
845 x11_saved_data, x11_saved_data_len);
846 return 1;
847}
848
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static void
Damien Millerb38eff82000-04-01 11:09:21 +1000850channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
851{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000852 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000853 if (ret == 1) {
854 /* Start normal processing for the channel. */
855 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000856 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000857 } else if (ret == -1) {
858 /*
859 * We have received an X11 connection that has bad
860 * authentication information.
861 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000862 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000863 buffer_clear(&c->input);
864 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000865 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000866 c->sock = -1;
867 c->type = SSH_CHANNEL_CLOSED;
868 packet_start(SSH_MSG_CHANNEL_CLOSE);
869 packet_put_int(c->remote_id);
870 packet_send();
871 }
872}
873
Ben Lindstrombba81212001-06-25 05:01:22 +0000874static void
Damien Millerbd483e72000-04-30 10:00:53 +1000875channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000876{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000877 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000878
879 /* c->force_drain = 1; */
880
Damien Millerb38eff82000-04-01 11:09:21 +1000881 if (ret == 1) {
882 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000883 if (compat20)
884 channel_pre_open_20(c, readset, writeset);
885 else
886 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000887 } else if (ret == -1) {
888 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000889 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000890 chan_write_failed(c);
891 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
892 }
893}
894
Ben Lindstromb3921512001-04-11 15:57:50 +0000895/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000896static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000897channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000898{
899 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000900 int len, have, i, found;
Ben Lindstromb3921512001-04-11 15:57:50 +0000901 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000902 struct {
903 u_int8_t version;
904 u_int8_t command;
905 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000906 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000907 } s4_req, s4_rsp;
908
Ben Lindstromb3921512001-04-11 15:57:50 +0000909 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000910
911 have = buffer_len(&c->input);
912 len = sizeof(s4_req);
913 if (have < len)
914 return 0;
915 p = buffer_ptr(&c->input);
916 for (found = 0, i = len; i < have; i++) {
917 if (p[i] == '\0') {
918 found = 1;
919 break;
920 }
921 if (i > 1024) {
922 /* the peer is probably sending garbage */
923 debug("channel %d: decode socks4: too long",
924 c->self);
925 return -1;
926 }
927 }
928 if (!found)
929 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000930 buffer_get(&c->input, (char *)&s4_req.version, 1);
931 buffer_get(&c->input, (char *)&s4_req.command, 1);
932 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000933 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000934 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935 p = buffer_ptr(&c->input);
936 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000937 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000940 c->self, len, have);
941 strlcpy(username, p, sizeof(username));
942 buffer_consume(&c->input, len);
943 buffer_consume(&c->input, 1); /* trailing '\0' */
944
Ben Lindstromb3921512001-04-11 15:57:50 +0000945 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000946 strlcpy(c->path, host, sizeof(c->path));
947 c->host_port = ntohs(s4_req.dest_port);
948
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000949 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
950 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000951
Ben Lindstromb3921512001-04-11 15:57:50 +0000952 if (s4_req.command != 1) {
953 debug("channel %d: cannot handle: socks4 cn %d",
954 c->self, s4_req.command);
955 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000956 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000957 s4_rsp.version = 0; /* vn: 0 for reply */
958 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000959 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000960 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000961 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000962 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000963}
964
Ben Lindstromb3921512001-04-11 15:57:50 +0000965/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000966static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000967channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
968{
969 u_char *p;
970 int have, ret;
971
972 have = buffer_len(&c->input);
973
974 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000975 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000976 /* check if the fixed size part of the packet is in buffer. */
977 if (have < 4) {
978 /* need more */
979 FD_SET(c->sock, readset);
980 return;
981 }
982 /* try to guess the protocol */
983 p = buffer_ptr(&c->input);
984 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000985 case 0x04:
986 ret = channel_decode_socks4(c, readset, writeset);
987 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000988 default:
989 ret = -1;
990 break;
991 }
992 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000993 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000994 } else if (ret == 0) {
995 debug2("channel %d: pre_dynamic: need more", c->self);
996 /* need more */
997 FD_SET(c->sock, readset);
998 } else {
999 /* switch to the next state */
1000 c->type = SSH_CHANNEL_OPENING;
1001 port_open_helper(c, "direct-tcpip");
1002 }
1003}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001004
Damien Millerb38eff82000-04-01 11:09:21 +10001005/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001006static void
Damien Millerb38eff82000-04-01 11:09:21 +10001007channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
1008{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001009 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001010 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001011 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001012 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001013 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001014 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001015
1016 if (FD_ISSET(c->sock, readset)) {
1017 debug("X11 connection requested.");
1018 addrlen = sizeof(addr);
1019 newsock = accept(c->sock, &addr, &addrlen);
1020 if (newsock < 0) {
1021 error("accept: %.100s", strerror(errno));
1022 return;
1023 }
Damien Millerd83ff352001-01-30 09:19:34 +11001024 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001025 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001026 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001027 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001028
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001029 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001030 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1031 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001032 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001033 if (nc == NULL) {
1034 close(newsock);
1035 xfree(remote_ipaddr);
1036 return;
1037 }
Damien Millerbd483e72000-04-30 10:00:53 +10001038 if (compat20) {
1039 packet_start(SSH2_MSG_CHANNEL_OPEN);
1040 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001041 packet_put_int(nc->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001042 packet_put_int(c->local_window_max);
1043 packet_put_int(c->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001044 /* originator ipaddr and port */
1045 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001046 if (datafellows & SSH_BUG_X11FWD) {
1047 debug("ssh2 x11 bug compat mode");
1048 } else {
1049 packet_put_int(remote_port);
1050 }
Damien Millerbd483e72000-04-30 10:00:53 +10001051 packet_send();
1052 } else {
1053 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001054 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001055 if (packet_get_protocol_flags() &
1056 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001057 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001058 packet_send();
1059 }
Damien Millerd83ff352001-01-30 09:19:34 +11001060 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001061 }
1062}
1063
Ben Lindstrombba81212001-06-25 05:01:22 +00001064static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001065port_open_helper(Channel *c, char *rtype)
1066{
1067 int direct;
1068 char buf[1024];
1069 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1070 u_short remote_port = get_peer_port(c->sock);
1071
1072 direct = (strcmp(rtype, "direct-tcpip") == 0);
1073
1074 snprintf(buf, sizeof buf,
1075 "%s: listening port %d for %.100s port %d, "
1076 "connect from %.200s port %d",
1077 rtype, c->listening_port, c->path, c->host_port,
1078 remote_ipaddr, remote_port);
1079
1080 xfree(c->remote_name);
1081 c->remote_name = xstrdup(buf);
1082
1083 if (compat20) {
1084 packet_start(SSH2_MSG_CHANNEL_OPEN);
1085 packet_put_cstring(rtype);
1086 packet_put_int(c->self);
1087 packet_put_int(c->local_window_max);
1088 packet_put_int(c->local_maxpacket);
1089 if (direct) {
1090 /* target host, port */
1091 packet_put_cstring(c->path);
1092 packet_put_int(c->host_port);
1093 } else {
1094 /* listen address, port */
1095 packet_put_cstring(c->path);
1096 packet_put_int(c->listening_port);
1097 }
1098 /* originator host and port */
1099 packet_put_cstring(remote_ipaddr);
1100 packet_put_int(remote_port);
1101 packet_send();
1102 } else {
1103 packet_start(SSH_MSG_PORT_OPEN);
1104 packet_put_int(c->self);
1105 packet_put_cstring(c->path);
1106 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001107 if (packet_get_protocol_flags() &
1108 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001109 packet_put_cstring(c->remote_name);
1110 packet_send();
1111 }
1112 xfree(remote_ipaddr);
1113}
1114
Damien Millerb38eff82000-04-01 11:09:21 +10001115/*
1116 * This socket is listening for connections to a forwarded TCP/IP port.
1117 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001118static void
Damien Millerb38eff82000-04-01 11:09:21 +10001119channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1120{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001121 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001122 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001123 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001124 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001125 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001126
Damien Millerb38eff82000-04-01 11:09:21 +10001127 if (FD_ISSET(c->sock, readset)) {
1128 debug("Connection to port %d forwarding "
1129 "to %.100s port %d requested.",
1130 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001131
1132 rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ?
1133 "forwarded-tcpip" : "direct-tcpip";
Ben Lindstrom6d618462001-05-10 23:24:49 +00001134 nextstate = (c->host_port == 0 &&
1135 c->type != SSH_CHANNEL_RPORT_LISTENER) ?
1136 SSH_CHANNEL_DYNAMIC : SSH_CHANNEL_OPENING;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001137
Damien Millerb38eff82000-04-01 11:09:21 +10001138 addrlen = sizeof(addr);
1139 newsock = accept(c->sock, &addr, &addrlen);
1140 if (newsock < 0) {
1141 error("accept: %.100s", strerror(errno));
1142 return;
1143 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001144 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001145 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001146 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001147 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001148 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001149 error("channel_post_port_listener: no new channel:");
1150 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001151 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001152 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001153 nc->listening_port = c->listening_port;
1154 nc->host_port = c->host_port;
1155 strlcpy(nc->path, c->path, sizeof(nc->path));
1156
1157 if (nextstate != SSH_CHANNEL_DYNAMIC)
1158 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001159 }
1160}
1161
1162/*
1163 * This is the authentication agent socket listening for connections from
1164 * clients.
1165 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001166static void
Damien Millerb38eff82000-04-01 11:09:21 +10001167channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1168{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001169 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001170 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001171 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001172 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001173 socklen_t addrlen;
1174
1175 if (FD_ISSET(c->sock, readset)) {
1176 addrlen = sizeof(addr);
1177 newsock = accept(c->sock, &addr, &addrlen);
1178 if (newsock < 0) {
1179 error("accept from auth socket: %.100s", strerror(errno));
1180 return;
1181 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001182 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001183 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001184 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1185 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001186 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001187 if (nc == NULL) {
1188 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001189 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001190 close(newsock);
1191 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001192 if (compat20) {
1193 packet_start(SSH2_MSG_CHANNEL_OPEN);
1194 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001195 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001196 packet_put_int(c->local_window_max);
1197 packet_put_int(c->local_maxpacket);
1198 } else {
1199 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001200 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001201 }
Damien Millerb38eff82000-04-01 11:09:21 +10001202 packet_send();
1203 }
1204}
1205
Ben Lindstrombba81212001-06-25 05:01:22 +00001206static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001207channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1208{
Ben Lindstrom69128662001-05-08 20:07:39 +00001209 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001210 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001211
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001212 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001213 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1214 &sz) < 0) {
1215 err = errno;
1216 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001217 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001218 if (err == 0) {
1219 debug("channel %d: connected", c->self);
1220 c->type = SSH_CHANNEL_OPEN;
1221 if (compat20) {
1222 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1223 packet_put_int(c->remote_id);
1224 packet_put_int(c->self);
1225 packet_put_int(c->local_window);
1226 packet_put_int(c->local_maxpacket);
1227 } else {
1228 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1229 packet_put_int(c->remote_id);
1230 packet_put_int(c->self);
1231 }
1232 } else {
1233 debug("channel %d: not connected: %s",
1234 c->self, strerror(err));
1235 if (compat20) {
1236 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1237 packet_put_int(c->remote_id);
1238 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1239 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1240 packet_put_cstring(strerror(err));
1241 packet_put_cstring("");
1242 }
1243 } else {
1244 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1245 packet_put_int(c->remote_id);
1246 }
1247 chan_mark_dead(c);
1248 }
1249 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001250 }
1251}
1252
Ben Lindstrombba81212001-06-25 05:01:22 +00001253static int
Damien Millerb38eff82000-04-01 11:09:21 +10001254channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1255{
1256 char buf[16*1024];
1257 int len;
1258
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001259 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001260 FD_ISSET(c->rfd, readset)) {
1261 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001262 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1263 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001264 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001265 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001266 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001267 if (c->type != SSH_CHANNEL_OPEN) {
1268 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001269 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001270 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001271 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001272 buffer_consume(&c->output, buffer_len(&c->output));
1273 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001274 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001275 } else {
1276 chan_read_failed(c);
1277 }
1278 return -1;
1279 }
Damien Millerad833b32000-08-23 10:46:23 +10001280 if(c->input_filter != NULL) {
1281 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001282 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001283 chan_read_failed(c);
1284 }
1285 } else {
1286 buffer_append(&c->input, buf, len);
1287 }
Damien Millerb38eff82000-04-01 11:09:21 +10001288 }
1289 return 1;
1290}
Ben Lindstrombba81212001-06-25 05:01:22 +00001291static int
Damien Millerb38eff82000-04-01 11:09:21 +10001292channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1293{
Ben Lindstrome229b252001-03-05 06:28:06 +00001294 struct termios tio;
Damien Millerb38eff82000-04-01 11:09:21 +10001295 int len;
1296
1297 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001298 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001299 FD_ISSET(c->wfd, writeset) &&
1300 buffer_len(&c->output) > 0) {
1301 len = write(c->wfd, buffer_ptr(&c->output),
Damien Miller6f83b8e2000-05-02 09:23:45 +10001302 buffer_len(&c->output));
1303 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1304 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001305 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001306 if (c->type != SSH_CHANNEL_OPEN) {
1307 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001308 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001309 return -1;
1310 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001311 buffer_consume(&c->output, buffer_len(&c->output));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001312 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001313 c->type = SSH_CHANNEL_INPUT_DRAINING;
1314 } else {
1315 chan_write_failed(c);
1316 }
1317 return -1;
1318 }
Damien Miller79438cc2001-02-16 12:34:57 +11001319 if (compat20 && c->isatty) {
Damien Miller79438cc2001-02-16 12:34:57 +11001320 if (tcgetattr(c->wfd, &tio) == 0 &&
1321 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1322 /*
1323 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001324 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001325 * size of a SSH2_MSG_CHANNEL_DATA message
1326 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001327 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001328 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001329 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001330 }
1331 }
Damien Millerb38eff82000-04-01 11:09:21 +10001332 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001333 if (compat20 && len > 0) {
1334 c->local_consumed += len;
1335 }
1336 }
1337 return 1;
1338}
Ben Lindstrombba81212001-06-25 05:01:22 +00001339static int
Damien Miller33b13562000-04-04 14:38:59 +10001340channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1341{
1342 char buf[16*1024];
1343 int len;
1344
Damien Miller1383bd82000-04-06 12:32:37 +10001345/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001346 if (c->efd != -1) {
1347 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1348 FD_ISSET(c->efd, writeset) &&
1349 buffer_len(&c->extended) > 0) {
1350 len = write(c->efd, buffer_ptr(&c->extended),
1351 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001352 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001353 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001354 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1355 return 1;
1356 if (len <= 0) {
1357 debug2("channel %d: closing write-efd %d",
1358 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001359 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001360 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001361 buffer_consume(&c->extended, len);
1362 c->local_consumed += len;
1363 }
1364 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1365 FD_ISSET(c->efd, readset)) {
1366 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001367 debug2("channel %d: read %d from efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001368 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001369 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1370 return 1;
1371 if (len <= 0) {
1372 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001373 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001374 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001375 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001376 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001377 }
Damien Miller33b13562000-04-04 14:38:59 +10001378 }
1379 }
1380 return 1;
1381}
Ben Lindstrombba81212001-06-25 05:01:22 +00001382static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001383channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001384{
Ben Lindstromb3921512001-04-11 15:57:50 +00001385 if (c->type == SSH_CHANNEL_OPEN &&
1386 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001387 c->local_window < c->local_window_max/2 &&
1388 c->local_consumed > 0) {
1389 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1390 packet_put_int(c->remote_id);
1391 packet_put_int(c->local_consumed);
1392 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001393 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001394 c->self, c->local_window,
1395 c->local_consumed);
1396 c->local_window += c->local_consumed;
1397 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001398 }
1399 return 1;
1400}
1401
Ben Lindstrombba81212001-06-25 05:01:22 +00001402static void
Damien Millerb38eff82000-04-01 11:09:21 +10001403channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
1404{
1405 channel_handle_rfd(c, readset, writeset);
1406 channel_handle_wfd(c, readset, writeset);
1407}
1408
Ben Lindstrombba81212001-06-25 05:01:22 +00001409static void
Damien Miller33b13562000-04-04 14:38:59 +10001410channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
1411{
1412 channel_handle_rfd(c, readset, writeset);
1413 channel_handle_wfd(c, readset, writeset);
1414 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001415
1416 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001417}
1418
Ben Lindstrombba81212001-06-25 05:01:22 +00001419static void
Damien Millerb38eff82000-04-01 11:09:21 +10001420channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1421{
1422 int len;
1423 /* Send buffered output data to the socket. */
1424 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1425 len = write(c->sock, buffer_ptr(&c->output),
1426 buffer_len(&c->output));
1427 if (len <= 0)
1428 buffer_consume(&c->output, buffer_len(&c->output));
1429 else
1430 buffer_consume(&c->output, len);
1431 }
1432}
1433
Ben Lindstrombba81212001-06-25 05:01:22 +00001434static void
Damien Miller33b13562000-04-04 14:38:59 +10001435channel_handler_init_20(void)
1436{
1437 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +10001438 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001439 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001440 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001441 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001442 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001443 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001444 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001445
1446 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
1447 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001448 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001449 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001450 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001451 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001452 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_2;
Damien Miller33b13562000-04-04 14:38:59 +10001453}
1454
Ben Lindstrombba81212001-06-25 05:01:22 +00001455static void
Damien Millerb38eff82000-04-01 11:09:21 +10001456channel_handler_init_13(void)
1457{
1458 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1459 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1460 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1461 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1462 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1463 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1464 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001465 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001466 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001467
1468 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
1469 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1470 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1471 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1472 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001473 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001474 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001475}
1476
Ben Lindstrombba81212001-06-25 05:01:22 +00001477static void
Damien Millerb38eff82000-04-01 11:09:21 +10001478channel_handler_init_15(void)
1479{
1480 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +10001481 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001482 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1483 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1484 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001485 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001486 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001487
1488 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1489 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1490 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1491 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001492 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001493 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001494}
1495
Ben Lindstrombba81212001-06-25 05:01:22 +00001496static void
Damien Millerb38eff82000-04-01 11:09:21 +10001497channel_handler_init(void)
1498{
1499 int i;
1500 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
1501 channel_pre[i] = NULL;
1502 channel_post[i] = NULL;
1503 }
Damien Miller33b13562000-04-04 14:38:59 +10001504 if (compat20)
1505 channel_handler_init_20();
1506 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001507 channel_handler_init_13();
1508 else
1509 channel_handler_init_15();
1510}
1511
Ben Lindstrombba81212001-06-25 05:01:22 +00001512static void
Damien Millerb38eff82000-04-01 11:09:21 +10001513channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1514{
1515 static int did_init = 0;
1516 int i;
1517 Channel *c;
1518
1519 if (!did_init) {
1520 channel_handler_init();
1521 did_init = 1;
1522 }
1523 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 c = channels[i];
1525 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001526 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001527 if (ftab[c->type] != NULL)
1528 (*ftab[c->type])(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001529 if (chan_is_dead(c)) {
1530 /*
1531 * we have to remove the fd's from the select mask
1532 * before the channels are free'd and the fd's are
1533 * closed
1534 */
1535 if (c->wfd != -1)
1536 FD_CLR(c->wfd, writeset);
1537 if (c->rfd != -1)
1538 FD_CLR(c->rfd, readset);
1539 if (c->efd != -1) {
1540 if (c->extended_usage == CHAN_EXTENDED_READ)
1541 FD_CLR(c->efd, readset);
1542 if (c->extended_usage == CHAN_EXTENDED_WRITE)
1543 FD_CLR(c->efd, writeset);
1544 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001545 channel_free(c);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001546 }
Damien Millerb38eff82000-04-01 11:09:21 +10001547 }
1548}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001549
Ben Lindstrome9c99912001-06-09 00:41:05 +00001550/*
1551 * Allocate/update select bitmasks and add any bits relevant to channels in
1552 * select bitmasks.
1553 */
Damien Miller4af51302000-04-16 11:18:38 +10001554void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001555channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001556 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557{
Damien Miller5e953212001-01-30 09:14:00 +11001558 int n;
1559 u_int sz;
1560
1561 n = MAX(*maxfdp, channel_max_fd);
1562
1563 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001564 /* perhaps check sz < nalloc/2 and shrink? */
1565 if (*readsetp == NULL || sz > *nallocp) {
1566 *readsetp = xrealloc(*readsetp, sz);
1567 *writesetp = xrealloc(*writesetp, sz);
1568 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001569 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001570 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001571 memset(*readsetp, 0, sz);
1572 memset(*writesetp, 0, sz);
1573
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001574 if (!rekeying)
1575 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001576}
1577
Ben Lindstrome9c99912001-06-09 00:41:05 +00001578/*
1579 * After select, perform any appropriate operations for channels which have
1580 * events pending.
1581 */
Damien Miller4af51302000-04-16 11:18:38 +10001582void
Damien Miller95def091999-11-25 00:26:21 +11001583channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584{
Damien Millerb38eff82000-04-01 11:09:21 +10001585 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001586}
1587
Ben Lindstrome9c99912001-06-09 00:41:05 +00001588
Damien Miller5e953212001-01-30 09:14:00 +11001589/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001590
Damien Miller4af51302000-04-16 11:18:38 +10001591void
Damien Miller95def091999-11-25 00:26:21 +11001592channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001593{
Damien Miller95def091999-11-25 00:26:21 +11001594 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001595 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001596
Damien Miller95def091999-11-25 00:26:21 +11001597 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001598 c = channels[i];
1599 if (c == NULL)
1600 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001601
Ben Lindstrome9c99912001-06-09 00:41:05 +00001602 /*
1603 * We are only interested in channels that can have buffered
1604 * incoming data.
1605 */
Damien Miller34132e52000-01-14 15:45:46 +11001606 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001607 if (c->type != SSH_CHANNEL_OPEN &&
1608 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001609 continue;
1610 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001611 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001612 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001613 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001614 if (compat20 &&
1615 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001616 /* XXX is this true? */
Ben Lindstromb1131e92001-03-05 07:27:13 +00001617 debug2("channel %d: no data after CLOSE", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001618 continue;
1619 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001620
Damien Miller95def091999-11-25 00:26:21 +11001621 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001622 if ((c->istate == CHAN_INPUT_OPEN ||
1623 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1624 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001625 /*
1626 * Send some data for the other side over the secure
1627 * connection.
1628 */
Damien Miller33b13562000-04-04 14:38:59 +10001629 if (compat20) {
1630 if (len > c->remote_window)
1631 len = c->remote_window;
1632 if (len > c->remote_maxpacket)
1633 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001634 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001635 if (packet_is_interactive()) {
1636 if (len > 1024)
1637 len = 512;
1638 } else {
1639 /* Keep the packets at reasonable size. */
1640 if (len > packet_get_maxsize()/2)
1641 len = packet_get_maxsize()/2;
1642 }
Damien Miller95def091999-11-25 00:26:21 +11001643 }
Damien Millerb38eff82000-04-01 11:09:21 +10001644 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001645 packet_start(compat20 ?
1646 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001647 packet_put_int(c->remote_id);
1648 packet_put_string(buffer_ptr(&c->input), len);
1649 packet_send();
1650 buffer_consume(&c->input, len);
1651 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001652 }
1653 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001654 if (compat13)
1655 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001656 /*
1657 * input-buffer is empty and read-socket shutdown:
1658 * tell peer, that we will not send more data: send IEOF
1659 */
Damien Millerb38eff82000-04-01 11:09:21 +10001660 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001661 }
Damien Miller33b13562000-04-04 14:38:59 +10001662 /* Send extended data, i.e. stderr */
1663 if (compat20 &&
1664 c->remote_window > 0 &&
1665 (len = buffer_len(&c->extended)) > 0 &&
1666 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001667 debug2("channel %d: rwin %d elen %d euse %d",
1668 c->self, c->remote_window, buffer_len(&c->extended),
1669 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001670 if (len > c->remote_window)
1671 len = c->remote_window;
1672 if (len > c->remote_maxpacket)
1673 len = c->remote_maxpacket;
1674 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1675 packet_put_int(c->remote_id);
1676 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1677 packet_put_string(buffer_ptr(&c->extended), len);
1678 packet_send();
1679 buffer_consume(&c->extended, len);
1680 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001681 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001682 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001683 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001684}
1685
Ben Lindstrome9c99912001-06-09 00:41:05 +00001686
1687/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001688
Damien Miller4af51302000-04-16 11:18:38 +10001689void
Damien Miller62cee002000-09-23 17:15:56 +11001690channel_input_data(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001691{
Damien Miller34132e52000-01-14 15:45:46 +11001692 int id;
Damien Miller95def091999-11-25 00:26:21 +11001693 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001694 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001695 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001696
Damien Miller95def091999-11-25 00:26:21 +11001697 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001698 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001699 c = channel_lookup(id);
1700 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001701 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001702
Damien Miller95def091999-11-25 00:26:21 +11001703 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001704 if (c->type != SSH_CHANNEL_OPEN &&
1705 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001706 return;
1707
1708 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001709 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001710 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001711
Damien Miller95def091999-11-25 00:26:21 +11001712 /* Get the data. */
1713 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001714 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001715
Damien Miller33b13562000-04-04 14:38:59 +10001716 if (compat20){
1717 if (data_len > c->local_maxpacket) {
1718 log("channel %d: rcvd big packet %d, maxpack %d",
1719 c->self, data_len, c->local_maxpacket);
1720 }
1721 if (data_len > c->local_window) {
1722 log("channel %d: rcvd too much data %d, win %d",
1723 c->self, data_len, c->local_window);
1724 xfree(data);
1725 return;
1726 }
1727 c->local_window -= data_len;
1728 }else{
1729 packet_integrity_check(plen, 4 + 4 + data_len, type);
1730 }
Damien Millerb38eff82000-04-01 11:09:21 +10001731 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001732 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001733}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001734
Damien Miller4af51302000-04-16 11:18:38 +10001735void
Damien Miller62cee002000-09-23 17:15:56 +11001736channel_input_extended_data(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001737{
1738 int id;
1739 int tcode;
1740 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001741 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001742 Channel *c;
1743
1744 /* Get the channel number and verify it. */
1745 id = packet_get_int();
1746 c = channel_lookup(id);
1747
1748 if (c == NULL)
1749 packet_disconnect("Received extended_data for bad channel %d.", id);
1750 if (c->type != SSH_CHANNEL_OPEN) {
1751 log("channel %d: ext data for non open", id);
1752 return;
1753 }
1754 tcode = packet_get_int();
1755 if (c->efd == -1 ||
1756 c->extended_usage != CHAN_EXTENDED_WRITE ||
1757 tcode != SSH2_EXTENDED_DATA_STDERR) {
1758 log("channel %d: bad ext data", c->self);
1759 return;
1760 }
1761 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001762 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001763 if (data_len > c->local_window) {
1764 log("channel %d: rcvd too much extended_data %d, win %d",
1765 c->self, data_len, c->local_window);
1766 xfree(data);
1767 return;
1768 }
Damien Millerd3444942000-09-30 14:20:03 +11001769 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001770 c->local_window -= data_len;
1771 buffer_append(&c->extended, data, data_len);
1772 xfree(data);
1773}
1774
Damien Miller4af51302000-04-16 11:18:38 +10001775void
Damien Miller62cee002000-09-23 17:15:56 +11001776channel_input_ieof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001777{
1778 int id;
1779 Channel *c;
1780
1781 packet_integrity_check(plen, 4, type);
1782
1783 id = packet_get_int();
1784 c = channel_lookup(id);
1785 if (c == NULL)
1786 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1787 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001788
1789 /* XXX force input close */
1790 if (c->force_drain) {
1791 debug("channel %d: FORCE input drain", c->self);
1792 c->istate = CHAN_INPUT_WAIT_DRAIN;
1793 }
1794
Damien Millerb38eff82000-04-01 11:09:21 +10001795}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001796
Damien Miller4af51302000-04-16 11:18:38 +10001797void
Damien Miller62cee002000-09-23 17:15:56 +11001798channel_input_close(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001799{
Damien Millerb38eff82000-04-01 11:09:21 +10001800 int id;
1801 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001802
Damien Millerb38eff82000-04-01 11:09:21 +10001803 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001804
Damien Millerb38eff82000-04-01 11:09:21 +10001805 id = packet_get_int();
1806 c = channel_lookup(id);
1807 if (c == NULL)
1808 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001809
1810 /*
1811 * Send a confirmation that we have closed the channel and no more
1812 * data is coming for it.
1813 */
Damien Miller95def091999-11-25 00:26:21 +11001814 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001815 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001816 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001817
Damien Miller5428f641999-11-25 11:54:57 +11001818 /*
1819 * If the channel is in closed state, we have sent a close request,
1820 * and the other side will eventually respond with a confirmation.
1821 * Thus, we cannot free the channel here, because then there would be
1822 * no-one to receive the confirmation. The channel gets freed when
1823 * the confirmation arrives.
1824 */
Damien Millerb38eff82000-04-01 11:09:21 +10001825 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001826 /*
1827 * Not a closed channel - mark it as draining, which will
1828 * cause it to be freed later.
1829 */
Damien Millerb38eff82000-04-01 11:09:21 +10001830 buffer_consume(&c->input, buffer_len(&c->input));
1831 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001832 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001833}
1834
Damien Millerb38eff82000-04-01 11:09:21 +10001835/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001836void
Damien Miller62cee002000-09-23 17:15:56 +11001837channel_input_oclose(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001838{
Damien Millerb38eff82000-04-01 11:09:21 +10001839 int id = packet_get_int();
1840 Channel *c = channel_lookup(id);
1841 packet_integrity_check(plen, 4, type);
1842 if (c == NULL)
1843 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1844 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845}
1846
Damien Miller4af51302000-04-16 11:18:38 +10001847void
Damien Miller62cee002000-09-23 17:15:56 +11001848channel_input_close_confirmation(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001849{
1850 int id = packet_get_int();
1851 Channel *c = channel_lookup(id);
1852
Damien Miller4af51302000-04-16 11:18:38 +10001853 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001854 if (c == NULL)
1855 packet_disconnect("Received close confirmation for "
1856 "out-of-range channel %d.", id);
1857 if (c->type != SSH_CHANNEL_CLOSED)
1858 packet_disconnect("Received close confirmation for "
1859 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001860 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001861}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001862
Damien Miller4af51302000-04-16 11:18:38 +10001863void
Damien Miller62cee002000-09-23 17:15:56 +11001864channel_input_open_confirmation(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865{
Damien Millerb38eff82000-04-01 11:09:21 +10001866 int id, remote_id;
1867 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001868
Damien Miller33b13562000-04-04 14:38:59 +10001869 if (!compat20)
1870 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871
Damien Millerb38eff82000-04-01 11:09:21 +10001872 id = packet_get_int();
1873 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001874
Damien Millerb38eff82000-04-01 11:09:21 +10001875 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1876 packet_disconnect("Received open confirmation for "
1877 "non-opening channel %d.", id);
1878 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001879 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001880 c->remote_id = remote_id;
1881 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001882
1883 if (compat20) {
1884 c->remote_window = packet_get_int();
1885 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001886 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001887 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001888 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001889 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001890 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001891 }
1892 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1893 c->remote_window, c->remote_maxpacket);
1894 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001895}
1896
Ben Lindstrombba81212001-06-25 05:01:22 +00001897static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001898reason2txt(int reason)
1899{
1900 switch(reason) {
1901 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1902 return "administratively prohibited";
1903 case SSH2_OPEN_CONNECT_FAILED:
1904 return "connect failed";
1905 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1906 return "unknown channel type";
1907 case SSH2_OPEN_RESOURCE_SHORTAGE:
1908 return "resource shortage";
1909 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001910 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001911}
1912
Damien Miller4af51302000-04-16 11:18:38 +10001913void
Damien Miller62cee002000-09-23 17:15:56 +11001914channel_input_open_failure(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001915{
Kevin Steves12057502001-02-05 14:54:34 +00001916 int id, reason;
1917 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001918 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919
Damien Miller33b13562000-04-04 14:38:59 +10001920 if (!compat20)
1921 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001922
1923 id = packet_get_int();
1924 c = channel_lookup(id);
1925
1926 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1927 packet_disconnect("Received open failure for "
1928 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001929 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001930 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001931 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001932 msg = packet_get_string(NULL);
1933 lang = packet_get_string(NULL);
1934 }
Damien Miller4af51302000-04-16 11:18:38 +10001935 packet_done();
Ben Lindstrom69128662001-05-08 20:07:39 +00001936 log("channel %d: open failed: %s%s%s", id,
1937 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001938 if (msg != NULL)
1939 xfree(msg);
1940 if (lang != NULL)
1941 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001942 }
Damien Miller95def091999-11-25 00:26:21 +11001943 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001944 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001945}
1946
Damien Miller33b13562000-04-04 14:38:59 +10001947void
Damien Miller62cee002000-09-23 17:15:56 +11001948channel_input_channel_request(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001949{
1950 int id;
1951 Channel *c;
1952
1953 id = packet_get_int();
1954 c = channel_lookup(id);
1955
1956 if (c == NULL ||
1957 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1958 packet_disconnect("Received request for "
1959 "non-open channel %d.", id);
1960 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001961 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001962 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001963 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001964 } else {
1965 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001966 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001967 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001968 xfree(service);
1969 }
1970}
1971
Damien Miller4af51302000-04-16 11:18:38 +10001972void
Damien Miller62cee002000-09-23 17:15:56 +11001973channel_input_window_adjust(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001974{
1975 Channel *c;
1976 int id, adjust;
1977
1978 if (!compat20)
1979 return;
1980
1981 /* Get the channel number and verify it. */
1982 id = packet_get_int();
1983 c = channel_lookup(id);
1984
1985 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1986 log("Received window adjust for "
1987 "non-open channel %d.", id);
1988 return;
1989 }
1990 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001991 packet_done();
Damien Millerd3444942000-09-30 14:20:03 +11001992 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001993 c->remote_window += adjust;
1994}
1995
Damien Miller4af51302000-04-16 11:18:38 +10001996void
Ben Lindstrome9c99912001-06-09 00:41:05 +00001997channel_input_port_open(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001998{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001999 Channel *c = NULL;
2000 u_short host_port;
2001 char *host, *originator_string;
2002 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002003
Ben Lindstrome9c99912001-06-09 00:41:05 +00002004 remote_id = packet_get_int();
2005 host = packet_get_string(NULL);
2006 host_port = packet_get_int();
2007
2008 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2009 originator_string = packet_get_string(NULL);
2010 } else {
2011 originator_string = xstrdup("unknown (remote did not supply name)");
2012 }
2013 packet_done();
2014 sock = channel_connect_to(host, host_port);
2015 if (sock != -1) {
2016 c = channel_new("connected socket",
2017 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2018 originator_string, 1);
2019 if (c == NULL) {
2020 error("channel_input_port_open: channel_new failed");
2021 close(sock);
2022 } else {
2023 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11002024 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002025 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002026 if (c == NULL) {
2027 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2028 packet_put_int(remote_id);
2029 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002030 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002031 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002032}
2033
2034
Ben Lindstrome9c99912001-06-09 00:41:05 +00002035/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002036
Damien Miller5428f641999-11-25 11:54:57 +11002037/*
2038 * Initiate forwarding of connections to local port "port" through the secure
2039 * channel to host:port from remote side.
2040 */
Kevin Steves12057502001-02-05 14:54:34 +00002041int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002042channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
2043 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002044{
Kevin Steves12057502001-02-05 14:54:34 +00002045 return channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002046 NULL, listen_port,
2047 host_to_connect, port_to_connect,
2048 gateway_ports, /*remote_fwd*/ 0);
2049}
2050
2051/*
2052 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
2053 * (SSH_CHANNEL_RPORT_LISTENER).
2054 */
Kevin Steves12057502001-02-05 14:54:34 +00002055int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002056channel_request_forwarding(
2057 const char *listen_address, u_short listen_port,
2058 const char *host_to_connect, u_short port_to_connect,
2059 int gateway_ports, int remote_fwd)
2060{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002061 Channel *c;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002062 int success, sock, on = 1, type;
Damien Miller34132e52000-01-14 15:45:46 +11002063 struct addrinfo hints, *ai, *aitop;
2064 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11002065 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11002066 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002067
Kevin Steves12057502001-02-05 14:54:34 +00002068 success = 0;
2069
Damien Miller0bc1bd82000-11-13 22:57:25 +11002070 if (remote_fwd) {
2071 host = listen_address;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002072 type = SSH_CHANNEL_RPORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002073 } else {
2074 host = host_to_connect;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002075 type = SSH_CHANNEL_PORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002076 }
2077
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002078 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002079 error("Forward host name too long.");
2080 return success;
2081 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002082
Damien Miller0bc1bd82000-11-13 22:57:25 +11002083 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11002084 /*
Damien Miller34132e52000-01-14 15:45:46 +11002085 * getaddrinfo returns a loopback address if the hostname is
2086 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002087 */
Damien Miller34132e52000-01-14 15:45:46 +11002088 memset(&hints, 0, sizeof(hints));
2089 hints.ai_family = IPv4or6;
2090 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2091 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002092 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002093 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2094 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002095
Damien Miller34132e52000-01-14 15:45:46 +11002096 for (ai = aitop; ai; ai = ai->ai_next) {
2097 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2098 continue;
2099 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2100 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11002101 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002102 continue;
2103 }
2104 /* Create a port to listen for the host. */
2105 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2106 if (sock < 0) {
2107 /* this is no error since kernel may not support ipv6 */
2108 verbose("socket: %.100s", strerror(errno));
2109 continue;
2110 }
2111 /*
2112 * Set socket options. We would like the socket to disappear
2113 * as soon as it has been closed for whatever reason.
2114 */
2115 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2116 linger.l_onoff = 1;
2117 linger.l_linger = 5;
2118 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2119 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002120
Damien Miller34132e52000-01-14 15:45:46 +11002121 /* Bind the socket to the address. */
2122 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2123 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002124 if (!ai->ai_next)
2125 error("bind: %.100s", strerror(errno));
2126 else
2127 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002128
Damien Miller34132e52000-01-14 15:45:46 +11002129 close(sock);
2130 continue;
2131 }
2132 /* Start listening for connections on the socket. */
2133 if (listen(sock, 5) < 0) {
2134 error("listen: %.100s", strerror(errno));
2135 close(sock);
2136 continue;
2137 }
2138 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002139 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002140 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002141 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002142 if (c == NULL) {
2143 error("channel_request_forwarding: channel_new failed");
2144 close(sock);
2145 continue;
2146 }
2147 strlcpy(c->path, host, sizeof(c->path));
2148 c->host_port = port_to_connect;
2149 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002150 success = 1;
2151 }
2152 if (success == 0)
Kevin Steves12057502001-02-05 14:54:34 +00002153 error("channel_request_forwarding: cannot listen to port: %d",
2154 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002155 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002156 return success;
Damien Miller95def091999-11-25 00:26:21 +11002157}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002158
Damien Miller5428f641999-11-25 11:54:57 +11002159/*
2160 * Initiate forwarding of connections to port "port" on remote host through
2161 * the secure channel to host:port from local side.
2162 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
Damien Miller4af51302000-04-16 11:18:38 +10002164void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002165channel_request_remote_forwarding(u_short listen_port,
2166 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167{
Damien Miller0bc1bd82000-11-13 22:57:25 +11002168 int payload_len, type, success = 0;
2169
Damien Miller95def091999-11-25 00:26:21 +11002170 /* Record locally that connection to this host/port is permitted. */
2171 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2172 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173
Damien Miller95def091999-11-25 00:26:21 +11002174 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002175 if (compat20) {
2176 const char *address_to_bind = "0.0.0.0";
2177 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2178 packet_put_cstring("tcpip-forward");
2179 packet_put_char(0); /* boolean: want reply */
2180 packet_put_cstring(address_to_bind);
2181 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002182 packet_send();
2183 packet_write_wait();
2184 /* Assume that server accepts the request */
2185 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002186 } else {
2187 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002188 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002189 packet_put_cstring(host_to_connect);
2190 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002191 packet_send();
2192 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002193
2194 /* Wait for response from the remote side. */
2195 type = packet_read(&payload_len);
2196 switch (type) {
2197 case SSH_SMSG_SUCCESS:
2198 success = 1;
2199 break;
2200 case SSH_SMSG_FAILURE:
2201 log("Warning: Server denied remote port forwarding.");
2202 break;
2203 default:
2204 /* Unknown packet */
2205 packet_disconnect("Protocol error for port forward request:"
2206 "received packet type %d.", type);
2207 }
2208 }
2209 if (success) {
2210 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2211 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2212 permitted_opens[num_permitted_opens].listen_port = listen_port;
2213 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002214 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002215}
2216
Damien Miller5428f641999-11-25 11:54:57 +11002217/*
2218 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2219 * listening for the port, and sends back a success reply (or disconnect
2220 * message if there was an error). This never returns if there was an error.
2221 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222
Damien Miller4af51302000-04-16 11:18:38 +10002223void
Damien Millere247cc42000-05-07 12:03:14 +10002224channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002225{
Damien Milleraae6c611999-12-06 11:47:28 +11002226 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002227 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002228
Damien Miller95def091999-11-25 00:26:21 +11002229 /* Get arguments from the packet. */
2230 port = packet_get_int();
2231 hostname = packet_get_string(NULL);
2232 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233
Damien Millerbac2d8a2000-09-05 16:13:06 +11002234#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002235 /*
2236 * Check that an unprivileged user is not trying to forward a
2237 * privileged port.
2238 */
Damien Miller95def091999-11-25 00:26:21 +11002239 if (port < IPPORT_RESERVED && !is_root)
2240 packet_disconnect("Requested forwarding of port %d but user is not root.",
2241 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002242#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002243 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10002244 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002245
2246 /* Free the argument string. */
2247 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248}
2249
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002250/*
2251 * Permits opening to any host/port if permitted_opens[] is empty. This is
2252 * usually called by the server, because the user could connect to any port
2253 * anyway, and the server has no way to know but to trust the client anyway.
2254 */
2255void
2256channel_permit_all_opens()
2257{
2258 if (num_permitted_opens == 0)
2259 all_opens_permitted = 1;
2260}
2261
Ben Lindstroma3700052001-04-05 23:26:32 +00002262void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002263channel_add_permitted_opens(char *host, int port)
2264{
2265 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2266 fatal("channel_request_remote_forwarding: too many forwards");
2267 debug("allow port forwarding to host %s port %d", host, port);
2268
2269 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2270 permitted_opens[num_permitted_opens].port_to_connect = port;
2271 num_permitted_opens++;
2272
2273 all_opens_permitted = 0;
2274}
2275
Ben Lindstroma3700052001-04-05 23:26:32 +00002276void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002277channel_clear_permitted_opens(void)
2278{
2279 int i;
2280
2281 for (i = 0; i < num_permitted_opens; i++)
2282 xfree(permitted_opens[i].host_to_connect);
2283 num_permitted_opens = 0;
2284
2285}
2286
2287
2288/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002289static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002290connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002291{
Damien Miller34132e52000-01-14 15:45:46 +11002292 struct addrinfo hints, *ai, *aitop;
2293 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2294 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002295 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002296
Damien Miller34132e52000-01-14 15:45:46 +11002297 memset(&hints, 0, sizeof(hints));
2298 hints.ai_family = IPv4or6;
2299 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002300 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002301 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002302 error("connect_to %.100s: unknown host (%s)", host,
2303 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002304 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002305 }
Damien Miller34132e52000-01-14 15:45:46 +11002306 for (ai = aitop; ai; ai = ai->ai_next) {
2307 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2308 continue;
2309 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2310 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002311 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002312 continue;
2313 }
Damien Miller34132e52000-01-14 15:45:46 +11002314 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2315 if (sock < 0) {
2316 error("socket: %.100s", strerror(errno));
2317 continue;
2318 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002319 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002320 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002321 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2322 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002323 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002324 strerror(errno));
2325 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002326 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002327 }
2328 break; /* success */
2329
2330 }
2331 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002332 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002333 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002334 return -1;
2335 }
2336 /* success */
2337 return sock;
2338}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002339
Damien Miller0bc1bd82000-11-13 22:57:25 +11002340int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002341channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002342{
2343 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002344
Damien Miller0bc1bd82000-11-13 22:57:25 +11002345 for (i = 0; i < num_permitted_opens; i++)
2346 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002347 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002348 permitted_opens[i].host_to_connect,
2349 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002350 error("WARNING: Server requests forwarding for unknown listen_port %d",
2351 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002352 return -1;
2353}
Damien Millerb38eff82000-04-01 11:09:21 +10002354
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002355/* Check if connecting to that port is permitted and connect. */
2356int
2357channel_connect_to(const char *host, u_short port)
2358{
2359 int i, permit;
2360
2361 permit = all_opens_permitted;
2362 if (!permit) {
2363 for (i = 0; i < num_permitted_opens; i++)
2364 if (permitted_opens[i].port_to_connect == port &&
2365 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2366 permit = 1;
2367
2368 }
2369 if (!permit) {
2370 log("Received request to connect to host %.100s port %d, "
2371 "but the request was denied.", host, port);
2372 return -1;
2373 }
2374 return connect_to(host, port);
2375}
2376
Ben Lindstrome9c99912001-06-09 00:41:05 +00002377/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002378
Damien Miller5428f641999-11-25 11:54:57 +11002379/*
2380 * Creates an internet domain socket for listening for X11 connections.
2381 * Returns a suitable value for the DISPLAY variable, or NULL if an error
2382 * occurs.
2383 */
Damien Miller95def091999-11-25 00:26:21 +11002384char *
Damien Millera34a28b1999-12-14 10:47:15 +11002385x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002386{
Damien Milleraae6c611999-12-06 11:47:28 +11002387 int display_number, sock;
2388 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002389 struct addrinfo hints, *ai, *aitop;
2390 char strport[NI_MAXSERV];
2391 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
2392 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11002393 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002394
Damien Millera34a28b1999-12-14 10:47:15 +11002395 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11002396 display_number < MAX_DISPLAYS;
2397 display_number++) {
2398 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002399 memset(&hints, 0, sizeof(hints));
2400 hints.ai_family = IPv4or6;
2401 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
2402 hints.ai_socktype = SOCK_STREAM;
2403 snprintf(strport, sizeof strport, "%d", port);
2404 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2405 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11002406 return NULL;
2407 }
Damien Miller34132e52000-01-14 15:45:46 +11002408 for (ai = aitop; ai; ai = ai->ai_next) {
2409 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2410 continue;
2411 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2412 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002413 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002414 error("socket: %.100s", strerror(errno));
2415 return NULL;
2416 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002417 debug("x11_create_display_inet: Socket family %d not supported",
2418 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002419 continue;
2420 }
Damien Miller34132e52000-01-14 15:45:46 +11002421 }
2422 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2423 debug("bind port %d: %.100s", port, strerror(errno));
2424 shutdown(sock, SHUT_RDWR);
2425 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002426
2427 if (ai->ai_next)
2428 continue;
2429
Damien Miller34132e52000-01-14 15:45:46 +11002430 for (n = 0; n < num_socks; n++) {
2431 shutdown(socks[n], SHUT_RDWR);
2432 close(socks[n]);
2433 }
2434 num_socks = 0;
2435 break;
2436 }
2437 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002438#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002439 if (num_socks == NUM_SOCKS)
2440 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002441#else
2442 break;
2443#endif
Damien Miller95def091999-11-25 00:26:21 +11002444 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002445 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002446 if (num_socks > 0)
2447 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002448 }
Damien Miller95def091999-11-25 00:26:21 +11002449 if (display_number >= MAX_DISPLAYS) {
2450 error("Failed to allocate internet-domain X11 display socket.");
2451 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002452 }
Damien Miller95def091999-11-25 00:26:21 +11002453 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002454 for (n = 0; n < num_socks; n++) {
2455 sock = socks[n];
2456 if (listen(sock, 5) < 0) {
2457 error("listen: %.100s", strerror(errno));
2458 shutdown(sock, SHUT_RDWR);
2459 close(sock);
2460 return NULL;
2461 }
Damien Miller95def091999-11-25 00:26:21 +11002462 }
Damien Miller34132e52000-01-14 15:45:46 +11002463
Damien Miller95def091999-11-25 00:26:21 +11002464 /* Set up a suitable value for the DISPLAY variable. */
2465 if (gethostname(hostname, sizeof(hostname)) < 0)
2466 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11002467
2468#ifdef IPADDR_IN_DISPLAY
Kevin Stevesef4eea92001-02-05 12:42:17 +00002469 /*
Damien Miller76112de1999-12-21 11:18:08 +11002470 * HPUX detects the local hostname in the DISPLAY variable and tries
2471 * to set up a shared memory connection to the server, which it
2472 * incorrectly supposes to be local.
2473 *
2474 * The workaround - as used in later $$H and other programs - is
2475 * is to set display to the host's IP address.
2476 */
2477 {
2478 struct hostent *he;
2479 struct in_addr my_addr;
2480
2481 he = gethostbyname(hostname);
2482 if (he == NULL) {
2483 error("[X11-broken-fwd-hostname-workaround] Could not get "
2484 "IP address for hostname %s.", hostname);
2485
2486 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
2487 "Could not get IP address for hostname %s.", hostname);
2488
2489 shutdown(sock, SHUT_RDWR);
2490 close(sock);
2491
2492 return NULL;
2493 }
2494
2495 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2496
2497 /* Set DISPLAY to <ip address>:screen.display */
Kevin Stevesef4eea92001-02-05 12:42:17 +00002498 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Kevin Stevesda6cd592000-12-29 18:41:21 +00002499 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11002500 }
2501#else /* IPADDR_IN_DISPLAY */
2502 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11002503 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Kevin Stevesda6cd592000-12-29 18:41:21 +00002504 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11002505#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506
Damien Miller34132e52000-01-14 15:45:46 +11002507 /* Allocate a channel for each socket. */
2508 for (n = 0; n < num_socks; n++) {
2509 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10002510 (void) channel_new("x11 listener",
2511 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2512 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002513 0, xstrdup("X11 inet listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11002514 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002515
Damien Miller95def091999-11-25 00:26:21 +11002516 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11002517 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002518}
2519
2520#ifndef X_UNIX_PATH
2521#define X_UNIX_PATH "/tmp/.X11-unix/X"
2522#endif
2523
Ben Lindstrombba81212001-06-25 05:01:22 +00002524static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002525connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002526{
Damien Miller95def091999-11-25 00:26:21 +11002527 static const char *const x_sockets[] = {
2528 X_UNIX_PATH "%u",
2529 "/var/X/.X11-unix/X" "%u",
2530 "/usr/spool/sockets/X11/" "%u",
2531 NULL
2532 };
2533 int sock;
2534 struct sockaddr_un addr;
2535 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002536
Damien Miller95def091999-11-25 00:26:21 +11002537 for (path = x_sockets; *path; ++path) {
2538 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2539 if (sock < 0)
2540 error("socket: %.100s", strerror(errno));
2541 memset(&addr, 0, sizeof(addr));
2542 addr.sun_family = AF_UNIX;
2543 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
2544 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2545 return sock;
2546 close(sock);
2547 }
2548 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2549 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002550}
2551
Damien Millerbd483e72000-04-30 10:00:53 +10002552int
2553x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002554{
Damien Millerbd483e72000-04-30 10:00:53 +10002555 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002556 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002557 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002558 struct addrinfo hints, *ai, *aitop;
2559 char strport[NI_MAXSERV];
2560 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002561
Damien Miller95def091999-11-25 00:26:21 +11002562 /* Try to open a socket for the local X server. */
2563 display = getenv("DISPLAY");
2564 if (!display) {
2565 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002566 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002567 }
Damien Miller5428f641999-11-25 11:54:57 +11002568 /*
2569 * Now we decode the value of the DISPLAY variable and make a
2570 * connection to the real X server.
2571 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002572
Damien Miller5428f641999-11-25 11:54:57 +11002573 /*
2574 * Check if it is a unix domain socket. Unix domain displays are in
2575 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2576 */
Damien Miller95def091999-11-25 00:26:21 +11002577 if (strncmp(display, "unix:", 5) == 0 ||
2578 display[0] == ':') {
2579 /* Connect to the unix domain socket. */
2580 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2581 error("Could not parse display number from DISPLAY: %.100s",
2582 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002583 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002584 }
2585 /* Create a socket. */
2586 sock = connect_local_xsocket(display_number);
2587 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002588 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002589
2590 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002591 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002592 }
Damien Miller5428f641999-11-25 11:54:57 +11002593 /*
2594 * Connect to an inet socket. The DISPLAY value is supposedly
2595 * hostname:d[.s], where hostname may also be numeric IP address.
2596 */
Damien Miller95def091999-11-25 00:26:21 +11002597 strncpy(buf, display, sizeof(buf));
2598 buf[sizeof(buf) - 1] = 0;
2599 cp = strchr(buf, ':');
2600 if (!cp) {
2601 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002602 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002603 }
Damien Miller95def091999-11-25 00:26:21 +11002604 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002605 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002606 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2607 error("Could not parse display number from DISPLAY: %.100s",
2608 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002609 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002610 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002611
Damien Miller34132e52000-01-14 15:45:46 +11002612 /* Look up the host address */
2613 memset(&hints, 0, sizeof(hints));
2614 hints.ai_family = IPv4or6;
2615 hints.ai_socktype = SOCK_STREAM;
2616 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2617 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2618 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002619 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002620 }
Damien Miller34132e52000-01-14 15:45:46 +11002621 for (ai = aitop; ai; ai = ai->ai_next) {
2622 /* Create a socket. */
2623 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2624 if (sock < 0) {
2625 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002626 continue;
2627 }
2628 /* Connect it to the display. */
2629 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2630 debug("connect %.100s port %d: %.100s", buf,
2631 6000 + display_number, strerror(errno));
2632 close(sock);
2633 continue;
2634 }
2635 /* Success */
2636 break;
Damien Miller34132e52000-01-14 15:45:46 +11002637 }
Damien Miller34132e52000-01-14 15:45:46 +11002638 freeaddrinfo(aitop);
2639 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002640 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002641 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002642 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002643 }
Damien Millerbd483e72000-04-30 10:00:53 +10002644 return sock;
2645}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002646
Damien Millerbd483e72000-04-30 10:00:53 +10002647/*
2648 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2649 * the remote channel number. We should do whatever we want, and respond
2650 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2651 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002652
Damien Millerbd483e72000-04-30 10:00:53 +10002653void
Damien Miller62cee002000-09-23 17:15:56 +11002654x11_input_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002655{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002656 Channel *c = NULL;
2657 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002658 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002659
2660 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002661
2662 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002663
2664 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002665 remote_host = packet_get_string(NULL);
2666 } else {
2667 remote_host = xstrdup("unknown (remote did not supply name)");
2668 }
2669 packet_done();
Damien Millerbd483e72000-04-30 10:00:53 +10002670
2671 /* Obtain a connection to the real X display. */
2672 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002673 if (sock != -1) {
2674 /* Allocate a channel for this connection. */
2675 c = channel_new("connected x11 socket",
2676 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2677 remote_host, 1);
2678 if (c == NULL) {
2679 error("x11_input_open: channel_new failed");
2680 close(sock);
2681 } else {
2682 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002683 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002684 }
2685 }
2686 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002687 /* Send refusal to the remote host. */
2688 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002689 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002690 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002691 /* Send a confirmation to the remote host. */
2692 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002693 packet_put_int(remote_id);
2694 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002695 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002696 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002697}
2698
Damien Miller69b69aa2000-10-28 14:19:58 +11002699/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2700void
2701deny_input_open(int type, int plen, void *ctxt)
2702{
2703 int rchan = packet_get_int();
2704 switch(type){
2705 case SSH_SMSG_AGENT_OPEN:
2706 error("Warning: ssh server tried agent forwarding.");
2707 break;
2708 case SSH_SMSG_X11_OPEN:
2709 error("Warning: ssh server tried X11 forwarding.");
2710 break;
2711 default:
2712 error("deny_input_open: type %d plen %d", type, plen);
2713 break;
2714 }
2715 error("Warning: this is probably a break in attempt by a malicious server.");
2716 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2717 packet_put_int(rchan);
2718 packet_send();
2719}
2720
Damien Miller5428f641999-11-25 11:54:57 +11002721/*
2722 * Requests forwarding of X11 connections, generates fake authentication
2723 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002724 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002725 */
Damien Miller4af51302000-04-16 11:18:38 +10002726void
Damien Millerbd483e72000-04-30 10:00:53 +10002727x11_request_forwarding_with_spoofing(int client_session_id,
2728 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002729{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002730 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002731 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002732 char *new_data;
2733 int screen_number;
2734 const char *cp;
2735 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002736
Damien Miller95def091999-11-25 00:26:21 +11002737 cp = getenv("DISPLAY");
2738 if (cp)
2739 cp = strchr(cp, ':');
2740 if (cp)
2741 cp = strchr(cp, '.');
2742 if (cp)
2743 screen_number = atoi(cp + 1);
2744 else
2745 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002746
Damien Miller95def091999-11-25 00:26:21 +11002747 /* Save protocol name. */
2748 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002749
Damien Miller5428f641999-11-25 11:54:57 +11002750 /*
2751 * Extract real authentication data and generate fake data of the
2752 * same length.
2753 */
Damien Miller95def091999-11-25 00:26:21 +11002754 x11_saved_data = xmalloc(data_len);
2755 x11_fake_data = xmalloc(data_len);
2756 for (i = 0; i < data_len; i++) {
2757 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2758 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2759 if (i % 4 == 0)
2760 rand = arc4random();
2761 x11_saved_data[i] = value;
2762 x11_fake_data[i] = rand & 0xff;
2763 rand >>= 8;
2764 }
2765 x11_saved_data_len = data_len;
2766 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002767
Damien Miller95def091999-11-25 00:26:21 +11002768 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002769 len = 2 * data_len + 1;
2770 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002771 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002772 snprintf(new_data + 2 * i, len - 2 * i,
2773 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002774
Damien Miller95def091999-11-25 00:26:21 +11002775 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002776 if (compat20) {
2777 channel_request_start(client_session_id, "x11-req", 0);
2778 packet_put_char(0); /* XXX bool single connection */
2779 } else {
2780 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2781 }
2782 packet_put_cstring(proto);
2783 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002784 packet_put_int(screen_number);
2785 packet_send();
2786 packet_write_wait();
2787 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002788}
2789
Ben Lindstrome9c99912001-06-09 00:41:05 +00002790
2791/* -- agent forwarding */
2792
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793/* Sends a message to the server to request authentication fd forwarding. */
2794
Damien Miller4af51302000-04-16 11:18:38 +10002795void
Damien Miller95def091999-11-25 00:26:21 +11002796auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002797{
Damien Miller95def091999-11-25 00:26:21 +11002798 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2799 packet_send();
2800 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002801}
2802
Damien Miller5428f641999-11-25 11:54:57 +11002803/*
2804 * Returns the name of the forwarded authentication socket. Returns NULL if
2805 * there is no forwarded authentication socket. The returned value points to
2806 * a static buffer.
2807 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002808
Damien Miller95def091999-11-25 00:26:21 +11002809char *
2810auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002811{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002812 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002813}
2814
2815/* removes the agent forwarding socket */
2816
Damien Miller4af51302000-04-16 11:18:38 +10002817void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002818auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002819{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002820 struct passwd *pw = _pw;
2821
Ben Lindstrom838394c2001-06-09 01:11:59 +00002822 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002823 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002824 unlink(auth_sock_name);
2825 rmdir(auth_sock_dir);
2826 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002827 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002828 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002829}
2830
Damien Miller5428f641999-11-25 11:54:57 +11002831/*
Damien Millerd3a18572000-06-07 19:55:44 +10002832 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002833 * This starts forwarding authentication requests.
2834 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002835
Damien Millerd3a18572000-06-07 19:55:44 +10002836int
Damien Miller95def091999-11-25 00:26:21 +11002837auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002838{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002839 Channel *nc;
2840 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002841 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002842
Ben Lindstrome9c99912001-06-09 00:41:05 +00002843 if (auth_get_socket_name() != NULL) {
2844 error("authentication forwarding requested twice.");
2845 return 0;
2846 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002847
Damien Miller95def091999-11-25 00:26:21 +11002848 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002849 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002850
Damien Miller95def091999-11-25 00:26:21 +11002851 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002852 auth_sock_name = xmalloc(MAXPATHLEN);
2853 auth_sock_dir = xmalloc(MAXPATHLEN);
2854 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002855
Damien Miller95def091999-11-25 00:26:21 +11002856 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002857 if (mkdtemp(auth_sock_dir) == NULL) {
2858 packet_send_debug("Agent forwarding disabled: "
2859 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002860 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002861 xfree(auth_sock_name);
2862 xfree(auth_sock_dir);
2863 auth_sock_name = NULL;
2864 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002865 return 0;
2866 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002867 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2868 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002869
Ben Lindstrom838394c2001-06-09 01:11:59 +00002870 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002871 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002872
Damien Miller95def091999-11-25 00:26:21 +11002873 /* Create the socket. */
2874 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2875 if (sock < 0)
2876 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002877
Damien Miller95def091999-11-25 00:26:21 +11002878 /* Bind it to the name. */
2879 memset(&sunaddr, 0, sizeof(sunaddr));
2880 sunaddr.sun_family = AF_UNIX;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002881 strncpy(sunaddr.sun_path, auth_sock_name,
Damien Miller95def091999-11-25 00:26:21 +11002882 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002883
Damien Miller95def091999-11-25 00:26:21 +11002884 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2885 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002886
Damien Miller95def091999-11-25 00:26:21 +11002887 /* Restore the privileged uid. */
2888 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002889
Damien Miller95def091999-11-25 00:26:21 +11002890 /* Start listening on the socket. */
2891 if (listen(sock, 5) < 0)
2892 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002893
Damien Miller95def091999-11-25 00:26:21 +11002894 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002895 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002896 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2897 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2898 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002899 if (nc == NULL) {
2900 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002901 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002902 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002903 close(sock);
2904 return 0;
2905 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002906 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002907 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002908}
2909
2910/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2911
Damien Miller4af51302000-04-16 11:18:38 +10002912void
Damien Miller62cee002000-09-23 17:15:56 +11002913auth_input_open_request(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002914{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002915 Channel *c = NULL;
2916 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002917 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002918
Damien Millerb38eff82000-04-01 11:09:21 +10002919 packet_integrity_check(plen, 4, type);
2920
Damien Miller95def091999-11-25 00:26:21 +11002921 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002922 remote_id = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002923
Damien Miller5428f641999-11-25 11:54:57 +11002924 /*
2925 * Get a connection to the local authentication agent (this may again
2926 * get forwarded).
2927 */
Damien Miller95def091999-11-25 00:26:21 +11002928 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002929
Damien Miller5428f641999-11-25 11:54:57 +11002930 /*
2931 * If we could not connect the agent, send an error message back to
2932 * the server. This should never happen unless the agent dies,
2933 * because authentication forwarding is only enabled if we have an
2934 * agent.
2935 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002936 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002937 name = xstrdup("authentication agent connection");
2938 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2939 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002940 if (c == NULL) {
2941 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002942 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002943 close(sock);
2944 } else {
2945 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002946 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002947 }
Damien Miller95def091999-11-25 00:26:21 +11002948 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002949 if (c == NULL) {
2950 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2951 packet_put_int(remote_id);
2952 } else {
2953 /* Send a confirmation to the remote host. */
2954 debug("Forwarding authentication connection.");
2955 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2956 packet_put_int(remote_id);
2957 packet_put_int(c->self);
2958 }
Damien Miller95def091999-11-25 00:26:21 +11002959 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002960}