blob: 9f042d44ee02ee32c671a63c7c4b2cced2e5a55c [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000016 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Miller66823cd2002-01-22 23:11:38 +110042RCSID("$OpenBSD: channels.c,v 1.151 2001/12/27 20:39:58 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) {
Damien Miller33b13562000-04-04 14:38:59 +1000220 chan_init();
Damien Miller95def091999-11-25 00:26:21 +1100221 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000222 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100223 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000224 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000225 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100226 }
227 /* Try to find a free slot where to put the new channel. */
228 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000229 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100230 /* Found a free slot. */
231 found = i;
232 break;
233 }
234 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100235 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100236 found = channels_alloc;
237 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100238 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000239 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100240 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000241 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100242 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000243 /* Initialize and return new channel. */
244 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000245 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100246 buffer_init(&c->input);
247 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000248 buffer_init(&c->extended);
Damien Miller95def091999-11-25 00:26:21 +1100249 chan_init_iostates(c);
Damien Miller69b69aa2000-10-28 14:19:58 +1100250 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100251 c->self = found;
252 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000253 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000254 c->local_window = window;
255 c->local_window_max = window;
256 c->local_consumed = 0;
257 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100258 c->remote_id = -1;
259 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000260 c->remote_window = 0;
261 c->remote_maxpacket = 0;
262 c->cb_fn = NULL;
263 c->cb_arg = NULL;
264 c->cb_event = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000265 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100266 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000267 c->detach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000268 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100269 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000270 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000272
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000273static int
274channel_find_maxfd(void)
275{
276 int i, max = 0;
277 Channel *c;
278
279 for (i = 0; i < channels_alloc; i++) {
280 c = channels[i];
281 if (c != NULL) {
282 max = MAX(max, c->rfd);
283 max = MAX(max, c->wfd);
284 max = MAX(max, c->efd);
285 }
286 }
287 return max;
288}
289
290int
291channel_close_fd(int *fdp)
292{
293 int ret = 0, fd = *fdp;
294
295 if (fd != -1) {
296 ret = close(fd);
297 *fdp = -1;
298 if (fd == channel_max_fd)
299 channel_max_fd = channel_find_maxfd();
300 }
301 return ret;
302}
303
Damien Miller6f83b8e2000-05-02 09:23:45 +1000304/* Close all channel fd/socket. */
305
Ben Lindstrombba81212001-06-25 05:01:22 +0000306static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000307channel_close_fds(Channel *c)
308{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000309 debug3("channel_close_fds: channel %d: r %d w %d e %d",
310 c->self, c->rfd, c->wfd, c->efd);
311
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000312 channel_close_fd(&c->sock);
313 channel_close_fd(&c->rfd);
314 channel_close_fd(&c->wfd);
315 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000316}
317
318/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
Damien Miller4af51302000-04-16 11:18:38 +1000320void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000321channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000323 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000324 int i, n;
325
326 for (n = 0, i = 0; i < channels_alloc; i++)
327 if (channels[i])
328 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000329 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000330 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000331
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000332 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000333 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000334 xfree(s);
335
Damien Miller6f83b8e2000-05-02 09:23:45 +1000336 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000337 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000338 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000339 buffer_free(&c->input);
340 buffer_free(&c->output);
341 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000342 if (c->remote_name) {
343 xfree(c->remote_name);
344 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100345 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000346 channels[c->self] = NULL;
347 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348}
349
Ben Lindstrome9c99912001-06-09 00:41:05 +0000350void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000351channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000352{
353 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000354
Ben Lindstrom601e4362001-06-21 03:19:23 +0000355 for (i = 0; i < channels_alloc; i++)
356 if (channels[i] != NULL)
357 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000358}
359
360/*
361 * Closes the sockets/fds of all channels. This is used to close extra file
362 * descriptors after a fork.
363 */
364
365void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000366channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000367{
368 int i;
369
370 for (i = 0; i < channels_alloc; i++)
371 if (channels[i] != NULL)
372 channel_close_fds(channels[i]);
373}
374
375/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000376 * Stop listening to channels.
377 */
378
379void
380channel_stop_listening(void)
381{
382 int i;
383 Channel *c;
384
385 for (i = 0; i < channels_alloc; i++) {
386 c = channels[i];
387 if (c != NULL) {
388 switch (c->type) {
389 case SSH_CHANNEL_AUTH_SOCKET:
390 case SSH_CHANNEL_PORT_LISTENER:
391 case SSH_CHANNEL_RPORT_LISTENER:
392 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000393 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000394 channel_free(c);
395 break;
396 }
397 }
398 }
399}
400
401/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000402 * Returns true if no channel has too much buffered data, and false if one or
403 * more channel is overfull.
404 */
405
406int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000407channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000408{
409 u_int i;
410 Channel *c;
411
412 for (i = 0; i < channels_alloc; i++) {
413 c = channels[i];
414 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000415#if 0
416 if (!compat20 &&
417 buffer_len(&c->input) > packet_get_maxsize()) {
Ben Lindstrome9c99912001-06-09 00:41:05 +0000418 debug("channel %d: big input buffer %d",
419 c->self, buffer_len(&c->input));
420 return 0;
421 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000422#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000423 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000424 debug("channel %d: big output buffer %d > %d",
425 c->self, buffer_len(&c->output),
426 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000427 return 0;
428 }
429 }
430 }
431 return 1;
432}
433
434/* Returns true if any channel is still open. */
435
436int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000437channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000438{
439 int i;
440 Channel *c;
441
442 for (i = 0; i < channels_alloc; i++) {
443 c = channels[i];
444 if (c == NULL)
445 continue;
446 switch (c->type) {
447 case SSH_CHANNEL_X11_LISTENER:
448 case SSH_CHANNEL_PORT_LISTENER:
449 case SSH_CHANNEL_RPORT_LISTENER:
450 case SSH_CHANNEL_CLOSED:
451 case SSH_CHANNEL_AUTH_SOCKET:
452 case SSH_CHANNEL_DYNAMIC:
453 case SSH_CHANNEL_CONNECTING:
454 case SSH_CHANNEL_ZOMBIE:
455 continue;
456 case SSH_CHANNEL_LARVAL:
457 if (!compat20)
458 fatal("cannot happen: SSH_CHANNEL_LARVAL");
459 continue;
460 case SSH_CHANNEL_OPENING:
461 case SSH_CHANNEL_OPEN:
462 case SSH_CHANNEL_X11_OPEN:
463 return 1;
464 case SSH_CHANNEL_INPUT_DRAINING:
465 case SSH_CHANNEL_OUTPUT_DRAINING:
466 if (!compat13)
467 fatal("cannot happen: OUT_DRAIN");
468 return 1;
469 default:
470 fatal("channel_still_open: bad channel type %d", c->type);
471 /* NOTREACHED */
472 }
473 }
474 return 0;
475}
476
477/* Returns the id of an open channel suitable for keepaliving */
478
479int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000480channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000481{
482 int i;
483 Channel *c;
484
485 for (i = 0; i < channels_alloc; i++) {
486 c = channels[i];
487 if (c == NULL)
488 continue;
489 switch (c->type) {
490 case SSH_CHANNEL_CLOSED:
491 case SSH_CHANNEL_DYNAMIC:
492 case SSH_CHANNEL_X11_LISTENER:
493 case SSH_CHANNEL_PORT_LISTENER:
494 case SSH_CHANNEL_RPORT_LISTENER:
495 case SSH_CHANNEL_OPENING:
496 case SSH_CHANNEL_CONNECTING:
497 case SSH_CHANNEL_ZOMBIE:
498 continue;
499 case SSH_CHANNEL_LARVAL:
500 case SSH_CHANNEL_AUTH_SOCKET:
501 case SSH_CHANNEL_OPEN:
502 case SSH_CHANNEL_X11_OPEN:
503 return i;
504 case SSH_CHANNEL_INPUT_DRAINING:
505 case SSH_CHANNEL_OUTPUT_DRAINING:
506 if (!compat13)
507 fatal("cannot happen: OUT_DRAIN");
508 return i;
509 default:
510 fatal("channel_find_open: bad channel type %d", c->type);
511 /* NOTREACHED */
512 }
513 }
514 return -1;
515}
516
517
518/*
519 * Returns a message describing the currently open forwarded connections,
520 * suitable for sending to the client. The message contains crlf pairs for
521 * newlines.
522 */
523
524char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000525channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526{
527 Buffer buffer;
528 Channel *c;
529 char buf[1024], *cp;
530 int i;
531
532 buffer_init(&buffer);
533 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
534 buffer_append(&buffer, buf, strlen(buf));
535 for (i = 0; i < channels_alloc; i++) {
536 c = channels[i];
537 if (c == NULL)
538 continue;
539 switch (c->type) {
540 case SSH_CHANNEL_X11_LISTENER:
541 case SSH_CHANNEL_PORT_LISTENER:
542 case SSH_CHANNEL_RPORT_LISTENER:
543 case SSH_CHANNEL_CLOSED:
544 case SSH_CHANNEL_AUTH_SOCKET:
545 case SSH_CHANNEL_ZOMBIE:
546 continue;
547 case SSH_CHANNEL_LARVAL:
548 case SSH_CHANNEL_OPENING:
549 case SSH_CHANNEL_CONNECTING:
550 case SSH_CHANNEL_DYNAMIC:
551 case SSH_CHANNEL_OPEN:
552 case SSH_CHANNEL_X11_OPEN:
553 case SSH_CHANNEL_INPUT_DRAINING:
554 case SSH_CHANNEL_OUTPUT_DRAINING:
555 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
556 c->self, c->remote_name,
557 c->type, c->remote_id,
558 c->istate, buffer_len(&c->input),
559 c->ostate, buffer_len(&c->output),
560 c->rfd, c->wfd);
561 buffer_append(&buffer, buf, strlen(buf));
562 continue;
563 default:
564 fatal("channel_open_message: bad channel type %d", c->type);
565 /* NOTREACHED */
566 }
567 }
568 buffer_append(&buffer, "\0", 1);
569 cp = xstrdup(buffer_ptr(&buffer));
570 buffer_free(&buffer);
571 return cp;
572}
573
574void
575channel_send_open(int id)
576{
577 Channel *c = channel_lookup(id);
578 if (c == NULL) {
579 log("channel_send_open: %d: bad id", id);
580 return;
581 }
582 debug("send channel open %d", id);
583 packet_start(SSH2_MSG_CHANNEL_OPEN);
584 packet_put_cstring(c->ctype);
585 packet_put_int(c->self);
586 packet_put_int(c->local_window);
587 packet_put_int(c->local_maxpacket);
588 packet_send();
589}
590
591void
592channel_request(int id, char *service, int wantconfirm)
593{
594 channel_request_start(id, service, wantconfirm);
595 packet_send();
596 debug("channel request %d: %s", id, service) ;
597}
598void
599channel_request_start(int id, char *service, int wantconfirm)
600{
601 Channel *c = channel_lookup(id);
602 if (c == NULL) {
603 log("channel_request: %d: bad id", id);
604 return;
605 }
606 packet_start(SSH2_MSG_CHANNEL_REQUEST);
607 packet_put_int(c->remote_id);
608 packet_put_cstring(service);
609 packet_put_char(wantconfirm);
610}
611void
612channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
613{
614 Channel *c = channel_lookup(id);
615 if (c == NULL) {
616 log("channel_register_callback: %d: bad id", id);
617 return;
618 }
619 c->cb_event = mtype;
620 c->cb_fn = fn;
621 c->cb_arg = arg;
622}
623void
624channel_register_cleanup(int id, channel_callback_fn *fn)
625{
626 Channel *c = channel_lookup(id);
627 if (c == NULL) {
628 log("channel_register_cleanup: %d: bad id", id);
629 return;
630 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000631 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632}
633void
634channel_cancel_cleanup(int id)
635{
636 Channel *c = channel_lookup(id);
637 if (c == NULL) {
638 log("channel_cancel_cleanup: %d: bad id", id);
639 return;
640 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000641 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642}
643void
644channel_register_filter(int id, channel_filter_fn *fn)
645{
646 Channel *c = channel_lookup(id);
647 if (c == NULL) {
648 log("channel_register_filter: %d: bad id", id);
649 return;
650 }
651 c->input_filter = fn;
652}
653
654void
655channel_set_fds(int id, int rfd, int wfd, int efd,
656 int extusage, int nonblock)
657{
658 Channel *c = channel_lookup(id);
659 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
660 fatal("channel_activate for non-larval channel %d.", id);
661 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
662 c->type = SSH_CHANNEL_OPEN;
663 /* XXX window size? */
664 c->local_window = c->local_window_max = c->local_maxpacket * 2;
665 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
666 packet_put_int(c->remote_id);
667 packet_put_int(c->local_window);
668 packet_send();
669}
670
Damien Miller5428f641999-11-25 11:54:57 +1100671/*
Damien Millerb38eff82000-04-01 11:09:21 +1000672 * 'channel_pre*' are called just before select() to add any bits relevant to
673 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100674 */
Damien Millerb38eff82000-04-01 11:09:21 +1000675/*
676 * 'channel_post*': perform any appropriate operations for channels which
677 * have events pending.
678 */
679typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
680chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
681chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
682
Ben Lindstrombba81212001-06-25 05:01:22 +0000683static void
Damien Millerb38eff82000-04-01 11:09:21 +1000684channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
685{
686 FD_SET(c->sock, readset);
687}
688
Ben Lindstrombba81212001-06-25 05:01:22 +0000689static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000690channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
691{
692 debug3("channel %d: waiting for connection", c->self);
693 FD_SET(c->sock, writeset);
694}
695
Ben Lindstrombba81212001-06-25 05:01:22 +0000696static void
Damien Millerb38eff82000-04-01 11:09:21 +1000697channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
698{
699 if (buffer_len(&c->input) < packet_get_maxsize())
700 FD_SET(c->sock, readset);
701 if (buffer_len(&c->output) > 0)
702 FD_SET(c->sock, writeset);
703}
704
Ben Lindstrombba81212001-06-25 05:01:22 +0000705static void
Damien Millerb38eff82000-04-01 11:09:21 +1000706channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
707{
708 /* test whether sockets are 'alive' for read/write */
709 if (c->istate == CHAN_INPUT_OPEN)
710 if (buffer_len(&c->input) < packet_get_maxsize())
711 FD_SET(c->sock, readset);
712 if (c->ostate == CHAN_OUTPUT_OPEN ||
713 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
714 if (buffer_len(&c->output) > 0) {
715 FD_SET(c->sock, writeset);
716 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
717 chan_obuf_empty(c);
718 }
719 }
720}
721
Ben Lindstrombba81212001-06-25 05:01:22 +0000722static void
Damien Miller33b13562000-04-04 14:38:59 +1000723channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
724{
725 if (c->istate == CHAN_INPUT_OPEN &&
726 c->remote_window > 0 &&
727 buffer_len(&c->input) < c->remote_window)
728 FD_SET(c->rfd, readset);
729 if (c->ostate == CHAN_OUTPUT_OPEN ||
730 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
731 if (buffer_len(&c->output) > 0) {
732 FD_SET(c->wfd, writeset);
733 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
734 chan_obuf_empty(c);
735 }
736 }
737 /** XXX check close conditions, too */
738 if (c->efd != -1) {
739 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
740 buffer_len(&c->extended) > 0)
741 FD_SET(c->efd, writeset);
742 else if (c->extended_usage == CHAN_EXTENDED_READ &&
743 buffer_len(&c->extended) < c->remote_window)
744 FD_SET(c->efd, readset);
745 }
746}
747
Ben Lindstrombba81212001-06-25 05:01:22 +0000748static void
Damien Millerb38eff82000-04-01 11:09:21 +1000749channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
750{
751 if (buffer_len(&c->input) == 0) {
752 packet_start(SSH_MSG_CHANNEL_CLOSE);
753 packet_put_int(c->remote_id);
754 packet_send();
755 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000756 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000757 }
758}
759
Ben Lindstrombba81212001-06-25 05:01:22 +0000760static void
Damien Millerb38eff82000-04-01 11:09:21 +1000761channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
762{
763 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000764 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000765 else
Damien Millerb38eff82000-04-01 11:09:21 +1000766 FD_SET(c->sock, writeset);
767}
768
769/*
770 * This is a special state for X11 authentication spoofing. An opened X11
771 * connection (when authentication spoofing is being done) remains in this
772 * state until the first packet has been completely read. The authentication
773 * data in that packet is then substituted by the real data if it matches the
774 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000775 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000776 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000777 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000778static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000780{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000781 u_char *ucp;
782 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000783
784 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000785 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000786 return 0;
787
788 /* Parse the lengths of variable-length fields. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 ucp = (u_char *) buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000790 if (ucp[0] == 0x42) { /* Byte order MSB first. */
791 proto_len = 256 * ucp[6] + ucp[7];
792 data_len = 256 * ucp[8] + ucp[9];
793 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
794 proto_len = ucp[6] + 256 * ucp[7];
795 data_len = ucp[8] + 256 * ucp[9];
796 } else {
797 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100798 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000799 return -1;
800 }
801
802 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000803 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000804 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
805 return 0;
806
807 /* Check if authentication protocol matches. */
808 if (proto_len != strlen(x11_saved_proto) ||
809 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
810 debug("X11 connection uses different authentication protocol.");
811 return -1;
812 }
813 /* Check if authentication data matches our fake data. */
814 if (data_len != x11_fake_data_len ||
815 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
816 x11_fake_data, x11_fake_data_len) != 0) {
817 debug("X11 auth data does not match fake data.");
818 return -1;
819 }
820 /* Check fake data length */
821 if (x11_fake_data_len != x11_saved_data_len) {
822 error("X11 fake_data_len %d != saved_data_len %d",
823 x11_fake_data_len, x11_saved_data_len);
824 return -1;
825 }
826 /*
827 * Received authentication protocol and data match
828 * our fake data. Substitute the fake data with real
829 * data.
830 */
831 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
832 x11_saved_data, x11_saved_data_len);
833 return 1;
834}
835
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Millerb38eff82000-04-01 11:09:21 +1000837channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
838{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000839 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000840 if (ret == 1) {
841 /* Start normal processing for the channel. */
842 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000843 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000844 } else if (ret == -1) {
845 /*
846 * We have received an X11 connection that has bad
847 * authentication information.
848 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000849 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000850 buffer_clear(&c->input);
851 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000852 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000853 c->sock = -1;
854 c->type = SSH_CHANNEL_CLOSED;
855 packet_start(SSH_MSG_CHANNEL_CLOSE);
856 packet_put_int(c->remote_id);
857 packet_send();
858 }
859}
860
Ben Lindstrombba81212001-06-25 05:01:22 +0000861static void
Damien Millerbd483e72000-04-30 10:00:53 +1000862channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000863{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000864 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000865
866 /* c->force_drain = 1; */
867
Damien Millerb38eff82000-04-01 11:09:21 +1000868 if (ret == 1) {
869 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000870 if (compat20)
871 channel_pre_open_20(c, readset, writeset);
872 else
873 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000874 } else if (ret == -1) {
875 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000876 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000877 chan_write_failed(c);
878 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
879 }
880}
881
Ben Lindstromb3921512001-04-11 15:57:50 +0000882/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000883static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000884channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000885{
886 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000887 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100888 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000889 struct {
890 u_int8_t version;
891 u_int8_t command;
892 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000893 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000894 } s4_req, s4_rsp;
895
Ben Lindstromb3921512001-04-11 15:57:50 +0000896 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000897
898 have = buffer_len(&c->input);
899 len = sizeof(s4_req);
900 if (have < len)
901 return 0;
902 p = buffer_ptr(&c->input);
903 for (found = 0, i = len; i < have; i++) {
904 if (p[i] == '\0') {
905 found = 1;
906 break;
907 }
908 if (i > 1024) {
909 /* the peer is probably sending garbage */
910 debug("channel %d: decode socks4: too long",
911 c->self);
912 return -1;
913 }
914 }
915 if (!found)
916 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000917 buffer_get(&c->input, (char *)&s4_req.version, 1);
918 buffer_get(&c->input, (char *)&s4_req.command, 1);
919 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000920 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000921 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000922 p = buffer_ptr(&c->input);
923 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000924 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000925 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000926 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000927 c->self, len, have);
928 strlcpy(username, p, sizeof(username));
929 buffer_consume(&c->input, len);
930 buffer_consume(&c->input, 1); /* trailing '\0' */
931
Ben Lindstromb3921512001-04-11 15:57:50 +0000932 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000933 strlcpy(c->path, host, sizeof(c->path));
934 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100935
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000936 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
937 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 if (s4_req.command != 1) {
940 debug("channel %d: cannot handle: socks4 cn %d",
941 c->self, s4_req.command);
942 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000943 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000944 s4_rsp.version = 0; /* vn: 0 for reply */
945 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000946 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000947 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000948 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000949 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000950}
951
Ben Lindstromb3921512001-04-11 15:57:50 +0000952/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000953static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000954channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
955{
956 u_char *p;
957 int have, ret;
958
959 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000960 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000961 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000962 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000963 /* check if the fixed size part of the packet is in buffer. */
964 if (have < 4) {
965 /* need more */
966 FD_SET(c->sock, readset);
967 return;
968 }
969 /* try to guess the protocol */
970 p = buffer_ptr(&c->input);
971 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000972 case 0x04:
973 ret = channel_decode_socks4(c, readset, writeset);
974 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000975 default:
976 ret = -1;
977 break;
978 }
979 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000980 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000981 } else if (ret == 0) {
982 debug2("channel %d: pre_dynamic: need more", c->self);
983 /* need more */
984 FD_SET(c->sock, readset);
985 } else {
986 /* switch to the next state */
987 c->type = SSH_CHANNEL_OPENING;
988 port_open_helper(c, "direct-tcpip");
989 }
990}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000991
Damien Millerb38eff82000-04-01 11:09:21 +1000992/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000993static void
Damien Millerb38eff82000-04-01 11:09:21 +1000994channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
995{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000996 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000997 struct sockaddr addr;
Ben Lindstrom73f57be2001-12-07 17:28:34 +0000998 int newsock, on = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000999 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001000 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001001 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001002
1003 if (FD_ISSET(c->sock, readset)) {
1004 debug("X11 connection requested.");
1005 addrlen = sizeof(addr);
1006 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001007 if (c->single_connection) {
1008 debug("single_connection: closing X11 listener.");
1009 channel_close_fd(&c->sock);
1010 chan_mark_dead(c);
1011 }
Damien Millerb38eff82000-04-01 11:09:21 +10001012 if (newsock < 0) {
1013 error("accept: %.100s", strerror(errno));
1014 return;
1015 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00001016 if (setsockopt(newsock, IPPROTO_TCP, TCP_NODELAY, &on,
1017 sizeof on) == -1)
1018 error("setsockopt TCP_NODELAY: %.100s",
1019 strerror(errno));
Damien Millerd83ff352001-01-30 09:19:34 +11001020 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001021 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001022 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001023 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001024
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001025 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001026 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1027 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001028 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001029 if (nc == NULL) {
1030 close(newsock);
1031 xfree(remote_ipaddr);
1032 return;
1033 }
Damien Millerbd483e72000-04-30 10:00:53 +10001034 if (compat20) {
1035 packet_start(SSH2_MSG_CHANNEL_OPEN);
1036 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001037 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001038 packet_put_int(nc->local_window_max);
1039 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001040 /* originator ipaddr and port */
1041 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001042 if (datafellows & SSH_BUG_X11FWD) {
1043 debug("ssh2 x11 bug compat mode");
1044 } else {
1045 packet_put_int(remote_port);
1046 }
Damien Millerbd483e72000-04-30 10:00:53 +10001047 packet_send();
1048 } else {
1049 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001050 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001051 if (packet_get_protocol_flags() &
1052 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001053 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001054 packet_send();
1055 }
Damien Millerd83ff352001-01-30 09:19:34 +11001056 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001057 }
1058}
1059
Ben Lindstrombba81212001-06-25 05:01:22 +00001060static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001061port_open_helper(Channel *c, char *rtype)
1062{
1063 int direct;
1064 char buf[1024];
1065 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1066 u_short remote_port = get_peer_port(c->sock);
1067
1068 direct = (strcmp(rtype, "direct-tcpip") == 0);
1069
1070 snprintf(buf, sizeof buf,
1071 "%s: listening port %d for %.100s port %d, "
1072 "connect from %.200s port %d",
1073 rtype, c->listening_port, c->path, c->host_port,
1074 remote_ipaddr, remote_port);
1075
1076 xfree(c->remote_name);
1077 c->remote_name = xstrdup(buf);
1078
1079 if (compat20) {
1080 packet_start(SSH2_MSG_CHANNEL_OPEN);
1081 packet_put_cstring(rtype);
1082 packet_put_int(c->self);
1083 packet_put_int(c->local_window_max);
1084 packet_put_int(c->local_maxpacket);
1085 if (direct) {
1086 /* target host, port */
1087 packet_put_cstring(c->path);
1088 packet_put_int(c->host_port);
1089 } else {
1090 /* listen address, port */
1091 packet_put_cstring(c->path);
1092 packet_put_int(c->listening_port);
1093 }
1094 /* originator host and port */
1095 packet_put_cstring(remote_ipaddr);
1096 packet_put_int(remote_port);
1097 packet_send();
1098 } else {
1099 packet_start(SSH_MSG_PORT_OPEN);
1100 packet_put_int(c->self);
1101 packet_put_cstring(c->path);
1102 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001103 if (packet_get_protocol_flags() &
1104 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001105 packet_put_cstring(c->remote_name);
1106 packet_send();
1107 }
1108 xfree(remote_ipaddr);
1109}
1110
Damien Millerb38eff82000-04-01 11:09:21 +10001111/*
1112 * This socket is listening for connections to a forwarded TCP/IP port.
1113 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001114static void
Damien Millerb38eff82000-04-01 11:09:21 +10001115channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1116{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001117 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001118 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001119 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001120 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001121 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001122
Damien Millerb38eff82000-04-01 11:09:21 +10001123 if (FD_ISSET(c->sock, readset)) {
1124 debug("Connection to port %d forwarding "
1125 "to %.100s port %d requested.",
1126 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001127
Damien Miller4623a752001-10-10 15:03:58 +10001128 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1129 nextstate = SSH_CHANNEL_OPENING;
1130 rtype = "forwarded-tcpip";
1131 } else {
1132 if (c->host_port == 0) {
1133 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001134 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001135 } else {
1136 nextstate = SSH_CHANNEL_OPENING;
1137 rtype = "direct-tcpip";
1138 }
1139 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001140
Damien Millerb38eff82000-04-01 11:09:21 +10001141 addrlen = sizeof(addr);
1142 newsock = accept(c->sock, &addr, &addrlen);
1143 if (newsock < 0) {
1144 error("accept: %.100s", strerror(errno));
1145 return;
1146 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001148 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001149 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001150 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001151 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001152 error("channel_post_port_listener: no new channel:");
1153 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001154 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001155 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001156 nc->listening_port = c->listening_port;
1157 nc->host_port = c->host_port;
1158 strlcpy(nc->path, c->path, sizeof(nc->path));
1159
Damien Miller4623a752001-10-10 15:03:58 +10001160 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1161 /*
1162 * do not call the channel_post handler until
1163 * this flag has been reset by a pre-handler.
1164 * otherwise the FD_ISSET calls might overflow
1165 */
1166 nc->delayed = 1;
1167 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001168 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001169 }
Damien Millerb38eff82000-04-01 11:09:21 +10001170 }
1171}
1172
1173/*
1174 * This is the authentication agent socket listening for connections from
1175 * clients.
1176 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001177static void
Damien Millerb38eff82000-04-01 11:09:21 +10001178channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1179{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001180 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001181 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001182 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001183 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001184 socklen_t addrlen;
1185
1186 if (FD_ISSET(c->sock, readset)) {
1187 addrlen = sizeof(addr);
1188 newsock = accept(c->sock, &addr, &addrlen);
1189 if (newsock < 0) {
1190 error("accept from auth socket: %.100s", strerror(errno));
1191 return;
1192 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001193 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001194 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001195 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1196 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001197 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001198 if (nc == NULL) {
1199 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001200 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001201 close(newsock);
1202 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001203 if (compat20) {
1204 packet_start(SSH2_MSG_CHANNEL_OPEN);
1205 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001206 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001207 packet_put_int(c->local_window_max);
1208 packet_put_int(c->local_maxpacket);
1209 } else {
1210 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001211 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001212 }
Damien Millerb38eff82000-04-01 11:09:21 +10001213 packet_send();
1214 }
1215}
1216
Ben Lindstrombba81212001-06-25 05:01:22 +00001217static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001218channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1219{
Ben Lindstrom69128662001-05-08 20:07:39 +00001220 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001221 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001222
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001223 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001224 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1225 &sz) < 0) {
1226 err = errno;
1227 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001228 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001229 if (err == 0) {
1230 debug("channel %d: connected", c->self);
1231 c->type = SSH_CHANNEL_OPEN;
1232 if (compat20) {
1233 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1234 packet_put_int(c->remote_id);
1235 packet_put_int(c->self);
1236 packet_put_int(c->local_window);
1237 packet_put_int(c->local_maxpacket);
1238 } else {
1239 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1240 packet_put_int(c->remote_id);
1241 packet_put_int(c->self);
1242 }
1243 } else {
1244 debug("channel %d: not connected: %s",
1245 c->self, strerror(err));
1246 if (compat20) {
1247 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1248 packet_put_int(c->remote_id);
1249 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1250 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1251 packet_put_cstring(strerror(err));
1252 packet_put_cstring("");
1253 }
1254 } else {
1255 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1256 packet_put_int(c->remote_id);
1257 }
1258 chan_mark_dead(c);
1259 }
1260 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001261 }
1262}
1263
Ben Lindstrombba81212001-06-25 05:01:22 +00001264static int
Damien Millerb38eff82000-04-01 11:09:21 +10001265channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1266{
1267 char buf[16*1024];
1268 int len;
1269
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001270 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001271 FD_ISSET(c->rfd, readset)) {
1272 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001273 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1274 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001275 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001276 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001277 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001278 if (c->type != SSH_CHANNEL_OPEN) {
1279 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001280 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001281 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001282 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001283 buffer_consume(&c->output, buffer_len(&c->output));
1284 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001285 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001286 } else {
1287 chan_read_failed(c);
1288 }
1289 return -1;
1290 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001291 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001292 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001293 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001294 chan_read_failed(c);
1295 }
1296 } else {
1297 buffer_append(&c->input, buf, len);
1298 }
Damien Millerb38eff82000-04-01 11:09:21 +10001299 }
1300 return 1;
1301}
Ben Lindstrombba81212001-06-25 05:01:22 +00001302static int
Damien Millerb38eff82000-04-01 11:09:21 +10001303channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1304{
Ben Lindstrome229b252001-03-05 06:28:06 +00001305 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001306 u_char *data;
1307 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001308 int len;
1309
1310 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001311 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001312 FD_ISSET(c->wfd, writeset) &&
1313 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001314 data = buffer_ptr(&c->output);
1315 dlen = buffer_len(&c->output);
1316 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001317 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1318 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001319 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001320 if (c->type != SSH_CHANNEL_OPEN) {
1321 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001322 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001323 return -1;
1324 } else if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001325 buffer_consume(&c->output, buffer_len(&c->output));
Ben Lindstrome9c99912001-06-09 00:41:05 +00001326 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001327 c->type = SSH_CHANNEL_INPUT_DRAINING;
1328 } else {
1329 chan_write_failed(c);
1330 }
1331 return -1;
1332 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001333 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001334 if (tcgetattr(c->wfd, &tio) == 0 &&
1335 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1336 /*
1337 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001338 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001339 * size of a SSH2_MSG_CHANNEL_DATA message
1340 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001341 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001342 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001343 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001344 }
1345 }
Damien Millerb38eff82000-04-01 11:09:21 +10001346 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001347 if (compat20 && len > 0) {
1348 c->local_consumed += len;
1349 }
1350 }
1351 return 1;
1352}
Ben Lindstrombba81212001-06-25 05:01:22 +00001353static int
Damien Miller33b13562000-04-04 14:38:59 +10001354channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1355{
1356 char buf[16*1024];
1357 int len;
1358
Damien Miller1383bd82000-04-06 12:32:37 +10001359/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001360 if (c->efd != -1) {
1361 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1362 FD_ISSET(c->efd, writeset) &&
1363 buffer_len(&c->extended) > 0) {
1364 len = write(c->efd, buffer_ptr(&c->extended),
1365 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001366 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001367 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001368 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1369 return 1;
1370 if (len <= 0) {
1371 debug2("channel %d: closing write-efd %d",
1372 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001373 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001374 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001375 buffer_consume(&c->extended, len);
1376 c->local_consumed += len;
1377 }
1378 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1379 FD_ISSET(c->efd, readset)) {
1380 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001381 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001382 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001383 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1384 return 1;
1385 if (len <= 0) {
1386 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001387 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001388 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001389 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001390 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001391 }
Damien Miller33b13562000-04-04 14:38:59 +10001392 }
1393 }
1394 return 1;
1395}
Ben Lindstrombba81212001-06-25 05:01:22 +00001396static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001397channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001398{
Ben Lindstromb3921512001-04-11 15:57:50 +00001399 if (c->type == SSH_CHANNEL_OPEN &&
1400 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001401 c->local_window < c->local_window_max/2 &&
1402 c->local_consumed > 0) {
1403 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1404 packet_put_int(c->remote_id);
1405 packet_put_int(c->local_consumed);
1406 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001407 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001408 c->self, c->local_window,
1409 c->local_consumed);
1410 c->local_window += c->local_consumed;
1411 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001412 }
1413 return 1;
1414}
1415
Ben Lindstrombba81212001-06-25 05:01:22 +00001416static void
Damien Millerb38eff82000-04-01 11:09:21 +10001417channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
1418{
Damien Miller4623a752001-10-10 15:03:58 +10001419 if (c->delayed)
1420 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001421 channel_handle_rfd(c, readset, writeset);
1422 channel_handle_wfd(c, readset, writeset);
1423}
1424
Ben Lindstrombba81212001-06-25 05:01:22 +00001425static void
Damien Miller33b13562000-04-04 14:38:59 +10001426channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
1427{
Damien Miller4623a752001-10-10 15:03:58 +10001428 if (c->delayed)
1429 return;
Damien Miller33b13562000-04-04 14:38:59 +10001430 channel_handle_rfd(c, readset, writeset);
1431 channel_handle_wfd(c, readset, writeset);
1432 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001433
1434 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001435}
1436
Ben Lindstrombba81212001-06-25 05:01:22 +00001437static void
Damien Millerb38eff82000-04-01 11:09:21 +10001438channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1439{
1440 int len;
1441 /* Send buffered output data to the socket. */
1442 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1443 len = write(c->sock, buffer_ptr(&c->output),
1444 buffer_len(&c->output));
1445 if (len <= 0)
1446 buffer_consume(&c->output, buffer_len(&c->output));
1447 else
1448 buffer_consume(&c->output, len);
1449 }
1450}
1451
Ben Lindstrombba81212001-06-25 05:01:22 +00001452static void
Damien Miller33b13562000-04-04 14:38:59 +10001453channel_handler_init_20(void)
1454{
1455 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +10001456 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001457 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001458 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001459 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001460 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001461 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001462 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001463
1464 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
1465 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001466 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001467 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001468 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001469 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001470 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_2;
Damien Miller33b13562000-04-04 14:38:59 +10001471}
1472
Ben Lindstrombba81212001-06-25 05:01:22 +00001473static void
Damien Millerb38eff82000-04-01 11:09:21 +10001474channel_handler_init_13(void)
1475{
1476 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1477 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1478 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1479 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1480 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1481 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1482 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001483 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001484 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001485
1486 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
1487 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1488 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1489 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1490 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001491 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001492 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001493}
1494
Ben Lindstrombba81212001-06-25 05:01:22 +00001495static void
Damien Millerb38eff82000-04-01 11:09:21 +10001496channel_handler_init_15(void)
1497{
1498 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +10001499 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001500 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1501 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1502 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001503 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001504 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001505
1506 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1507 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1508 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1509 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001510 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Ben Lindstromb3921512001-04-11 15:57:50 +00001511 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
Damien Millerb38eff82000-04-01 11:09:21 +10001512}
1513
Ben Lindstrombba81212001-06-25 05:01:22 +00001514static void
Damien Millerb38eff82000-04-01 11:09:21 +10001515channel_handler_init(void)
1516{
1517 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001518 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001519 channel_pre[i] = NULL;
1520 channel_post[i] = NULL;
1521 }
Damien Miller33b13562000-04-04 14:38:59 +10001522 if (compat20)
1523 channel_handler_init_20();
1524 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001525 channel_handler_init_13();
1526 else
1527 channel_handler_init_15();
1528}
1529
Damien Miller3ec27592001-10-12 11:35:04 +10001530/* gc dead channels */
1531static void
1532channel_garbage_collect(Channel *c)
1533{
1534 if (c == NULL)
1535 return;
1536 if (c->detach_user != NULL) {
1537 if (!chan_is_dead(c, 0))
1538 return;
1539 debug("channel %d: gc: notify user", c->self);
1540 c->detach_user(c->self, NULL);
1541 /* if we still have a callback */
1542 if (c->detach_user != NULL)
1543 return;
1544 debug("channel %d: gc: user detached", c->self);
1545 }
1546 if (!chan_is_dead(c, 1))
1547 return;
1548 debug("channel %d: garbage collecting", c->self);
1549 channel_free(c);
1550}
1551
Ben Lindstrombba81212001-06-25 05:01:22 +00001552static void
Damien Millerb38eff82000-04-01 11:09:21 +10001553channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1554{
1555 static int did_init = 0;
1556 int i;
1557 Channel *c;
1558
1559 if (!did_init) {
1560 channel_handler_init();
1561 did_init = 1;
1562 }
1563 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001564 c = channels[i];
1565 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001566 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001567 if (ftab[c->type] != NULL)
1568 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001569 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001570 }
1571}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001572
Ben Lindstrome9c99912001-06-09 00:41:05 +00001573/*
1574 * Allocate/update select bitmasks and add any bits relevant to channels in
1575 * select bitmasks.
1576 */
Damien Miller4af51302000-04-16 11:18:38 +10001577void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001578channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001579 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001580{
Damien Miller5e953212001-01-30 09:14:00 +11001581 int n;
1582 u_int sz;
1583
1584 n = MAX(*maxfdp, channel_max_fd);
1585
1586 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001587 /* perhaps check sz < nalloc/2 and shrink? */
1588 if (*readsetp == NULL || sz > *nallocp) {
1589 *readsetp = xrealloc(*readsetp, sz);
1590 *writesetp = xrealloc(*writesetp, sz);
1591 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001592 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001593 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001594 memset(*readsetp, 0, sz);
1595 memset(*writesetp, 0, sz);
1596
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001597 if (!rekeying)
1598 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599}
1600
Ben Lindstrome9c99912001-06-09 00:41:05 +00001601/*
1602 * After select, perform any appropriate operations for channels which have
1603 * events pending.
1604 */
Damien Miller4af51302000-04-16 11:18:38 +10001605void
Damien Miller95def091999-11-25 00:26:21 +11001606channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607{
Damien Millerb38eff82000-04-01 11:09:21 +10001608 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001609}
1610
Ben Lindstrome9c99912001-06-09 00:41:05 +00001611
Damien Miller5e953212001-01-30 09:14:00 +11001612/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001613
Damien Miller4af51302000-04-16 11:18:38 +10001614void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001615channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001616{
Damien Miller95def091999-11-25 00:26:21 +11001617 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001618 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001619
Damien Miller95def091999-11-25 00:26:21 +11001620 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001621 c = channels[i];
1622 if (c == NULL)
1623 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001624
Ben Lindstrome9c99912001-06-09 00:41:05 +00001625 /*
1626 * We are only interested in channels that can have buffered
1627 * incoming data.
1628 */
Damien Miller34132e52000-01-14 15:45:46 +11001629 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001630 if (c->type != SSH_CHANNEL_OPEN &&
1631 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001632 continue;
1633 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001634 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001635 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001636 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001637 if (compat20 &&
1638 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001639 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001640 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001641 continue;
1642 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001643
Damien Miller95def091999-11-25 00:26:21 +11001644 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001645 if ((c->istate == CHAN_INPUT_OPEN ||
1646 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1647 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001648 /*
1649 * Send some data for the other side over the secure
1650 * connection.
1651 */
Damien Miller33b13562000-04-04 14:38:59 +10001652 if (compat20) {
1653 if (len > c->remote_window)
1654 len = c->remote_window;
1655 if (len > c->remote_maxpacket)
1656 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001657 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001658 if (packet_is_interactive()) {
1659 if (len > 1024)
1660 len = 512;
1661 } else {
1662 /* Keep the packets at reasonable size. */
1663 if (len > packet_get_maxsize()/2)
1664 len = packet_get_maxsize()/2;
1665 }
Damien Miller95def091999-11-25 00:26:21 +11001666 }
Damien Millerb38eff82000-04-01 11:09:21 +10001667 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001668 packet_start(compat20 ?
1669 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001670 packet_put_int(c->remote_id);
1671 packet_put_string(buffer_ptr(&c->input), len);
1672 packet_send();
1673 buffer_consume(&c->input, len);
1674 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001675 }
1676 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001677 if (compat13)
1678 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001679 /*
1680 * input-buffer is empty and read-socket shutdown:
1681 * tell peer, that we will not send more data: send IEOF
1682 */
Damien Millerb38eff82000-04-01 11:09:21 +10001683 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001684 }
Damien Miller33b13562000-04-04 14:38:59 +10001685 /* Send extended data, i.e. stderr */
1686 if (compat20 &&
1687 c->remote_window > 0 &&
1688 (len = buffer_len(&c->extended)) > 0 &&
1689 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001690 debug2("channel %d: rwin %d elen %d euse %d",
1691 c->self, c->remote_window, buffer_len(&c->extended),
1692 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001693 if (len > c->remote_window)
1694 len = c->remote_window;
1695 if (len > c->remote_maxpacket)
1696 len = c->remote_maxpacket;
1697 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1698 packet_put_int(c->remote_id);
1699 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1700 packet_put_string(buffer_ptr(&c->extended), len);
1701 packet_send();
1702 buffer_consume(&c->extended, len);
1703 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001704 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001705 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001706 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001707}
1708
Ben Lindstrome9c99912001-06-09 00:41:05 +00001709
1710/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001711
Damien Miller4af51302000-04-16 11:18:38 +10001712void
Damien Miller278f9072001-12-21 15:00:19 +11001713channel_input_data(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001714{
Damien Miller34132e52000-01-14 15:45:46 +11001715 int id;
Damien Miller95def091999-11-25 00:26:21 +11001716 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001717 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001718 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001719
Damien Miller95def091999-11-25 00:26:21 +11001720 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001721 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001722 c = channel_lookup(id);
1723 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001724 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001725
Damien Miller95def091999-11-25 00:26:21 +11001726 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001727 if (c->type != SSH_CHANNEL_OPEN &&
1728 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001729 return;
1730
1731 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001732 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001733 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001734
Damien Miller95def091999-11-25 00:26:21 +11001735 /* Get the data. */
1736 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001737
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001738 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001739 if (data_len > c->local_maxpacket) {
1740 log("channel %d: rcvd big packet %d, maxpack %d",
1741 c->self, data_len, c->local_maxpacket);
1742 }
1743 if (data_len > c->local_window) {
1744 log("channel %d: rcvd too much data %d, win %d",
1745 c->self, data_len, c->local_window);
1746 xfree(data);
1747 return;
1748 }
1749 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001750 }
Damien Miller66823cd2002-01-22 23:11:38 +11001751 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001752 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001753 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001754}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001755
Damien Miller4af51302000-04-16 11:18:38 +10001756void
Damien Miller278f9072001-12-21 15:00:19 +11001757channel_input_extended_data(int type, int plen, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001758{
1759 int id;
1760 int tcode;
1761 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001762 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001763 Channel *c;
1764
1765 /* Get the channel number and verify it. */
1766 id = packet_get_int();
1767 c = channel_lookup(id);
1768
1769 if (c == NULL)
1770 packet_disconnect("Received extended_data for bad channel %d.", id);
1771 if (c->type != SSH_CHANNEL_OPEN) {
1772 log("channel %d: ext data for non open", id);
1773 return;
1774 }
1775 tcode = packet_get_int();
1776 if (c->efd == -1 ||
1777 c->extended_usage != CHAN_EXTENDED_WRITE ||
1778 tcode != SSH2_EXTENDED_DATA_STDERR) {
1779 log("channel %d: bad ext data", c->self);
1780 return;
1781 }
1782 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001783 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001784 if (data_len > c->local_window) {
1785 log("channel %d: rcvd too much extended_data %d, win %d",
1786 c->self, data_len, c->local_window);
1787 xfree(data);
1788 return;
1789 }
Damien Millerd3444942000-09-30 14:20:03 +11001790 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001791 c->local_window -= data_len;
1792 buffer_append(&c->extended, data, data_len);
1793 xfree(data);
1794}
1795
Damien Miller4af51302000-04-16 11:18:38 +10001796void
Damien Miller278f9072001-12-21 15:00:19 +11001797channel_input_ieof(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001798{
1799 int id;
1800 Channel *c;
1801
Damien Millerb38eff82000-04-01 11:09:21 +10001802 id = packet_get_int();
Damien Miller66823cd2002-01-22 23:11:38 +11001803 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001804 c = channel_lookup(id);
1805 if (c == NULL)
1806 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1807 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001808
1809 /* XXX force input close */
1810 if (c->force_drain) {
1811 debug("channel %d: FORCE input drain", c->self);
1812 c->istate = CHAN_INPUT_WAIT_DRAIN;
1813 }
1814
Damien Millerb38eff82000-04-01 11:09:21 +10001815}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001816
Damien Miller4af51302000-04-16 11:18:38 +10001817void
Damien Miller278f9072001-12-21 15:00:19 +11001818channel_input_close(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819{
Damien Millerb38eff82000-04-01 11:09:21 +10001820 int id;
1821 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001822
Damien Millerb38eff82000-04-01 11:09:21 +10001823 id = packet_get_int();
Damien Miller66823cd2002-01-22 23:11:38 +11001824 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001825 c = channel_lookup(id);
1826 if (c == NULL)
1827 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001828
1829 /*
1830 * Send a confirmation that we have closed the channel and no more
1831 * data is coming for it.
1832 */
Damien Miller95def091999-11-25 00:26:21 +11001833 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001834 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001835 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001836
Damien Miller5428f641999-11-25 11:54:57 +11001837 /*
1838 * If the channel is in closed state, we have sent a close request,
1839 * and the other side will eventually respond with a confirmation.
1840 * Thus, we cannot free the channel here, because then there would be
1841 * no-one to receive the confirmation. The channel gets freed when
1842 * the confirmation arrives.
1843 */
Damien Millerb38eff82000-04-01 11:09:21 +10001844 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001845 /*
1846 * Not a closed channel - mark it as draining, which will
1847 * cause it to be freed later.
1848 */
Damien Millerb38eff82000-04-01 11:09:21 +10001849 buffer_consume(&c->input, buffer_len(&c->input));
1850 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001851 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001852}
1853
Damien Millerb38eff82000-04-01 11:09:21 +10001854/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001855void
Damien Miller278f9072001-12-21 15:00:19 +11001856channel_input_oclose(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001857{
Damien Millerb38eff82000-04-01 11:09:21 +10001858 int id = packet_get_int();
1859 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001860
1861 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001862 if (c == NULL)
1863 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1864 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865}
1866
Damien Miller4af51302000-04-16 11:18:38 +10001867void
Damien Miller278f9072001-12-21 15:00:19 +11001868channel_input_close_confirmation(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001869{
1870 int id = packet_get_int();
1871 Channel *c = channel_lookup(id);
1872
Damien Miller4af51302000-04-16 11:18:38 +10001873 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001874 if (c == NULL)
1875 packet_disconnect("Received close confirmation for "
1876 "out-of-range channel %d.", id);
1877 if (c->type != SSH_CHANNEL_CLOSED)
1878 packet_disconnect("Received close confirmation for "
1879 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001880 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001881}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001882
Damien Miller4af51302000-04-16 11:18:38 +10001883void
Damien Miller278f9072001-12-21 15:00:19 +11001884channel_input_open_confirmation(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001885{
Damien Millerb38eff82000-04-01 11:09:21 +10001886 int id, remote_id;
1887 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001888
Damien Millerb38eff82000-04-01 11:09:21 +10001889 id = packet_get_int();
1890 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001891
Damien Millerb38eff82000-04-01 11:09:21 +10001892 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1893 packet_disconnect("Received open confirmation for "
1894 "non-opening channel %d.", id);
1895 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001896 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001897 c->remote_id = remote_id;
1898 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001899
1900 if (compat20) {
1901 c->remote_window = packet_get_int();
1902 c->remote_maxpacket = packet_get_int();
1903 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001904 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001905 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001906 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001907 }
1908 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1909 c->remote_window, c->remote_maxpacket);
1910 }
Damien Miller66823cd2002-01-22 23:11:38 +11001911 packet_done();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001912}
1913
Ben Lindstrombba81212001-06-25 05:01:22 +00001914static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001915reason2txt(int reason)
1916{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001917 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001918 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1919 return "administratively prohibited";
1920 case SSH2_OPEN_CONNECT_FAILED:
1921 return "connect failed";
1922 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1923 return "unknown channel type";
1924 case SSH2_OPEN_RESOURCE_SHORTAGE:
1925 return "resource shortage";
1926 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001927 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001928}
1929
Damien Miller4af51302000-04-16 11:18:38 +10001930void
Damien Miller278f9072001-12-21 15:00:19 +11001931channel_input_open_failure(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001932{
Kevin Steves12057502001-02-05 14:54:34 +00001933 int id, reason;
1934 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001935 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001936
Damien Millerb38eff82000-04-01 11:09:21 +10001937 id = packet_get_int();
1938 c = channel_lookup(id);
1939
1940 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1941 packet_disconnect("Received open failure for "
1942 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001943 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001944 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001945 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001946 msg = packet_get_string(NULL);
1947 lang = packet_get_string(NULL);
1948 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001949 log("channel %d: open failed: %s%s%s", id,
1950 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001951 if (msg != NULL)
1952 xfree(msg);
1953 if (lang != NULL)
1954 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001955 }
Damien Miller66823cd2002-01-22 23:11:38 +11001956 packet_done();
Damien Miller95def091999-11-25 00:26:21 +11001957 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001958 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001959}
1960
Damien Miller33b13562000-04-04 14:38:59 +10001961void
Damien Miller278f9072001-12-21 15:00:19 +11001962channel_input_channel_request(int type, int plen, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001963{
1964 int id;
1965 Channel *c;
1966
1967 id = packet_get_int();
1968 c = channel_lookup(id);
1969
1970 if (c == NULL ||
1971 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1972 packet_disconnect("Received request for "
1973 "non-open channel %d.", id);
1974 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001975 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001976 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001977 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001978 } else {
1979 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001980 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001981 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001982 xfree(service);
1983 }
1984}
1985
Damien Miller4af51302000-04-16 11:18:38 +10001986void
Damien Miller278f9072001-12-21 15:00:19 +11001987channel_input_window_adjust(int type, int plen, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001988{
1989 Channel *c;
1990 int id, adjust;
1991
1992 if (!compat20)
1993 return;
1994
1995 /* Get the channel number and verify it. */
1996 id = packet_get_int();
1997 c = channel_lookup(id);
1998
1999 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
2000 log("Received window adjust for "
2001 "non-open channel %d.", id);
2002 return;
2003 }
2004 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10002005 packet_done();
Damien Millerd3444942000-09-30 14:20:03 +11002006 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002007 c->remote_window += adjust;
2008}
2009
Damien Miller4af51302000-04-16 11:18:38 +10002010void
Damien Miller278f9072001-12-21 15:00:19 +11002011channel_input_port_open(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002012{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002013 Channel *c = NULL;
2014 u_short host_port;
2015 char *host, *originator_string;
2016 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002017
Ben Lindstrome9c99912001-06-09 00:41:05 +00002018 remote_id = packet_get_int();
2019 host = packet_get_string(NULL);
2020 host_port = packet_get_int();
2021
2022 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2023 originator_string = packet_get_string(NULL);
2024 } else {
2025 originator_string = xstrdup("unknown (remote did not supply name)");
2026 }
2027 packet_done();
2028 sock = channel_connect_to(host, host_port);
2029 if (sock != -1) {
2030 c = channel_new("connected socket",
2031 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2032 originator_string, 1);
2033 if (c == NULL) {
2034 error("channel_input_port_open: channel_new failed");
2035 close(sock);
2036 } else {
2037 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11002038 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002039 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002040 if (c == NULL) {
2041 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2042 packet_put_int(remote_id);
2043 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002044 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002045 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002046}
2047
2048
Ben Lindstrome9c99912001-06-09 00:41:05 +00002049/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002050
Ben Lindstrom908afed2001-10-03 17:34:59 +00002051void
2052channel_set_af(int af)
2053{
2054 IPv4or6 = af;
2055}
2056
Damien Miller5428f641999-11-25 11:54:57 +11002057/*
2058 * Initiate forwarding of connections to local port "port" through the secure
2059 * channel to host:port from remote side.
2060 */
Kevin Steves12057502001-02-05 14:54:34 +00002061int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002062channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
2063 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002064{
Kevin Steves12057502001-02-05 14:54:34 +00002065 return channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002066 NULL, listen_port,
2067 host_to_connect, port_to_connect,
2068 gateway_ports, /*remote_fwd*/ 0);
2069}
2070
2071/*
2072 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
2073 * (SSH_CHANNEL_RPORT_LISTENER).
2074 */
Kevin Steves12057502001-02-05 14:54:34 +00002075int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002076channel_request_forwarding(
2077 const char *listen_address, u_short listen_port,
2078 const char *host_to_connect, u_short port_to_connect,
2079 int gateway_ports, int remote_fwd)
2080{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002081 Channel *c;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002082 int success, sock, on = 1, type;
Damien Miller34132e52000-01-14 15:45:46 +11002083 struct addrinfo hints, *ai, *aitop;
2084 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11002085 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11002086 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002087
Kevin Steves12057502001-02-05 14:54:34 +00002088 success = 0;
2089
Damien Miller0bc1bd82000-11-13 22:57:25 +11002090 if (remote_fwd) {
2091 host = listen_address;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002092 type = SSH_CHANNEL_RPORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002093 } else {
2094 host = host_to_connect;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002095 type = SSH_CHANNEL_PORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002096 }
2097
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002098 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002099 error("Forward host name too long.");
2100 return success;
2101 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002102
Damien Miller0bc1bd82000-11-13 22:57:25 +11002103 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11002104 /*
Damien Miller34132e52000-01-14 15:45:46 +11002105 * getaddrinfo returns a loopback address if the hostname is
2106 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002107 */
Damien Miller34132e52000-01-14 15:45:46 +11002108 memset(&hints, 0, sizeof(hints));
2109 hints.ai_family = IPv4or6;
2110 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2111 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002112 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002113 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2114 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002115
Damien Miller34132e52000-01-14 15:45:46 +11002116 for (ai = aitop; ai; ai = ai->ai_next) {
2117 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2118 continue;
2119 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2120 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11002121 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002122 continue;
2123 }
2124 /* Create a port to listen for the host. */
2125 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2126 if (sock < 0) {
2127 /* this is no error since kernel may not support ipv6 */
2128 verbose("socket: %.100s", strerror(errno));
2129 continue;
2130 }
2131 /*
2132 * Set socket options. We would like the socket to disappear
2133 * as soon as it has been closed for whatever reason.
2134 */
2135 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2136 linger.l_onoff = 1;
2137 linger.l_linger = 5;
2138 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2139 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002140
Damien Miller34132e52000-01-14 15:45:46 +11002141 /* Bind the socket to the address. */
2142 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2143 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002144 if (!ai->ai_next)
2145 error("bind: %.100s", strerror(errno));
2146 else
2147 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002148
Damien Miller34132e52000-01-14 15:45:46 +11002149 close(sock);
2150 continue;
2151 }
2152 /* Start listening for connections on the socket. */
2153 if (listen(sock, 5) < 0) {
2154 error("listen: %.100s", strerror(errno));
2155 close(sock);
2156 continue;
2157 }
2158 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002159 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002160 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002161 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002162 if (c == NULL) {
2163 error("channel_request_forwarding: channel_new failed");
2164 close(sock);
2165 continue;
2166 }
2167 strlcpy(c->path, host, sizeof(c->path));
2168 c->host_port = port_to_connect;
2169 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002170 success = 1;
2171 }
2172 if (success == 0)
Kevin Steves12057502001-02-05 14:54:34 +00002173 error("channel_request_forwarding: cannot listen to port: %d",
2174 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002175 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002176 return success;
Damien Miller95def091999-11-25 00:26:21 +11002177}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002178
Damien Miller5428f641999-11-25 11:54:57 +11002179/*
2180 * Initiate forwarding of connections to port "port" on remote host through
2181 * the secure channel to host:port from local side.
2182 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002183
Damien Miller4af51302000-04-16 11:18:38 +10002184void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002185channel_request_remote_forwarding(u_short listen_port,
2186 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002187{
Damien Miller0bc1bd82000-11-13 22:57:25 +11002188 int payload_len, type, success = 0;
2189
Damien Miller95def091999-11-25 00:26:21 +11002190 /* Record locally that connection to this host/port is permitted. */
2191 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2192 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002193
Damien Miller95def091999-11-25 00:26:21 +11002194 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002195 if (compat20) {
2196 const char *address_to_bind = "0.0.0.0";
2197 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2198 packet_put_cstring("tcpip-forward");
2199 packet_put_char(0); /* boolean: want reply */
2200 packet_put_cstring(address_to_bind);
2201 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002202 packet_send();
2203 packet_write_wait();
2204 /* Assume that server accepts the request */
2205 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002206 } else {
2207 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002208 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002209 packet_put_cstring(host_to_connect);
2210 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002211 packet_send();
2212 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002213
2214 /* Wait for response from the remote side. */
2215 type = packet_read(&payload_len);
2216 switch (type) {
2217 case SSH_SMSG_SUCCESS:
2218 success = 1;
2219 break;
2220 case SSH_SMSG_FAILURE:
2221 log("Warning: Server denied remote port forwarding.");
2222 break;
2223 default:
2224 /* Unknown packet */
2225 packet_disconnect("Protocol error for port forward request:"
2226 "received packet type %d.", type);
2227 }
2228 }
2229 if (success) {
2230 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2231 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2232 permitted_opens[num_permitted_opens].listen_port = listen_port;
2233 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002234 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002235}
2236
Damien Miller5428f641999-11-25 11:54:57 +11002237/*
2238 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2239 * listening for the port, and sends back a success reply (or disconnect
2240 * message if there was an error). This never returns if there was an error.
2241 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242
Damien Miller4af51302000-04-16 11:18:38 +10002243void
Damien Millere247cc42000-05-07 12:03:14 +10002244channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002245{
Damien Milleraae6c611999-12-06 11:47:28 +11002246 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002247 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248
Damien Miller95def091999-11-25 00:26:21 +11002249 /* Get arguments from the packet. */
2250 port = packet_get_int();
2251 hostname = packet_get_string(NULL);
2252 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002253
Damien Millerbac2d8a2000-09-05 16:13:06 +11002254#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002255 /*
2256 * Check that an unprivileged user is not trying to forward a
2257 * privileged port.
2258 */
Damien Miller95def091999-11-25 00:26:21 +11002259 if (port < IPPORT_RESERVED && !is_root)
2260 packet_disconnect("Requested forwarding of port %d but user is not root.",
2261 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002262#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002263 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10002264 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002265
2266 /* Free the argument string. */
2267 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002268}
2269
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002270/*
2271 * Permits opening to any host/port if permitted_opens[] is empty. This is
2272 * usually called by the server, because the user could connect to any port
2273 * anyway, and the server has no way to know but to trust the client anyway.
2274 */
2275void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002276channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002277{
2278 if (num_permitted_opens == 0)
2279 all_opens_permitted = 1;
2280}
2281
Ben Lindstroma3700052001-04-05 23:26:32 +00002282void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002283channel_add_permitted_opens(char *host, int port)
2284{
2285 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2286 fatal("channel_request_remote_forwarding: too many forwards");
2287 debug("allow port forwarding to host %s port %d", host, port);
2288
2289 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2290 permitted_opens[num_permitted_opens].port_to_connect = port;
2291 num_permitted_opens++;
2292
2293 all_opens_permitted = 0;
2294}
2295
Ben Lindstroma3700052001-04-05 23:26:32 +00002296void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002297channel_clear_permitted_opens(void)
2298{
2299 int i;
2300
2301 for (i = 0; i < num_permitted_opens; i++)
2302 xfree(permitted_opens[i].host_to_connect);
2303 num_permitted_opens = 0;
2304
2305}
2306
2307
2308/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002309static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002310connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311{
Damien Miller34132e52000-01-14 15:45:46 +11002312 struct addrinfo hints, *ai, *aitop;
2313 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2314 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002315 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002316
Damien Miller34132e52000-01-14 15:45:46 +11002317 memset(&hints, 0, sizeof(hints));
2318 hints.ai_family = IPv4or6;
2319 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002320 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002321 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002322 error("connect_to %.100s: unknown host (%s)", host,
2323 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002324 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002325 }
Damien Miller34132e52000-01-14 15:45:46 +11002326 for (ai = aitop; ai; ai = ai->ai_next) {
2327 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2328 continue;
2329 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2330 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002331 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002332 continue;
2333 }
Damien Miller34132e52000-01-14 15:45:46 +11002334 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2335 if (sock < 0) {
2336 error("socket: %.100s", strerror(errno));
2337 continue;
2338 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002339 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002340 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002341 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2342 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002343 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002344 strerror(errno));
2345 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002346 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002347 }
2348 break; /* success */
2349
2350 }
2351 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002352 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002353 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002354 return -1;
2355 }
2356 /* success */
2357 return sock;
2358}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002359
Damien Miller0bc1bd82000-11-13 22:57:25 +11002360int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002361channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002362{
2363 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002364
Damien Miller0bc1bd82000-11-13 22:57:25 +11002365 for (i = 0; i < num_permitted_opens; i++)
2366 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002367 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002368 permitted_opens[i].host_to_connect,
2369 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002370 error("WARNING: Server requests forwarding for unknown listen_port %d",
2371 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002372 return -1;
2373}
Damien Millerb38eff82000-04-01 11:09:21 +10002374
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002375/* Check if connecting to that port is permitted and connect. */
2376int
2377channel_connect_to(const char *host, u_short port)
2378{
2379 int i, permit;
2380
2381 permit = all_opens_permitted;
2382 if (!permit) {
2383 for (i = 0; i < num_permitted_opens; i++)
2384 if (permitted_opens[i].port_to_connect == port &&
2385 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2386 permit = 1;
2387
2388 }
2389 if (!permit) {
2390 log("Received request to connect to host %.100s port %d, "
2391 "but the request was denied.", host, port);
2392 return -1;
2393 }
2394 return connect_to(host, port);
2395}
2396
Ben Lindstrome9c99912001-06-09 00:41:05 +00002397/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002398
Damien Miller5428f641999-11-25 11:54:57 +11002399/*
2400 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002401 * Returns a suitable display number for the DISPLAY variable, or -1 if
2402 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002403 */
Kevin Steves366298c2001-12-19 17:58:01 +00002404int
Damien Millere7378562001-12-21 14:58:35 +11002405x11_create_display_inet(int x11_display_offset, int gateway_ports,
2406 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002407{
Damien Millere7378562001-12-21 14:58:35 +11002408 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002409 int display_number, sock;
2410 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002411 struct addrinfo hints, *ai, *aitop;
2412 char strport[NI_MAXSERV];
2413 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002414
Damien Millera34a28b1999-12-14 10:47:15 +11002415 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002416 display_number < MAX_DISPLAYS;
2417 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002418 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002419 memset(&hints, 0, sizeof(hints));
2420 hints.ai_family = IPv4or6;
Kevin Steves366298c2001-12-19 17:58:01 +00002421 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002422 hints.ai_socktype = SOCK_STREAM;
2423 snprintf(strport, sizeof strport, "%d", port);
2424 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2425 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002426 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002427 }
Damien Miller34132e52000-01-14 15:45:46 +11002428 for (ai = aitop; ai; ai = ai->ai_next) {
2429 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2430 continue;
2431 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2432 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002433 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002434 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002435 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002436 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002437 debug("x11_create_display_inet: Socket family %d not supported",
2438 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002439 continue;
2440 }
Damien Miller34132e52000-01-14 15:45:46 +11002441 }
2442 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2443 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002444 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002445
2446 if (ai->ai_next)
2447 continue;
2448
Damien Miller34132e52000-01-14 15:45:46 +11002449 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002450 close(socks[n]);
2451 }
2452 num_socks = 0;
2453 break;
2454 }
2455 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002456#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002457 if (num_socks == NUM_SOCKS)
2458 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002459#else
2460 break;
2461#endif
Damien Miller95def091999-11-25 00:26:21 +11002462 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002463 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002464 if (num_socks > 0)
2465 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002466 }
Damien Miller95def091999-11-25 00:26:21 +11002467 if (display_number >= MAX_DISPLAYS) {
2468 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002469 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002470 }
Damien Miller95def091999-11-25 00:26:21 +11002471 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002472 for (n = 0; n < num_socks; n++) {
2473 sock = socks[n];
2474 if (listen(sock, 5) < 0) {
2475 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002476 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002477 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002478 }
Damien Miller95def091999-11-25 00:26:21 +11002479 }
Damien Miller34132e52000-01-14 15:45:46 +11002480
Damien Miller34132e52000-01-14 15:45:46 +11002481 /* Allocate a channel for each socket. */
2482 for (n = 0; n < num_socks; n++) {
2483 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002484 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002485 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2486 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002487 0, xstrdup("X11 inet listener"), 1);
Damien Millere7378562001-12-21 14:58:35 +11002488 if (nc != NULL)
2489 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002490 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491
Kevin Steves366298c2001-12-19 17:58:01 +00002492 /* Return the display number for the DISPLAY environment variable. */
2493 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002494}
2495
Ben Lindstrombba81212001-06-25 05:01:22 +00002496static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002497connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002498{
Damien Miller95def091999-11-25 00:26:21 +11002499 int sock;
2500 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002501
Damien Miller3afe3752001-12-21 12:39:51 +11002502 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2503 if (sock < 0)
2504 error("socket: %.100s", strerror(errno));
2505 memset(&addr, 0, sizeof(addr));
2506 addr.sun_family = AF_UNIX;
2507 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2508 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2509 return sock;
2510 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002511 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2512 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002513}
2514
Damien Millerbd483e72000-04-30 10:00:53 +10002515int
2516x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517{
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002518 int display_number, sock = 0, on = 1;
Damien Miller95def091999-11-25 00:26:21 +11002519 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002520 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002521 struct addrinfo hints, *ai, *aitop;
2522 char strport[NI_MAXSERV];
2523 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002524
Damien Miller95def091999-11-25 00:26:21 +11002525 /* Try to open a socket for the local X server. */
2526 display = getenv("DISPLAY");
2527 if (!display) {
2528 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002529 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002530 }
Damien Miller5428f641999-11-25 11:54:57 +11002531 /*
2532 * Now we decode the value of the DISPLAY variable and make a
2533 * connection to the real X server.
2534 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002535
Damien Miller5428f641999-11-25 11:54:57 +11002536 /*
2537 * Check if it is a unix domain socket. Unix domain displays are in
2538 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2539 */
Damien Miller95def091999-11-25 00:26:21 +11002540 if (strncmp(display, "unix:", 5) == 0 ||
2541 display[0] == ':') {
2542 /* Connect to the unix domain socket. */
2543 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2544 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002545 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002546 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002547 }
2548 /* Create a socket. */
2549 sock = connect_local_xsocket(display_number);
2550 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002551 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002552
2553 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002554 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002555 }
Damien Miller5428f641999-11-25 11:54:57 +11002556 /*
2557 * Connect to an inet socket. The DISPLAY value is supposedly
2558 * hostname:d[.s], where hostname may also be numeric IP address.
2559 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002560 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002561 cp = strchr(buf, ':');
2562 if (!cp) {
2563 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002564 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002565 }
Damien Miller95def091999-11-25 00:26:21 +11002566 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002567 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002568 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2569 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002570 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002571 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002572 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002573
Damien Miller34132e52000-01-14 15:45:46 +11002574 /* Look up the host address */
2575 memset(&hints, 0, sizeof(hints));
2576 hints.ai_family = IPv4or6;
2577 hints.ai_socktype = SOCK_STREAM;
2578 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2579 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2580 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002581 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002582 }
Damien Miller34132e52000-01-14 15:45:46 +11002583 for (ai = aitop; ai; ai = ai->ai_next) {
2584 /* Create a socket. */
2585 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2586 if (sock < 0) {
2587 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002588 continue;
2589 }
2590 /* Connect it to the display. */
2591 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2592 debug("connect %.100s port %d: %.100s", buf,
2593 6000 + display_number, strerror(errno));
2594 close(sock);
2595 continue;
2596 }
2597 /* Success */
2598 break;
Damien Miller34132e52000-01-14 15:45:46 +11002599 }
Damien Miller34132e52000-01-14 15:45:46 +11002600 freeaddrinfo(aitop);
2601 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002602 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002603 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002604 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002605 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002606 if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on) == -1)
2607 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002608 return sock;
2609}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002610
Damien Millerbd483e72000-04-30 10:00:53 +10002611/*
2612 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2613 * the remote channel number. We should do whatever we want, and respond
2614 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2615 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002616
Damien Millerbd483e72000-04-30 10:00:53 +10002617void
Damien Miller278f9072001-12-21 15:00:19 +11002618x11_input_open(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002619{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002620 Channel *c = NULL;
2621 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002622 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002623
2624 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002625
2626 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002627
2628 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002629 remote_host = packet_get_string(NULL);
2630 } else {
2631 remote_host = xstrdup("unknown (remote did not supply name)");
2632 }
2633 packet_done();
Damien Millerbd483e72000-04-30 10:00:53 +10002634
2635 /* Obtain a connection to the real X display. */
2636 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002637 if (sock != -1) {
2638 /* Allocate a channel for this connection. */
2639 c = channel_new("connected x11 socket",
2640 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2641 remote_host, 1);
2642 if (c == NULL) {
2643 error("x11_input_open: channel_new failed");
2644 close(sock);
2645 } else {
2646 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002647 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002648 }
2649 }
2650 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002651 /* Send refusal to the remote host. */
2652 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002653 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002654 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002655 /* Send a confirmation to the remote host. */
2656 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002657 packet_put_int(remote_id);
2658 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002659 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002660 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002661}
2662
Damien Miller69b69aa2000-10-28 14:19:58 +11002663/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2664void
Damien Miller278f9072001-12-21 15:00:19 +11002665deny_input_open(int type, int plen, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002666{
2667 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002668 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002669 case SSH_SMSG_AGENT_OPEN:
2670 error("Warning: ssh server tried agent forwarding.");
2671 break;
2672 case SSH_SMSG_X11_OPEN:
2673 error("Warning: ssh server tried X11 forwarding.");
2674 break;
2675 default:
2676 error("deny_input_open: type %d plen %d", type, plen);
2677 break;
2678 }
2679 error("Warning: this is probably a break in attempt by a malicious server.");
2680 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2681 packet_put_int(rchan);
2682 packet_send();
2683}
2684
Damien Miller5428f641999-11-25 11:54:57 +11002685/*
2686 * Requests forwarding of X11 connections, generates fake authentication
2687 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002688 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002689 */
Damien Miller4af51302000-04-16 11:18:38 +10002690void
Damien Millerbd483e72000-04-30 10:00:53 +10002691x11_request_forwarding_with_spoofing(int client_session_id,
2692 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002693{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002694 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002695 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002696 char *new_data;
2697 int screen_number;
2698 const char *cp;
2699 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002700
Damien Miller95def091999-11-25 00:26:21 +11002701 cp = getenv("DISPLAY");
2702 if (cp)
2703 cp = strchr(cp, ':');
2704 if (cp)
2705 cp = strchr(cp, '.');
2706 if (cp)
2707 screen_number = atoi(cp + 1);
2708 else
2709 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002710
Damien Miller95def091999-11-25 00:26:21 +11002711 /* Save protocol name. */
2712 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002713
Damien Miller5428f641999-11-25 11:54:57 +11002714 /*
2715 * Extract real authentication data and generate fake data of the
2716 * same length.
2717 */
Damien Miller95def091999-11-25 00:26:21 +11002718 x11_saved_data = xmalloc(data_len);
2719 x11_fake_data = xmalloc(data_len);
2720 for (i = 0; i < data_len; i++) {
2721 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2722 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2723 if (i % 4 == 0)
2724 rand = arc4random();
2725 x11_saved_data[i] = value;
2726 x11_fake_data[i] = rand & 0xff;
2727 rand >>= 8;
2728 }
2729 x11_saved_data_len = data_len;
2730 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002731
Damien Miller95def091999-11-25 00:26:21 +11002732 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002733 len = 2 * data_len + 1;
2734 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002735 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002736 snprintf(new_data + 2 * i, len - 2 * i,
2737 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002738
Damien Miller95def091999-11-25 00:26:21 +11002739 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002740 if (compat20) {
2741 channel_request_start(client_session_id, "x11-req", 0);
2742 packet_put_char(0); /* XXX bool single connection */
2743 } else {
2744 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2745 }
2746 packet_put_cstring(proto);
2747 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002748 packet_put_int(screen_number);
2749 packet_send();
2750 packet_write_wait();
2751 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752}
2753
Ben Lindstrome9c99912001-06-09 00:41:05 +00002754
2755/* -- agent forwarding */
2756
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002757/* Sends a message to the server to request authentication fd forwarding. */
2758
Damien Miller4af51302000-04-16 11:18:38 +10002759void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002760auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002761{
Damien Miller95def091999-11-25 00:26:21 +11002762 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2763 packet_send();
2764 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002765}
2766
Damien Miller5428f641999-11-25 11:54:57 +11002767/*
2768 * Returns the name of the forwarded authentication socket. Returns NULL if
2769 * there is no forwarded authentication socket. The returned value points to
2770 * a static buffer.
2771 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002772
Damien Miller95def091999-11-25 00:26:21 +11002773char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002774auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002775{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002776 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002777}
2778
2779/* removes the agent forwarding socket */
2780
Damien Miller4af51302000-04-16 11:18:38 +10002781void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002782auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002783{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002784 struct passwd *pw = _pw;
2785
Ben Lindstrom838394c2001-06-09 01:11:59 +00002786 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002787 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002788 unlink(auth_sock_name);
2789 rmdir(auth_sock_dir);
2790 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002791 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002792 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793}
2794
Damien Miller5428f641999-11-25 11:54:57 +11002795/*
Damien Millerd3a18572000-06-07 19:55:44 +10002796 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002797 * This starts forwarding authentication requests.
2798 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002799
Damien Millerd3a18572000-06-07 19:55:44 +10002800int
Damien Miller95def091999-11-25 00:26:21 +11002801auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002802{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002803 Channel *nc;
2804 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002805 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002806
Ben Lindstrome9c99912001-06-09 00:41:05 +00002807 if (auth_get_socket_name() != NULL) {
2808 error("authentication forwarding requested twice.");
2809 return 0;
2810 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002811
Damien Miller95def091999-11-25 00:26:21 +11002812 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002813 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002814
Damien Miller95def091999-11-25 00:26:21 +11002815 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002816 auth_sock_name = xmalloc(MAXPATHLEN);
2817 auth_sock_dir = xmalloc(MAXPATHLEN);
2818 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002819
Damien Miller95def091999-11-25 00:26:21 +11002820 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002821 if (mkdtemp(auth_sock_dir) == NULL) {
2822 packet_send_debug("Agent forwarding disabled: "
2823 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002824 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002825 xfree(auth_sock_name);
2826 xfree(auth_sock_dir);
2827 auth_sock_name = NULL;
2828 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002829 return 0;
2830 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002831 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2832 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002833
Ben Lindstrom838394c2001-06-09 01:11:59 +00002834 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002835 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002836
Damien Miller95def091999-11-25 00:26:21 +11002837 /* Create the socket. */
2838 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2839 if (sock < 0)
2840 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002841
Damien Miller95def091999-11-25 00:26:21 +11002842 /* Bind it to the name. */
2843 memset(&sunaddr, 0, sizeof(sunaddr));
2844 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002845 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002846
Damien Miller95def091999-11-25 00:26:21 +11002847 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2848 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849
Damien Miller95def091999-11-25 00:26:21 +11002850 /* Restore the privileged uid. */
2851 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002852
Damien Miller95def091999-11-25 00:26:21 +11002853 /* Start listening on the socket. */
2854 if (listen(sock, 5) < 0)
2855 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002856
Damien Miller95def091999-11-25 00:26:21 +11002857 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002858 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002859 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2860 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2861 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002862 if (nc == NULL) {
2863 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002864 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002865 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002866 close(sock);
2867 return 0;
2868 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002869 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002870 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002871}
2872
2873/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2874
Damien Miller4af51302000-04-16 11:18:38 +10002875void
Damien Miller278f9072001-12-21 15:00:19 +11002876auth_input_open_request(int type, int plen, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002877{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002878 Channel *c = NULL;
2879 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002880 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002881
Damien Miller95def091999-11-25 00:26:21 +11002882 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002883 remote_id = packet_get_int();
Damien Miller66823cd2002-01-22 23:11:38 +11002884 packet_done();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002885
Damien Miller5428f641999-11-25 11:54:57 +11002886 /*
2887 * Get a connection to the local authentication agent (this may again
2888 * get forwarded).
2889 */
Damien Miller95def091999-11-25 00:26:21 +11002890 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002891
Damien Miller5428f641999-11-25 11:54:57 +11002892 /*
2893 * If we could not connect the agent, send an error message back to
2894 * the server. This should never happen unless the agent dies,
2895 * because authentication forwarding is only enabled if we have an
2896 * agent.
2897 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002898 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002899 name = xstrdup("authentication agent connection");
2900 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2901 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002902 if (c == NULL) {
2903 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002904 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002905 close(sock);
2906 } else {
2907 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002908 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002909 }
Damien Miller95def091999-11-25 00:26:21 +11002910 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002911 if (c == NULL) {
2912 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2913 packet_put_int(remote_id);
2914 } else {
2915 /* Send a confirmation to the remote host. */
2916 debug("Forwarding authentication connection.");
2917 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2918 packet_put_int(remote_id);
2919 packet_put_int(c->self);
2920 }
Damien Miller95def091999-11-25 00:26:21 +11002921 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002922}