blob: 29eaee7c4d6011841ad8920592aa12cb2d080d6f [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110016 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Miller9403aa22002-06-26 19:14:43 +100042RCSID("$OpenBSD: channels.c,v 1.179 2002/06/26 08:55:02 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"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "log.h"
50#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100054#include "key.h"
55#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110056#include "pathnames.h"
Damien Miller994cf142000-07-21 10:19:44 +100057
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
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000131/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000132static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000133
Ben Lindstrome9c99912001-06-09 00:41:05 +0000134/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000135static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000136
Ben Lindstrome9c99912001-06-09 00:41:05 +0000137/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000138
139Channel *
140channel_lookup(int id)
141{
142 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000143
Ben Lindstrom79548872002-03-05 01:57:44 +0000144 if (id < 0 || id >= channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000145 log("channel_lookup: %d: bad id", id);
146 return NULL;
147 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148 c = channels[id];
149 if (c == NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +1000150 log("channel_lookup: %d: bad id: channel free", id);
151 return NULL;
152 }
153 return c;
154}
155
Damien Miller5428f641999-11-25 11:54:57 +1100156/*
Damien Millere247cc42000-05-07 12:03:14 +1000157 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000158 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100159 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100162channel_register_fds(Channel *c, int rfd, int wfd, int efd,
163 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100166 channel_max_fd = MAX(channel_max_fd, rfd);
167 channel_max_fd = MAX(channel_max_fd, wfd);
168 channel_max_fd = MAX(channel_max_fd, efd);
169
Damien Miller5428f641999-11-25 11:54:57 +1100170 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000171
Damien Miller6f83b8e2000-05-02 09:23:45 +1000172 c->rfd = rfd;
173 c->wfd = wfd;
174 c->sock = (rfd == wfd) ? rfd : -1;
175 c->efd = efd;
176 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100177
Damien Miller79438cc2001-02-16 12:34:57 +1100178 /* XXX ugly hack: nonblock is only set by the server */
179 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000180 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100181 c->isatty = 1;
182 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000183 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100184 c->self, c->wfd);
185 }
186 } else {
187 c->isatty = 0;
188 }
189
Damien Miller69b69aa2000-10-28 14:19:58 +1100190 /* enable nonblocking mode */
191 if (nonblock) {
192 if (rfd != -1)
193 set_nonblock(rfd);
194 if (wfd != -1)
195 set_nonblock(wfd);
196 if (efd != -1)
197 set_nonblock(efd);
198 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000199}
200
201/*
202 * Allocate a new channel object and set its type and socket. This will cause
203 * remote_name to be freed.
204 */
205
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000206Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000207channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000208 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000209{
210 int i, found;
211 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212
Damien Miller95def091999-11-25 00:26:21 +1100213 /* Do initial allocation if this is the first call. */
214 if (channels_alloc == 0) {
215 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000216 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100217 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000218 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000219 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100220 }
221 /* Try to find a free slot where to put the new channel. */
222 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000223 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100224 /* Found a free slot. */
225 found = i;
226 break;
227 }
228 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100229 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100230 found = channels_alloc;
231 channels_alloc += 10;
Damien Miller9403aa22002-06-26 19:14:43 +1000232 if (channels_alloc > 10000)
233 fatal("channel_new: internal error: channels_alloc %d "
234 "too big.", channels_alloc);
Damien Millerd3444942000-09-30 14:20:03 +1100235 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000236 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100237 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000238 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100239 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000240 /* Initialize and return new channel. */
241 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000242 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100243 buffer_init(&c->input);
244 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000245 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100246 c->ostate = CHAN_OUTPUT_OPEN;
247 c->istate = CHAN_INPUT_OPEN;
248 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100249 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100250 c->self = found;
251 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000252 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000253 c->local_window = window;
254 c->local_window_max = window;
255 c->local_consumed = 0;
256 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100257 c->remote_id = -1;
258 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000259 c->remote_window = 0;
260 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000261 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100262 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000263 c->detach_user = NULL;
Damien Miller67f0bc02002-02-05 12:23:08 +1100264 c->confirm = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000265 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100266 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000267 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000269
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000270static int
271channel_find_maxfd(void)
272{
273 int i, max = 0;
274 Channel *c;
275
276 for (i = 0; i < channels_alloc; i++) {
277 c = channels[i];
278 if (c != NULL) {
279 max = MAX(max, c->rfd);
280 max = MAX(max, c->wfd);
281 max = MAX(max, c->efd);
282 }
283 }
284 return max;
285}
286
287int
288channel_close_fd(int *fdp)
289{
290 int ret = 0, fd = *fdp;
291
292 if (fd != -1) {
293 ret = close(fd);
294 *fdp = -1;
295 if (fd == channel_max_fd)
296 channel_max_fd = channel_find_maxfd();
297 }
298 return ret;
299}
300
Damien Miller6f83b8e2000-05-02 09:23:45 +1000301/* Close all channel fd/socket. */
302
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000304channel_close_fds(Channel *c)
305{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000306 debug3("channel_close_fds: channel %d: r %d w %d e %d",
307 c->self, c->rfd, c->wfd, c->efd);
308
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000309 channel_close_fd(&c->sock);
310 channel_close_fd(&c->rfd);
311 channel_close_fd(&c->wfd);
312 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000313}
314
315/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316
Damien Miller4af51302000-04-16 11:18:38 +1000317void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000318channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000320 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000321 int i, n;
322
323 for (n = 0, i = 0; i < channels_alloc; i++)
324 if (channels[i])
325 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000326 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000327 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000328
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000329 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000330 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000331 xfree(s);
332
Damien Miller6f83b8e2000-05-02 09:23:45 +1000333 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000334 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000335 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000336 buffer_free(&c->input);
337 buffer_free(&c->output);
338 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000339 if (c->remote_name) {
340 xfree(c->remote_name);
341 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100342 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000343 channels[c->self] = NULL;
344 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345}
346
Ben Lindstrome9c99912001-06-09 00:41:05 +0000347void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000348channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000349{
350 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000351
Ben Lindstrom601e4362001-06-21 03:19:23 +0000352 for (i = 0; i < channels_alloc; i++)
353 if (channels[i] != NULL)
354 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000355}
356
357/*
358 * Closes the sockets/fds of all channels. This is used to close extra file
359 * descriptors after a fork.
360 */
361
362void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000363channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000364{
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:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000390 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000391 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
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000404channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000405{
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) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000412#if 0
413 if (!compat20 &&
414 buffer_len(&c->input) > packet_get_maxsize()) {
Ben Lindstrome9c99912001-06-09 00:41:05 +0000415 debug("channel %d: big input buffer %d",
416 c->self, buffer_len(&c->input));
417 return 0;
418 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000419#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000420 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000421 debug("channel %d: big output buffer %d > %d",
422 c->self, buffer_len(&c->output),
423 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000424 return 0;
425 }
426 }
427 }
428 return 1;
429}
430
431/* Returns true if any channel is still open. */
432
433int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000434channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435{
436 int i;
437 Channel *c;
438
439 for (i = 0; i < channels_alloc; i++) {
440 c = channels[i];
441 if (c == NULL)
442 continue;
443 switch (c->type) {
444 case SSH_CHANNEL_X11_LISTENER:
445 case SSH_CHANNEL_PORT_LISTENER:
446 case SSH_CHANNEL_RPORT_LISTENER:
447 case SSH_CHANNEL_CLOSED:
448 case SSH_CHANNEL_AUTH_SOCKET:
449 case SSH_CHANNEL_DYNAMIC:
450 case SSH_CHANNEL_CONNECTING:
451 case SSH_CHANNEL_ZOMBIE:
452 continue;
453 case SSH_CHANNEL_LARVAL:
454 if (!compat20)
455 fatal("cannot happen: SSH_CHANNEL_LARVAL");
456 continue;
457 case SSH_CHANNEL_OPENING:
458 case SSH_CHANNEL_OPEN:
459 case SSH_CHANNEL_X11_OPEN:
460 return 1;
461 case SSH_CHANNEL_INPUT_DRAINING:
462 case SSH_CHANNEL_OUTPUT_DRAINING:
463 if (!compat13)
464 fatal("cannot happen: OUT_DRAIN");
465 return 1;
466 default:
467 fatal("channel_still_open: bad channel type %d", c->type);
468 /* NOTREACHED */
469 }
470 }
471 return 0;
472}
473
474/* Returns the id of an open channel suitable for keepaliving */
475
476int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000477channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000478{
479 int i;
480 Channel *c;
481
482 for (i = 0; i < channels_alloc; i++) {
483 c = channels[i];
484 if (c == NULL)
485 continue;
486 switch (c->type) {
487 case SSH_CHANNEL_CLOSED:
488 case SSH_CHANNEL_DYNAMIC:
489 case SSH_CHANNEL_X11_LISTENER:
490 case SSH_CHANNEL_PORT_LISTENER:
491 case SSH_CHANNEL_RPORT_LISTENER:
492 case SSH_CHANNEL_OPENING:
493 case SSH_CHANNEL_CONNECTING:
494 case SSH_CHANNEL_ZOMBIE:
495 continue;
496 case SSH_CHANNEL_LARVAL:
497 case SSH_CHANNEL_AUTH_SOCKET:
498 case SSH_CHANNEL_OPEN:
499 case SSH_CHANNEL_X11_OPEN:
500 return i;
501 case SSH_CHANNEL_INPUT_DRAINING:
502 case SSH_CHANNEL_OUTPUT_DRAINING:
503 if (!compat13)
504 fatal("cannot happen: OUT_DRAIN");
505 return i;
506 default:
507 fatal("channel_find_open: bad channel type %d", c->type);
508 /* NOTREACHED */
509 }
510 }
511 return -1;
512}
513
514
515/*
516 * Returns a message describing the currently open forwarded connections,
517 * suitable for sending to the client. The message contains crlf pairs for
518 * newlines.
519 */
520
521char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000522channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000523{
524 Buffer buffer;
525 Channel *c;
526 char buf[1024], *cp;
527 int i;
528
529 buffer_init(&buffer);
530 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
531 buffer_append(&buffer, buf, strlen(buf));
532 for (i = 0; i < channels_alloc; i++) {
533 c = channels[i];
534 if (c == NULL)
535 continue;
536 switch (c->type) {
537 case SSH_CHANNEL_X11_LISTENER:
538 case SSH_CHANNEL_PORT_LISTENER:
539 case SSH_CHANNEL_RPORT_LISTENER:
540 case SSH_CHANNEL_CLOSED:
541 case SSH_CHANNEL_AUTH_SOCKET:
542 case SSH_CHANNEL_ZOMBIE:
543 continue;
544 case SSH_CHANNEL_LARVAL:
545 case SSH_CHANNEL_OPENING:
546 case SSH_CHANNEL_CONNECTING:
547 case SSH_CHANNEL_DYNAMIC:
548 case SSH_CHANNEL_OPEN:
549 case SSH_CHANNEL_X11_OPEN:
550 case SSH_CHANNEL_INPUT_DRAINING:
551 case SSH_CHANNEL_OUTPUT_DRAINING:
552 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
553 c->self, c->remote_name,
554 c->type, c->remote_id,
555 c->istate, buffer_len(&c->input),
556 c->ostate, buffer_len(&c->output),
557 c->rfd, c->wfd);
558 buffer_append(&buffer, buf, strlen(buf));
559 continue;
560 default:
561 fatal("channel_open_message: bad channel type %d", c->type);
562 /* NOTREACHED */
563 }
564 }
565 buffer_append(&buffer, "\0", 1);
566 cp = xstrdup(buffer_ptr(&buffer));
567 buffer_free(&buffer);
568 return cp;
569}
570
571void
572channel_send_open(int id)
573{
574 Channel *c = channel_lookup(id);
575 if (c == NULL) {
576 log("channel_send_open: %d: bad id", id);
577 return;
578 }
579 debug("send channel open %d", id);
580 packet_start(SSH2_MSG_CHANNEL_OPEN);
581 packet_put_cstring(c->ctype);
582 packet_put_int(c->self);
583 packet_put_int(c->local_window);
584 packet_put_int(c->local_maxpacket);
585 packet_send();
586}
587
588void
Damien Millera500cd62002-02-08 22:04:26 +1100589channel_request_start(int local_id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000590{
Damien Millera500cd62002-02-08 22:04:26 +1100591 Channel *c = channel_lookup(local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592 if (c == NULL) {
Damien Millera500cd62002-02-08 22:04:26 +1100593 log("channel_request_start: %d: unknown channel id", local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594 return;
595 }
Damien Millera500cd62002-02-08 22:04:26 +1100596 debug("channel request %d: %s", local_id, service) ;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000597 packet_start(SSH2_MSG_CHANNEL_REQUEST);
598 packet_put_int(c->remote_id);
599 packet_put_cstring(service);
600 packet_put_char(wantconfirm);
601}
602void
Damien Miller67f0bc02002-02-05 12:23:08 +1100603channel_register_confirm(int id, channel_callback_fn *fn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000604{
605 Channel *c = channel_lookup(id);
606 if (c == NULL) {
Damien Miller67f0bc02002-02-05 12:23:08 +1100607 log("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000608 return;
609 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100610 c->confirm = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611}
612void
613channel_register_cleanup(int id, channel_callback_fn *fn)
614{
615 Channel *c = channel_lookup(id);
616 if (c == NULL) {
617 log("channel_register_cleanup: %d: bad id", id);
618 return;
619 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000620 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000621}
622void
623channel_cancel_cleanup(int id)
624{
625 Channel *c = channel_lookup(id);
626 if (c == NULL) {
627 log("channel_cancel_cleanup: %d: bad id", id);
628 return;
629 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000630 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000631}
632void
633channel_register_filter(int id, channel_filter_fn *fn)
634{
635 Channel *c = channel_lookup(id);
636 if (c == NULL) {
637 log("channel_register_filter: %d: bad id", id);
638 return;
639 }
640 c->input_filter = fn;
641}
642
643void
644channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100645 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646{
647 Channel *c = channel_lookup(id);
648 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
649 fatal("channel_activate for non-larval channel %d.", id);
650 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
651 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100652 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
654 packet_put_int(c->remote_id);
655 packet_put_int(c->local_window);
656 packet_send();
657}
658
Damien Miller5428f641999-11-25 11:54:57 +1100659/*
Damien Millerb38eff82000-04-01 11:09:21 +1000660 * 'channel_pre*' are called just before select() to add any bits relevant to
661 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100662 */
Damien Millerb38eff82000-04-01 11:09:21 +1000663/*
664 * 'channel_post*': perform any appropriate operations for channels which
665 * have events pending.
666 */
667typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
668chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
669chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
670
Ben Lindstrombba81212001-06-25 05:01:22 +0000671static void
Damien Millerb38eff82000-04-01 11:09:21 +1000672channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
673{
674 FD_SET(c->sock, readset);
675}
676
Ben Lindstrombba81212001-06-25 05:01:22 +0000677static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000678channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
679{
680 debug3("channel %d: waiting for connection", c->self);
681 FD_SET(c->sock, writeset);
682}
683
Ben Lindstrombba81212001-06-25 05:01:22 +0000684static void
Damien Millerb38eff82000-04-01 11:09:21 +1000685channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
686{
687 if (buffer_len(&c->input) < packet_get_maxsize())
688 FD_SET(c->sock, readset);
689 if (buffer_len(&c->output) > 0)
690 FD_SET(c->sock, writeset);
691}
692
Ben Lindstrombba81212001-06-25 05:01:22 +0000693static void
Damien Millerde6987c2002-01-22 23:20:40 +1100694channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000695{
Damien Millerde6987c2002-01-22 23:20:40 +1100696 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000697
Damien Miller33b13562000-04-04 14:38:59 +1000698 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100699 limit > 0 &&
700 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000701 FD_SET(c->rfd, readset);
702 if (c->ostate == CHAN_OUTPUT_OPEN ||
703 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
704 if (buffer_len(&c->output) > 0) {
705 FD_SET(c->wfd, writeset);
706 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000707 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000708 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
709 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000710 else
711 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000712 }
713 }
714 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100715 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000716 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
717 buffer_len(&c->extended) > 0)
718 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000719 else if (!(c->flags & CHAN_EOF_SENT) &&
720 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000721 buffer_len(&c->extended) < c->remote_window)
722 FD_SET(c->efd, readset);
723 }
724}
725
Ben Lindstrombba81212001-06-25 05:01:22 +0000726static void
Damien Millerb38eff82000-04-01 11:09:21 +1000727channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
728{
729 if (buffer_len(&c->input) == 0) {
730 packet_start(SSH_MSG_CHANNEL_CLOSE);
731 packet_put_int(c->remote_id);
732 packet_send();
733 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000734 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000735 }
736}
737
Ben Lindstrombba81212001-06-25 05:01:22 +0000738static void
Damien Millerb38eff82000-04-01 11:09:21 +1000739channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
740{
741 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000742 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000743 else
Damien Millerb38eff82000-04-01 11:09:21 +1000744 FD_SET(c->sock, writeset);
745}
746
747/*
748 * This is a special state for X11 authentication spoofing. An opened X11
749 * connection (when authentication spoofing is being done) remains in this
750 * state until the first packet has been completely read. The authentication
751 * data in that packet is then substituted by the real data if it matches the
752 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000753 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000755 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000756static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000757x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000758{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000759 u_char *ucp;
760 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000761
762 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000764 return 0;
765
766 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100767 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000768 if (ucp[0] == 0x42) { /* Byte order MSB first. */
769 proto_len = 256 * ucp[6] + ucp[7];
770 data_len = 256 * ucp[8] + ucp[9];
771 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
772 proto_len = ucp[6] + 256 * ucp[7];
773 data_len = ucp[8] + 256 * ucp[9];
774 } else {
775 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100776 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000777 return -1;
778 }
779
780 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000781 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000782 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
783 return 0;
784
785 /* Check if authentication protocol matches. */
786 if (proto_len != strlen(x11_saved_proto) ||
787 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
788 debug("X11 connection uses different authentication protocol.");
789 return -1;
790 }
791 /* Check if authentication data matches our fake data. */
792 if (data_len != x11_fake_data_len ||
793 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
794 x11_fake_data, x11_fake_data_len) != 0) {
795 debug("X11 auth data does not match fake data.");
796 return -1;
797 }
798 /* Check fake data length */
799 if (x11_fake_data_len != x11_saved_data_len) {
800 error("X11 fake_data_len %d != saved_data_len %d",
801 x11_fake_data_len, x11_saved_data_len);
802 return -1;
803 }
804 /*
805 * Received authentication protocol and data match
806 * our fake data. Substitute the fake data with real
807 * data.
808 */
809 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
810 x11_saved_data, x11_saved_data_len);
811 return 1;
812}
813
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static void
Damien Millerb38eff82000-04-01 11:09:21 +1000815channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
816{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000817 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000818 if (ret == 1) {
819 /* Start normal processing for the channel. */
820 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000821 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000822 } else if (ret == -1) {
823 /*
824 * We have received an X11 connection that has bad
825 * authentication information.
826 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000827 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000828 buffer_clear(&c->input);
829 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000830 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000831 c->sock = -1;
832 c->type = SSH_CHANNEL_CLOSED;
833 packet_start(SSH_MSG_CHANNEL_CLOSE);
834 packet_put_int(c->remote_id);
835 packet_send();
836 }
837}
838
Ben Lindstrombba81212001-06-25 05:01:22 +0000839static void
Damien Millerbd483e72000-04-30 10:00:53 +1000840channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000841{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000842 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000843
844 /* c->force_drain = 1; */
845
Damien Millerb38eff82000-04-01 11:09:21 +1000846 if (ret == 1) {
847 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100848 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000849 } else if (ret == -1) {
Damien Millera90fc082002-01-22 23:19:38 +1100850 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000851 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100852 chan_read_failed(c);
853 buffer_clear(&c->input);
854 chan_ibuf_empty(c);
855 buffer_clear(&c->output);
856 /* for proto v1, the peer will send an IEOF */
857 if (compat20)
858 chan_write_failed(c);
859 else
860 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000861 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
862 }
863}
864
Ben Lindstromb3921512001-04-11 15:57:50 +0000865/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000866static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000867channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000868{
869 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000870 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100871 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000872 struct {
873 u_int8_t version;
874 u_int8_t command;
875 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000876 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000877 } s4_req, s4_rsp;
878
Ben Lindstromb3921512001-04-11 15:57:50 +0000879 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000880
881 have = buffer_len(&c->input);
882 len = sizeof(s4_req);
883 if (have < len)
884 return 0;
885 p = buffer_ptr(&c->input);
886 for (found = 0, i = len; i < have; i++) {
887 if (p[i] == '\0') {
888 found = 1;
889 break;
890 }
891 if (i > 1024) {
892 /* the peer is probably sending garbage */
893 debug("channel %d: decode socks4: too long",
894 c->self);
895 return -1;
896 }
897 }
898 if (!found)
899 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000900 buffer_get(&c->input, (char *)&s4_req.version, 1);
901 buffer_get(&c->input, (char *)&s4_req.command, 1);
902 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000903 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000904 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000905 p = buffer_ptr(&c->input);
906 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000907 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000908 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000909 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000910 c->self, len, have);
911 strlcpy(username, p, sizeof(username));
912 buffer_consume(&c->input, len);
913 buffer_consume(&c->input, 1); /* trailing '\0' */
914
Ben Lindstromb3921512001-04-11 15:57:50 +0000915 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000916 strlcpy(c->path, host, sizeof(c->path));
917 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100918
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000919 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
920 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000921
Ben Lindstromb3921512001-04-11 15:57:50 +0000922 if (s4_req.command != 1) {
923 debug("channel %d: cannot handle: socks4 cn %d",
924 c->self, s4_req.command);
925 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000926 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000927 s4_rsp.version = 0; /* vn: 0 for reply */
928 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000929 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000930 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000931 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000932 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000933}
934
Ben Lindstromb3921512001-04-11 15:57:50 +0000935/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000936static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000937channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
938{
939 u_char *p;
940 int have, ret;
941
942 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000943 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000944 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000945 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000946 /* check if the fixed size part of the packet is in buffer. */
947 if (have < 4) {
948 /* need more */
949 FD_SET(c->sock, readset);
950 return;
951 }
952 /* try to guess the protocol */
953 p = buffer_ptr(&c->input);
954 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000955 case 0x04:
956 ret = channel_decode_socks4(c, readset, writeset);
957 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000958 default:
959 ret = -1;
960 break;
961 }
962 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000963 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000964 } else if (ret == 0) {
965 debug2("channel %d: pre_dynamic: need more", c->self);
966 /* need more */
967 FD_SET(c->sock, readset);
968 } else {
969 /* switch to the next state */
970 c->type = SSH_CHANNEL_OPENING;
971 port_open_helper(c, "direct-tcpip");
972 }
973}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000974
Damien Millerb38eff82000-04-01 11:09:21 +1000975/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000976static void
Damien Millerb38eff82000-04-01 11:09:21 +1000977channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
978{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000979 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000980 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +1100981 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +1000982 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100983 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000984 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000985
986 if (FD_ISSET(c->sock, readset)) {
987 debug("X11 connection requested.");
988 addrlen = sizeof(addr);
989 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100990 if (c->single_connection) {
991 debug("single_connection: closing X11 listener.");
992 channel_close_fd(&c->sock);
993 chan_mark_dead(c);
994 }
Damien Millerb38eff82000-04-01 11:09:21 +1000995 if (newsock < 0) {
996 error("accept: %.100s", strerror(errno));
997 return;
998 }
Damien Miller398e1cf2002-02-05 11:52:13 +1100999 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001000 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001001 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001002 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001003 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001004
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001005 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001006 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1007 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001008 0, xstrdup(buf), 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001009 if (compat20) {
1010 packet_start(SSH2_MSG_CHANNEL_OPEN);
1011 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001012 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001013 packet_put_int(nc->local_window_max);
1014 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001015 /* originator ipaddr and port */
1016 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001017 if (datafellows & SSH_BUG_X11FWD) {
1018 debug("ssh2 x11 bug compat mode");
1019 } else {
1020 packet_put_int(remote_port);
1021 }
Damien Millerbd483e72000-04-30 10:00:53 +10001022 packet_send();
1023 } else {
1024 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001025 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001026 if (packet_get_protocol_flags() &
1027 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001028 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001029 packet_send();
1030 }
Damien Millerd83ff352001-01-30 09:19:34 +11001031 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001032 }
1033}
1034
Ben Lindstrombba81212001-06-25 05:01:22 +00001035static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001036port_open_helper(Channel *c, char *rtype)
1037{
1038 int direct;
1039 char buf[1024];
1040 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1041 u_short remote_port = get_peer_port(c->sock);
1042
1043 direct = (strcmp(rtype, "direct-tcpip") == 0);
1044
1045 snprintf(buf, sizeof buf,
1046 "%s: listening port %d for %.100s port %d, "
1047 "connect from %.200s port %d",
1048 rtype, c->listening_port, c->path, c->host_port,
1049 remote_ipaddr, remote_port);
1050
1051 xfree(c->remote_name);
1052 c->remote_name = xstrdup(buf);
1053
1054 if (compat20) {
1055 packet_start(SSH2_MSG_CHANNEL_OPEN);
1056 packet_put_cstring(rtype);
1057 packet_put_int(c->self);
1058 packet_put_int(c->local_window_max);
1059 packet_put_int(c->local_maxpacket);
1060 if (direct) {
1061 /* target host, port */
1062 packet_put_cstring(c->path);
1063 packet_put_int(c->host_port);
1064 } else {
1065 /* listen address, port */
1066 packet_put_cstring(c->path);
1067 packet_put_int(c->listening_port);
1068 }
1069 /* originator host and port */
1070 packet_put_cstring(remote_ipaddr);
1071 packet_put_int(remote_port);
1072 packet_send();
1073 } else {
1074 packet_start(SSH_MSG_PORT_OPEN);
1075 packet_put_int(c->self);
1076 packet_put_cstring(c->path);
1077 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001078 if (packet_get_protocol_flags() &
1079 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001080 packet_put_cstring(c->remote_name);
1081 packet_send();
1082 }
1083 xfree(remote_ipaddr);
1084}
1085
Damien Millerb38eff82000-04-01 11:09:21 +10001086/*
1087 * This socket is listening for connections to a forwarded TCP/IP port.
1088 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001089static void
Damien Millerb38eff82000-04-01 11:09:21 +10001090channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1091{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001092 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001093 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001094 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001095 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001096 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001097
Damien Millerb38eff82000-04-01 11:09:21 +10001098 if (FD_ISSET(c->sock, readset)) {
1099 debug("Connection to port %d forwarding "
1100 "to %.100s port %d requested.",
1101 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001102
Damien Miller4623a752001-10-10 15:03:58 +10001103 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1104 nextstate = SSH_CHANNEL_OPENING;
1105 rtype = "forwarded-tcpip";
1106 } else {
1107 if (c->host_port == 0) {
1108 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001109 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001110 } else {
1111 nextstate = SSH_CHANNEL_OPENING;
1112 rtype = "direct-tcpip";
1113 }
1114 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001115
Damien Millerb38eff82000-04-01 11:09:21 +10001116 addrlen = sizeof(addr);
1117 newsock = accept(c->sock, &addr, &addrlen);
1118 if (newsock < 0) {
1119 error("accept: %.100s", strerror(errno));
1120 return;
1121 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001122 set_nodelay(newsock);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001123 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001124 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001125 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001126 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001127 nc->listening_port = c->listening_port;
1128 nc->host_port = c->host_port;
1129 strlcpy(nc->path, c->path, sizeof(nc->path));
1130
Damien Miller4623a752001-10-10 15:03:58 +10001131 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1132 /*
1133 * do not call the channel_post handler until
1134 * this flag has been reset by a pre-handler.
1135 * otherwise the FD_ISSET calls might overflow
1136 */
1137 nc->delayed = 1;
1138 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001139 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001140 }
Damien Millerb38eff82000-04-01 11:09:21 +10001141 }
1142}
1143
1144/*
1145 * This is the authentication agent socket listening for connections from
1146 * clients.
1147 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001148static void
Damien Millerb38eff82000-04-01 11:09:21 +10001149channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1150{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001151 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001152 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001153 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001154 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001155 socklen_t addrlen;
1156
1157 if (FD_ISSET(c->sock, readset)) {
1158 addrlen = sizeof(addr);
1159 newsock = accept(c->sock, &addr, &addrlen);
1160 if (newsock < 0) {
1161 error("accept from auth socket: %.100s", strerror(errno));
1162 return;
1163 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001164 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001165 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001166 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1167 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001168 0, name, 1);
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 Lindstrom733a2352002-03-05 01:31:28 +00001190 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001191 err = errno;
1192 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001193 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001194 if (err == 0) {
1195 debug("channel %d: connected", c->self);
1196 c->type = SSH_CHANNEL_OPEN;
1197 if (compat20) {
1198 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1199 packet_put_int(c->remote_id);
1200 packet_put_int(c->self);
1201 packet_put_int(c->local_window);
1202 packet_put_int(c->local_maxpacket);
1203 } else {
1204 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1205 packet_put_int(c->remote_id);
1206 packet_put_int(c->self);
1207 }
1208 } else {
1209 debug("channel %d: not connected: %s",
1210 c->self, strerror(err));
1211 if (compat20) {
1212 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1213 packet_put_int(c->remote_id);
1214 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1215 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1216 packet_put_cstring(strerror(err));
1217 packet_put_cstring("");
1218 }
1219 } else {
1220 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1221 packet_put_int(c->remote_id);
1222 }
1223 chan_mark_dead(c);
1224 }
1225 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001226 }
1227}
1228
Ben Lindstrombba81212001-06-25 05:01:22 +00001229static int
Damien Millerb38eff82000-04-01 11:09:21 +10001230channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1231{
1232 char buf[16*1024];
1233 int len;
1234
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001235 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001236 FD_ISSET(c->rfd, readset)) {
1237 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001238 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1239 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001240 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001241 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001242 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001243 if (c->type != SSH_CHANNEL_OPEN) {
1244 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001245 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001246 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001247 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001248 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001249 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001250 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001251 } else {
1252 chan_read_failed(c);
1253 }
1254 return -1;
1255 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001256 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001257 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001258 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001259 chan_read_failed(c);
1260 }
1261 } else {
1262 buffer_append(&c->input, buf, len);
1263 }
Damien Millerb38eff82000-04-01 11:09:21 +10001264 }
1265 return 1;
1266}
Ben Lindstrombba81212001-06-25 05:01:22 +00001267static int
Damien Millerb38eff82000-04-01 11:09:21 +10001268channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1269{
Ben Lindstrome229b252001-03-05 06:28:06 +00001270 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001271 u_char *data;
1272 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001273 int len;
1274
1275 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001276 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001277 FD_ISSET(c->wfd, writeset) &&
1278 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001279 data = buffer_ptr(&c->output);
1280 dlen = buffer_len(&c->output);
1281 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001282 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1283 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001284 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001285 if (c->type != SSH_CHANNEL_OPEN) {
1286 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001287 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001288 return -1;
1289 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001290 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001291 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001292 c->type = SSH_CHANNEL_INPUT_DRAINING;
1293 } else {
1294 chan_write_failed(c);
1295 }
1296 return -1;
1297 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001298 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001299 if (tcgetattr(c->wfd, &tio) == 0 &&
1300 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1301 /*
1302 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001303 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001304 * size of a SSH2_MSG_CHANNEL_DATA message
1305 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001306 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001307 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001308 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001309 }
1310 }
Damien Millerb38eff82000-04-01 11:09:21 +10001311 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001312 if (compat20 && len > 0) {
1313 c->local_consumed += len;
1314 }
1315 }
1316 return 1;
1317}
Ben Lindstrombba81212001-06-25 05:01:22 +00001318static int
Damien Miller33b13562000-04-04 14:38:59 +10001319channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1320{
1321 char buf[16*1024];
1322 int len;
1323
Damien Miller1383bd82000-04-06 12:32:37 +10001324/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001325 if (c->efd != -1) {
1326 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1327 FD_ISSET(c->efd, writeset) &&
1328 buffer_len(&c->extended) > 0) {
1329 len = write(c->efd, buffer_ptr(&c->extended),
1330 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001331 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001332 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001333 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1334 return 1;
1335 if (len <= 0) {
1336 debug2("channel %d: closing write-efd %d",
1337 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001338 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001339 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001340 buffer_consume(&c->extended, len);
1341 c->local_consumed += len;
1342 }
1343 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1344 FD_ISSET(c->efd, readset)) {
1345 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001346 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001347 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001348 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1349 return 1;
1350 if (len <= 0) {
1351 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001352 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001353 channel_close_fd(&c->efd);
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 Millerde6987c2002-01-22 23:20:40 +11001382channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001383{
Damien Miller4623a752001-10-10 15:03:58 +10001384 if (c->delayed)
1385 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001386 channel_handle_rfd(c, readset, writeset);
1387 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001388 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001389 return;
Damien Miller33b13562000-04-04 14:38:59 +10001390 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001391 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001392}
1393
Ben Lindstrombba81212001-06-25 05:01:22 +00001394static void
Damien Millerb38eff82000-04-01 11:09:21 +10001395channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1396{
1397 int len;
1398 /* Send buffered output data to the socket. */
1399 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1400 len = write(c->sock, buffer_ptr(&c->output),
1401 buffer_len(&c->output));
1402 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001403 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001404 else
1405 buffer_consume(&c->output, len);
1406 }
1407}
1408
Ben Lindstrombba81212001-06-25 05:01:22 +00001409static void
Damien Miller33b13562000-04-04 14:38:59 +10001410channel_handler_init_20(void)
1411{
Damien Millerde6987c2002-01-22 23:20:40 +11001412 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001413 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001414 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001415 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001416 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001417 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001418 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001419 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001420
Damien Millerde6987c2002-01-22 23:20:40 +11001421 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001422 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001423 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001424 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001425 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001426 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001427 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001428}
1429
Ben Lindstrombba81212001-06-25 05:01:22 +00001430static void
Damien Millerb38eff82000-04-01 11:09:21 +10001431channel_handler_init_13(void)
1432{
1433 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1434 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1435 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1436 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1437 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1438 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1439 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001440 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001441 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001442
Damien Millerde6987c2002-01-22 23:20:40 +11001443 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001444 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1445 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1446 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1447 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001448 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001449 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001450}
1451
Ben Lindstrombba81212001-06-25 05:01:22 +00001452static void
Damien Millerb38eff82000-04-01 11:09:21 +10001453channel_handler_init_15(void)
1454{
Damien Millerde6987c2002-01-22 23:20:40 +11001455 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001456 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001457 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1458 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1459 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001460 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001461 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001462
1463 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1464 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1465 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001466 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001467 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001468 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001469}
1470
Ben Lindstrombba81212001-06-25 05:01:22 +00001471static void
Damien Millerb38eff82000-04-01 11:09:21 +10001472channel_handler_init(void)
1473{
1474 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001475 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001476 channel_pre[i] = NULL;
1477 channel_post[i] = NULL;
1478 }
Damien Miller33b13562000-04-04 14:38:59 +10001479 if (compat20)
1480 channel_handler_init_20();
1481 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001482 channel_handler_init_13();
1483 else
1484 channel_handler_init_15();
1485}
1486
Damien Miller3ec27592001-10-12 11:35:04 +10001487/* gc dead channels */
1488static void
1489channel_garbage_collect(Channel *c)
1490{
1491 if (c == NULL)
1492 return;
1493 if (c->detach_user != NULL) {
1494 if (!chan_is_dead(c, 0))
1495 return;
1496 debug("channel %d: gc: notify user", c->self);
1497 c->detach_user(c->self, NULL);
1498 /* if we still have a callback */
1499 if (c->detach_user != NULL)
1500 return;
1501 debug("channel %d: gc: user detached", c->self);
1502 }
1503 if (!chan_is_dead(c, 1))
1504 return;
1505 debug("channel %d: garbage collecting", c->self);
1506 channel_free(c);
1507}
1508
Ben Lindstrombba81212001-06-25 05:01:22 +00001509static void
Damien Millerb38eff82000-04-01 11:09:21 +10001510channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1511{
1512 static int did_init = 0;
1513 int i;
1514 Channel *c;
1515
1516 if (!did_init) {
1517 channel_handler_init();
1518 did_init = 1;
1519 }
1520 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001521 c = channels[i];
1522 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001523 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001524 if (ftab[c->type] != NULL)
1525 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001526 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001527 }
1528}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001529
Ben Lindstrome9c99912001-06-09 00:41:05 +00001530/*
1531 * Allocate/update select bitmasks and add any bits relevant to channels in
1532 * select bitmasks.
1533 */
Damien Miller4af51302000-04-16 11:18:38 +10001534void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001535channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001536 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001537{
Damien Miller5e953212001-01-30 09:14:00 +11001538 int n;
1539 u_int sz;
1540
1541 n = MAX(*maxfdp, channel_max_fd);
1542
1543 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001544 /* perhaps check sz < nalloc/2 and shrink? */
1545 if (*readsetp == NULL || sz > *nallocp) {
1546 *readsetp = xrealloc(*readsetp, sz);
1547 *writesetp = xrealloc(*writesetp, sz);
1548 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001549 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001550 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001551 memset(*readsetp, 0, sz);
1552 memset(*writesetp, 0, sz);
1553
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001554 if (!rekeying)
1555 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001556}
1557
Ben Lindstrome9c99912001-06-09 00:41:05 +00001558/*
1559 * After select, perform any appropriate operations for channels which have
1560 * events pending.
1561 */
Damien Miller4af51302000-04-16 11:18:38 +10001562void
Damien Miller95def091999-11-25 00:26:21 +11001563channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564{
Damien Millerb38eff82000-04-01 11:09:21 +10001565 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566}
1567
Ben Lindstrome9c99912001-06-09 00:41:05 +00001568
Damien Miller5e953212001-01-30 09:14:00 +11001569/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001570
Damien Miller4af51302000-04-16 11:18:38 +10001571void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001572channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001573{
Damien Millerb38eff82000-04-01 11:09:21 +10001574 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001575 int i;
1576 u_int len;
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? */
Damien Miller3ec27592001-10-12 11:35:04 +10001598 debug3("channel %d: will not send 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:
Ben Lindstromcf159442002-03-26 03:26:24 +00001639 * tell peer, that we will not send more data: send IEOF.
1640 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001641 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001642 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001643 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1644 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001645 else
1646 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001647 }
Damien Miller33b13562000-04-04 14:38:59 +10001648 /* Send extended data, i.e. stderr */
1649 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001650 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001651 c->remote_window > 0 &&
1652 (len = buffer_len(&c->extended)) > 0 &&
1653 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001654 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001655 c->self, c->remote_window, buffer_len(&c->extended),
1656 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001657 if (len > c->remote_window)
1658 len = c->remote_window;
1659 if (len > c->remote_maxpacket)
1660 len = c->remote_maxpacket;
1661 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1662 packet_put_int(c->remote_id);
1663 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1664 packet_put_string(buffer_ptr(&c->extended), len);
1665 packet_send();
1666 buffer_consume(&c->extended, len);
1667 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001668 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001669 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001671}
1672
Ben Lindstrome9c99912001-06-09 00:41:05 +00001673
1674/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001675
Damien Miller4af51302000-04-16 11:18:38 +10001676void
Damien Miller630d6f42002-01-22 23:17:30 +11001677channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001678{
Damien Miller34132e52000-01-14 15:45:46 +11001679 int id;
Damien Miller95def091999-11-25 00:26:21 +11001680 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001681 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001682 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001683
Damien Miller95def091999-11-25 00:26:21 +11001684 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001685 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001686 c = channel_lookup(id);
1687 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001688 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689
Damien Miller95def091999-11-25 00:26:21 +11001690 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001691 if (c->type != SSH_CHANNEL_OPEN &&
1692 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001693 return;
1694
1695 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001696 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001697 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001698
Damien Miller95def091999-11-25 00:26:21 +11001699 /* Get the data. */
1700 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001701
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001702 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001703 if (data_len > c->local_maxpacket) {
1704 log("channel %d: rcvd big packet %d, maxpack %d",
1705 c->self, data_len, c->local_maxpacket);
1706 }
1707 if (data_len > c->local_window) {
1708 log("channel %d: rcvd too much data %d, win %d",
1709 c->self, data_len, c->local_window);
1710 xfree(data);
1711 return;
1712 }
1713 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001714 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001715 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001716 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001717 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001718}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001719
Damien Miller4af51302000-04-16 11:18:38 +10001720void
Damien Miller630d6f42002-01-22 23:17:30 +11001721channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001722{
1723 int id;
Damien Miller33b13562000-04-04 14:38:59 +10001724 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00001725 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10001726 Channel *c;
1727
1728 /* Get the channel number and verify it. */
1729 id = packet_get_int();
1730 c = channel_lookup(id);
1731
1732 if (c == NULL)
1733 packet_disconnect("Received extended_data for bad channel %d.", id);
1734 if (c->type != SSH_CHANNEL_OPEN) {
1735 log("channel %d: ext data for non open", id);
1736 return;
1737 }
Ben Lindstromcf159442002-03-26 03:26:24 +00001738 if (c->flags & CHAN_EOF_RCVD) {
1739 if (datafellows & SSH_BUG_EXTEOF)
1740 debug("channel %d: accepting ext data after eof", id);
1741 else
1742 packet_disconnect("Received extended_data after EOF "
1743 "on channel %d.", id);
1744 }
Damien Miller33b13562000-04-04 14:38:59 +10001745 tcode = packet_get_int();
1746 if (c->efd == -1 ||
1747 c->extended_usage != CHAN_EXTENDED_WRITE ||
1748 tcode != SSH2_EXTENDED_DATA_STDERR) {
1749 log("channel %d: bad ext data", c->self);
1750 return;
1751 }
1752 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001753 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001754 if (data_len > c->local_window) {
1755 log("channel %d: rcvd too much extended_data %d, win %d",
1756 c->self, data_len, c->local_window);
1757 xfree(data);
1758 return;
1759 }
Damien Millerd3444942000-09-30 14:20:03 +11001760 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001761 c->local_window -= data_len;
1762 buffer_append(&c->extended, data, data_len);
1763 xfree(data);
1764}
1765
Damien Miller4af51302000-04-16 11:18:38 +10001766void
Damien Miller630d6f42002-01-22 23:17:30 +11001767channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001768{
1769 int id;
1770 Channel *c;
1771
Damien Millerb38eff82000-04-01 11:09:21 +10001772 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001773 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001774 c = channel_lookup(id);
1775 if (c == NULL)
1776 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1777 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001778
1779 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001780 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001781 debug("channel %d: FORCE input drain", c->self);
1782 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11001783 if (buffer_len(&c->input) == 0)
1784 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001785 }
1786
Damien Millerb38eff82000-04-01 11:09:21 +10001787}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001788
Damien Miller4af51302000-04-16 11:18:38 +10001789void
Damien Miller630d6f42002-01-22 23:17:30 +11001790channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001791{
Damien Millerb38eff82000-04-01 11:09:21 +10001792 int id;
1793 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001794
Damien Millerb38eff82000-04-01 11:09:21 +10001795 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001796 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001797 c = channel_lookup(id);
1798 if (c == NULL)
1799 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001800
1801 /*
1802 * Send a confirmation that we have closed the channel and no more
1803 * data is coming for it.
1804 */
Damien Miller95def091999-11-25 00:26:21 +11001805 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001806 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001807 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001808
Damien Miller5428f641999-11-25 11:54:57 +11001809 /*
1810 * If the channel is in closed state, we have sent a close request,
1811 * and the other side will eventually respond with a confirmation.
1812 * Thus, we cannot free the channel here, because then there would be
1813 * no-one to receive the confirmation. The channel gets freed when
1814 * the confirmation arrives.
1815 */
Damien Millerb38eff82000-04-01 11:09:21 +10001816 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001817 /*
1818 * Not a closed channel - mark it as draining, which will
1819 * cause it to be freed later.
1820 */
Damien Miller76765c02002-01-22 23:21:15 +11001821 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001822 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001823 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001824}
1825
Damien Millerb38eff82000-04-01 11:09:21 +10001826/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001827void
Damien Miller630d6f42002-01-22 23:17:30 +11001828channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001829{
Damien Millerb38eff82000-04-01 11:09:21 +10001830 int id = packet_get_int();
1831 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001832
Damien Miller48b03fc2002-01-22 23:11:40 +11001833 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001834 if (c == NULL)
1835 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1836 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001837}
1838
Damien Miller4af51302000-04-16 11:18:38 +10001839void
Damien Miller630d6f42002-01-22 23:17:30 +11001840channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001841{
1842 int id = packet_get_int();
1843 Channel *c = channel_lookup(id);
1844
Damien Miller48b03fc2002-01-22 23:11:40 +11001845 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001846 if (c == NULL)
1847 packet_disconnect("Received close confirmation for "
1848 "out-of-range channel %d.", id);
1849 if (c->type != SSH_CHANNEL_CLOSED)
1850 packet_disconnect("Received close confirmation for "
1851 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001852 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001853}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001854
Damien Miller4af51302000-04-16 11:18:38 +10001855void
Damien Miller630d6f42002-01-22 23:17:30 +11001856channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001857{
Damien Millerb38eff82000-04-01 11:09:21 +10001858 int id, remote_id;
1859 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001860
Damien Millerb38eff82000-04-01 11:09:21 +10001861 id = packet_get_int();
1862 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863
Damien Millerb38eff82000-04-01 11:09:21 +10001864 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1865 packet_disconnect("Received open confirmation for "
1866 "non-opening channel %d.", id);
1867 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001868 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001869 c->remote_id = remote_id;
1870 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001871
1872 if (compat20) {
1873 c->remote_window = packet_get_int();
1874 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11001875 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11001876 debug2("callback start");
Damien Miller67f0bc02002-02-05 12:23:08 +11001877 c->confirm(c->self, NULL);
Damien Millerd3444942000-09-30 14:20:03 +11001878 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001879 }
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001880 debug("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10001881 c->remote_window, c->remote_maxpacket);
1882 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001883 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001884}
1885
Ben Lindstrombba81212001-06-25 05:01:22 +00001886static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001887reason2txt(int reason)
1888{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001889 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001890 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1891 return "administratively prohibited";
1892 case SSH2_OPEN_CONNECT_FAILED:
1893 return "connect failed";
1894 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1895 return "unknown channel type";
1896 case SSH2_OPEN_RESOURCE_SHORTAGE:
1897 return "resource shortage";
1898 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001899 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001900}
1901
Damien Miller4af51302000-04-16 11:18:38 +10001902void
Damien Miller630d6f42002-01-22 23:17:30 +11001903channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001904{
Kevin Steves12057502001-02-05 14:54:34 +00001905 int id, reason;
1906 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001907 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001908
Damien Millerb38eff82000-04-01 11:09:21 +10001909 id = packet_get_int();
1910 c = channel_lookup(id);
1911
1912 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1913 packet_disconnect("Received open failure for "
1914 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001915 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001916 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001917 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001918 msg = packet_get_string(NULL);
1919 lang = packet_get_string(NULL);
1920 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001921 log("channel %d: open failed: %s%s%s", id,
1922 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001923 if (msg != NULL)
1924 xfree(msg);
1925 if (lang != NULL)
1926 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001927 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001928 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001929 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001930 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001931}
1932
Damien Miller33b13562000-04-04 14:38:59 +10001933void
Damien Miller630d6f42002-01-22 23:17:30 +11001934channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001935{
1936 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001937 int id;
1938 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10001939
1940 if (!compat20)
1941 return;
1942
1943 /* Get the channel number and verify it. */
1944 id = packet_get_int();
1945 c = channel_lookup(id);
1946
1947 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1948 log("Received window adjust for "
1949 "non-open channel %d.", id);
1950 return;
1951 }
1952 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001953 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001954 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001955 c->remote_window += adjust;
1956}
1957
Damien Miller4af51302000-04-16 11:18:38 +10001958void
Damien Miller630d6f42002-01-22 23:17:30 +11001959channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001960{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001961 Channel *c = NULL;
1962 u_short host_port;
1963 char *host, *originator_string;
1964 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001965
Ben Lindstrome9c99912001-06-09 00:41:05 +00001966 remote_id = packet_get_int();
1967 host = packet_get_string(NULL);
1968 host_port = packet_get_int();
1969
1970 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1971 originator_string = packet_get_string(NULL);
1972 } else {
1973 originator_string = xstrdup("unknown (remote did not supply name)");
1974 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001975 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00001976 sock = channel_connect_to(host, host_port);
1977 if (sock != -1) {
1978 c = channel_new("connected socket",
1979 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
1980 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11001981 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001983 if (c == NULL) {
1984 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1985 packet_put_int(remote_id);
1986 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001987 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001988 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001989}
1990
1991
Ben Lindstrome9c99912001-06-09 00:41:05 +00001992/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001993
Ben Lindstrom908afed2001-10-03 17:34:59 +00001994void
1995channel_set_af(int af)
1996{
1997 IPv4or6 = af;
1998}
1999
Damien Millerb16461c2002-01-22 23:29:22 +11002000static int
2001channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2002 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002003{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002004 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11002005 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11002006 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002007 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11002008 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11002009 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002010
Kevin Steves12057502001-02-05 14:54:34 +00002011 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11002012 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2013 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00002014
Damien Millerb16461c2002-01-22 23:29:22 +11002015 if (host == NULL) {
2016 error("No forward host name.");
2017 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002018 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002019 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002020 error("Forward host name too long.");
2021 return success;
2022 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002023
Damien Miller5428f641999-11-25 11:54:57 +11002024 /*
Damien Miller34132e52000-01-14 15:45:46 +11002025 * getaddrinfo returns a loopback address if the hostname is
2026 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002027 */
Damien Miller34132e52000-01-14 15:45:46 +11002028 memset(&hints, 0, sizeof(hints));
2029 hints.ai_family = IPv4or6;
2030 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2031 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002032 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002033 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2034 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002035
Damien Miller34132e52000-01-14 15:45:46 +11002036 for (ai = aitop; ai; ai = ai->ai_next) {
2037 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2038 continue;
2039 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2040 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002041 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002042 continue;
2043 }
2044 /* Create a port to listen for the host. */
2045 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2046 if (sock < 0) {
2047 /* this is no error since kernel may not support ipv6 */
2048 verbose("socket: %.100s", strerror(errno));
2049 continue;
2050 }
2051 /*
2052 * Set socket options. We would like the socket to disappear
2053 * as soon as it has been closed for whatever reason.
2054 */
Ben Lindstrom733a2352002-03-05 01:31:28 +00002055 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11002056 linger.l_onoff = 1;
2057 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00002058 setsockopt(sock, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller34132e52000-01-14 15:45:46 +11002059 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002060
Damien Miller34132e52000-01-14 15:45:46 +11002061 /* Bind the socket to the address. */
2062 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2063 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002064 if (!ai->ai_next)
2065 error("bind: %.100s", strerror(errno));
2066 else
2067 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002068
Damien Miller34132e52000-01-14 15:45:46 +11002069 close(sock);
2070 continue;
2071 }
2072 /* Start listening for connections on the socket. */
2073 if (listen(sock, 5) < 0) {
2074 error("listen: %.100s", strerror(errno));
2075 close(sock);
2076 continue;
2077 }
2078 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002079 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002080 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002081 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002082 strlcpy(c->path, host, sizeof(c->path));
2083 c->host_port = port_to_connect;
2084 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002085 success = 1;
2086 }
2087 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002088 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002089 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002090 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002091 return success;
Damien Miller95def091999-11-25 00:26:21 +11002092}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002093
Damien Millerb16461c2002-01-22 23:29:22 +11002094/* protocol local port fwd, used by ssh (and sshd in v1) */
2095int
2096channel_setup_local_fwd_listener(u_short listen_port,
2097 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2098{
2099 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2100 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2101}
2102
2103/* protocol v2 remote port fwd, used by sshd */
2104int
2105channel_setup_remote_fwd_listener(const char *listen_address,
2106 u_short listen_port, int gateway_ports)
2107{
2108 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2109 listen_address, listen_port, NULL, 0, gateway_ports);
2110}
2111
Damien Miller5428f641999-11-25 11:54:57 +11002112/*
2113 * Initiate forwarding of connections to port "port" on remote host through
2114 * the secure channel to host:port from local side.
2115 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002116
Damien Miller4af51302000-04-16 11:18:38 +10002117void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002118channel_request_remote_forwarding(u_short listen_port,
2119 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002120{
Damien Millerdff50992002-01-22 23:16:32 +11002121 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002122
Damien Miller95def091999-11-25 00:26:21 +11002123 /* Record locally that connection to this host/port is permitted. */
2124 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2125 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002126
Damien Miller95def091999-11-25 00:26:21 +11002127 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002128 if (compat20) {
2129 const char *address_to_bind = "0.0.0.0";
2130 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2131 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002132 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002133 packet_put_cstring(address_to_bind);
2134 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002135 packet_send();
2136 packet_write_wait();
2137 /* Assume that server accepts the request */
2138 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002139 } else {
2140 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002141 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002142 packet_put_cstring(host_to_connect);
2143 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002144 packet_send();
2145 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002146
2147 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002148 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002149 switch (type) {
2150 case SSH_SMSG_SUCCESS:
2151 success = 1;
2152 break;
2153 case SSH_SMSG_FAILURE:
2154 log("Warning: Server denied remote port forwarding.");
2155 break;
2156 default:
2157 /* Unknown packet */
2158 packet_disconnect("Protocol error for port forward request:"
2159 "received packet type %d.", type);
2160 }
2161 }
2162 if (success) {
2163 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2164 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2165 permitted_opens[num_permitted_opens].listen_port = listen_port;
2166 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002167 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168}
2169
Damien Miller5428f641999-11-25 11:54:57 +11002170/*
2171 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2172 * listening for the port, and sends back a success reply (or disconnect
2173 * message if there was an error). This never returns if there was an error.
2174 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002175
Damien Miller4af51302000-04-16 11:18:38 +10002176void
Damien Millere247cc42000-05-07 12:03:14 +10002177channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002178{
Damien Milleraae6c611999-12-06 11:47:28 +11002179 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002180 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002181
Damien Miller95def091999-11-25 00:26:21 +11002182 /* Get arguments from the packet. */
2183 port = packet_get_int();
2184 hostname = packet_get_string(NULL);
2185 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002186
Damien Millerbac2d8a2000-09-05 16:13:06 +11002187#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002188 /*
2189 * Check that an unprivileged user is not trying to forward a
2190 * privileged port.
2191 */
Damien Miller95def091999-11-25 00:26:21 +11002192 if (port < IPPORT_RESERVED && !is_root)
2193 packet_disconnect("Requested forwarding of port %d but user is not root.",
2194 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002195#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002196 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002197 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002198
2199 /* Free the argument string. */
2200 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002201}
2202
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002203/*
2204 * Permits opening to any host/port if permitted_opens[] is empty. This is
2205 * usually called by the server, because the user could connect to any port
2206 * anyway, and the server has no way to know but to trust the client anyway.
2207 */
2208void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002209channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002210{
2211 if (num_permitted_opens == 0)
2212 all_opens_permitted = 1;
2213}
2214
Ben Lindstroma3700052001-04-05 23:26:32 +00002215void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002216channel_add_permitted_opens(char *host, int port)
2217{
2218 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2219 fatal("channel_request_remote_forwarding: too many forwards");
2220 debug("allow port forwarding to host %s port %d", host, port);
2221
2222 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2223 permitted_opens[num_permitted_opens].port_to_connect = port;
2224 num_permitted_opens++;
2225
2226 all_opens_permitted = 0;
2227}
2228
Ben Lindstroma3700052001-04-05 23:26:32 +00002229void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002230channel_clear_permitted_opens(void)
2231{
2232 int i;
2233
2234 for (i = 0; i < num_permitted_opens; i++)
2235 xfree(permitted_opens[i].host_to_connect);
2236 num_permitted_opens = 0;
2237
2238}
2239
2240
2241/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002242static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002243connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002244{
Damien Miller34132e52000-01-14 15:45:46 +11002245 struct addrinfo hints, *ai, *aitop;
2246 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2247 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002248 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002249
Damien Miller34132e52000-01-14 15:45:46 +11002250 memset(&hints, 0, sizeof(hints));
2251 hints.ai_family = IPv4or6;
2252 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002253 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002254 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002255 error("connect_to %.100s: unknown host (%s)", host,
2256 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002257 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002258 }
Damien Miller34132e52000-01-14 15:45:46 +11002259 for (ai = aitop; ai; ai = ai->ai_next) {
2260 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2261 continue;
2262 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2263 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002264 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002265 continue;
2266 }
Damien Miller34132e52000-01-14 15:45:46 +11002267 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2268 if (sock < 0) {
2269 error("socket: %.100s", strerror(errno));
2270 continue;
2271 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002272 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002273 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002274 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2275 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002276 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002277 strerror(errno));
2278 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002279 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002280 }
2281 break; /* success */
2282
2283 }
2284 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002285 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002286 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002287 return -1;
2288 }
2289 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002290 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002291 return sock;
2292}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002293
Damien Miller0bc1bd82000-11-13 22:57:25 +11002294int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002295channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002296{
2297 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002298
Damien Miller0bc1bd82000-11-13 22:57:25 +11002299 for (i = 0; i < num_permitted_opens; i++)
2300 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002301 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002302 permitted_opens[i].host_to_connect,
2303 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002304 error("WARNING: Server requests forwarding for unknown listen_port %d",
2305 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002306 return -1;
2307}
Damien Millerb38eff82000-04-01 11:09:21 +10002308
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002309/* Check if connecting to that port is permitted and connect. */
2310int
2311channel_connect_to(const char *host, u_short port)
2312{
2313 int i, permit;
2314
2315 permit = all_opens_permitted;
2316 if (!permit) {
2317 for (i = 0; i < num_permitted_opens; i++)
2318 if (permitted_opens[i].port_to_connect == port &&
2319 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2320 permit = 1;
2321
2322 }
2323 if (!permit) {
2324 log("Received request to connect to host %.100s port %d, "
2325 "but the request was denied.", host, port);
2326 return -1;
2327 }
2328 return connect_to(host, port);
2329}
2330
Ben Lindstrome9c99912001-06-09 00:41:05 +00002331/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002332
Damien Miller5428f641999-11-25 11:54:57 +11002333/*
2334 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002335 * Returns 0 and a suitable display number for the DISPLAY variable
2336 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002337 */
Kevin Steves366298c2001-12-19 17:58:01 +00002338int
Damien Miller95c249f2002-02-05 12:11:34 +11002339x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002340 int single_connection, u_int *display_numberp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002341{
Damien Millere7378562001-12-21 14:58:35 +11002342 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002343 int display_number, sock;
2344 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002345 struct addrinfo hints, *ai, *aitop;
2346 char strport[NI_MAXSERV];
2347 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002348
Damien Millera34a28b1999-12-14 10:47:15 +11002349 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002350 display_number < MAX_DISPLAYS;
2351 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002352 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002353 memset(&hints, 0, sizeof(hints));
2354 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002355 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002356 hints.ai_socktype = SOCK_STREAM;
2357 snprintf(strport, sizeof strport, "%d", port);
2358 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2359 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002360 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002361 }
Damien Miller34132e52000-01-14 15:45:46 +11002362 for (ai = aitop; ai; ai = ai->ai_next) {
2363 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2364 continue;
2365 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2366 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002367 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002368 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002369 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002370 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002371 debug("x11_create_display_inet: Socket family %d not supported",
2372 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002373 continue;
2374 }
Damien Miller34132e52000-01-14 15:45:46 +11002375 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002376#ifdef IPV6_V6ONLY
2377 if (ai->ai_family == AF_INET6) {
2378 int on = 1;
2379 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2380 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2381 }
2382#endif
Damien Miller34132e52000-01-14 15:45:46 +11002383 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2384 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002385 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002386
2387 if (ai->ai_next)
2388 continue;
2389
Damien Miller34132e52000-01-14 15:45:46 +11002390 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002391 close(socks[n]);
2392 }
2393 num_socks = 0;
2394 break;
2395 }
2396 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002397#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002398 if (num_socks == NUM_SOCKS)
2399 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002400#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002401 if (x11_use_localhost) {
2402 if (num_socks == NUM_SOCKS)
2403 break;
2404 } else {
2405 break;
2406 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002407#endif
Damien Miller95def091999-11-25 00:26:21 +11002408 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002409 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002410 if (num_socks > 0)
2411 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002412 }
Damien Miller95def091999-11-25 00:26:21 +11002413 if (display_number >= MAX_DISPLAYS) {
2414 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002415 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002416 }
Damien Miller95def091999-11-25 00:26:21 +11002417 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002418 for (n = 0; n < num_socks; n++) {
2419 sock = socks[n];
2420 if (listen(sock, 5) < 0) {
2421 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002422 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002423 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002424 }
Damien Miller95def091999-11-25 00:26:21 +11002425 }
Damien Miller34132e52000-01-14 15:45:46 +11002426
Damien Miller34132e52000-01-14 15:45:46 +11002427 /* Allocate a channel for each socket. */
2428 for (n = 0; n < num_socks; n++) {
2429 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002430 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002431 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2432 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002433 0, xstrdup("X11 inet listener"), 1);
Damien Miller699d0032002-02-08 22:07:16 +11002434 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002435 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002436
Kevin Steves366298c2001-12-19 17:58:01 +00002437 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002438 *display_numberp = display_number;
2439 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002440}
2441
Ben Lindstrombba81212001-06-25 05:01:22 +00002442static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002443connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002444{
Damien Miller95def091999-11-25 00:26:21 +11002445 int sock;
2446 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002447
Damien Miller3afe3752001-12-21 12:39:51 +11002448 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2449 if (sock < 0)
2450 error("socket: %.100s", strerror(errno));
2451 memset(&addr, 0, sizeof(addr));
2452 addr.sun_family = AF_UNIX;
2453 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2454 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2455 return sock;
2456 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002457 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2458 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459}
2460
Damien Millerbd483e72000-04-30 10:00:53 +10002461int
2462x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002463{
Damien Miller398e1cf2002-02-05 11:52:13 +11002464 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002465 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002466 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002467 struct addrinfo hints, *ai, *aitop;
2468 char strport[NI_MAXSERV];
2469 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002470
Damien Miller95def091999-11-25 00:26:21 +11002471 /* Try to open a socket for the local X server. */
2472 display = getenv("DISPLAY");
2473 if (!display) {
2474 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002475 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002476 }
Damien Miller5428f641999-11-25 11:54:57 +11002477 /*
2478 * Now we decode the value of the DISPLAY variable and make a
2479 * connection to the real X server.
2480 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481
Damien Miller5428f641999-11-25 11:54:57 +11002482 /*
2483 * Check if it is a unix domain socket. Unix domain displays are in
2484 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2485 */
Damien Miller95def091999-11-25 00:26:21 +11002486 if (strncmp(display, "unix:", 5) == 0 ||
2487 display[0] == ':') {
2488 /* Connect to the unix domain socket. */
2489 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2490 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002491 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002492 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002493 }
2494 /* Create a socket. */
2495 sock = connect_local_xsocket(display_number);
2496 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002497 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002498
2499 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002500 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002501 }
Damien Miller5428f641999-11-25 11:54:57 +11002502 /*
2503 * Connect to an inet socket. The DISPLAY value is supposedly
2504 * hostname:d[.s], where hostname may also be numeric IP address.
2505 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002506 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002507 cp = strchr(buf, ':');
2508 if (!cp) {
2509 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002510 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002511 }
Damien Miller95def091999-11-25 00:26:21 +11002512 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002513 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002514 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2515 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002516 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002517 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002518 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002519
Damien Miller34132e52000-01-14 15:45:46 +11002520 /* Look up the host address */
2521 memset(&hints, 0, sizeof(hints));
2522 hints.ai_family = IPv4or6;
2523 hints.ai_socktype = SOCK_STREAM;
2524 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2525 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2526 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002527 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002528 }
Damien Miller34132e52000-01-14 15:45:46 +11002529 for (ai = aitop; ai; ai = ai->ai_next) {
2530 /* Create a socket. */
2531 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2532 if (sock < 0) {
2533 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002534 continue;
2535 }
2536 /* Connect it to the display. */
2537 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2538 debug("connect %.100s port %d: %.100s", buf,
2539 6000 + display_number, strerror(errno));
2540 close(sock);
2541 continue;
2542 }
2543 /* Success */
2544 break;
Damien Miller34132e52000-01-14 15:45:46 +11002545 }
Damien Miller34132e52000-01-14 15:45:46 +11002546 freeaddrinfo(aitop);
2547 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002548 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002549 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002550 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002551 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002552 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002553 return sock;
2554}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002555
Damien Millerbd483e72000-04-30 10:00:53 +10002556/*
2557 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2558 * the remote channel number. We should do whatever we want, and respond
2559 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2560 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002561
Damien Millerbd483e72000-04-30 10:00:53 +10002562void
Damien Miller630d6f42002-01-22 23:17:30 +11002563x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002564{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002565 Channel *c = NULL;
2566 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002567 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002568
2569 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002570
2571 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002572
2573 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002574 remote_host = packet_get_string(NULL);
2575 } else {
2576 remote_host = xstrdup("unknown (remote did not supply name)");
2577 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002578 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002579
2580 /* Obtain a connection to the real X display. */
2581 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002582 if (sock != -1) {
2583 /* Allocate a channel for this connection. */
2584 c = channel_new("connected x11 socket",
2585 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2586 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002587 c->remote_id = remote_id;
2588 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002589 }
2590 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002591 /* Send refusal to the remote host. */
2592 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002593 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002594 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002595 /* Send a confirmation to the remote host. */
2596 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002597 packet_put_int(remote_id);
2598 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002599 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002600 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002601}
2602
Damien Miller69b69aa2000-10-28 14:19:58 +11002603/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2604void
Damien Miller630d6f42002-01-22 23:17:30 +11002605deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002606{
2607 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002608 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002609 case SSH_SMSG_AGENT_OPEN:
2610 error("Warning: ssh server tried agent forwarding.");
2611 break;
2612 case SSH_SMSG_X11_OPEN:
2613 error("Warning: ssh server tried X11 forwarding.");
2614 break;
2615 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002616 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002617 break;
2618 }
2619 error("Warning: this is probably a break in attempt by a malicious server.");
2620 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2621 packet_put_int(rchan);
2622 packet_send();
2623}
2624
Damien Miller5428f641999-11-25 11:54:57 +11002625/*
2626 * Requests forwarding of X11 connections, generates fake authentication
2627 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002628 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002629 */
Damien Miller4af51302000-04-16 11:18:38 +10002630void
Damien Millerbd483e72000-04-30 10:00:53 +10002631x11_request_forwarding_with_spoofing(int client_session_id,
2632 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002633{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002634 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002635 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002636 char *new_data;
2637 int screen_number;
2638 const char *cp;
2639 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002640
Damien Miller95def091999-11-25 00:26:21 +11002641 cp = getenv("DISPLAY");
2642 if (cp)
2643 cp = strchr(cp, ':');
2644 if (cp)
2645 cp = strchr(cp, '.');
2646 if (cp)
2647 screen_number = atoi(cp + 1);
2648 else
2649 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002650
Damien Miller95def091999-11-25 00:26:21 +11002651 /* Save protocol name. */
2652 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002653
Damien Miller5428f641999-11-25 11:54:57 +11002654 /*
2655 * Extract real authentication data and generate fake data of the
2656 * same length.
2657 */
Damien Miller95def091999-11-25 00:26:21 +11002658 x11_saved_data = xmalloc(data_len);
2659 x11_fake_data = xmalloc(data_len);
2660 for (i = 0; i < data_len; i++) {
2661 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2662 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2663 if (i % 4 == 0)
2664 rand = arc4random();
2665 x11_saved_data[i] = value;
2666 x11_fake_data[i] = rand & 0xff;
2667 rand >>= 8;
2668 }
2669 x11_saved_data_len = data_len;
2670 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002671
Damien Miller95def091999-11-25 00:26:21 +11002672 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002673 len = 2 * data_len + 1;
2674 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002675 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002676 snprintf(new_data + 2 * i, len - 2 * i,
2677 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002678
Damien Miller95def091999-11-25 00:26:21 +11002679 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002680 if (compat20) {
2681 channel_request_start(client_session_id, "x11-req", 0);
2682 packet_put_char(0); /* XXX bool single connection */
2683 } else {
2684 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2685 }
2686 packet_put_cstring(proto);
2687 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002688 packet_put_int(screen_number);
2689 packet_send();
2690 packet_write_wait();
2691 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002692}
2693
Ben Lindstrome9c99912001-06-09 00:41:05 +00002694
2695/* -- agent forwarding */
2696
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002697/* Sends a message to the server to request authentication fd forwarding. */
2698
Damien Miller4af51302000-04-16 11:18:38 +10002699void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002700auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002701{
Damien Miller95def091999-11-25 00:26:21 +11002702 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2703 packet_send();
2704 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002705}
2706
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002707/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2708
Damien Miller4af51302000-04-16 11:18:38 +10002709void
Damien Miller630d6f42002-01-22 23:17:30 +11002710auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002711{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002712 Channel *c = NULL;
2713 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002714 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002715
Damien Miller95def091999-11-25 00:26:21 +11002716 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002717 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002718 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002719
Damien Miller5428f641999-11-25 11:54:57 +11002720 /*
2721 * Get a connection to the local authentication agent (this may again
2722 * get forwarded).
2723 */
Damien Miller95def091999-11-25 00:26:21 +11002724 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002725
Damien Miller5428f641999-11-25 11:54:57 +11002726 /*
2727 * If we could not connect the agent, send an error message back to
2728 * the server. This should never happen unless the agent dies,
2729 * because authentication forwarding is only enabled if we have an
2730 * agent.
2731 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002732 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002733 name = xstrdup("authentication agent connection");
2734 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2735 -1, 0, 0, 0, name, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002736 c->remote_id = remote_id;
2737 c->force_drain = 1;
Damien Miller95def091999-11-25 00:26:21 +11002738 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002739 if (c == NULL) {
2740 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2741 packet_put_int(remote_id);
2742 } else {
2743 /* Send a confirmation to the remote host. */
2744 debug("Forwarding authentication connection.");
2745 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2746 packet_put_int(remote_id);
2747 packet_put_int(c->self);
2748 }
Damien Miller95def091999-11-25 00:26:21 +11002749 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002750}