blob: 26741270a5cb69bce96198d8b21c8034ee585ed8 [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 Millera500cd62002-02-08 22:04:26 +110042RCSID("$OpenBSD: channels.c,v 1.166 2002/02/05 14:32:55 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh1.h"
46#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "packet.h"
48#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "log.h"
51#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100055#include "key.h"
56#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110057#include "pathnames.h"
Damien Miller994cf142000-07-21 10:19:44 +100058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Ben Lindstrome9c99912001-06-09 00:41:05 +000060/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Damien Miller5428f641999-11-25 11:54:57 +110062/*
63 * Pointer to an array containing all allocated channels. The array is
64 * dynamically extended as needed.
65 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000066static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller5428f641999-11-25 11:54:57 +110068/*
69 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000070 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110071 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072static int channels_alloc = 0;
73
Damien Miller5428f641999-11-25 11:54:57 +110074/*
75 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000076 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110077 */
Damien Miller5e953212001-01-30 09:14:00 +110078static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Data structure for storing which hosts are permitted for forward requests.
85 * The local sides of any remote forwards are stored in this array to prevent
86 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
87 * network (which might be behind a firewall).
88 */
Damien Miller95def091999-11-25 00:26:21 +110089typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100090 char *host_to_connect; /* Connect to 'host'. */
91 u_short port_to_connect; /* Connect to 'port'. */
92 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093} ForwardPermission;
94
95/* List of all permitted host/port pairs to connect. */
96static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000097
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098/* Number of permitted host/port pairs in the array. */
99static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * If this is true, all opens are permitted. This is the case on the server
102 * on which we have to trust the client anyway, and the user could do
103 * anything after logging in anyway.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105static int all_opens_permitted = 0;
106
Ben Lindstrome9c99912001-06-09 00:41:05 +0000107
108/* -- X11 forwarding */
109
110/* Maximum number of fake X11 displays to try. */
111#define MAX_DISPLAYS 1000
112
113/* Saved X11 authentication protocol name. */
114static char *x11_saved_proto = NULL;
115
116/* Saved X11 authentication data. This is the real data. */
117static char *x11_saved_data = NULL;
118static u_int x11_saved_data_len = 0;
119
120/*
121 * Fake X11 authentication data. This is what the server will be sending us;
122 * we should replace any occurrences of this by the real data.
123 */
124static char *x11_fake_data = NULL;
125static u_int x11_fake_data_len;
126
127
128/* -- agent forwarding */
129
130#define NUM_SOCKS 10
131
132/* Name and directory of socket for authentication agent forwarding. */
133static char *auth_sock_name = NULL;
134static char *auth_sock_dir = NULL;
135
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000137static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000138
Ben Lindstrome9c99912001-06-09 00:41:05 +0000139/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000141
Ben Lindstrome9c99912001-06-09 00:41:05 +0000142/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000143
144Channel *
145channel_lookup(int id)
146{
147 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148
Damien Millerc0fd17f2000-06-26 10:22:53 +1000149 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000150 log("channel_lookup: %d: bad id", id);
151 return NULL;
152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000153 c = channels[id];
154 if (c == NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +1000155 log("channel_lookup: %d: bad id: channel free", id);
156 return NULL;
157 }
158 return c;
159}
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Damien Millere247cc42000-05-07 12:03:14 +1000162 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000163 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100167channel_register_fds(Channel *c, int rfd, int wfd, int efd,
168 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100171 channel_max_fd = MAX(channel_max_fd, rfd);
172 channel_max_fd = MAX(channel_max_fd, wfd);
173 channel_max_fd = MAX(channel_max_fd, efd);
174
Damien Miller5428f641999-11-25 11:54:57 +1100175 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000176
Damien Miller6f83b8e2000-05-02 09:23:45 +1000177 c->rfd = rfd;
178 c->wfd = wfd;
179 c->sock = (rfd == wfd) ? rfd : -1;
180 c->efd = efd;
181 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100182
Damien Miller79438cc2001-02-16 12:34:57 +1100183 /* XXX ugly hack: nonblock is only set by the server */
184 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000185 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100186 c->isatty = 1;
187 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000188 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100189 c->self, c->wfd);
190 }
191 } else {
192 c->isatty = 0;
193 }
194
Damien Miller69b69aa2000-10-28 14:19:58 +1100195 /* enable nonblocking mode */
196 if (nonblock) {
197 if (rfd != -1)
198 set_nonblock(rfd);
199 if (wfd != -1)
200 set_nonblock(wfd);
201 if (efd != -1)
202 set_nonblock(efd);
203 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000204}
205
206/*
207 * Allocate a new channel object and set its type and socket. This will cause
208 * remote_name to be freed.
209 */
210
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000211Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000212channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Damien Miller69b69aa2000-10-28 14:19:58 +1100213 int window, int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000214{
215 int i, found;
216 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Do initial allocation if this is the first call. */
219 if (channels_alloc == 0) {
220 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000221 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100222 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000223 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000224 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100225 }
226 /* Try to find a free slot where to put the new channel. */
227 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000228 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100229 /* Found a free slot. */
230 found = i;
231 break;
232 }
233 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100234 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100235 found = channels_alloc;
236 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100237 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000238 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100239 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000240 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100241 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000242 /* Initialize and return new channel. */
243 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000244 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100245 buffer_init(&c->input);
246 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000247 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100248 c->ostate = CHAN_OUTPUT_OPEN;
249 c->istate = CHAN_INPUT_OPEN;
250 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100251 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100252 c->self = found;
253 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000254 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000255 c->local_window = window;
256 c->local_window_max = window;
257 c->local_consumed = 0;
258 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100259 c->remote_id = -1;
260 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000261 c->remote_window = 0;
262 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000263 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100264 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000265 c->detach_user = NULL;
Damien Miller67f0bc02002-02-05 12:23:08 +1100266 c->confirm = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000267 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100268 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000269 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000272static int
273channel_find_maxfd(void)
274{
275 int i, max = 0;
276 Channel *c;
277
278 for (i = 0; i < channels_alloc; i++) {
279 c = channels[i];
280 if (c != NULL) {
281 max = MAX(max, c->rfd);
282 max = MAX(max, c->wfd);
283 max = MAX(max, c->efd);
284 }
285 }
286 return max;
287}
288
289int
290channel_close_fd(int *fdp)
291{
292 int ret = 0, fd = *fdp;
293
294 if (fd != -1) {
295 ret = close(fd);
296 *fdp = -1;
297 if (fd == channel_max_fd)
298 channel_max_fd = channel_find_maxfd();
299 }
300 return ret;
301}
302
Damien Miller6f83b8e2000-05-02 09:23:45 +1000303/* Close all channel fd/socket. */
304
Ben Lindstrombba81212001-06-25 05:01:22 +0000305static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000306channel_close_fds(Channel *c)
307{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000308 debug3("channel_close_fds: channel %d: r %d w %d e %d",
309 c->self, c->rfd, c->wfd, c->efd);
310
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000311 channel_close_fd(&c->sock);
312 channel_close_fd(&c->rfd);
313 channel_close_fd(&c->wfd);
314 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000315}
316
317/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
Damien Miller4af51302000-04-16 11:18:38 +1000319void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000320channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000322 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000323 int i, n;
324
325 for (n = 0, i = 0; i < channels_alloc; i++)
326 if (channels[i])
327 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000328 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000329 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000330
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000331 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000332 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000333 xfree(s);
334
Damien Miller6f83b8e2000-05-02 09:23:45 +1000335 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000336 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000337 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000338 buffer_free(&c->input);
339 buffer_free(&c->output);
340 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000341 if (c->remote_name) {
342 xfree(c->remote_name);
343 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100344 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000345 channels[c->self] = NULL;
346 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347}
348
Ben Lindstrome9c99912001-06-09 00:41:05 +0000349void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000350channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000351{
352 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000353
Ben Lindstrom601e4362001-06-21 03:19:23 +0000354 for (i = 0; i < channels_alloc; i++)
355 if (channels[i] != NULL)
356 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000357}
358
359/*
360 * Closes the sockets/fds of all channels. This is used to close extra file
361 * descriptors after a fork.
362 */
363
364void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000365channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000366{
367 int i;
368
369 for (i = 0; i < channels_alloc; i++)
370 if (channels[i] != NULL)
371 channel_close_fds(channels[i]);
372}
373
374/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000375 * Stop listening to channels.
376 */
377
378void
379channel_stop_listening(void)
380{
381 int i;
382 Channel *c;
383
384 for (i = 0; i < channels_alloc; i++) {
385 c = channels[i];
386 if (c != NULL) {
387 switch (c->type) {
388 case SSH_CHANNEL_AUTH_SOCKET:
389 case SSH_CHANNEL_PORT_LISTENER:
390 case SSH_CHANNEL_RPORT_LISTENER:
391 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000392 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000393 channel_free(c);
394 break;
395 }
396 }
397 }
398}
399
400/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000401 * Returns true if no channel has too much buffered data, and false if one or
402 * more channel is overfull.
403 */
404
405int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000406channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407{
408 u_int i;
409 Channel *c;
410
411 for (i = 0; i < channels_alloc; i++) {
412 c = channels[i];
413 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000414#if 0
415 if (!compat20 &&
416 buffer_len(&c->input) > packet_get_maxsize()) {
Ben Lindstrome9c99912001-06-09 00:41:05 +0000417 debug("channel %d: big input buffer %d",
418 c->self, buffer_len(&c->input));
419 return 0;
420 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000421#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000422 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000423 debug("channel %d: big output buffer %d > %d",
424 c->self, buffer_len(&c->output),
425 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426 return 0;
427 }
428 }
429 }
430 return 1;
431}
432
433/* Returns true if any channel is still open. */
434
435int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000436channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437{
438 int i;
439 Channel *c;
440
441 for (i = 0; i < channels_alloc; i++) {
442 c = channels[i];
443 if (c == NULL)
444 continue;
445 switch (c->type) {
446 case SSH_CHANNEL_X11_LISTENER:
447 case SSH_CHANNEL_PORT_LISTENER:
448 case SSH_CHANNEL_RPORT_LISTENER:
449 case SSH_CHANNEL_CLOSED:
450 case SSH_CHANNEL_AUTH_SOCKET:
451 case SSH_CHANNEL_DYNAMIC:
452 case SSH_CHANNEL_CONNECTING:
453 case SSH_CHANNEL_ZOMBIE:
454 continue;
455 case SSH_CHANNEL_LARVAL:
456 if (!compat20)
457 fatal("cannot happen: SSH_CHANNEL_LARVAL");
458 continue;
459 case SSH_CHANNEL_OPENING:
460 case SSH_CHANNEL_OPEN:
461 case SSH_CHANNEL_X11_OPEN:
462 return 1;
463 case SSH_CHANNEL_INPUT_DRAINING:
464 case SSH_CHANNEL_OUTPUT_DRAINING:
465 if (!compat13)
466 fatal("cannot happen: OUT_DRAIN");
467 return 1;
468 default:
469 fatal("channel_still_open: bad channel type %d", c->type);
470 /* NOTREACHED */
471 }
472 }
473 return 0;
474}
475
476/* Returns the id of an open channel suitable for keepaliving */
477
478int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000479channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480{
481 int i;
482 Channel *c;
483
484 for (i = 0; i < channels_alloc; i++) {
485 c = channels[i];
486 if (c == NULL)
487 continue;
488 switch (c->type) {
489 case SSH_CHANNEL_CLOSED:
490 case SSH_CHANNEL_DYNAMIC:
491 case SSH_CHANNEL_X11_LISTENER:
492 case SSH_CHANNEL_PORT_LISTENER:
493 case SSH_CHANNEL_RPORT_LISTENER:
494 case SSH_CHANNEL_OPENING:
495 case SSH_CHANNEL_CONNECTING:
496 case SSH_CHANNEL_ZOMBIE:
497 continue;
498 case SSH_CHANNEL_LARVAL:
499 case SSH_CHANNEL_AUTH_SOCKET:
500 case SSH_CHANNEL_OPEN:
501 case SSH_CHANNEL_X11_OPEN:
502 return i;
503 case SSH_CHANNEL_INPUT_DRAINING:
504 case SSH_CHANNEL_OUTPUT_DRAINING:
505 if (!compat13)
506 fatal("cannot happen: OUT_DRAIN");
507 return i;
508 default:
509 fatal("channel_find_open: bad channel type %d", c->type);
510 /* NOTREACHED */
511 }
512 }
513 return -1;
514}
515
516
517/*
518 * Returns a message describing the currently open forwarded connections,
519 * suitable for sending to the client. The message contains crlf pairs for
520 * newlines.
521 */
522
523char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000524channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000525{
526 Buffer buffer;
527 Channel *c;
528 char buf[1024], *cp;
529 int i;
530
531 buffer_init(&buffer);
532 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
533 buffer_append(&buffer, buf, strlen(buf));
534 for (i = 0; i < channels_alloc; i++) {
535 c = channels[i];
536 if (c == NULL)
537 continue;
538 switch (c->type) {
539 case SSH_CHANNEL_X11_LISTENER:
540 case SSH_CHANNEL_PORT_LISTENER:
541 case SSH_CHANNEL_RPORT_LISTENER:
542 case SSH_CHANNEL_CLOSED:
543 case SSH_CHANNEL_AUTH_SOCKET:
544 case SSH_CHANNEL_ZOMBIE:
545 continue;
546 case SSH_CHANNEL_LARVAL:
547 case SSH_CHANNEL_OPENING:
548 case SSH_CHANNEL_CONNECTING:
549 case SSH_CHANNEL_DYNAMIC:
550 case SSH_CHANNEL_OPEN:
551 case SSH_CHANNEL_X11_OPEN:
552 case SSH_CHANNEL_INPUT_DRAINING:
553 case SSH_CHANNEL_OUTPUT_DRAINING:
554 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
555 c->self, c->remote_name,
556 c->type, c->remote_id,
557 c->istate, buffer_len(&c->input),
558 c->ostate, buffer_len(&c->output),
559 c->rfd, c->wfd);
560 buffer_append(&buffer, buf, strlen(buf));
561 continue;
562 default:
563 fatal("channel_open_message: bad channel type %d", c->type);
564 /* NOTREACHED */
565 }
566 }
567 buffer_append(&buffer, "\0", 1);
568 cp = xstrdup(buffer_ptr(&buffer));
569 buffer_free(&buffer);
570 return cp;
571}
572
573void
574channel_send_open(int id)
575{
576 Channel *c = channel_lookup(id);
577 if (c == NULL) {
578 log("channel_send_open: %d: bad id", id);
579 return;
580 }
581 debug("send channel open %d", id);
582 packet_start(SSH2_MSG_CHANNEL_OPEN);
583 packet_put_cstring(c->ctype);
584 packet_put_int(c->self);
585 packet_put_int(c->local_window);
586 packet_put_int(c->local_maxpacket);
587 packet_send();
588}
589
590void
Damien Millera500cd62002-02-08 22:04:26 +1100591channel_request_start(int local_id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592{
Damien Millera500cd62002-02-08 22:04:26 +1100593 Channel *c = channel_lookup(local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594 if (c == NULL) {
Damien Millera500cd62002-02-08 22:04:26 +1100595 log("channel_request_start: %d: unknown channel id", local_id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000596 return;
597 }
Damien Millera500cd62002-02-08 22:04:26 +1100598 debug("channel request %d: %s", local_id, service) ;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000599 packet_start(SSH2_MSG_CHANNEL_REQUEST);
600 packet_put_int(c->remote_id);
601 packet_put_cstring(service);
602 packet_put_char(wantconfirm);
603}
604void
Damien Miller67f0bc02002-02-05 12:23:08 +1100605channel_register_confirm(int id, channel_callback_fn *fn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606{
607 Channel *c = channel_lookup(id);
608 if (c == NULL) {
Damien Miller67f0bc02002-02-05 12:23:08 +1100609 log("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000610 return;
611 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100612 c->confirm = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000613}
614void
615channel_register_cleanup(int id, channel_callback_fn *fn)
616{
617 Channel *c = channel_lookup(id);
618 if (c == NULL) {
619 log("channel_register_cleanup: %d: bad id", id);
620 return;
621 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000622 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623}
624void
625channel_cancel_cleanup(int id)
626{
627 Channel *c = channel_lookup(id);
628 if (c == NULL) {
629 log("channel_cancel_cleanup: %d: bad id", id);
630 return;
631 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000632 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633}
634void
635channel_register_filter(int id, channel_filter_fn *fn)
636{
637 Channel *c = channel_lookup(id);
638 if (c == NULL) {
639 log("channel_register_filter: %d: bad id", id);
640 return;
641 }
642 c->input_filter = fn;
643}
644
645void
646channel_set_fds(int id, int rfd, int wfd, int efd,
647 int extusage, int nonblock)
648{
649 Channel *c = channel_lookup(id);
650 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
651 fatal("channel_activate for non-larval channel %d.", id);
652 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
653 c->type = SSH_CHANNEL_OPEN;
654 /* XXX window size? */
655 c->local_window = c->local_window_max = c->local_maxpacket * 2;
656 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
657 packet_put_int(c->remote_id);
658 packet_put_int(c->local_window);
659 packet_send();
660}
661
Damien Miller5428f641999-11-25 11:54:57 +1100662/*
Damien Millerb38eff82000-04-01 11:09:21 +1000663 * 'channel_pre*' are called just before select() to add any bits relevant to
664 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100665 */
Damien Millerb38eff82000-04-01 11:09:21 +1000666/*
667 * 'channel_post*': perform any appropriate operations for channels which
668 * have events pending.
669 */
670typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
671chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
672chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
673
Ben Lindstrombba81212001-06-25 05:01:22 +0000674static void
Damien Millerb38eff82000-04-01 11:09:21 +1000675channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
676{
677 FD_SET(c->sock, readset);
678}
679
Ben Lindstrombba81212001-06-25 05:01:22 +0000680static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000681channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
682{
683 debug3("channel %d: waiting for connection", c->self);
684 FD_SET(c->sock, writeset);
685}
686
Ben Lindstrombba81212001-06-25 05:01:22 +0000687static void
Damien Millerb38eff82000-04-01 11:09:21 +1000688channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
689{
690 if (buffer_len(&c->input) < packet_get_maxsize())
691 FD_SET(c->sock, readset);
692 if (buffer_len(&c->output) > 0)
693 FD_SET(c->sock, writeset);
694}
695
Ben Lindstrombba81212001-06-25 05:01:22 +0000696static void
Damien Millerde6987c2002-01-22 23:20:40 +1100697channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000698{
Damien Millerde6987c2002-01-22 23:20:40 +1100699 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000700
Damien Miller33b13562000-04-04 14:38:59 +1000701 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100702 limit > 0 &&
703 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000704 FD_SET(c->rfd, readset);
705 if (c->ostate == CHAN_OUTPUT_OPEN ||
706 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
707 if (buffer_len(&c->output) > 0) {
708 FD_SET(c->wfd, writeset);
709 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
710 chan_obuf_empty(c);
711 }
712 }
713 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100714 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000715 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
716 buffer_len(&c->extended) > 0)
717 FD_SET(c->efd, writeset);
718 else if (c->extended_usage == CHAN_EXTENDED_READ &&
719 buffer_len(&c->extended) < c->remote_window)
720 FD_SET(c->efd, readset);
721 }
722}
723
Ben Lindstrombba81212001-06-25 05:01:22 +0000724static void
Damien Millerb38eff82000-04-01 11:09:21 +1000725channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
726{
727 if (buffer_len(&c->input) == 0) {
728 packet_start(SSH_MSG_CHANNEL_CLOSE);
729 packet_put_int(c->remote_id);
730 packet_send();
731 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000732 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000733 }
734}
735
Ben Lindstrombba81212001-06-25 05:01:22 +0000736static void
Damien Millerb38eff82000-04-01 11:09:21 +1000737channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
738{
739 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000740 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000741 else
Damien Millerb38eff82000-04-01 11:09:21 +1000742 FD_SET(c->sock, writeset);
743}
744
745/*
746 * This is a special state for X11 authentication spoofing. An opened X11
747 * connection (when authentication spoofing is being done) remains in this
748 * state until the first packet has been completely read. The authentication
749 * data in that packet is then substituted by the real data if it matches the
750 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000751 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000753 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000754static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000755x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000756{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000757 u_char *ucp;
758 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000759
760 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000762 return 0;
763
764 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100765 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000766 if (ucp[0] == 0x42) { /* Byte order MSB first. */
767 proto_len = 256 * ucp[6] + ucp[7];
768 data_len = 256 * ucp[8] + ucp[9];
769 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
770 proto_len = ucp[6] + 256 * ucp[7];
771 data_len = ucp[8] + 256 * ucp[9];
772 } else {
773 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100774 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000775 return -1;
776 }
777
778 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000780 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
781 return 0;
782
783 /* Check if authentication protocol matches. */
784 if (proto_len != strlen(x11_saved_proto) ||
785 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
786 debug("X11 connection uses different authentication protocol.");
787 return -1;
788 }
789 /* Check if authentication data matches our fake data. */
790 if (data_len != x11_fake_data_len ||
791 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
792 x11_fake_data, x11_fake_data_len) != 0) {
793 debug("X11 auth data does not match fake data.");
794 return -1;
795 }
796 /* Check fake data length */
797 if (x11_fake_data_len != x11_saved_data_len) {
798 error("X11 fake_data_len %d != saved_data_len %d",
799 x11_fake_data_len, x11_saved_data_len);
800 return -1;
801 }
802 /*
803 * Received authentication protocol and data match
804 * our fake data. Substitute the fake data with real
805 * data.
806 */
807 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
808 x11_saved_data, x11_saved_data_len);
809 return 1;
810}
811
Ben Lindstrombba81212001-06-25 05:01:22 +0000812static void
Damien Millerb38eff82000-04-01 11:09:21 +1000813channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
814{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000815 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000816 if (ret == 1) {
817 /* Start normal processing for the channel. */
818 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000819 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000820 } else if (ret == -1) {
821 /*
822 * We have received an X11 connection that has bad
823 * authentication information.
824 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000825 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000826 buffer_clear(&c->input);
827 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000828 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000829 c->sock = -1;
830 c->type = SSH_CHANNEL_CLOSED;
831 packet_start(SSH_MSG_CHANNEL_CLOSE);
832 packet_put_int(c->remote_id);
833 packet_send();
834 }
835}
836
Ben Lindstrombba81212001-06-25 05:01:22 +0000837static void
Damien Millerbd483e72000-04-30 10:00:53 +1000838channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000839{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000840 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000841
842 /* c->force_drain = 1; */
843
Damien Millerb38eff82000-04-01 11:09:21 +1000844 if (ret == 1) {
845 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100846 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000847 } else if (ret == -1) {
Damien Millera90fc082002-01-22 23:19:38 +1100848 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000849 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100850 chan_read_failed(c);
851 buffer_clear(&c->input);
852 chan_ibuf_empty(c);
853 buffer_clear(&c->output);
854 /* for proto v1, the peer will send an IEOF */
855 if (compat20)
856 chan_write_failed(c);
857 else
858 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000859 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
860 }
861}
862
Ben Lindstromb3921512001-04-11 15:57:50 +0000863/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000864static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000865channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000866{
867 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000868 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100869 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000870 struct {
871 u_int8_t version;
872 u_int8_t command;
873 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000874 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000875 } s4_req, s4_rsp;
876
Ben Lindstromb3921512001-04-11 15:57:50 +0000877 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000878
879 have = buffer_len(&c->input);
880 len = sizeof(s4_req);
881 if (have < len)
882 return 0;
883 p = buffer_ptr(&c->input);
884 for (found = 0, i = len; i < have; i++) {
885 if (p[i] == '\0') {
886 found = 1;
887 break;
888 }
889 if (i > 1024) {
890 /* the peer is probably sending garbage */
891 debug("channel %d: decode socks4: too long",
892 c->self);
893 return -1;
894 }
895 }
896 if (!found)
897 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000898 buffer_get(&c->input, (char *)&s4_req.version, 1);
899 buffer_get(&c->input, (char *)&s4_req.command, 1);
900 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000901 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000902 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000903 p = buffer_ptr(&c->input);
904 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000905 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000906 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000907 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000908 c->self, len, have);
909 strlcpy(username, p, sizeof(username));
910 buffer_consume(&c->input, len);
911 buffer_consume(&c->input, 1); /* trailing '\0' */
912
Ben Lindstromb3921512001-04-11 15:57:50 +0000913 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000914 strlcpy(c->path, host, sizeof(c->path));
915 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100916
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000917 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
918 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000919
Ben Lindstromb3921512001-04-11 15:57:50 +0000920 if (s4_req.command != 1) {
921 debug("channel %d: cannot handle: socks4 cn %d",
922 c->self, s4_req.command);
923 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000924 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000925 s4_rsp.version = 0; /* vn: 0 for reply */
926 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000927 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000928 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000929 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000930 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000931}
932
Ben Lindstromb3921512001-04-11 15:57:50 +0000933/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000934static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000935channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
936{
937 u_char *p;
938 int have, ret;
939
940 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000941 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000942 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000943 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000944 /* check if the fixed size part of the packet is in buffer. */
945 if (have < 4) {
946 /* need more */
947 FD_SET(c->sock, readset);
948 return;
949 }
950 /* try to guess the protocol */
951 p = buffer_ptr(&c->input);
952 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000953 case 0x04:
954 ret = channel_decode_socks4(c, readset, writeset);
955 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000956 default:
957 ret = -1;
958 break;
959 }
960 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000961 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000962 } else if (ret == 0) {
963 debug2("channel %d: pre_dynamic: need more", c->self);
964 /* need more */
965 FD_SET(c->sock, readset);
966 } else {
967 /* switch to the next state */
968 c->type = SSH_CHANNEL_OPENING;
969 port_open_helper(c, "direct-tcpip");
970 }
971}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000972
Damien Millerb38eff82000-04-01 11:09:21 +1000973/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000974static void
Damien Millerb38eff82000-04-01 11:09:21 +1000975channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
976{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000977 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000978 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +1100979 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +1000980 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100981 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000982 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000983
984 if (FD_ISSET(c->sock, readset)) {
985 debug("X11 connection requested.");
986 addrlen = sizeof(addr);
987 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100988 if (c->single_connection) {
989 debug("single_connection: closing X11 listener.");
990 channel_close_fd(&c->sock);
991 chan_mark_dead(c);
992 }
Damien Millerb38eff82000-04-01 11:09:21 +1000993 if (newsock < 0) {
994 error("accept: %.100s", strerror(errno));
995 return;
996 }
Damien Miller398e1cf2002-02-05 11:52:13 +1100997 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +1100998 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000999 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001000 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001001 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001002
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001003 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001004 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1005 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001006 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001007 if (nc == NULL) {
1008 close(newsock);
1009 xfree(remote_ipaddr);
1010 return;
1011 }
Damien Millerbd483e72000-04-30 10:00:53 +10001012 if (compat20) {
1013 packet_start(SSH2_MSG_CHANNEL_OPEN);
1014 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001015 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001016 packet_put_int(nc->local_window_max);
1017 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001018 /* originator ipaddr and port */
1019 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001020 if (datafellows & SSH_BUG_X11FWD) {
1021 debug("ssh2 x11 bug compat mode");
1022 } else {
1023 packet_put_int(remote_port);
1024 }
Damien Millerbd483e72000-04-30 10:00:53 +10001025 packet_send();
1026 } else {
1027 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001028 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001029 if (packet_get_protocol_flags() &
1030 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001031 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001032 packet_send();
1033 }
Damien Millerd83ff352001-01-30 09:19:34 +11001034 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001035 }
1036}
1037
Ben Lindstrombba81212001-06-25 05:01:22 +00001038static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001039port_open_helper(Channel *c, char *rtype)
1040{
1041 int direct;
1042 char buf[1024];
1043 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1044 u_short remote_port = get_peer_port(c->sock);
1045
1046 direct = (strcmp(rtype, "direct-tcpip") == 0);
1047
1048 snprintf(buf, sizeof buf,
1049 "%s: listening port %d for %.100s port %d, "
1050 "connect from %.200s port %d",
1051 rtype, c->listening_port, c->path, c->host_port,
1052 remote_ipaddr, remote_port);
1053
1054 xfree(c->remote_name);
1055 c->remote_name = xstrdup(buf);
1056
1057 if (compat20) {
1058 packet_start(SSH2_MSG_CHANNEL_OPEN);
1059 packet_put_cstring(rtype);
1060 packet_put_int(c->self);
1061 packet_put_int(c->local_window_max);
1062 packet_put_int(c->local_maxpacket);
1063 if (direct) {
1064 /* target host, port */
1065 packet_put_cstring(c->path);
1066 packet_put_int(c->host_port);
1067 } else {
1068 /* listen address, port */
1069 packet_put_cstring(c->path);
1070 packet_put_int(c->listening_port);
1071 }
1072 /* originator host and port */
1073 packet_put_cstring(remote_ipaddr);
1074 packet_put_int(remote_port);
1075 packet_send();
1076 } else {
1077 packet_start(SSH_MSG_PORT_OPEN);
1078 packet_put_int(c->self);
1079 packet_put_cstring(c->path);
1080 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001081 if (packet_get_protocol_flags() &
1082 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001083 packet_put_cstring(c->remote_name);
1084 packet_send();
1085 }
1086 xfree(remote_ipaddr);
1087}
1088
Damien Millerb38eff82000-04-01 11:09:21 +10001089/*
1090 * This socket is listening for connections to a forwarded TCP/IP port.
1091 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001092static void
Damien Millerb38eff82000-04-01 11:09:21 +10001093channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1094{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001095 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001096 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001097 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001098 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001099 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001100
Damien Millerb38eff82000-04-01 11:09:21 +10001101 if (FD_ISSET(c->sock, readset)) {
1102 debug("Connection to port %d forwarding "
1103 "to %.100s port %d requested.",
1104 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001105
Damien Miller4623a752001-10-10 15:03:58 +10001106 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1107 nextstate = SSH_CHANNEL_OPENING;
1108 rtype = "forwarded-tcpip";
1109 } else {
1110 if (c->host_port == 0) {
1111 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001112 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001113 } else {
1114 nextstate = SSH_CHANNEL_OPENING;
1115 rtype = "direct-tcpip";
1116 }
1117 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001118
Damien Millerb38eff82000-04-01 11:09:21 +10001119 addrlen = sizeof(addr);
1120 newsock = accept(c->sock, &addr, &addrlen);
1121 if (newsock < 0) {
1122 error("accept: %.100s", strerror(errno));
1123 return;
1124 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001125 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001126 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001127 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001128 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001129 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001130 error("channel_post_port_listener: no new channel:");
1131 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001132 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001133 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001134 nc->listening_port = c->listening_port;
1135 nc->host_port = c->host_port;
1136 strlcpy(nc->path, c->path, sizeof(nc->path));
1137
Damien Miller4623a752001-10-10 15:03:58 +10001138 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1139 /*
1140 * do not call the channel_post handler until
1141 * this flag has been reset by a pre-handler.
1142 * otherwise the FD_ISSET calls might overflow
1143 */
1144 nc->delayed = 1;
1145 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001146 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001147 }
Damien Millerb38eff82000-04-01 11:09:21 +10001148 }
1149}
1150
1151/*
1152 * This is the authentication agent socket listening for connections from
1153 * clients.
1154 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001155static void
Damien Millerb38eff82000-04-01 11:09:21 +10001156channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1157{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001158 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001159 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001160 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001161 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001162 socklen_t addrlen;
1163
1164 if (FD_ISSET(c->sock, readset)) {
1165 addrlen = sizeof(addr);
1166 newsock = accept(c->sock, &addr, &addrlen);
1167 if (newsock < 0) {
1168 error("accept from auth socket: %.100s", strerror(errno));
1169 return;
1170 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001171 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001172 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001173 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1174 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001175 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001176 if (nc == NULL) {
1177 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001178 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001179 close(newsock);
1180 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001181 if (compat20) {
1182 packet_start(SSH2_MSG_CHANNEL_OPEN);
1183 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001184 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001185 packet_put_int(c->local_window_max);
1186 packet_put_int(c->local_maxpacket);
1187 } else {
1188 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001189 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001190 }
Damien Millerb38eff82000-04-01 11:09:21 +10001191 packet_send();
1192 }
1193}
1194
Ben Lindstrombba81212001-06-25 05:01:22 +00001195static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001196channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1197{
Ben Lindstrom69128662001-05-08 20:07:39 +00001198 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001199 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001200
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001201 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001202 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1203 &sz) < 0) {
1204 err = errno;
1205 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001206 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001207 if (err == 0) {
1208 debug("channel %d: connected", c->self);
1209 c->type = SSH_CHANNEL_OPEN;
1210 if (compat20) {
1211 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1212 packet_put_int(c->remote_id);
1213 packet_put_int(c->self);
1214 packet_put_int(c->local_window);
1215 packet_put_int(c->local_maxpacket);
1216 } else {
1217 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1218 packet_put_int(c->remote_id);
1219 packet_put_int(c->self);
1220 }
1221 } else {
1222 debug("channel %d: not connected: %s",
1223 c->self, strerror(err));
1224 if (compat20) {
1225 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1226 packet_put_int(c->remote_id);
1227 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1228 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1229 packet_put_cstring(strerror(err));
1230 packet_put_cstring("");
1231 }
1232 } else {
1233 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1234 packet_put_int(c->remote_id);
1235 }
1236 chan_mark_dead(c);
1237 }
1238 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001239 }
1240}
1241
Ben Lindstrombba81212001-06-25 05:01:22 +00001242static int
Damien Millerb38eff82000-04-01 11:09:21 +10001243channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1244{
1245 char buf[16*1024];
1246 int len;
1247
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001248 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001249 FD_ISSET(c->rfd, readset)) {
1250 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001251 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1252 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001253 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001254 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001255 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001256 if (c->type != SSH_CHANNEL_OPEN) {
1257 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001258 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001259 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001260 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001261 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001262 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001263 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001264 } else {
1265 chan_read_failed(c);
1266 }
1267 return -1;
1268 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001269 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001270 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001271 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001272 chan_read_failed(c);
1273 }
1274 } else {
1275 buffer_append(&c->input, buf, len);
1276 }
Damien Millerb38eff82000-04-01 11:09:21 +10001277 }
1278 return 1;
1279}
Ben Lindstrombba81212001-06-25 05:01:22 +00001280static int
Damien Millerb38eff82000-04-01 11:09:21 +10001281channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1282{
Ben Lindstrome229b252001-03-05 06:28:06 +00001283 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001284 u_char *data;
1285 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001286 int len;
1287
1288 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001289 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001290 FD_ISSET(c->wfd, writeset) &&
1291 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001292 data = buffer_ptr(&c->output);
1293 dlen = buffer_len(&c->output);
1294 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001295 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1296 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001297 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001298 if (c->type != SSH_CHANNEL_OPEN) {
1299 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001300 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001301 return -1;
1302 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001303 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001304 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001305 c->type = SSH_CHANNEL_INPUT_DRAINING;
1306 } else {
1307 chan_write_failed(c);
1308 }
1309 return -1;
1310 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001311 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001312 if (tcgetattr(c->wfd, &tio) == 0 &&
1313 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1314 /*
1315 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001316 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001317 * size of a SSH2_MSG_CHANNEL_DATA message
1318 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001319 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001320 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001321 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001322 }
1323 }
Damien Millerb38eff82000-04-01 11:09:21 +10001324 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001325 if (compat20 && len > 0) {
1326 c->local_consumed += len;
1327 }
1328 }
1329 return 1;
1330}
Ben Lindstrombba81212001-06-25 05:01:22 +00001331static int
Damien Miller33b13562000-04-04 14:38:59 +10001332channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1333{
1334 char buf[16*1024];
1335 int len;
1336
Damien Miller1383bd82000-04-06 12:32:37 +10001337/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001338 if (c->efd != -1) {
1339 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1340 FD_ISSET(c->efd, writeset) &&
1341 buffer_len(&c->extended) > 0) {
1342 len = write(c->efd, buffer_ptr(&c->extended),
1343 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001344 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001345 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001346 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1347 return 1;
1348 if (len <= 0) {
1349 debug2("channel %d: closing write-efd %d",
1350 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001351 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001352 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001353 buffer_consume(&c->extended, len);
1354 c->local_consumed += len;
1355 }
1356 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1357 FD_ISSET(c->efd, readset)) {
1358 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001359 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001360 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001361 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1362 return 1;
1363 if (len <= 0) {
1364 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001365 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001366 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001367 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001368 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001369 }
Damien Miller33b13562000-04-04 14:38:59 +10001370 }
1371 }
1372 return 1;
1373}
Ben Lindstrombba81212001-06-25 05:01:22 +00001374static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001375channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001376{
Ben Lindstromb3921512001-04-11 15:57:50 +00001377 if (c->type == SSH_CHANNEL_OPEN &&
1378 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001379 c->local_window < c->local_window_max/2 &&
1380 c->local_consumed > 0) {
1381 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1382 packet_put_int(c->remote_id);
1383 packet_put_int(c->local_consumed);
1384 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001385 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001386 c->self, c->local_window,
1387 c->local_consumed);
1388 c->local_window += c->local_consumed;
1389 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001390 }
1391 return 1;
1392}
1393
Ben Lindstrombba81212001-06-25 05:01:22 +00001394static void
Damien Millerde6987c2002-01-22 23:20:40 +11001395channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001396{
Damien Miller4623a752001-10-10 15:03:58 +10001397 if (c->delayed)
1398 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001399 channel_handle_rfd(c, readset, writeset);
1400 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001401 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001402 return;
Damien Miller33b13562000-04-04 14:38:59 +10001403 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001404 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001405}
1406
Ben Lindstrombba81212001-06-25 05:01:22 +00001407static void
Damien Millerb38eff82000-04-01 11:09:21 +10001408channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1409{
1410 int len;
1411 /* Send buffered output data to the socket. */
1412 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1413 len = write(c->sock, buffer_ptr(&c->output),
1414 buffer_len(&c->output));
1415 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001416 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001417 else
1418 buffer_consume(&c->output, len);
1419 }
1420}
1421
Ben Lindstrombba81212001-06-25 05:01:22 +00001422static void
Damien Miller33b13562000-04-04 14:38:59 +10001423channel_handler_init_20(void)
1424{
Damien Millerde6987c2002-01-22 23:20:40 +11001425 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001426 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001427 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001428 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001429 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001430 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001431 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001432 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001433
Damien Millerde6987c2002-01-22 23:20:40 +11001434 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001435 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001436 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001437 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001438 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001439 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001440 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001441}
1442
Ben Lindstrombba81212001-06-25 05:01:22 +00001443static void
Damien Millerb38eff82000-04-01 11:09:21 +10001444channel_handler_init_13(void)
1445{
1446 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1447 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1448 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1449 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1450 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1451 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1452 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001453 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001454 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001455
Damien Millerde6987c2002-01-22 23:20:40 +11001456 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001457 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1458 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1459 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1460 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001461 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001462 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001463}
1464
Ben Lindstrombba81212001-06-25 05:01:22 +00001465static void
Damien Millerb38eff82000-04-01 11:09:21 +10001466channel_handler_init_15(void)
1467{
Damien Millerde6987c2002-01-22 23:20:40 +11001468 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001469 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001470 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1471 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1472 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001473 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001474 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001475
1476 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1477 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1478 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001479 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001480 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001481 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001482}
1483
Ben Lindstrombba81212001-06-25 05:01:22 +00001484static void
Damien Millerb38eff82000-04-01 11:09:21 +10001485channel_handler_init(void)
1486{
1487 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001488 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001489 channel_pre[i] = NULL;
1490 channel_post[i] = NULL;
1491 }
Damien Miller33b13562000-04-04 14:38:59 +10001492 if (compat20)
1493 channel_handler_init_20();
1494 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001495 channel_handler_init_13();
1496 else
1497 channel_handler_init_15();
1498}
1499
Damien Miller3ec27592001-10-12 11:35:04 +10001500/* gc dead channels */
1501static void
1502channel_garbage_collect(Channel *c)
1503{
1504 if (c == NULL)
1505 return;
1506 if (c->detach_user != NULL) {
1507 if (!chan_is_dead(c, 0))
1508 return;
1509 debug("channel %d: gc: notify user", c->self);
1510 c->detach_user(c->self, NULL);
1511 /* if we still have a callback */
1512 if (c->detach_user != NULL)
1513 return;
1514 debug("channel %d: gc: user detached", c->self);
1515 }
1516 if (!chan_is_dead(c, 1))
1517 return;
1518 debug("channel %d: garbage collecting", c->self);
1519 channel_free(c);
1520}
1521
Ben Lindstrombba81212001-06-25 05:01:22 +00001522static void
Damien Millerb38eff82000-04-01 11:09:21 +10001523channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1524{
1525 static int did_init = 0;
1526 int i;
1527 Channel *c;
1528
1529 if (!did_init) {
1530 channel_handler_init();
1531 did_init = 1;
1532 }
1533 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001534 c = channels[i];
1535 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001536 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001537 if (ftab[c->type] != NULL)
1538 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001539 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001540 }
1541}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001542
Ben Lindstrome9c99912001-06-09 00:41:05 +00001543/*
1544 * Allocate/update select bitmasks and add any bits relevant to channels in
1545 * select bitmasks.
1546 */
Damien Miller4af51302000-04-16 11:18:38 +10001547void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001548channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001549 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001550{
Damien Miller5e953212001-01-30 09:14:00 +11001551 int n;
1552 u_int sz;
1553
1554 n = MAX(*maxfdp, channel_max_fd);
1555
1556 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001557 /* perhaps check sz < nalloc/2 and shrink? */
1558 if (*readsetp == NULL || sz > *nallocp) {
1559 *readsetp = xrealloc(*readsetp, sz);
1560 *writesetp = xrealloc(*writesetp, sz);
1561 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001562 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001563 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001564 memset(*readsetp, 0, sz);
1565 memset(*writesetp, 0, sz);
1566
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001567 if (!rekeying)
1568 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001569}
1570
Ben Lindstrome9c99912001-06-09 00:41:05 +00001571/*
1572 * After select, perform any appropriate operations for channels which have
1573 * events pending.
1574 */
Damien Miller4af51302000-04-16 11:18:38 +10001575void
Damien Miller95def091999-11-25 00:26:21 +11001576channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001577{
Damien Millerb38eff82000-04-01 11:09:21 +10001578 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001579}
1580
Ben Lindstrome9c99912001-06-09 00:41:05 +00001581
Damien Miller5e953212001-01-30 09:14:00 +11001582/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001583
Damien Miller4af51302000-04-16 11:18:38 +10001584void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001585channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001586{
Damien Miller95def091999-11-25 00:26:21 +11001587 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001588 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589
Damien Miller95def091999-11-25 00:26:21 +11001590 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001591 c = channels[i];
1592 if (c == NULL)
1593 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001594
Ben Lindstrome9c99912001-06-09 00:41:05 +00001595 /*
1596 * We are only interested in channels that can have buffered
1597 * incoming data.
1598 */
Damien Miller34132e52000-01-14 15:45:46 +11001599 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001600 if (c->type != SSH_CHANNEL_OPEN &&
1601 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001602 continue;
1603 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001604 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001605 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001606 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001607 if (compat20 &&
1608 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001609 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001610 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001611 continue;
1612 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001613
Damien Miller95def091999-11-25 00:26:21 +11001614 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001615 if ((c->istate == CHAN_INPUT_OPEN ||
1616 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1617 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001618 /*
1619 * Send some data for the other side over the secure
1620 * connection.
1621 */
Damien Miller33b13562000-04-04 14:38:59 +10001622 if (compat20) {
1623 if (len > c->remote_window)
1624 len = c->remote_window;
1625 if (len > c->remote_maxpacket)
1626 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001627 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001628 if (packet_is_interactive()) {
1629 if (len > 1024)
1630 len = 512;
1631 } else {
1632 /* Keep the packets at reasonable size. */
1633 if (len > packet_get_maxsize()/2)
1634 len = packet_get_maxsize()/2;
1635 }
Damien Miller95def091999-11-25 00:26:21 +11001636 }
Damien Millerb38eff82000-04-01 11:09:21 +10001637 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001638 packet_start(compat20 ?
1639 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001640 packet_put_int(c->remote_id);
1641 packet_put_string(buffer_ptr(&c->input), len);
1642 packet_send();
1643 buffer_consume(&c->input, len);
1644 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001645 }
1646 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001647 if (compat13)
1648 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001649 /*
1650 * input-buffer is empty and read-socket shutdown:
1651 * tell peer, that we will not send more data: send IEOF
1652 */
Damien Millerb38eff82000-04-01 11:09:21 +10001653 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001654 }
Damien Miller33b13562000-04-04 14:38:59 +10001655 /* Send extended data, i.e. stderr */
1656 if (compat20 &&
1657 c->remote_window > 0 &&
1658 (len = buffer_len(&c->extended)) > 0 &&
1659 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001660 debug2("channel %d: rwin %d elen %d euse %d",
1661 c->self, c->remote_window, buffer_len(&c->extended),
1662 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001663 if (len > c->remote_window)
1664 len = c->remote_window;
1665 if (len > c->remote_maxpacket)
1666 len = c->remote_maxpacket;
1667 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1668 packet_put_int(c->remote_id);
1669 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1670 packet_put_string(buffer_ptr(&c->extended), len);
1671 packet_send();
1672 buffer_consume(&c->extended, len);
1673 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001674 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001675 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001676 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001677}
1678
Ben Lindstrome9c99912001-06-09 00:41:05 +00001679
1680/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001681
Damien Miller4af51302000-04-16 11:18:38 +10001682void
Damien Miller630d6f42002-01-22 23:17:30 +11001683channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001684{
Damien Miller34132e52000-01-14 15:45:46 +11001685 int id;
Damien Miller95def091999-11-25 00:26:21 +11001686 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001687 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001688 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689
Damien Miller95def091999-11-25 00:26:21 +11001690 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001691 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001692 c = channel_lookup(id);
1693 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001694 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001695
Damien Miller95def091999-11-25 00:26:21 +11001696 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001697 if (c->type != SSH_CHANNEL_OPEN &&
1698 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001699 return;
1700
1701 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001702 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001703 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001704
Damien Miller95def091999-11-25 00:26:21 +11001705 /* Get the data. */
1706 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001707
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001708 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001709 if (data_len > c->local_maxpacket) {
1710 log("channel %d: rcvd big packet %d, maxpack %d",
1711 c->self, data_len, c->local_maxpacket);
1712 }
1713 if (data_len > c->local_window) {
1714 log("channel %d: rcvd too much data %d, win %d",
1715 c->self, data_len, c->local_window);
1716 xfree(data);
1717 return;
1718 }
1719 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001720 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001721 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001722 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001723 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001724}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001725
Damien Miller4af51302000-04-16 11:18:38 +10001726void
Damien Miller630d6f42002-01-22 23:17:30 +11001727channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001728{
1729 int id;
1730 int tcode;
1731 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001732 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001733 Channel *c;
1734
1735 /* Get the channel number and verify it. */
1736 id = packet_get_int();
1737 c = channel_lookup(id);
1738
1739 if (c == NULL)
1740 packet_disconnect("Received extended_data for bad channel %d.", id);
1741 if (c->type != SSH_CHANNEL_OPEN) {
1742 log("channel %d: ext data for non open", id);
1743 return;
1744 }
1745 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 }
1880 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1881 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;
1937 int id, adjust;
1938
1939 if (!compat20)
1940 return;
1941
1942 /* Get the channel number and verify it. */
1943 id = packet_get_int();
1944 c = channel_lookup(id);
1945
1946 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1947 log("Received window adjust for "
1948 "non-open channel %d.", id);
1949 return;
1950 }
1951 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001952 packet_check_eom();
Damien Millerd3444942000-09-30 14:20:03 +11001953 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001954 c->remote_window += adjust;
1955}
1956
Damien Miller4af51302000-04-16 11:18:38 +10001957void
Damien Miller630d6f42002-01-22 23:17:30 +11001958channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001959{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001960 Channel *c = NULL;
1961 u_short host_port;
1962 char *host, *originator_string;
1963 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001964
Ben Lindstrome9c99912001-06-09 00:41:05 +00001965 remote_id = packet_get_int();
1966 host = packet_get_string(NULL);
1967 host_port = packet_get_int();
1968
1969 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1970 originator_string = packet_get_string(NULL);
1971 } else {
1972 originator_string = xstrdup("unknown (remote did not supply name)");
1973 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001974 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00001975 sock = channel_connect_to(host, host_port);
1976 if (sock != -1) {
1977 c = channel_new("connected socket",
1978 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
1979 originator_string, 1);
1980 if (c == NULL) {
1981 error("channel_input_port_open: channel_new failed");
1982 close(sock);
1983 } else {
1984 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11001985 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001986 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001987 if (c == NULL) {
1988 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1989 packet_put_int(remote_id);
1990 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001991 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001992 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00001993}
1994
1995
Ben Lindstrome9c99912001-06-09 00:41:05 +00001996/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001997
Ben Lindstrom908afed2001-10-03 17:34:59 +00001998void
1999channel_set_af(int af)
2000{
2001 IPv4or6 = af;
2002}
2003
Damien Millerb16461c2002-01-22 23:29:22 +11002004static int
2005channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2006 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002007{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002008 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11002009 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11002010 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002011 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11002012 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11002013 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002014
Kevin Steves12057502001-02-05 14:54:34 +00002015 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11002016 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2017 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00002018
Damien Millerb16461c2002-01-22 23:29:22 +11002019 if (host == NULL) {
2020 error("No forward host name.");
2021 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002022 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002023 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002024 error("Forward host name too long.");
2025 return success;
2026 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002027
Damien Miller5428f641999-11-25 11:54:57 +11002028 /*
Damien Miller34132e52000-01-14 15:45:46 +11002029 * getaddrinfo returns a loopback address if the hostname is
2030 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002031 */
Damien Miller34132e52000-01-14 15:45:46 +11002032 memset(&hints, 0, sizeof(hints));
2033 hints.ai_family = IPv4or6;
2034 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2035 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002036 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002037 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2038 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002039
Damien Miller34132e52000-01-14 15:45:46 +11002040 for (ai = aitop; ai; ai = ai->ai_next) {
2041 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2042 continue;
2043 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2044 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002045 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002046 continue;
2047 }
2048 /* Create a port to listen for the host. */
2049 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2050 if (sock < 0) {
2051 /* this is no error since kernel may not support ipv6 */
2052 verbose("socket: %.100s", strerror(errno));
2053 continue;
2054 }
2055 /*
2056 * Set socket options. We would like the socket to disappear
2057 * as soon as it has been closed for whatever reason.
2058 */
2059 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2060 linger.l_onoff = 1;
2061 linger.l_linger = 5;
2062 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2063 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002064
Damien Miller34132e52000-01-14 15:45:46 +11002065 /* Bind the socket to the address. */
2066 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2067 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002068 if (!ai->ai_next)
2069 error("bind: %.100s", strerror(errno));
2070 else
2071 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002072
Damien Miller34132e52000-01-14 15:45:46 +11002073 close(sock);
2074 continue;
2075 }
2076 /* Start listening for connections on the socket. */
2077 if (listen(sock, 5) < 0) {
2078 error("listen: %.100s", strerror(errno));
2079 close(sock);
2080 continue;
2081 }
2082 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002083 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002084 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002085 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002086 if (c == NULL) {
Damien Millerb16461c2002-01-22 23:29:22 +11002087 error("channel_setup_fwd_listener: channel_new failed");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002088 close(sock);
2089 continue;
2090 }
2091 strlcpy(c->path, host, sizeof(c->path));
2092 c->host_port = port_to_connect;
2093 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002094 success = 1;
2095 }
2096 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002097 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002098 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002099 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002100 return success;
Damien Miller95def091999-11-25 00:26:21 +11002101}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002102
Damien Millerb16461c2002-01-22 23:29:22 +11002103/* protocol local port fwd, used by ssh (and sshd in v1) */
2104int
2105channel_setup_local_fwd_listener(u_short listen_port,
2106 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2107{
2108 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2109 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2110}
2111
2112/* protocol v2 remote port fwd, used by sshd */
2113int
2114channel_setup_remote_fwd_listener(const char *listen_address,
2115 u_short listen_port, int gateway_ports)
2116{
2117 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2118 listen_address, listen_port, NULL, 0, gateway_ports);
2119}
2120
Damien Miller5428f641999-11-25 11:54:57 +11002121/*
2122 * Initiate forwarding of connections to port "port" on remote host through
2123 * the secure channel to host:port from local side.
2124 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002125
Damien Miller4af51302000-04-16 11:18:38 +10002126void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002127channel_request_remote_forwarding(u_short listen_port,
2128 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002129{
Damien Millerdff50992002-01-22 23:16:32 +11002130 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002131
Damien Miller95def091999-11-25 00:26:21 +11002132 /* Record locally that connection to this host/port is permitted. */
2133 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2134 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002135
Damien Miller95def091999-11-25 00:26:21 +11002136 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002137 if (compat20) {
2138 const char *address_to_bind = "0.0.0.0";
2139 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2140 packet_put_cstring("tcpip-forward");
2141 packet_put_char(0); /* boolean: want reply */
2142 packet_put_cstring(address_to_bind);
2143 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002144 packet_send();
2145 packet_write_wait();
2146 /* Assume that server accepts the request */
2147 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002148 } else {
2149 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002150 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002151 packet_put_cstring(host_to_connect);
2152 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002153 packet_send();
2154 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002155
2156 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002157 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002158 switch (type) {
2159 case SSH_SMSG_SUCCESS:
2160 success = 1;
2161 break;
2162 case SSH_SMSG_FAILURE:
2163 log("Warning: Server denied remote port forwarding.");
2164 break;
2165 default:
2166 /* Unknown packet */
2167 packet_disconnect("Protocol error for port forward request:"
2168 "received packet type %d.", type);
2169 }
2170 }
2171 if (success) {
2172 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2173 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2174 permitted_opens[num_permitted_opens].listen_port = listen_port;
2175 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002176 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002177}
2178
Damien Miller5428f641999-11-25 11:54:57 +11002179/*
2180 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2181 * listening for the port, and sends back a success reply (or disconnect
2182 * message if there was an error). This never returns if there was an error.
2183 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002184
Damien Miller4af51302000-04-16 11:18:38 +10002185void
Damien Millere247cc42000-05-07 12:03:14 +10002186channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002187{
Damien Milleraae6c611999-12-06 11:47:28 +11002188 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002189 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002190
Damien Miller95def091999-11-25 00:26:21 +11002191 /* Get arguments from the packet. */
2192 port = packet_get_int();
2193 hostname = packet_get_string(NULL);
2194 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002195
Damien Millerbac2d8a2000-09-05 16:13:06 +11002196#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002197 /*
2198 * Check that an unprivileged user is not trying to forward a
2199 * privileged port.
2200 */
Damien Miller95def091999-11-25 00:26:21 +11002201 if (port < IPPORT_RESERVED && !is_root)
2202 packet_disconnect("Requested forwarding of port %d but user is not root.",
2203 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002204#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002205 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002206 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002207
2208 /* Free the argument string. */
2209 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002210}
2211
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002212/*
2213 * Permits opening to any host/port if permitted_opens[] is empty. This is
2214 * usually called by the server, because the user could connect to any port
2215 * anyway, and the server has no way to know but to trust the client anyway.
2216 */
2217void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002218channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002219{
2220 if (num_permitted_opens == 0)
2221 all_opens_permitted = 1;
2222}
2223
Ben Lindstroma3700052001-04-05 23:26:32 +00002224void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002225channel_add_permitted_opens(char *host, int port)
2226{
2227 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2228 fatal("channel_request_remote_forwarding: too many forwards");
2229 debug("allow port forwarding to host %s port %d", host, port);
2230
2231 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2232 permitted_opens[num_permitted_opens].port_to_connect = port;
2233 num_permitted_opens++;
2234
2235 all_opens_permitted = 0;
2236}
2237
Ben Lindstroma3700052001-04-05 23:26:32 +00002238void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002239channel_clear_permitted_opens(void)
2240{
2241 int i;
2242
2243 for (i = 0; i < num_permitted_opens; i++)
2244 xfree(permitted_opens[i].host_to_connect);
2245 num_permitted_opens = 0;
2246
2247}
2248
2249
2250/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002251static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002252connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002253{
Damien Miller34132e52000-01-14 15:45:46 +11002254 struct addrinfo hints, *ai, *aitop;
2255 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2256 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002257 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002258
Damien Miller34132e52000-01-14 15:45:46 +11002259 memset(&hints, 0, sizeof(hints));
2260 hints.ai_family = IPv4or6;
2261 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002262 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002263 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002264 error("connect_to %.100s: unknown host (%s)", host,
2265 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002266 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267 }
Damien Miller34132e52000-01-14 15:45:46 +11002268 for (ai = aitop; ai; ai = ai->ai_next) {
2269 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2270 continue;
2271 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2272 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002273 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002274 continue;
2275 }
Damien Miller34132e52000-01-14 15:45:46 +11002276 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2277 if (sock < 0) {
2278 error("socket: %.100s", strerror(errno));
2279 continue;
2280 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002281 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002282 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002283 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2284 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002285 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002286 strerror(errno));
2287 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002288 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002289 }
2290 break; /* success */
2291
2292 }
2293 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002294 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002295 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002296 return -1;
2297 }
2298 /* success */
2299 return sock;
2300}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002301
Damien Miller0bc1bd82000-11-13 22:57:25 +11002302int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002303channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002304{
2305 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002306
Damien Miller0bc1bd82000-11-13 22:57:25 +11002307 for (i = 0; i < num_permitted_opens; i++)
2308 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002309 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002310 permitted_opens[i].host_to_connect,
2311 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002312 error("WARNING: Server requests forwarding for unknown listen_port %d",
2313 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002314 return -1;
2315}
Damien Millerb38eff82000-04-01 11:09:21 +10002316
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002317/* Check if connecting to that port is permitted and connect. */
2318int
2319channel_connect_to(const char *host, u_short port)
2320{
2321 int i, permit;
2322
2323 permit = all_opens_permitted;
2324 if (!permit) {
2325 for (i = 0; i < num_permitted_opens; i++)
2326 if (permitted_opens[i].port_to_connect == port &&
2327 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2328 permit = 1;
2329
2330 }
2331 if (!permit) {
2332 log("Received request to connect to host %.100s port %d, "
2333 "but the request was denied.", host, port);
2334 return -1;
2335 }
2336 return connect_to(host, port);
2337}
2338
Ben Lindstrome9c99912001-06-09 00:41:05 +00002339/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002340
Damien Miller5428f641999-11-25 11:54:57 +11002341/*
2342 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002343 * Returns a suitable display number for the DISPLAY variable, or -1 if
2344 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002345 */
Kevin Steves366298c2001-12-19 17:58:01 +00002346int
Damien Miller95c249f2002-02-05 12:11:34 +11002347x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Millere7378562001-12-21 14:58:35 +11002348 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002349{
Damien Millere7378562001-12-21 14:58:35 +11002350 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002351 int display_number, sock;
2352 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002353 struct addrinfo hints, *ai, *aitop;
2354 char strport[NI_MAXSERV];
2355 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002356
Damien Millera34a28b1999-12-14 10:47:15 +11002357 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002358 display_number < MAX_DISPLAYS;
2359 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002360 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002361 memset(&hints, 0, sizeof(hints));
2362 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002363 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002364 hints.ai_socktype = SOCK_STREAM;
2365 snprintf(strport, sizeof strport, "%d", port);
2366 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2367 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002368 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002369 }
Damien Miller34132e52000-01-14 15:45:46 +11002370 for (ai = aitop; ai; ai = ai->ai_next) {
2371 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2372 continue;
2373 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2374 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002375 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002376 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002377 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002378 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002379 debug("x11_create_display_inet: Socket family %d not supported",
2380 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002381 continue;
2382 }
Damien Miller34132e52000-01-14 15:45:46 +11002383 }
2384 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2385 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002386 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002387
2388 if (ai->ai_next)
2389 continue;
2390
Damien Miller34132e52000-01-14 15:45:46 +11002391 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002392 close(socks[n]);
2393 }
2394 num_socks = 0;
2395 break;
2396 }
2397 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002398#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002399 if (num_socks == NUM_SOCKS)
2400 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002401#else
2402 break;
2403#endif
Damien Miller95def091999-11-25 00:26:21 +11002404 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002405 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002406 if (num_socks > 0)
2407 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002408 }
Damien Miller95def091999-11-25 00:26:21 +11002409 if (display_number >= MAX_DISPLAYS) {
2410 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002411 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002412 }
Damien Miller95def091999-11-25 00:26:21 +11002413 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002414 for (n = 0; n < num_socks; n++) {
2415 sock = socks[n];
2416 if (listen(sock, 5) < 0) {
2417 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002418 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002419 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002420 }
Damien Miller95def091999-11-25 00:26:21 +11002421 }
Damien Miller34132e52000-01-14 15:45:46 +11002422
Damien Miller34132e52000-01-14 15:45:46 +11002423 /* Allocate a channel for each socket. */
2424 for (n = 0; n < num_socks; n++) {
2425 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002426 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002427 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2428 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002429 0, xstrdup("X11 inet listener"), 1);
Damien Millere7378562001-12-21 14:58:35 +11002430 if (nc != NULL)
2431 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002432 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002433
Kevin Steves366298c2001-12-19 17:58:01 +00002434 /* Return the display number for the DISPLAY environment variable. */
2435 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002436}
2437
Ben Lindstrombba81212001-06-25 05:01:22 +00002438static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002439connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002440{
Damien Miller95def091999-11-25 00:26:21 +11002441 int sock;
2442 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002443
Damien Miller3afe3752001-12-21 12:39:51 +11002444 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2445 if (sock < 0)
2446 error("socket: %.100s", strerror(errno));
2447 memset(&addr, 0, sizeof(addr));
2448 addr.sun_family = AF_UNIX;
2449 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2450 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2451 return sock;
2452 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002453 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2454 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002455}
2456
Damien Millerbd483e72000-04-30 10:00:53 +10002457int
2458x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459{
Damien Miller398e1cf2002-02-05 11:52:13 +11002460 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002461 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002462 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002463 struct addrinfo hints, *ai, *aitop;
2464 char strport[NI_MAXSERV];
2465 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002466
Damien Miller95def091999-11-25 00:26:21 +11002467 /* Try to open a socket for the local X server. */
2468 display = getenv("DISPLAY");
2469 if (!display) {
2470 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002471 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002472 }
Damien Miller5428f641999-11-25 11:54:57 +11002473 /*
2474 * Now we decode the value of the DISPLAY variable and make a
2475 * connection to the real X server.
2476 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002477
Damien Miller5428f641999-11-25 11:54:57 +11002478 /*
2479 * Check if it is a unix domain socket. Unix domain displays are in
2480 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2481 */
Damien Miller95def091999-11-25 00:26:21 +11002482 if (strncmp(display, "unix:", 5) == 0 ||
2483 display[0] == ':') {
2484 /* Connect to the unix domain socket. */
2485 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2486 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002487 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002488 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002489 }
2490 /* Create a socket. */
2491 sock = connect_local_xsocket(display_number);
2492 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002493 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002494
2495 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002496 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002497 }
Damien Miller5428f641999-11-25 11:54:57 +11002498 /*
2499 * Connect to an inet socket. The DISPLAY value is supposedly
2500 * hostname:d[.s], where hostname may also be numeric IP address.
2501 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002502 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002503 cp = strchr(buf, ':');
2504 if (!cp) {
2505 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002506 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002507 }
Damien Miller95def091999-11-25 00:26:21 +11002508 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002509 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002510 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2511 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002512 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002513 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002514 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002515
Damien Miller34132e52000-01-14 15:45:46 +11002516 /* Look up the host address */
2517 memset(&hints, 0, sizeof(hints));
2518 hints.ai_family = IPv4or6;
2519 hints.ai_socktype = SOCK_STREAM;
2520 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2521 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2522 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002523 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002524 }
Damien Miller34132e52000-01-14 15:45:46 +11002525 for (ai = aitop; ai; ai = ai->ai_next) {
2526 /* Create a socket. */
2527 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2528 if (sock < 0) {
2529 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002530 continue;
2531 }
2532 /* Connect it to the display. */
2533 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2534 debug("connect %.100s port %d: %.100s", buf,
2535 6000 + display_number, strerror(errno));
2536 close(sock);
2537 continue;
2538 }
2539 /* Success */
2540 break;
Damien Miller34132e52000-01-14 15:45:46 +11002541 }
Damien Miller34132e52000-01-14 15:45:46 +11002542 freeaddrinfo(aitop);
2543 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002544 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002545 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002546 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002547 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002548 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002549 return sock;
2550}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551
Damien Millerbd483e72000-04-30 10:00:53 +10002552/*
2553 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2554 * the remote channel number. We should do whatever we want, and respond
2555 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2556 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002557
Damien Millerbd483e72000-04-30 10:00:53 +10002558void
Damien Miller630d6f42002-01-22 23:17:30 +11002559x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002560{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002561 Channel *c = NULL;
2562 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002563 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002564
2565 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002566
2567 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002568
2569 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002570 remote_host = packet_get_string(NULL);
2571 } else {
2572 remote_host = xstrdup("unknown (remote did not supply name)");
2573 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002574 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002575
2576 /* Obtain a connection to the real X display. */
2577 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002578 if (sock != -1) {
2579 /* Allocate a channel for this connection. */
2580 c = channel_new("connected x11 socket",
2581 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2582 remote_host, 1);
2583 if (c == NULL) {
2584 error("x11_input_open: channel_new failed");
2585 close(sock);
2586 } else {
2587 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002588 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002589 }
2590 }
2591 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002592 /* Send refusal to the remote host. */
2593 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002594 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002595 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002596 /* Send a confirmation to the remote host. */
2597 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002598 packet_put_int(remote_id);
2599 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002600 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002601 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002602}
2603
Damien Miller69b69aa2000-10-28 14:19:58 +11002604/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2605void
Damien Miller630d6f42002-01-22 23:17:30 +11002606deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002607{
2608 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002609 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002610 case SSH_SMSG_AGENT_OPEN:
2611 error("Warning: ssh server tried agent forwarding.");
2612 break;
2613 case SSH_SMSG_X11_OPEN:
2614 error("Warning: ssh server tried X11 forwarding.");
2615 break;
2616 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002617 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002618 break;
2619 }
2620 error("Warning: this is probably a break in attempt by a malicious server.");
2621 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2622 packet_put_int(rchan);
2623 packet_send();
2624}
2625
Damien Miller5428f641999-11-25 11:54:57 +11002626/*
2627 * Requests forwarding of X11 connections, generates fake authentication
2628 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002629 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002630 */
Damien Miller4af51302000-04-16 11:18:38 +10002631void
Damien Millerbd483e72000-04-30 10:00:53 +10002632x11_request_forwarding_with_spoofing(int client_session_id,
2633 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002634{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002635 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002636 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002637 char *new_data;
2638 int screen_number;
2639 const char *cp;
2640 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002641
Damien Miller95def091999-11-25 00:26:21 +11002642 cp = getenv("DISPLAY");
2643 if (cp)
2644 cp = strchr(cp, ':');
2645 if (cp)
2646 cp = strchr(cp, '.');
2647 if (cp)
2648 screen_number = atoi(cp + 1);
2649 else
2650 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002651
Damien Miller95def091999-11-25 00:26:21 +11002652 /* Save protocol name. */
2653 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002654
Damien Miller5428f641999-11-25 11:54:57 +11002655 /*
2656 * Extract real authentication data and generate fake data of the
2657 * same length.
2658 */
Damien Miller95def091999-11-25 00:26:21 +11002659 x11_saved_data = xmalloc(data_len);
2660 x11_fake_data = xmalloc(data_len);
2661 for (i = 0; i < data_len; i++) {
2662 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2663 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2664 if (i % 4 == 0)
2665 rand = arc4random();
2666 x11_saved_data[i] = value;
2667 x11_fake_data[i] = rand & 0xff;
2668 rand >>= 8;
2669 }
2670 x11_saved_data_len = data_len;
2671 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002672
Damien Miller95def091999-11-25 00:26:21 +11002673 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002674 len = 2 * data_len + 1;
2675 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002676 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002677 snprintf(new_data + 2 * i, len - 2 * i,
2678 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002679
Damien Miller95def091999-11-25 00:26:21 +11002680 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002681 if (compat20) {
2682 channel_request_start(client_session_id, "x11-req", 0);
2683 packet_put_char(0); /* XXX bool single connection */
2684 } else {
2685 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2686 }
2687 packet_put_cstring(proto);
2688 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002689 packet_put_int(screen_number);
2690 packet_send();
2691 packet_write_wait();
2692 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002693}
2694
Ben Lindstrome9c99912001-06-09 00:41:05 +00002695
2696/* -- agent forwarding */
2697
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002698/* Sends a message to the server to request authentication fd forwarding. */
2699
Damien Miller4af51302000-04-16 11:18:38 +10002700void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002701auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002702{
Damien Miller95def091999-11-25 00:26:21 +11002703 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2704 packet_send();
2705 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002706}
2707
Damien Miller5428f641999-11-25 11:54:57 +11002708/*
2709 * Returns the name of the forwarded authentication socket. Returns NULL if
2710 * there is no forwarded authentication socket. The returned value points to
2711 * a static buffer.
2712 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002713
Damien Miller95def091999-11-25 00:26:21 +11002714char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002715auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002716{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002717 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002718}
2719
2720/* removes the agent forwarding socket */
2721
Damien Miller4af51302000-04-16 11:18:38 +10002722void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002723auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002724{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002725 struct passwd *pw = _pw;
2726
Ben Lindstrom838394c2001-06-09 01:11:59 +00002727 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002728 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002729 unlink(auth_sock_name);
2730 rmdir(auth_sock_dir);
2731 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002732 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002733 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002734}
2735
Damien Miller5428f641999-11-25 11:54:57 +11002736/*
Damien Millerd3a18572000-06-07 19:55:44 +10002737 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002738 * This starts forwarding authentication requests.
2739 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002740
Damien Millerd3a18572000-06-07 19:55:44 +10002741int
Damien Miller95def091999-11-25 00:26:21 +11002742auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002743{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002744 Channel *nc;
2745 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002746 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002747
Ben Lindstrome9c99912001-06-09 00:41:05 +00002748 if (auth_get_socket_name() != NULL) {
2749 error("authentication forwarding requested twice.");
2750 return 0;
2751 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752
Damien Miller95def091999-11-25 00:26:21 +11002753 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002754 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002755
Damien Miller95def091999-11-25 00:26:21 +11002756 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002757 auth_sock_name = xmalloc(MAXPATHLEN);
2758 auth_sock_dir = xmalloc(MAXPATHLEN);
2759 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002760
Damien Miller95def091999-11-25 00:26:21 +11002761 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002762 if (mkdtemp(auth_sock_dir) == NULL) {
2763 packet_send_debug("Agent forwarding disabled: "
2764 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002765 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002766 xfree(auth_sock_name);
2767 xfree(auth_sock_dir);
2768 auth_sock_name = NULL;
2769 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002770 return 0;
2771 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002772 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2773 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002774
Ben Lindstrom838394c2001-06-09 01:11:59 +00002775 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002776 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002777
Damien Miller95def091999-11-25 00:26:21 +11002778 /* Create the socket. */
2779 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2780 if (sock < 0)
2781 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002782
Damien Miller95def091999-11-25 00:26:21 +11002783 /* Bind it to the name. */
2784 memset(&sunaddr, 0, sizeof(sunaddr));
2785 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002786 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002787
Damien Miller95def091999-11-25 00:26:21 +11002788 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2789 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002790
Damien Miller95def091999-11-25 00:26:21 +11002791 /* Restore the privileged uid. */
2792 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793
Damien Miller95def091999-11-25 00:26:21 +11002794 /* Start listening on the socket. */
2795 if (listen(sock, 5) < 0)
2796 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002797
Damien Miller95def091999-11-25 00:26:21 +11002798 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002799 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002800 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2801 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2802 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002803 if (nc == NULL) {
2804 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002805 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002806 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002807 close(sock);
2808 return 0;
2809 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002810 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002811 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002812}
2813
2814/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2815
Damien Miller4af51302000-04-16 11:18:38 +10002816void
Damien Miller630d6f42002-01-22 23:17:30 +11002817auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002818{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002819 Channel *c = NULL;
2820 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002821 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002822
Damien Miller95def091999-11-25 00:26:21 +11002823 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002824 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002825 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002826
Damien Miller5428f641999-11-25 11:54:57 +11002827 /*
2828 * Get a connection to the local authentication agent (this may again
2829 * get forwarded).
2830 */
Damien Miller95def091999-11-25 00:26:21 +11002831 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002832
Damien Miller5428f641999-11-25 11:54:57 +11002833 /*
2834 * If we could not connect the agent, send an error message back to
2835 * the server. This should never happen unless the agent dies,
2836 * because authentication forwarding is only enabled if we have an
2837 * agent.
2838 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002839 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002840 name = xstrdup("authentication agent connection");
2841 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2842 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002843 if (c == NULL) {
2844 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002845 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002846 close(sock);
2847 } else {
2848 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002849 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002850 }
Damien Miller95def091999-11-25 00:26:21 +11002851 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002852 if (c == NULL) {
2853 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2854 packet_put_int(remote_id);
2855 } else {
2856 /* Send a confirmation to the remote host. */
2857 debug("Forwarding authentication connection.");
2858 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2859 packet_put_int(remote_id);
2860 packet_put_int(c->self);
2861 }
Damien Miller95def091999-11-25 00:26:21 +11002862 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863}