blob: 35edff6dcc624e88fa911d3ed97134dfe80e9a13 [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 Lindstrom809744e2001-07-04 05:26:06 +000042RCSID("$OpenBSD: channels.c,v 1.131 2001/07/02 22:52:56 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 Lindstrom809744e2001-07-04 05:26:06 +0000263 c->detach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000264 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100265 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000266 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000268
269/* Close all channel fd/socket. */
270
Ben Lindstrombba81212001-06-25 05:01:22 +0000271static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000272channel_close_fds(Channel *c)
273{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000274 debug3("channel_close_fds: channel %d: r %d w %d e %d",
275 c->self, c->rfd, c->wfd, c->efd);
276
Damien Miller6f83b8e2000-05-02 09:23:45 +1000277 if (c->sock != -1) {
278 close(c->sock);
279 c->sock = -1;
280 }
281 if (c->rfd != -1) {
282 close(c->rfd);
283 c->rfd = -1;
284 }
285 if (c->wfd != -1) {
286 close(c->wfd);
287 c->wfd = -1;
288 }
289 if (c->efd != -1) {
290 close(c->efd);
291 c->efd = -1;
292 }
293}
294
295/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller4af51302000-04-16 11:18:38 +1000297void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000298channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000300 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000301 int i, n;
302
303 for (n = 0, i = 0; i < channels_alloc; i++)
304 if (channels[i])
305 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000306 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000307 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000308
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000309 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000310 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000311 xfree(s);
312
Ben Lindstrom809744e2001-07-04 05:26:06 +0000313 if (c->detach_user != NULL) {
314 debug("channel_free: channel %d: detaching channel user", c->self);
315 c->detach_user(c->self, NULL);
Damien Miller33b13562000-04-04 14:38:59 +1000316 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000317 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000318 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000319 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000320 buffer_free(&c->input);
321 buffer_free(&c->output);
322 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000323 if (c->remote_name) {
324 xfree(c->remote_name);
325 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100326 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000327 channels[c->self] = NULL;
328 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329}
330
Ben Lindstrome9c99912001-06-09 00:41:05 +0000331void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000332channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000333{
334 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000335
Ben Lindstrom601e4362001-06-21 03:19:23 +0000336 for (i = 0; i < channels_alloc; i++)
337 if (channels[i] != NULL)
338 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000339}
340
Ben Lindstrom809744e2001-07-04 05:26:06 +0000341void
342channel_detach_all(void)
343{
344 int i;
345 Channel *c;
346
347 for (i = 0; i < channels_alloc; i++) {
348 c = channels[i];
349 if (c != NULL && c->detach_user != NULL) {
350 debug("channel_detach_all: channel %d", c->self);
351 c->detach_user(c->self, NULL);
352 c->detach_user = NULL;
353 }
354 }
355}
356
Ben Lindstrome9c99912001-06-09 00:41:05 +0000357/*
358 * Closes the sockets/fds of all channels. This is used to close extra file
359 * descriptors after a fork.
360 */
361
362void
363channel_close_all()
364{
365 int i;
366
367 for (i = 0; i < channels_alloc; i++)
368 if (channels[i] != NULL)
369 channel_close_fds(channels[i]);
370}
371
372/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000373 * Stop listening to channels.
374 */
375
376void
377channel_stop_listening(void)
378{
379 int i;
380 Channel *c;
381
382 for (i = 0; i < channels_alloc; i++) {
383 c = channels[i];
384 if (c != NULL) {
385 switch (c->type) {
386 case SSH_CHANNEL_AUTH_SOCKET:
387 case SSH_CHANNEL_PORT_LISTENER:
388 case SSH_CHANNEL_RPORT_LISTENER:
389 case SSH_CHANNEL_X11_LISTENER:
390 close(c->sock);
391 channel_free(c);
392 break;
393 }
394 }
395 }
396}
397
398/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000399 * Returns true if no channel has too much buffered data, and false if one or
400 * more channel is overfull.
401 */
402
403int
404channel_not_very_much_buffered_data()
405{
406 u_int i;
407 Channel *c;
408
409 for (i = 0; i < channels_alloc; i++) {
410 c = channels[i];
411 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
412 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
413 debug("channel %d: big input buffer %d",
414 c->self, buffer_len(&c->input));
415 return 0;
416 }
417 if (buffer_len(&c->output) > packet_get_maxsize()) {
418 debug("channel %d: big output buffer %d",
419 c->self, buffer_len(&c->output));
420 return 0;
421 }
422 }
423 }
424 return 1;
425}
426
427/* Returns true if any channel is still open. */
428
429int
430channel_still_open()
431{
432 int i;
433 Channel *c;
434
435 for (i = 0; i < channels_alloc; i++) {
436 c = channels[i];
437 if (c == NULL)
438 continue;
439 switch (c->type) {
440 case SSH_CHANNEL_X11_LISTENER:
441 case SSH_CHANNEL_PORT_LISTENER:
442 case SSH_CHANNEL_RPORT_LISTENER:
443 case SSH_CHANNEL_CLOSED:
444 case SSH_CHANNEL_AUTH_SOCKET:
445 case SSH_CHANNEL_DYNAMIC:
446 case SSH_CHANNEL_CONNECTING:
447 case SSH_CHANNEL_ZOMBIE:
448 continue;
449 case SSH_CHANNEL_LARVAL:
450 if (!compat20)
451 fatal("cannot happen: SSH_CHANNEL_LARVAL");
452 continue;
453 case SSH_CHANNEL_OPENING:
454 case SSH_CHANNEL_OPEN:
455 case SSH_CHANNEL_X11_OPEN:
456 return 1;
457 case SSH_CHANNEL_INPUT_DRAINING:
458 case SSH_CHANNEL_OUTPUT_DRAINING:
459 if (!compat13)
460 fatal("cannot happen: OUT_DRAIN");
461 return 1;
462 default:
463 fatal("channel_still_open: bad channel type %d", c->type);
464 /* NOTREACHED */
465 }
466 }
467 return 0;
468}
469
470/* Returns the id of an open channel suitable for keepaliving */
471
472int
473channel_find_open()
474{
475 int i;
476 Channel *c;
477
478 for (i = 0; i < channels_alloc; i++) {
479 c = channels[i];
480 if (c == NULL)
481 continue;
482 switch (c->type) {
483 case SSH_CHANNEL_CLOSED:
484 case SSH_CHANNEL_DYNAMIC:
485 case SSH_CHANNEL_X11_LISTENER:
486 case SSH_CHANNEL_PORT_LISTENER:
487 case SSH_CHANNEL_RPORT_LISTENER:
488 case SSH_CHANNEL_OPENING:
489 case SSH_CHANNEL_CONNECTING:
490 case SSH_CHANNEL_ZOMBIE:
491 continue;
492 case SSH_CHANNEL_LARVAL:
493 case SSH_CHANNEL_AUTH_SOCKET:
494 case SSH_CHANNEL_OPEN:
495 case SSH_CHANNEL_X11_OPEN:
496 return i;
497 case SSH_CHANNEL_INPUT_DRAINING:
498 case SSH_CHANNEL_OUTPUT_DRAINING:
499 if (!compat13)
500 fatal("cannot happen: OUT_DRAIN");
501 return i;
502 default:
503 fatal("channel_find_open: bad channel type %d", c->type);
504 /* NOTREACHED */
505 }
506 }
507 return -1;
508}
509
510
511/*
512 * Returns a message describing the currently open forwarded connections,
513 * suitable for sending to the client. The message contains crlf pairs for
514 * newlines.
515 */
516
517char *
518channel_open_message()
519{
520 Buffer buffer;
521 Channel *c;
522 char buf[1024], *cp;
523 int i;
524
525 buffer_init(&buffer);
526 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
527 buffer_append(&buffer, buf, strlen(buf));
528 for (i = 0; i < channels_alloc; i++) {
529 c = channels[i];
530 if (c == NULL)
531 continue;
532 switch (c->type) {
533 case SSH_CHANNEL_X11_LISTENER:
534 case SSH_CHANNEL_PORT_LISTENER:
535 case SSH_CHANNEL_RPORT_LISTENER:
536 case SSH_CHANNEL_CLOSED:
537 case SSH_CHANNEL_AUTH_SOCKET:
538 case SSH_CHANNEL_ZOMBIE:
539 continue;
540 case SSH_CHANNEL_LARVAL:
541 case SSH_CHANNEL_OPENING:
542 case SSH_CHANNEL_CONNECTING:
543 case SSH_CHANNEL_DYNAMIC:
544 case SSH_CHANNEL_OPEN:
545 case SSH_CHANNEL_X11_OPEN:
546 case SSH_CHANNEL_INPUT_DRAINING:
547 case SSH_CHANNEL_OUTPUT_DRAINING:
548 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
549 c->self, c->remote_name,
550 c->type, c->remote_id,
551 c->istate, buffer_len(&c->input),
552 c->ostate, buffer_len(&c->output),
553 c->rfd, c->wfd);
554 buffer_append(&buffer, buf, strlen(buf));
555 continue;
556 default:
557 fatal("channel_open_message: bad channel type %d", c->type);
558 /* NOTREACHED */
559 }
560 }
561 buffer_append(&buffer, "\0", 1);
562 cp = xstrdup(buffer_ptr(&buffer));
563 buffer_free(&buffer);
564 return cp;
565}
566
567void
568channel_send_open(int id)
569{
570 Channel *c = channel_lookup(id);
571 if (c == NULL) {
572 log("channel_send_open: %d: bad id", id);
573 return;
574 }
575 debug("send channel open %d", id);
576 packet_start(SSH2_MSG_CHANNEL_OPEN);
577 packet_put_cstring(c->ctype);
578 packet_put_int(c->self);
579 packet_put_int(c->local_window);
580 packet_put_int(c->local_maxpacket);
581 packet_send();
582}
583
584void
585channel_request(int id, char *service, int wantconfirm)
586{
587 channel_request_start(id, service, wantconfirm);
588 packet_send();
589 debug("channel request %d: %s", id, service) ;
590}
591void
592channel_request_start(int id, char *service, int wantconfirm)
593{
594 Channel *c = channel_lookup(id);
595 if (c == NULL) {
596 log("channel_request: %d: bad id", id);
597 return;
598 }
599 packet_start(SSH2_MSG_CHANNEL_REQUEST);
600 packet_put_int(c->remote_id);
601 packet_put_cstring(service);
602 packet_put_char(wantconfirm);
603}
604void
605channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
606{
607 Channel *c = channel_lookup(id);
608 if (c == NULL) {
609 log("channel_register_callback: %d: bad id", id);
610 return;
611 }
612 c->cb_event = mtype;
613 c->cb_fn = fn;
614 c->cb_arg = arg;
615}
616void
617channel_register_cleanup(int id, channel_callback_fn *fn)
618{
619 Channel *c = channel_lookup(id);
620 if (c == NULL) {
621 log("channel_register_cleanup: %d: bad id", id);
622 return;
623 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000624 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625}
626void
627channel_cancel_cleanup(int id)
628{
629 Channel *c = channel_lookup(id);
630 if (c == NULL) {
631 log("channel_cancel_cleanup: %d: bad id", id);
632 return;
633 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000634 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000635}
636void
637channel_register_filter(int id, channel_filter_fn *fn)
638{
639 Channel *c = channel_lookup(id);
640 if (c == NULL) {
641 log("channel_register_filter: %d: bad id", id);
642 return;
643 }
644 c->input_filter = fn;
645}
646
647void
648channel_set_fds(int id, int rfd, int wfd, int efd,
649 int extusage, int nonblock)
650{
651 Channel *c = channel_lookup(id);
652 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
653 fatal("channel_activate for non-larval channel %d.", id);
654 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
655 c->type = SSH_CHANNEL_OPEN;
656 /* XXX window size? */
657 c->local_window = c->local_window_max = c->local_maxpacket * 2;
658 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
659 packet_put_int(c->remote_id);
660 packet_put_int(c->local_window);
661 packet_send();
662}
663
Damien Miller5428f641999-11-25 11:54:57 +1100664/*
Damien Millerb38eff82000-04-01 11:09:21 +1000665 * 'channel_pre*' are called just before select() to add any bits relevant to
666 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100667 */
Damien Millerb38eff82000-04-01 11:09:21 +1000668/*
669 * 'channel_post*': perform any appropriate operations for channels which
670 * have events pending.
671 */
672typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
673chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
674chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
675
Ben Lindstrombba81212001-06-25 05:01:22 +0000676static void
Damien Millerb38eff82000-04-01 11:09:21 +1000677channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
678{
679 FD_SET(c->sock, readset);
680}
681
Ben Lindstrombba81212001-06-25 05:01:22 +0000682static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000683channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
684{
685 debug3("channel %d: waiting for connection", c->self);
686 FD_SET(c->sock, writeset);
687}
688
Ben Lindstrombba81212001-06-25 05:01:22 +0000689static void
Damien Millerb38eff82000-04-01 11:09:21 +1000690channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
691{
692 if (buffer_len(&c->input) < packet_get_maxsize())
693 FD_SET(c->sock, readset);
694 if (buffer_len(&c->output) > 0)
695 FD_SET(c->sock, writeset);
696}
697
Ben Lindstrombba81212001-06-25 05:01:22 +0000698static void
Damien Millerb38eff82000-04-01 11:09:21 +1000699channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
700{
701 /* test whether sockets are 'alive' for read/write */
702 if (c->istate == CHAN_INPUT_OPEN)
703 if (buffer_len(&c->input) < packet_get_maxsize())
704 FD_SET(c->sock, readset);
705 if (c->ostate == CHAN_OUTPUT_OPEN ||
706 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
707 if (buffer_len(&c->output) > 0) {
708 FD_SET(c->sock, writeset);
709 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
710 chan_obuf_empty(c);
711 }
712 }
713}
714
Ben Lindstrombba81212001-06-25 05:01:22 +0000715static void
Damien Miller33b13562000-04-04 14:38:59 +1000716channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
717{
718 if (c->istate == CHAN_INPUT_OPEN &&
719 c->remote_window > 0 &&
720 buffer_len(&c->input) < c->remote_window)
721 FD_SET(c->rfd, readset);
722 if (c->ostate == CHAN_OUTPUT_OPEN ||
723 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
724 if (buffer_len(&c->output) > 0) {
725 FD_SET(c->wfd, writeset);
726 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
727 chan_obuf_empty(c);
728 }
729 }
730 /** XXX check close conditions, too */
731 if (c->efd != -1) {
732 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
733 buffer_len(&c->extended) > 0)
734 FD_SET(c->efd, writeset);
735 else if (c->extended_usage == CHAN_EXTENDED_READ &&
736 buffer_len(&c->extended) < c->remote_window)
737 FD_SET(c->efd, readset);
738 }
739}
740
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static void
Damien Millerb38eff82000-04-01 11:09:21 +1000742channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
743{
744 if (buffer_len(&c->input) == 0) {
745 packet_start(SSH_MSG_CHANNEL_CLOSE);
746 packet_put_int(c->remote_id);
747 packet_send();
748 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000749 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000750 }
751}
752
Ben Lindstrombba81212001-06-25 05:01:22 +0000753static void
Damien Millerb38eff82000-04-01 11:09:21 +1000754channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
755{
756 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000757 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000758 else
Damien Millerb38eff82000-04-01 11:09:21 +1000759 FD_SET(c->sock, writeset);
760}
761
762/*
763 * This is a special state for X11 authentication spoofing. An opened X11
764 * connection (when authentication spoofing is being done) remains in this
765 * state until the first packet has been completely read. The authentication
766 * data in that packet is then substituted by the real data if it matches the
767 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000768 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000770 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000771static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000772x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000773{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000774 u_char *ucp;
775 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000776
777 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000778 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000779 return 0;
780
781 /* Parse the lengths of variable-length fields. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000782 ucp = (u_char *) buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000783 if (ucp[0] == 0x42) { /* Byte order MSB first. */
784 proto_len = 256 * ucp[6] + ucp[7];
785 data_len = 256 * ucp[8] + ucp[9];
786 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
787 proto_len = ucp[6] + 256 * ucp[7];
788 data_len = ucp[8] + 256 * ucp[9];
789 } else {
790 debug("Initial X11 packet contains bad byte order byte: 0x%x",
791 ucp[0]);
792 return -1;
793 }
794
795 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000796 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000797 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
798 return 0;
799
800 /* Check if authentication protocol matches. */
801 if (proto_len != strlen(x11_saved_proto) ||
802 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
803 debug("X11 connection uses different authentication protocol.");
804 return -1;
805 }
806 /* Check if authentication data matches our fake data. */
807 if (data_len != x11_fake_data_len ||
808 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
809 x11_fake_data, x11_fake_data_len) != 0) {
810 debug("X11 auth data does not match fake data.");
811 return -1;
812 }
813 /* Check fake data length */
814 if (x11_fake_data_len != x11_saved_data_len) {
815 error("X11 fake_data_len %d != saved_data_len %d",
816 x11_fake_data_len, x11_saved_data_len);
817 return -1;
818 }
819 /*
820 * Received authentication protocol and data match
821 * our fake data. Substitute the fake data with real
822 * data.
823 */
824 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
825 x11_saved_data, x11_saved_data_len);
826 return 1;
827}
828
Ben Lindstrombba81212001-06-25 05:01:22 +0000829static void
Damien Millerb38eff82000-04-01 11:09:21 +1000830channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
831{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000832 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000833 if (ret == 1) {
834 /* Start normal processing for the channel. */
835 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000836 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000837 } else if (ret == -1) {
838 /*
839 * We have received an X11 connection that has bad
840 * authentication information.
841 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000842 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000843 buffer_clear(&c->input);
844 buffer_clear(&c->output);
845 close(c->sock);
846 c->sock = -1;
847 c->type = SSH_CHANNEL_CLOSED;
848 packet_start(SSH_MSG_CHANNEL_CLOSE);
849 packet_put_int(c->remote_id);
850 packet_send();
851 }
852}
853
Ben Lindstrombba81212001-06-25 05:01:22 +0000854static void
Damien Millerbd483e72000-04-30 10:00:53 +1000855channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000856{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000857 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000858 if (ret == 1) {
859 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000860 if (compat20)
861 channel_pre_open_20(c, readset, writeset);
862 else
863 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000864 } else if (ret == -1) {
865 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000866 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000867 chan_write_failed(c);
868 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
869 }
870}
871
Ben Lindstromb3921512001-04-11 15:57:50 +0000872/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000874channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000875{
876 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000877 int len, have, i, found;
Ben Lindstromb3921512001-04-11 15:57:50 +0000878 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000879 struct {
880 u_int8_t version;
881 u_int8_t command;
882 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000883 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000884 } s4_req, s4_rsp;
885
Ben Lindstromb3921512001-04-11 15:57:50 +0000886 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000887
888 have = buffer_len(&c->input);
889 len = sizeof(s4_req);
890 if (have < len)
891 return 0;
892 p = buffer_ptr(&c->input);
893 for (found = 0, i = len; i < have; i++) {
894 if (p[i] == '\0') {
895 found = 1;
896 break;
897 }
898 if (i > 1024) {
899 /* the peer is probably sending garbage */
900 debug("channel %d: decode socks4: too long",
901 c->self);
902 return -1;
903 }
904 }
905 if (!found)
906 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000907 buffer_get(&c->input, (char *)&s4_req.version, 1);
908 buffer_get(&c->input, (char *)&s4_req.command, 1);
909 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000910 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000911 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000912 p = buffer_ptr(&c->input);
913 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000914 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000915 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000916 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000917 c->self, len, have);
918 strlcpy(username, p, sizeof(username));
919 buffer_consume(&c->input, len);
920 buffer_consume(&c->input, 1); /* trailing '\0' */
921
Ben Lindstromb3921512001-04-11 15:57:50 +0000922 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000923 strlcpy(c->path, host, sizeof(c->path));
924 c->host_port = ntohs(s4_req.dest_port);
925
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000926 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
927 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000928
Ben Lindstromb3921512001-04-11 15:57:50 +0000929 if (s4_req.command != 1) {
930 debug("channel %d: cannot handle: socks4 cn %d",
931 c->self, s4_req.command);
932 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000933 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000934 s4_rsp.version = 0; /* vn: 0 for reply */
935 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000936 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000937 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000940}
941
Ben Lindstromb3921512001-04-11 15:57:50 +0000942/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000943static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000944channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
945{
946 u_char *p;
947 int have, ret;
948
949 have = buffer_len(&c->input);
950
951 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000952 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000953 /* check if the fixed size part of the packet is in buffer. */
954 if (have < 4) {
955 /* need more */
956 FD_SET(c->sock, readset);
957 return;
958 }
959 /* try to guess the protocol */
960 p = buffer_ptr(&c->input);
961 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000962 case 0x04:
963 ret = channel_decode_socks4(c, readset, writeset);
964 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000965 default:
966 ret = -1;
967 break;
968 }
969 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000970 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000971 } else if (ret == 0) {
972 debug2("channel %d: pre_dynamic: need more", c->self);
973 /* need more */
974 FD_SET(c->sock, readset);
975 } else {
976 /* switch to the next state */
977 c->type = SSH_CHANNEL_OPENING;
978 port_open_helper(c, "direct-tcpip");
979 }
980}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000981
Damien Millerb38eff82000-04-01 11:09:21 +1000982/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000983static void
Damien Millerb38eff82000-04-01 11:09:21 +1000984channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
985{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000986 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000987 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000988 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +1000989 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100990 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000991 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000992
993 if (FD_ISSET(c->sock, readset)) {
994 debug("X11 connection requested.");
995 addrlen = sizeof(addr);
996 newsock = accept(c->sock, &addr, &addrlen);
997 if (newsock < 0) {
998 error("accept: %.100s", strerror(errno));
999 return;
1000 }
Damien Millerd83ff352001-01-30 09:19:34 +11001001 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001002 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001003 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001004 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001005
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001006 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001007 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1008 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001009 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001010 if (nc == NULL) {
1011 close(newsock);
1012 xfree(remote_ipaddr);
1013 return;
1014 }
Damien Millerbd483e72000-04-30 10:00:53 +10001015 if (compat20) {
1016 packet_start(SSH2_MSG_CHANNEL_OPEN);
1017 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001018 packet_put_int(nc->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001019 packet_put_int(c->local_window_max);
1020 packet_put_int(c->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001021 /* originator ipaddr and port */
1022 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001023 if (datafellows & SSH_BUG_X11FWD) {
1024 debug("ssh2 x11 bug compat mode");
1025 } else {
1026 packet_put_int(remote_port);
1027 }
Damien Millerbd483e72000-04-30 10:00:53 +10001028 packet_send();
1029 } else {
1030 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001031 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001032 if (packet_get_protocol_flags() &
1033 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001034 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001035 packet_send();
1036 }
Damien Millerd83ff352001-01-30 09:19:34 +11001037 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001038 }
1039}
1040
Ben Lindstrombba81212001-06-25 05:01:22 +00001041static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001042port_open_helper(Channel *c, char *rtype)
1043{
1044 int direct;
1045 char buf[1024];
1046 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1047 u_short remote_port = get_peer_port(c->sock);
1048
1049 direct = (strcmp(rtype, "direct-tcpip") == 0);
1050
1051 snprintf(buf, sizeof buf,
1052 "%s: listening port %d for %.100s port %d, "
1053 "connect from %.200s port %d",
1054 rtype, c->listening_port, c->path, c->host_port,
1055 remote_ipaddr, remote_port);
1056
1057 xfree(c->remote_name);
1058 c->remote_name = xstrdup(buf);
1059
1060 if (compat20) {
1061 packet_start(SSH2_MSG_CHANNEL_OPEN);
1062 packet_put_cstring(rtype);
1063 packet_put_int(c->self);
1064 packet_put_int(c->local_window_max);
1065 packet_put_int(c->local_maxpacket);
1066 if (direct) {
1067 /* target host, port */
1068 packet_put_cstring(c->path);
1069 packet_put_int(c->host_port);
1070 } else {
1071 /* listen address, port */
1072 packet_put_cstring(c->path);
1073 packet_put_int(c->listening_port);
1074 }
1075 /* originator host and port */
1076 packet_put_cstring(remote_ipaddr);
1077 packet_put_int(remote_port);
1078 packet_send();
1079 } else {
1080 packet_start(SSH_MSG_PORT_OPEN);
1081 packet_put_int(c->self);
1082 packet_put_cstring(c->path);
1083 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001084 if (packet_get_protocol_flags() &
1085 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001086 packet_put_cstring(c->remote_name);
1087 packet_send();
1088 }
1089 xfree(remote_ipaddr);
1090}
1091
Damien Millerb38eff82000-04-01 11:09:21 +10001092/*
1093 * This socket is listening for connections to a forwarded TCP/IP port.
1094 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001095static void
Damien Millerb38eff82000-04-01 11:09:21 +10001096channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1097{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001098 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001099 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001100 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001101 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001102 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001103
Damien Millerb38eff82000-04-01 11:09:21 +10001104 if (FD_ISSET(c->sock, readset)) {
1105 debug("Connection to port %d forwarding "
1106 "to %.100s port %d requested.",
1107 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108
1109 rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ?
1110 "forwarded-tcpip" : "direct-tcpip";
Ben Lindstrom6d618462001-05-10 23:24:49 +00001111 nextstate = (c->host_port == 0 &&
1112 c->type != SSH_CHANNEL_RPORT_LISTENER) ?
1113 SSH_CHANNEL_DYNAMIC : SSH_CHANNEL_OPENING;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001114
Damien Millerb38eff82000-04-01 11:09:21 +10001115 addrlen = sizeof(addr);
1116 newsock = accept(c->sock, &addr, &addrlen);
1117 if (newsock < 0) {
1118 error("accept: %.100s", strerror(errno));
1119 return;
1120 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001121 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001122 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001123 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001124 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001125 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001126 error("channel_post_port_listener: no new channel:");
1127 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001128 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001129 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001130 nc->listening_port = c->listening_port;
1131 nc->host_port = c->host_port;
1132 strlcpy(nc->path, c->path, sizeof(nc->path));
1133
1134 if (nextstate != SSH_CHANNEL_DYNAMIC)
1135 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001136 }
1137}
1138
1139/*
1140 * This is the authentication agent socket listening for connections from
1141 * clients.
1142 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001143static void
Damien Millerb38eff82000-04-01 11:09:21 +10001144channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1145{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001146 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001147 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001148 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001149 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001150 socklen_t addrlen;
1151
1152 if (FD_ISSET(c->sock, readset)) {
1153 addrlen = sizeof(addr);
1154 newsock = accept(c->sock, &addr, &addrlen);
1155 if (newsock < 0) {
1156 error("accept from auth socket: %.100s", strerror(errno));
1157 return;
1158 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001159 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001160 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001161 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1162 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001163 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001164 if (nc == NULL) {
1165 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001166 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001167 close(newsock);
1168 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001169 if (compat20) {
1170 packet_start(SSH2_MSG_CHANNEL_OPEN);
1171 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001172 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001173 packet_put_int(c->local_window_max);
1174 packet_put_int(c->local_maxpacket);
1175 } else {
1176 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001177 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001178 }
Damien Millerb38eff82000-04-01 11:09:21 +10001179 packet_send();
1180 }
1181}
1182
Ben Lindstrombba81212001-06-25 05:01:22 +00001183static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001184channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1185{
Ben Lindstrom69128662001-05-08 20:07:39 +00001186 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001187 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001188
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001189 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001190 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1191 &sz) < 0) {
1192 err = errno;
1193 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001194 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001195 if (err == 0) {
1196 debug("channel %d: connected", c->self);
1197 c->type = SSH_CHANNEL_OPEN;
1198 if (compat20) {
1199 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1200 packet_put_int(c->remote_id);
1201 packet_put_int(c->self);
1202 packet_put_int(c->local_window);
1203 packet_put_int(c->local_maxpacket);
1204 } else {
1205 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1206 packet_put_int(c->remote_id);
1207 packet_put_int(c->self);
1208 }
1209 } else {
1210 debug("channel %d: not connected: %s",
1211 c->self, strerror(err));
1212 if (compat20) {
1213 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1214 packet_put_int(c->remote_id);
1215 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1216 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1217 packet_put_cstring(strerror(err));
1218 packet_put_cstring("");
1219 }
1220 } else {
1221 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1222 packet_put_int(c->remote_id);
1223 }
1224 chan_mark_dead(c);
1225 }
1226 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001227 }
1228}
1229
Ben Lindstrombba81212001-06-25 05:01:22 +00001230static int
Damien Millerb38eff82000-04-01 11:09:21 +10001231channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1232{
1233 char buf[16*1024];
1234 int len;
1235
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001236 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001237 FD_ISSET(c->rfd, readset)) {
1238 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001239 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1240 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001241 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001242 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001243 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001244 if (c->type != SSH_CHANNEL_OPEN) {
1245 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001246 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001247 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001248 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001249 buffer_consume(&c->output, buffer_len(&c->output));
1250 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001251 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001252 } else {
1253 chan_read_failed(c);
1254 }
1255 return -1;
1256 }
Damien Millerad833b32000-08-23 10:46:23 +10001257 if(c->input_filter != NULL) {
1258 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001259 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001260 chan_read_failed(c);
1261 }
1262 } else {
1263 buffer_append(&c->input, buf, len);
1264 }
Damien Millerb38eff82000-04-01 11:09:21 +10001265 }
1266 return 1;
1267}
Ben Lindstrombba81212001-06-25 05:01:22 +00001268static int
Damien Millerb38eff82000-04-01 11:09:21 +10001269channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1270{
Ben Lindstrome229b252001-03-05 06:28:06 +00001271 struct termios tio;
Damien Millerb38eff82000-04-01 11:09:21 +10001272 int len;
1273
1274 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001275 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001276 FD_ISSET(c->wfd, writeset) &&
1277 buffer_len(&c->output) > 0) {
1278 len = write(c->wfd, buffer_ptr(&c->output),
Damien Miller6f83b8e2000-05-02 09:23:45 +10001279 buffer_len(&c->output));
1280 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1281 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001282 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001283 if (c->type != SSH_CHANNEL_OPEN) {
1284 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001285 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001286 return -1;
1287 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001288 buffer_consume(&c->output, buffer_len(&c->output));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001289 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001290 c->type = SSH_CHANNEL_INPUT_DRAINING;
1291 } else {
1292 chan_write_failed(c);
1293 }
1294 return -1;
1295 }
Damien Miller79438cc2001-02-16 12:34:57 +11001296 if (compat20 && c->isatty) {
Damien Miller79438cc2001-02-16 12:34:57 +11001297 if (tcgetattr(c->wfd, &tio) == 0 &&
1298 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1299 /*
1300 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001301 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001302 * size of a SSH2_MSG_CHANNEL_DATA message
1303 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001304 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001305 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001306 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001307 }
1308 }
Damien Millerb38eff82000-04-01 11:09:21 +10001309 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001310 if (compat20 && len > 0) {
1311 c->local_consumed += len;
1312 }
1313 }
1314 return 1;
1315}
Ben Lindstrombba81212001-06-25 05:01:22 +00001316static int
Damien Miller33b13562000-04-04 14:38:59 +10001317channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1318{
1319 char buf[16*1024];
1320 int len;
1321
Damien Miller1383bd82000-04-06 12:32:37 +10001322/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001323 if (c->efd != -1) {
1324 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1325 FD_ISSET(c->efd, writeset) &&
1326 buffer_len(&c->extended) > 0) {
1327 len = write(c->efd, buffer_ptr(&c->extended),
1328 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001329 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001330 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001331 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1332 return 1;
1333 if (len <= 0) {
1334 debug2("channel %d: closing write-efd %d",
1335 c->self, c->efd);
1336 close(c->efd);
1337 c->efd = -1;
1338 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001339 buffer_consume(&c->extended, len);
1340 c->local_consumed += len;
1341 }
1342 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1343 FD_ISSET(c->efd, readset)) {
1344 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001345 debug2("channel %d: read %d from efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001346 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001347 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1348 return 1;
1349 if (len <= 0) {
1350 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001351 c->self, c->efd);
1352 close(c->efd);
1353 c->efd = -1;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001354 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001355 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001356 }
Damien Miller33b13562000-04-04 14:38:59 +10001357 }
1358 }
1359 return 1;
1360}
Ben Lindstrombba81212001-06-25 05:01:22 +00001361static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001362channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001363{
Ben Lindstromb3921512001-04-11 15:57:50 +00001364 if (c->type == SSH_CHANNEL_OPEN &&
1365 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001366 c->local_window < c->local_window_max/2 &&
1367 c->local_consumed > 0) {
1368 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1369 packet_put_int(c->remote_id);
1370 packet_put_int(c->local_consumed);
1371 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001372 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001373 c->self, c->local_window,
1374 c->local_consumed);
1375 c->local_window += c->local_consumed;
1376 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001377 }
1378 return 1;
1379}
1380
Ben Lindstrombba81212001-06-25 05:01:22 +00001381static void
Damien Millerb38eff82000-04-01 11:09:21 +10001382channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
1383{
1384 channel_handle_rfd(c, readset, writeset);
1385 channel_handle_wfd(c, readset, writeset);
1386}
1387
Ben Lindstrombba81212001-06-25 05:01:22 +00001388static void
Damien Miller33b13562000-04-04 14:38:59 +10001389channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
1390{
1391 channel_handle_rfd(c, readset, writeset);
1392 channel_handle_wfd(c, readset, writeset);
1393 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001394
1395 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001396}
1397
Ben Lindstrombba81212001-06-25 05:01:22 +00001398static void
Damien Millerb38eff82000-04-01 11:09:21 +10001399channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1400{
1401 int len;
1402 /* Send buffered output data to the socket. */
1403 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1404 len = write(c->sock, buffer_ptr(&c->output),
1405 buffer_len(&c->output));
1406 if (len <= 0)
1407 buffer_consume(&c->output, buffer_len(&c->output));
1408 else
1409 buffer_consume(&c->output, len);
1410 }
1411}
1412
Ben Lindstrombba81212001-06-25 05:01:22 +00001413static void
Damien Miller33b13562000-04-04 14:38:59 +10001414channel_handler_init_20(void)
1415{
1416 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +10001417 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001418 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001419 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001420 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001421 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001422 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001423 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001424
1425 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
1426 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001427 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001428 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001429 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001430 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001431 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_2;
Damien Miller33b13562000-04-04 14:38:59 +10001432}
1433
Ben Lindstrombba81212001-06-25 05:01:22 +00001434static void
Damien Millerb38eff82000-04-01 11:09:21 +10001435channel_handler_init_13(void)
1436{
1437 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1438 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1439 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1440 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1441 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1442 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1443 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001444 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001445 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001446
1447 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
1448 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1449 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1450 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1451 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001452 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001453 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001454}
1455
Ben Lindstrombba81212001-06-25 05:01:22 +00001456static void
Damien Millerb38eff82000-04-01 11:09:21 +10001457channel_handler_init_15(void)
1458{
1459 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +10001460 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001461 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1462 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1463 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001464 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001465 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001466
1467 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1468 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1469 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1470 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001471 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001472 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001473}
1474
Ben Lindstrombba81212001-06-25 05:01:22 +00001475static void
Damien Millerb38eff82000-04-01 11:09:21 +10001476channel_handler_init(void)
1477{
1478 int i;
1479 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
1480 channel_pre[i] = NULL;
1481 channel_post[i] = NULL;
1482 }
Damien Miller33b13562000-04-04 14:38:59 +10001483 if (compat20)
1484 channel_handler_init_20();
1485 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001486 channel_handler_init_13();
1487 else
1488 channel_handler_init_15();
1489}
1490
Ben Lindstrombba81212001-06-25 05:01:22 +00001491static void
Damien Millerb38eff82000-04-01 11:09:21 +10001492channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1493{
1494 static int did_init = 0;
1495 int i;
1496 Channel *c;
1497
1498 if (!did_init) {
1499 channel_handler_init();
1500 did_init = 1;
1501 }
1502 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001503 c = channels[i];
1504 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001505 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001506 if (ftab[c->type] != NULL)
1507 (*ftab[c->type])(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001508 if (chan_is_dead(c)) {
1509 /*
1510 * we have to remove the fd's from the select mask
1511 * before the channels are free'd and the fd's are
1512 * closed
1513 */
1514 if (c->wfd != -1)
1515 FD_CLR(c->wfd, writeset);
1516 if (c->rfd != -1)
1517 FD_CLR(c->rfd, readset);
1518 if (c->efd != -1) {
1519 if (c->extended_usage == CHAN_EXTENDED_READ)
1520 FD_CLR(c->efd, readset);
1521 if (c->extended_usage == CHAN_EXTENDED_WRITE)
1522 FD_CLR(c->efd, writeset);
1523 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 channel_free(c);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001525 }
Damien Millerb38eff82000-04-01 11:09:21 +10001526 }
1527}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528
Ben Lindstrome9c99912001-06-09 00:41:05 +00001529/*
1530 * Allocate/update select bitmasks and add any bits relevant to channels in
1531 * select bitmasks.
1532 */
Damien Miller4af51302000-04-16 11:18:38 +10001533void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001534channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
1535 int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001536{
Damien Miller5e953212001-01-30 09:14:00 +11001537 int n;
1538 u_int sz;
1539
1540 n = MAX(*maxfdp, channel_max_fd);
1541
1542 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
1543 if (*readsetp == NULL || n > *maxfdp) {
1544 if (*readsetp)
1545 xfree(*readsetp);
1546 if (*writesetp)
1547 xfree(*writesetp);
1548 *readsetp = xmalloc(sz);
1549 *writesetp = xmalloc(sz);
1550 *maxfdp = n;
1551 }
1552 memset(*readsetp, 0, sz);
1553 memset(*writesetp, 0, sz);
1554
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001555 if (!rekeying)
1556 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557}
1558
Ben Lindstrome9c99912001-06-09 00:41:05 +00001559/*
1560 * After select, perform any appropriate operations for channels which have
1561 * events pending.
1562 */
Damien Miller4af51302000-04-16 11:18:38 +10001563void
Damien Miller95def091999-11-25 00:26:21 +11001564channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001565{
Damien Millerb38eff82000-04-01 11:09:21 +10001566 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001567}
1568
Ben Lindstrome9c99912001-06-09 00:41:05 +00001569
Damien Miller5e953212001-01-30 09:14:00 +11001570/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571
Damien Miller4af51302000-04-16 11:18:38 +10001572void
Damien Miller95def091999-11-25 00:26:21 +11001573channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001574{
Damien Miller95def091999-11-25 00:26:21 +11001575 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001576 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001577
Damien Miller95def091999-11-25 00:26:21 +11001578 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001579 c = channels[i];
1580 if (c == NULL)
1581 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001582
Ben Lindstrome9c99912001-06-09 00:41:05 +00001583 /*
1584 * We are only interested in channels that can have buffered
1585 * incoming data.
1586 */
Damien Miller34132e52000-01-14 15:45:46 +11001587 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001588 if (c->type != SSH_CHANNEL_OPEN &&
1589 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001590 continue;
1591 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001592 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001593 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001594 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001595 if (compat20 &&
1596 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001597 /* XXX is this true? */
Ben Lindstromb1131e92001-03-05 07:27:13 +00001598 debug2("channel %d: no data after CLOSE", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001599 continue;
1600 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001601
Damien Miller95def091999-11-25 00:26:21 +11001602 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001603 if ((c->istate == CHAN_INPUT_OPEN ||
1604 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1605 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001606 /*
1607 * Send some data for the other side over the secure
1608 * connection.
1609 */
Damien Miller33b13562000-04-04 14:38:59 +10001610 if (compat20) {
1611 if (len > c->remote_window)
1612 len = c->remote_window;
1613 if (len > c->remote_maxpacket)
1614 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001615 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001616 if (packet_is_interactive()) {
1617 if (len > 1024)
1618 len = 512;
1619 } else {
1620 /* Keep the packets at reasonable size. */
1621 if (len > packet_get_maxsize()/2)
1622 len = packet_get_maxsize()/2;
1623 }
Damien Miller95def091999-11-25 00:26:21 +11001624 }
Damien Millerb38eff82000-04-01 11:09:21 +10001625 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001626 packet_start(compat20 ?
1627 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001628 packet_put_int(c->remote_id);
1629 packet_put_string(buffer_ptr(&c->input), len);
1630 packet_send();
1631 buffer_consume(&c->input, len);
1632 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001633 }
1634 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001635 if (compat13)
1636 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001637 /*
1638 * input-buffer is empty and read-socket shutdown:
1639 * tell peer, that we will not send more data: send IEOF
1640 */
Damien Millerb38eff82000-04-01 11:09:21 +10001641 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001642 }
Damien Miller33b13562000-04-04 14:38:59 +10001643 /* Send extended data, i.e. stderr */
1644 if (compat20 &&
1645 c->remote_window > 0 &&
1646 (len = buffer_len(&c->extended)) > 0 &&
1647 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001648 debug2("channel %d: rwin %d elen %d euse %d",
1649 c->self, c->remote_window, buffer_len(&c->extended),
1650 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001651 if (len > c->remote_window)
1652 len = c->remote_window;
1653 if (len > c->remote_maxpacket)
1654 len = c->remote_maxpacket;
1655 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1656 packet_put_int(c->remote_id);
1657 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1658 packet_put_string(buffer_ptr(&c->extended), len);
1659 packet_send();
1660 buffer_consume(&c->extended, len);
1661 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001662 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001663 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001664 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001665}
1666
Ben Lindstrome9c99912001-06-09 00:41:05 +00001667
1668/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001669
Damien Miller4af51302000-04-16 11:18:38 +10001670void
Damien Miller62cee002000-09-23 17:15:56 +11001671channel_input_data(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001672{
Damien Miller34132e52000-01-14 15:45:46 +11001673 int id;
Damien Miller95def091999-11-25 00:26:21 +11001674 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001675 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001676 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001677
Damien Miller95def091999-11-25 00:26:21 +11001678 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001679 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001680 c = channel_lookup(id);
1681 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001682 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001683
Damien Miller95def091999-11-25 00:26:21 +11001684 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001685 if (c->type != SSH_CHANNEL_OPEN &&
1686 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001687 return;
1688
1689 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001690 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001691 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001692
Damien Miller95def091999-11-25 00:26:21 +11001693 /* Get the data. */
1694 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001695 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001696
Damien Miller33b13562000-04-04 14:38:59 +10001697 if (compat20){
1698 if (data_len > c->local_maxpacket) {
1699 log("channel %d: rcvd big packet %d, maxpack %d",
1700 c->self, data_len, c->local_maxpacket);
1701 }
1702 if (data_len > c->local_window) {
1703 log("channel %d: rcvd too much data %d, win %d",
1704 c->self, data_len, c->local_window);
1705 xfree(data);
1706 return;
1707 }
1708 c->local_window -= data_len;
1709 }else{
1710 packet_integrity_check(plen, 4 + 4 + data_len, type);
1711 }
Damien Millerb38eff82000-04-01 11:09:21 +10001712 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001713 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001714}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001715
Damien Miller4af51302000-04-16 11:18:38 +10001716void
Damien Miller62cee002000-09-23 17:15:56 +11001717channel_input_extended_data(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001718{
1719 int id;
1720 int tcode;
1721 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001722 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001723 Channel *c;
1724
1725 /* Get the channel number and verify it. */
1726 id = packet_get_int();
1727 c = channel_lookup(id);
1728
1729 if (c == NULL)
1730 packet_disconnect("Received extended_data for bad channel %d.", id);
1731 if (c->type != SSH_CHANNEL_OPEN) {
1732 log("channel %d: ext data for non open", id);
1733 return;
1734 }
1735 tcode = packet_get_int();
1736 if (c->efd == -1 ||
1737 c->extended_usage != CHAN_EXTENDED_WRITE ||
1738 tcode != SSH2_EXTENDED_DATA_STDERR) {
1739 log("channel %d: bad ext data", c->self);
1740 return;
1741 }
1742 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001743 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001744 if (data_len > c->local_window) {
1745 log("channel %d: rcvd too much extended_data %d, win %d",
1746 c->self, data_len, c->local_window);
1747 xfree(data);
1748 return;
1749 }
Damien Millerd3444942000-09-30 14:20:03 +11001750 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001751 c->local_window -= data_len;
1752 buffer_append(&c->extended, data, data_len);
1753 xfree(data);
1754}
1755
Damien Miller4af51302000-04-16 11:18:38 +10001756void
Damien Miller62cee002000-09-23 17:15:56 +11001757channel_input_ieof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001758{
1759 int id;
1760 Channel *c;
1761
1762 packet_integrity_check(plen, 4, type);
1763
1764 id = packet_get_int();
1765 c = channel_lookup(id);
1766 if (c == NULL)
1767 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1768 chan_rcvd_ieof(c);
1769}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001770
Damien Miller4af51302000-04-16 11:18:38 +10001771void
Damien Miller62cee002000-09-23 17:15:56 +11001772channel_input_close(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001773{
Damien Millerb38eff82000-04-01 11:09:21 +10001774 int id;
1775 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001776
Damien Millerb38eff82000-04-01 11:09:21 +10001777 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001778
Damien Millerb38eff82000-04-01 11:09:21 +10001779 id = packet_get_int();
1780 c = channel_lookup(id);
1781 if (c == NULL)
1782 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001783
1784 /*
1785 * Send a confirmation that we have closed the channel and no more
1786 * data is coming for it.
1787 */
Damien Miller95def091999-11-25 00:26:21 +11001788 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001789 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001790 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001791
Damien Miller5428f641999-11-25 11:54:57 +11001792 /*
1793 * If the channel is in closed state, we have sent a close request,
1794 * and the other side will eventually respond with a confirmation.
1795 * Thus, we cannot free the channel here, because then there would be
1796 * no-one to receive the confirmation. The channel gets freed when
1797 * the confirmation arrives.
1798 */
Damien Millerb38eff82000-04-01 11:09:21 +10001799 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001800 /*
1801 * Not a closed channel - mark it as draining, which will
1802 * cause it to be freed later.
1803 */
Damien Millerb38eff82000-04-01 11:09:21 +10001804 buffer_consume(&c->input, buffer_len(&c->input));
1805 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001806 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001807}
1808
Damien Millerb38eff82000-04-01 11:09:21 +10001809/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001810void
Damien Miller62cee002000-09-23 17:15:56 +11001811channel_input_oclose(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001812{
Damien Millerb38eff82000-04-01 11:09:21 +10001813 int id = packet_get_int();
1814 Channel *c = channel_lookup(id);
1815 packet_integrity_check(plen, 4, type);
1816 if (c == NULL)
1817 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1818 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819}
1820
Damien Miller4af51302000-04-16 11:18:38 +10001821void
Damien Miller62cee002000-09-23 17:15:56 +11001822channel_input_close_confirmation(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001823{
1824 int id = packet_get_int();
1825 Channel *c = channel_lookup(id);
1826
Damien Miller4af51302000-04-16 11:18:38 +10001827 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001828 if (c == NULL)
1829 packet_disconnect("Received close confirmation for "
1830 "out-of-range channel %d.", id);
1831 if (c->type != SSH_CHANNEL_CLOSED)
1832 packet_disconnect("Received close confirmation for "
1833 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001834 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001835}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001836
Damien Miller4af51302000-04-16 11:18:38 +10001837void
Damien Miller62cee002000-09-23 17:15:56 +11001838channel_input_open_confirmation(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001839{
Damien Millerb38eff82000-04-01 11:09:21 +10001840 int id, remote_id;
1841 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001842
Damien Miller33b13562000-04-04 14:38:59 +10001843 if (!compat20)
1844 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845
Damien Millerb38eff82000-04-01 11:09:21 +10001846 id = packet_get_int();
1847 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848
Damien Millerb38eff82000-04-01 11:09:21 +10001849 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1850 packet_disconnect("Received open confirmation for "
1851 "non-opening channel %d.", id);
1852 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001853 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001854 c->remote_id = remote_id;
1855 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001856
1857 if (compat20) {
1858 c->remote_window = packet_get_int();
1859 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001860 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001861 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001862 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001863 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001864 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001865 }
1866 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1867 c->remote_window, c->remote_maxpacket);
1868 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001869}
1870
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001872reason2txt(int reason)
1873{
1874 switch(reason) {
1875 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1876 return "administratively prohibited";
1877 case SSH2_OPEN_CONNECT_FAILED:
1878 return "connect failed";
1879 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1880 return "unknown channel type";
1881 case SSH2_OPEN_RESOURCE_SHORTAGE:
1882 return "resource shortage";
1883 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001884 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001885}
1886
Damien Miller4af51302000-04-16 11:18:38 +10001887void
Damien Miller62cee002000-09-23 17:15:56 +11001888channel_input_open_failure(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001889{
Kevin Steves12057502001-02-05 14:54:34 +00001890 int id, reason;
1891 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001892 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001893
Damien Miller33b13562000-04-04 14:38:59 +10001894 if (!compat20)
1895 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001896
1897 id = packet_get_int();
1898 c = channel_lookup(id);
1899
1900 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1901 packet_disconnect("Received open failure for "
1902 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001903 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001904 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001905 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001906 msg = packet_get_string(NULL);
1907 lang = packet_get_string(NULL);
1908 }
Damien Miller4af51302000-04-16 11:18:38 +10001909 packet_done();
Ben Lindstrom69128662001-05-08 20:07:39 +00001910 log("channel %d: open failed: %s%s%s", id,
1911 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001912 if (msg != NULL)
1913 xfree(msg);
1914 if (lang != NULL)
1915 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001916 }
Damien Miller95def091999-11-25 00:26:21 +11001917 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001918 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919}
1920
Damien Miller33b13562000-04-04 14:38:59 +10001921void
Damien Miller62cee002000-09-23 17:15:56 +11001922channel_input_channel_request(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001923{
1924 int id;
1925 Channel *c;
1926
1927 id = packet_get_int();
1928 c = channel_lookup(id);
1929
1930 if (c == NULL ||
1931 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1932 packet_disconnect("Received request for "
1933 "non-open channel %d.", id);
1934 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001935 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001936 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001937 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001938 } else {
1939 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001940 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001941 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001942 xfree(service);
1943 }
1944}
1945
Damien Miller4af51302000-04-16 11:18:38 +10001946void
Damien Miller62cee002000-09-23 17:15:56 +11001947channel_input_window_adjust(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001948{
1949 Channel *c;
1950 int id, adjust;
1951
1952 if (!compat20)
1953 return;
1954
1955 /* Get the channel number and verify it. */
1956 id = packet_get_int();
1957 c = channel_lookup(id);
1958
1959 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1960 log("Received window adjust for "
1961 "non-open channel %d.", id);
1962 return;
1963 }
1964 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001965 packet_done();
Damien Millerd3444942000-09-30 14:20:03 +11001966 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001967 c->remote_window += adjust;
1968}
1969
Damien Miller4af51302000-04-16 11:18:38 +10001970void
Ben Lindstrome9c99912001-06-09 00:41:05 +00001971channel_input_port_open(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001972{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001973 Channel *c = NULL;
1974 u_short host_port;
1975 char *host, *originator_string;
1976 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001977
Ben Lindstrome9c99912001-06-09 00:41:05 +00001978 remote_id = packet_get_int();
1979 host = packet_get_string(NULL);
1980 host_port = packet_get_int();
1981
1982 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1983 originator_string = packet_get_string(NULL);
1984 } else {
1985 originator_string = xstrdup("unknown (remote did not supply name)");
1986 }
1987 packet_done();
1988 sock = channel_connect_to(host, host_port);
1989 if (sock != -1) {
1990 c = channel_new("connected socket",
1991 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
1992 originator_string, 1);
1993 if (c == NULL) {
1994 error("channel_input_port_open: channel_new failed");
1995 close(sock);
1996 } else {
1997 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11001998 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001999 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002000 if (c == NULL) {
2001 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2002 packet_put_int(remote_id);
2003 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002004 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002005 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002006}
2007
2008
Ben Lindstrome9c99912001-06-09 00:41:05 +00002009/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002010
Damien Miller5428f641999-11-25 11:54:57 +11002011/*
2012 * Initiate forwarding of connections to local port "port" through the secure
2013 * channel to host:port from remote side.
2014 */
Kevin Steves12057502001-02-05 14:54:34 +00002015int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002016channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
2017 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002018{
Kevin Steves12057502001-02-05 14:54:34 +00002019 return channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002020 NULL, listen_port,
2021 host_to_connect, port_to_connect,
2022 gateway_ports, /*remote_fwd*/ 0);
2023}
2024
2025/*
2026 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
2027 * (SSH_CHANNEL_RPORT_LISTENER).
2028 */
Kevin Steves12057502001-02-05 14:54:34 +00002029int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002030channel_request_forwarding(
2031 const char *listen_address, u_short listen_port,
2032 const char *host_to_connect, u_short port_to_connect,
2033 int gateway_ports, int remote_fwd)
2034{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002035 Channel *c;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002036 int success, sock, on = 1, type;
Damien Miller34132e52000-01-14 15:45:46 +11002037 struct addrinfo hints, *ai, *aitop;
2038 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11002039 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11002040 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002041
Kevin Steves12057502001-02-05 14:54:34 +00002042 success = 0;
2043
Damien Miller0bc1bd82000-11-13 22:57:25 +11002044 if (remote_fwd) {
2045 host = listen_address;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002046 type = SSH_CHANNEL_RPORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002047 } else {
2048 host = host_to_connect;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002049 type = SSH_CHANNEL_PORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002050 }
2051
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002052 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002053 error("Forward host name too long.");
2054 return success;
2055 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002056
Damien Miller0bc1bd82000-11-13 22:57:25 +11002057 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11002058 /*
Damien Miller34132e52000-01-14 15:45:46 +11002059 * getaddrinfo returns a loopback address if the hostname is
2060 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002061 */
Damien Miller34132e52000-01-14 15:45:46 +11002062 memset(&hints, 0, sizeof(hints));
2063 hints.ai_family = IPv4or6;
2064 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2065 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002066 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002067 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2068 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002069
Damien Miller34132e52000-01-14 15:45:46 +11002070 for (ai = aitop; ai; ai = ai->ai_next) {
2071 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2072 continue;
2073 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2074 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11002075 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002076 continue;
2077 }
2078 /* Create a port to listen for the host. */
2079 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2080 if (sock < 0) {
2081 /* this is no error since kernel may not support ipv6 */
2082 verbose("socket: %.100s", strerror(errno));
2083 continue;
2084 }
2085 /*
2086 * Set socket options. We would like the socket to disappear
2087 * as soon as it has been closed for whatever reason.
2088 */
2089 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2090 linger.l_onoff = 1;
2091 linger.l_linger = 5;
2092 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2093 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002094
Damien Miller34132e52000-01-14 15:45:46 +11002095 /* Bind the socket to the address. */
2096 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2097 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002098 if (!ai->ai_next)
2099 error("bind: %.100s", strerror(errno));
2100 else
2101 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002102
Damien Miller34132e52000-01-14 15:45:46 +11002103 close(sock);
2104 continue;
2105 }
2106 /* Start listening for connections on the socket. */
2107 if (listen(sock, 5) < 0) {
2108 error("listen: %.100s", strerror(errno));
2109 close(sock);
2110 continue;
2111 }
2112 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002113 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002114 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002115 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002116 if (c == NULL) {
2117 error("channel_request_forwarding: channel_new failed");
2118 close(sock);
2119 continue;
2120 }
2121 strlcpy(c->path, host, sizeof(c->path));
2122 c->host_port = port_to_connect;
2123 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002124 success = 1;
2125 }
2126 if (success == 0)
Kevin Steves12057502001-02-05 14:54:34 +00002127 error("channel_request_forwarding: cannot listen to port: %d",
2128 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002129 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002130 return success;
Damien Miller95def091999-11-25 00:26:21 +11002131}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002132
Damien Miller5428f641999-11-25 11:54:57 +11002133/*
2134 * Initiate forwarding of connections to port "port" on remote host through
2135 * the secure channel to host:port from local side.
2136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002137
Damien Miller4af51302000-04-16 11:18:38 +10002138void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002139channel_request_remote_forwarding(u_short listen_port,
2140 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002141{
Damien Miller0bc1bd82000-11-13 22:57:25 +11002142 int payload_len, type, success = 0;
2143
Damien Miller95def091999-11-25 00:26:21 +11002144 /* Record locally that connection to this host/port is permitted. */
2145 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2146 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002147
Damien Miller95def091999-11-25 00:26:21 +11002148 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002149 if (compat20) {
2150 const char *address_to_bind = "0.0.0.0";
2151 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2152 packet_put_cstring("tcpip-forward");
2153 packet_put_char(0); /* boolean: want reply */
2154 packet_put_cstring(address_to_bind);
2155 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002156 packet_send();
2157 packet_write_wait();
2158 /* Assume that server accepts the request */
2159 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002160 } else {
2161 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002162 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002163 packet_put_cstring(host_to_connect);
2164 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002165 packet_send();
2166 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002167
2168 /* Wait for response from the remote side. */
2169 type = packet_read(&payload_len);
2170 switch (type) {
2171 case SSH_SMSG_SUCCESS:
2172 success = 1;
2173 break;
2174 case SSH_SMSG_FAILURE:
2175 log("Warning: Server denied remote port forwarding.");
2176 break;
2177 default:
2178 /* Unknown packet */
2179 packet_disconnect("Protocol error for port forward request:"
2180 "received packet type %d.", type);
2181 }
2182 }
2183 if (success) {
2184 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2185 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2186 permitted_opens[num_permitted_opens].listen_port = listen_port;
2187 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002188 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002189}
2190
Damien Miller5428f641999-11-25 11:54:57 +11002191/*
2192 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2193 * listening for the port, and sends back a success reply (or disconnect
2194 * message if there was an error). This never returns if there was an error.
2195 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002196
Damien Miller4af51302000-04-16 11:18:38 +10002197void
Damien Millere247cc42000-05-07 12:03:14 +10002198channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002199{
Damien Milleraae6c611999-12-06 11:47:28 +11002200 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002201 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002202
Damien Miller95def091999-11-25 00:26:21 +11002203 /* Get arguments from the packet. */
2204 port = packet_get_int();
2205 hostname = packet_get_string(NULL);
2206 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002207
Damien Millerbac2d8a2000-09-05 16:13:06 +11002208#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002209 /*
2210 * Check that an unprivileged user is not trying to forward a
2211 * privileged port.
2212 */
Damien Miller95def091999-11-25 00:26:21 +11002213 if (port < IPPORT_RESERVED && !is_root)
2214 packet_disconnect("Requested forwarding of port %d but user is not root.",
2215 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002216#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002217 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10002218 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002219
2220 /* Free the argument string. */
2221 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222}
2223
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002224/*
2225 * Permits opening to any host/port if permitted_opens[] is empty. This is
2226 * usually called by the server, because the user could connect to any port
2227 * anyway, and the server has no way to know but to trust the client anyway.
2228 */
2229void
2230channel_permit_all_opens()
2231{
2232 if (num_permitted_opens == 0)
2233 all_opens_permitted = 1;
2234}
2235
Ben Lindstroma3700052001-04-05 23:26:32 +00002236void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002237channel_add_permitted_opens(char *host, int port)
2238{
2239 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2240 fatal("channel_request_remote_forwarding: too many forwards");
2241 debug("allow port forwarding to host %s port %d", host, port);
2242
2243 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2244 permitted_opens[num_permitted_opens].port_to_connect = port;
2245 num_permitted_opens++;
2246
2247 all_opens_permitted = 0;
2248}
2249
Ben Lindstroma3700052001-04-05 23:26:32 +00002250void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002251channel_clear_permitted_opens(void)
2252{
2253 int i;
2254
2255 for (i = 0; i < num_permitted_opens; i++)
2256 xfree(permitted_opens[i].host_to_connect);
2257 num_permitted_opens = 0;
2258
2259}
2260
2261
2262/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002263static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002264connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002265{
Damien Miller34132e52000-01-14 15:45:46 +11002266 struct addrinfo hints, *ai, *aitop;
2267 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2268 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002269 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002270
Damien Miller34132e52000-01-14 15:45:46 +11002271 memset(&hints, 0, sizeof(hints));
2272 hints.ai_family = IPv4or6;
2273 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002274 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002275 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002276 error("connect_to %.100s: unknown host (%s)", host,
2277 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002278 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002279 }
Damien Miller34132e52000-01-14 15:45:46 +11002280 for (ai = aitop; ai; ai = ai->ai_next) {
2281 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2282 continue;
2283 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2284 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002285 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002286 continue;
2287 }
Damien Miller34132e52000-01-14 15:45:46 +11002288 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2289 if (sock < 0) {
2290 error("socket: %.100s", strerror(errno));
2291 continue;
2292 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002293 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002294 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002295 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2296 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002297 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002298 strerror(errno));
2299 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002300 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002301 }
2302 break; /* success */
2303
2304 }
2305 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002306 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002307 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002308 return -1;
2309 }
2310 /* success */
2311 return sock;
2312}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002313
Damien Miller0bc1bd82000-11-13 22:57:25 +11002314int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002315channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002316{
2317 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002318
Damien Miller0bc1bd82000-11-13 22:57:25 +11002319 for (i = 0; i < num_permitted_opens; i++)
2320 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002321 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002322 permitted_opens[i].host_to_connect,
2323 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002324 error("WARNING: Server requests forwarding for unknown listen_port %d",
2325 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002326 return -1;
2327}
Damien Millerb38eff82000-04-01 11:09:21 +10002328
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002329/* Check if connecting to that port is permitted and connect. */
2330int
2331channel_connect_to(const char *host, u_short port)
2332{
2333 int i, permit;
2334
2335 permit = all_opens_permitted;
2336 if (!permit) {
2337 for (i = 0; i < num_permitted_opens; i++)
2338 if (permitted_opens[i].port_to_connect == port &&
2339 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2340 permit = 1;
2341
2342 }
2343 if (!permit) {
2344 log("Received request to connect to host %.100s port %d, "
2345 "but the request was denied.", host, port);
2346 return -1;
2347 }
2348 return connect_to(host, port);
2349}
2350
Ben Lindstrome9c99912001-06-09 00:41:05 +00002351/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002352
Damien Miller5428f641999-11-25 11:54:57 +11002353/*
2354 * Creates an internet domain socket for listening for X11 connections.
2355 * Returns a suitable value for the DISPLAY variable, or NULL if an error
2356 * occurs.
2357 */
Damien Miller95def091999-11-25 00:26:21 +11002358char *
Damien Millera34a28b1999-12-14 10:47:15 +11002359x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002360{
Damien Milleraae6c611999-12-06 11:47:28 +11002361 int display_number, sock;
2362 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002363 struct addrinfo hints, *ai, *aitop;
2364 char strport[NI_MAXSERV];
2365 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
2366 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11002367 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002368
Damien Millera34a28b1999-12-14 10:47:15 +11002369 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11002370 display_number < MAX_DISPLAYS;
2371 display_number++) {
2372 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002373 memset(&hints, 0, sizeof(hints));
2374 hints.ai_family = IPv4or6;
2375 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
2376 hints.ai_socktype = SOCK_STREAM;
2377 snprintf(strport, sizeof strport, "%d", port);
2378 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2379 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11002380 return NULL;
2381 }
Damien Miller34132e52000-01-14 15:45:46 +11002382 for (ai = aitop; ai; ai = ai->ai_next) {
2383 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2384 continue;
2385 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2386 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002387 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002388 error("socket: %.100s", strerror(errno));
2389 return NULL;
2390 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002391 debug("x11_create_display_inet: Socket family %d not supported",
2392 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002393 continue;
2394 }
Damien Miller34132e52000-01-14 15:45:46 +11002395 }
2396 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2397 debug("bind port %d: %.100s", port, strerror(errno));
2398 shutdown(sock, SHUT_RDWR);
2399 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002400
2401 if (ai->ai_next)
2402 continue;
2403
Damien Miller34132e52000-01-14 15:45:46 +11002404 for (n = 0; n < num_socks; n++) {
2405 shutdown(socks[n], SHUT_RDWR);
2406 close(socks[n]);
2407 }
2408 num_socks = 0;
2409 break;
2410 }
2411 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002412#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002413 if (num_socks == NUM_SOCKS)
2414 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002415#else
2416 break;
2417#endif
Damien Miller95def091999-11-25 00:26:21 +11002418 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002419 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002420 if (num_socks > 0)
2421 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002422 }
Damien Miller95def091999-11-25 00:26:21 +11002423 if (display_number >= MAX_DISPLAYS) {
2424 error("Failed to allocate internet-domain X11 display socket.");
2425 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002426 }
Damien Miller95def091999-11-25 00:26:21 +11002427 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002428 for (n = 0; n < num_socks; n++) {
2429 sock = socks[n];
2430 if (listen(sock, 5) < 0) {
2431 error("listen: %.100s", strerror(errno));
2432 shutdown(sock, SHUT_RDWR);
2433 close(sock);
2434 return NULL;
2435 }
Damien Miller95def091999-11-25 00:26:21 +11002436 }
Damien Miller34132e52000-01-14 15:45:46 +11002437
Damien Miller95def091999-11-25 00:26:21 +11002438 /* Set up a suitable value for the DISPLAY variable. */
2439 if (gethostname(hostname, sizeof(hostname)) < 0)
2440 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11002441
2442#ifdef IPADDR_IN_DISPLAY
Kevin Stevesef4eea92001-02-05 12:42:17 +00002443 /*
Damien Miller76112de1999-12-21 11:18:08 +11002444 * HPUX detects the local hostname in the DISPLAY variable and tries
2445 * to set up a shared memory connection to the server, which it
2446 * incorrectly supposes to be local.
2447 *
2448 * The workaround - as used in later $$H and other programs - is
2449 * is to set display to the host's IP address.
2450 */
2451 {
2452 struct hostent *he;
2453 struct in_addr my_addr;
2454
2455 he = gethostbyname(hostname);
2456 if (he == NULL) {
2457 error("[X11-broken-fwd-hostname-workaround] Could not get "
2458 "IP address for hostname %s.", hostname);
2459
2460 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
2461 "Could not get IP address for hostname %s.", hostname);
2462
2463 shutdown(sock, SHUT_RDWR);
2464 close(sock);
2465
2466 return NULL;
2467 }
2468
2469 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2470
2471 /* Set DISPLAY to <ip address>:screen.display */
Kevin Stevesef4eea92001-02-05 12:42:17 +00002472 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Kevin Stevesda6cd592000-12-29 18:41:21 +00002473 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11002474 }
2475#else /* IPADDR_IN_DISPLAY */
2476 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11002477 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Kevin Stevesda6cd592000-12-29 18:41:21 +00002478 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11002479#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002480
Damien Miller34132e52000-01-14 15:45:46 +11002481 /* Allocate a channel for each socket. */
2482 for (n = 0; n < num_socks; n++) {
2483 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10002484 (void) channel_new("x11 listener",
2485 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2486 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002487 0, xstrdup("X11 inet listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11002488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002489
Damien Miller95def091999-11-25 00:26:21 +11002490 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11002491 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002492}
2493
2494#ifndef X_UNIX_PATH
2495#define X_UNIX_PATH "/tmp/.X11-unix/X"
2496#endif
2497
Ben Lindstrombba81212001-06-25 05:01:22 +00002498static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002499connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002500{
Damien Miller95def091999-11-25 00:26:21 +11002501 static const char *const x_sockets[] = {
2502 X_UNIX_PATH "%u",
2503 "/var/X/.X11-unix/X" "%u",
2504 "/usr/spool/sockets/X11/" "%u",
2505 NULL
2506 };
2507 int sock;
2508 struct sockaddr_un addr;
2509 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002510
Damien Miller95def091999-11-25 00:26:21 +11002511 for (path = x_sockets; *path; ++path) {
2512 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2513 if (sock < 0)
2514 error("socket: %.100s", strerror(errno));
2515 memset(&addr, 0, sizeof(addr));
2516 addr.sun_family = AF_UNIX;
2517 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
2518 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2519 return sock;
2520 close(sock);
2521 }
2522 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2523 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002524}
2525
Damien Millerbd483e72000-04-30 10:00:53 +10002526int
2527x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002528{
Damien Millerbd483e72000-04-30 10:00:53 +10002529 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002530 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002531 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002532 struct addrinfo hints, *ai, *aitop;
2533 char strport[NI_MAXSERV];
2534 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002535
Damien Miller95def091999-11-25 00:26:21 +11002536 /* Try to open a socket for the local X server. */
2537 display = getenv("DISPLAY");
2538 if (!display) {
2539 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002540 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002541 }
Damien Miller5428f641999-11-25 11:54:57 +11002542 /*
2543 * Now we decode the value of the DISPLAY variable and make a
2544 * connection to the real X server.
2545 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002546
Damien Miller5428f641999-11-25 11:54:57 +11002547 /*
2548 * Check if it is a unix domain socket. Unix domain displays are in
2549 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2550 */
Damien Miller95def091999-11-25 00:26:21 +11002551 if (strncmp(display, "unix:", 5) == 0 ||
2552 display[0] == ':') {
2553 /* Connect to the unix domain socket. */
2554 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2555 error("Could not parse display number from DISPLAY: %.100s",
2556 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002557 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002558 }
2559 /* Create a socket. */
2560 sock = connect_local_xsocket(display_number);
2561 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002562 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002563
2564 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002565 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002566 }
Damien Miller5428f641999-11-25 11:54:57 +11002567 /*
2568 * Connect to an inet socket. The DISPLAY value is supposedly
2569 * hostname:d[.s], where hostname may also be numeric IP address.
2570 */
Damien Miller95def091999-11-25 00:26:21 +11002571 strncpy(buf, display, sizeof(buf));
2572 buf[sizeof(buf) - 1] = 0;
2573 cp = strchr(buf, ':');
2574 if (!cp) {
2575 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002576 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002577 }
Damien Miller95def091999-11-25 00:26:21 +11002578 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002579 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002580 if (sscanf(cp + 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 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002585
Damien Miller34132e52000-01-14 15:45:46 +11002586 /* Look up the host address */
2587 memset(&hints, 0, sizeof(hints));
2588 hints.ai_family = IPv4or6;
2589 hints.ai_socktype = SOCK_STREAM;
2590 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2591 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2592 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002593 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002594 }
Damien Miller34132e52000-01-14 15:45:46 +11002595 for (ai = aitop; ai; ai = ai->ai_next) {
2596 /* Create a socket. */
2597 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2598 if (sock < 0) {
2599 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002600 continue;
2601 }
2602 /* Connect it to the display. */
2603 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2604 debug("connect %.100s port %d: %.100s", buf,
2605 6000 + display_number, strerror(errno));
2606 close(sock);
2607 continue;
2608 }
2609 /* Success */
2610 break;
Damien Miller34132e52000-01-14 15:45:46 +11002611 }
Damien Miller34132e52000-01-14 15:45:46 +11002612 freeaddrinfo(aitop);
2613 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002614 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002615 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002616 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002617 }
Damien Millerbd483e72000-04-30 10:00:53 +10002618 return sock;
2619}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002620
Damien Millerbd483e72000-04-30 10:00:53 +10002621/*
2622 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2623 * the remote channel number. We should do whatever we want, and respond
2624 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2625 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002626
Damien Millerbd483e72000-04-30 10:00:53 +10002627void
Damien Miller62cee002000-09-23 17:15:56 +11002628x11_input_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002629{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002630 Channel *c = NULL;
2631 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002632 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002633
2634 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002635
2636 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002637
2638 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002639 remote_host = packet_get_string(NULL);
2640 } else {
2641 remote_host = xstrdup("unknown (remote did not supply name)");
2642 }
2643 packet_done();
Damien Millerbd483e72000-04-30 10:00:53 +10002644
2645 /* Obtain a connection to the real X display. */
2646 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002647 if (sock != -1) {
2648 /* Allocate a channel for this connection. */
2649 c = channel_new("connected x11 socket",
2650 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2651 remote_host, 1);
2652 if (c == NULL) {
2653 error("x11_input_open: channel_new failed");
2654 close(sock);
2655 } else {
2656 c->remote_id = remote_id;
2657 }
2658 }
2659 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002660 /* Send refusal to the remote host. */
2661 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002662 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002663 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002664 /* Send a confirmation to the remote host. */
2665 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002666 packet_put_int(remote_id);
2667 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002668 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002669 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002670}
2671
Damien Miller69b69aa2000-10-28 14:19:58 +11002672/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2673void
2674deny_input_open(int type, int plen, void *ctxt)
2675{
2676 int rchan = packet_get_int();
2677 switch(type){
2678 case SSH_SMSG_AGENT_OPEN:
2679 error("Warning: ssh server tried agent forwarding.");
2680 break;
2681 case SSH_SMSG_X11_OPEN:
2682 error("Warning: ssh server tried X11 forwarding.");
2683 break;
2684 default:
2685 error("deny_input_open: type %d plen %d", type, plen);
2686 break;
2687 }
2688 error("Warning: this is probably a break in attempt by a malicious server.");
2689 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2690 packet_put_int(rchan);
2691 packet_send();
2692}
2693
Damien Miller5428f641999-11-25 11:54:57 +11002694/*
2695 * Requests forwarding of X11 connections, generates fake authentication
2696 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002697 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002698 */
Damien Miller4af51302000-04-16 11:18:38 +10002699void
Damien Millerbd483e72000-04-30 10:00:53 +10002700x11_request_forwarding_with_spoofing(int client_session_id,
2701 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002702{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002703 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002704 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002705 char *new_data;
2706 int screen_number;
2707 const char *cp;
2708 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002709
Damien Miller95def091999-11-25 00:26:21 +11002710 cp = getenv("DISPLAY");
2711 if (cp)
2712 cp = strchr(cp, ':');
2713 if (cp)
2714 cp = strchr(cp, '.');
2715 if (cp)
2716 screen_number = atoi(cp + 1);
2717 else
2718 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002719
Damien Miller95def091999-11-25 00:26:21 +11002720 /* Save protocol name. */
2721 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002722
Damien Miller5428f641999-11-25 11:54:57 +11002723 /*
2724 * Extract real authentication data and generate fake data of the
2725 * same length.
2726 */
Damien Miller95def091999-11-25 00:26:21 +11002727 x11_saved_data = xmalloc(data_len);
2728 x11_fake_data = xmalloc(data_len);
2729 for (i = 0; i < data_len; i++) {
2730 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2731 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2732 if (i % 4 == 0)
2733 rand = arc4random();
2734 x11_saved_data[i] = value;
2735 x11_fake_data[i] = rand & 0xff;
2736 rand >>= 8;
2737 }
2738 x11_saved_data_len = data_len;
2739 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002740
Damien Miller95def091999-11-25 00:26:21 +11002741 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002742 len = 2 * data_len + 1;
2743 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002744 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002745 snprintf(new_data + 2 * i, len - 2 * i,
2746 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002747
Damien Miller95def091999-11-25 00:26:21 +11002748 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002749 if (compat20) {
2750 channel_request_start(client_session_id, "x11-req", 0);
2751 packet_put_char(0); /* XXX bool single connection */
2752 } else {
2753 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2754 }
2755 packet_put_cstring(proto);
2756 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002757 packet_put_int(screen_number);
2758 packet_send();
2759 packet_write_wait();
2760 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002761}
2762
Ben Lindstrome9c99912001-06-09 00:41:05 +00002763
2764/* -- agent forwarding */
2765
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002766/* Sends a message to the server to request authentication fd forwarding. */
2767
Damien Miller4af51302000-04-16 11:18:38 +10002768void
Damien Miller95def091999-11-25 00:26:21 +11002769auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002770{
Damien Miller95def091999-11-25 00:26:21 +11002771 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2772 packet_send();
2773 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002774}
2775
Damien Miller5428f641999-11-25 11:54:57 +11002776/*
2777 * Returns the name of the forwarded authentication socket. Returns NULL if
2778 * there is no forwarded authentication socket. The returned value points to
2779 * a static buffer.
2780 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002781
Damien Miller95def091999-11-25 00:26:21 +11002782char *
2783auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002784{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002785 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002786}
2787
2788/* removes the agent forwarding socket */
2789
Damien Miller4af51302000-04-16 11:18:38 +10002790void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002791auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002792{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002793 struct passwd *pw = _pw;
2794
Ben Lindstrom838394c2001-06-09 01:11:59 +00002795 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002796 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002797 unlink(auth_sock_name);
2798 rmdir(auth_sock_dir);
2799 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002800 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002801 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002802}
2803
Damien Miller5428f641999-11-25 11:54:57 +11002804/*
Damien Millerd3a18572000-06-07 19:55:44 +10002805 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002806 * This starts forwarding authentication requests.
2807 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002808
Damien Millerd3a18572000-06-07 19:55:44 +10002809int
Damien Miller95def091999-11-25 00:26:21 +11002810auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002811{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002812 Channel *nc;
2813 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002814 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002815
Ben Lindstrome9c99912001-06-09 00:41:05 +00002816 if (auth_get_socket_name() != NULL) {
2817 error("authentication forwarding requested twice.");
2818 return 0;
2819 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002820
Damien Miller95def091999-11-25 00:26:21 +11002821 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002822 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002823
Damien Miller95def091999-11-25 00:26:21 +11002824 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002825 auth_sock_name = xmalloc(MAXPATHLEN);
2826 auth_sock_dir = xmalloc(MAXPATHLEN);
2827 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828
Damien Miller95def091999-11-25 00:26:21 +11002829 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002830 if (mkdtemp(auth_sock_dir) == NULL) {
2831 packet_send_debug("Agent forwarding disabled: "
2832 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002833 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002834 xfree(auth_sock_name);
2835 xfree(auth_sock_dir);
2836 auth_sock_name = NULL;
2837 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002838 return 0;
2839 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002840 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2841 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002842
Ben Lindstrom838394c2001-06-09 01:11:59 +00002843 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002844 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002845
Damien Miller95def091999-11-25 00:26:21 +11002846 /* Create the socket. */
2847 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2848 if (sock < 0)
2849 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002850
Damien Miller95def091999-11-25 00:26:21 +11002851 /* Bind it to the name. */
2852 memset(&sunaddr, 0, sizeof(sunaddr));
2853 sunaddr.sun_family = AF_UNIX;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002854 strncpy(sunaddr.sun_path, auth_sock_name,
Damien Miller95def091999-11-25 00:26:21 +11002855 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002856
Damien Miller95def091999-11-25 00:26:21 +11002857 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2858 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002859
Damien Miller95def091999-11-25 00:26:21 +11002860 /* Restore the privileged uid. */
2861 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002862
Damien Miller95def091999-11-25 00:26:21 +11002863 /* Start listening on the socket. */
2864 if (listen(sock, 5) < 0)
2865 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002866
Damien Miller95def091999-11-25 00:26:21 +11002867 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002868 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002869 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2870 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2871 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002872 if (nc == NULL) {
2873 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002874 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002875 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002876 close(sock);
2877 return 0;
2878 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002879 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002880 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002881}
2882
2883/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2884
Damien Miller4af51302000-04-16 11:18:38 +10002885void
Damien Miller62cee002000-09-23 17:15:56 +11002886auth_input_open_request(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002887{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002888 Channel *c = NULL;
2889 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002890 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002891
Damien Millerb38eff82000-04-01 11:09:21 +10002892 packet_integrity_check(plen, 4, type);
2893
Damien Miller95def091999-11-25 00:26:21 +11002894 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002895 remote_id = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002896
Damien Miller5428f641999-11-25 11:54:57 +11002897 /*
2898 * Get a connection to the local authentication agent (this may again
2899 * get forwarded).
2900 */
Damien Miller95def091999-11-25 00:26:21 +11002901 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002902
Damien Miller5428f641999-11-25 11:54:57 +11002903 /*
2904 * If we could not connect the agent, send an error message back to
2905 * the server. This should never happen unless the agent dies,
2906 * because authentication forwarding is only enabled if we have an
2907 * agent.
2908 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002909 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002910 name = xstrdup("authentication agent connection");
2911 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2912 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002913 if (c == NULL) {
2914 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002915 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002916 close(sock);
2917 } else {
2918 c->remote_id = remote_id;
2919 }
Damien Miller95def091999-11-25 00:26:21 +11002920 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002921 if (c == NULL) {
2922 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2923 packet_put_int(remote_id);
2924 } else {
2925 /* Send a confirmation to the remote host. */
2926 debug("Forwarding authentication connection.");
2927 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2928 packet_put_int(remote_id);
2929 packet_put_int(c->self);
2930 }
Damien Miller95def091999-11-25 00:26:21 +11002931 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002932}