blob: db3bda66a37ad90e72519e5cfb78243c2e5301a7 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110016 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Miller76765c02002-01-22 23:21:15 +110042RCSID("$OpenBSD: channels.c,v 1.158 2002/01/09 17:26:35 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 Millerde6987c2002-01-22 23:20:40 +1100706channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000707{
Damien Millerde6987c2002-01-22 23:20:40 +1100708 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000709
Damien Miller33b13562000-04-04 14:38:59 +1000710 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100711 limit > 0 &&
712 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000713 FD_SET(c->rfd, readset);
714 if (c->ostate == CHAN_OUTPUT_OPEN ||
715 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
716 if (buffer_len(&c->output) > 0) {
717 FD_SET(c->wfd, writeset);
718 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
719 chan_obuf_empty(c);
720 }
721 }
722 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100723 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000724 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
725 buffer_len(&c->extended) > 0)
726 FD_SET(c->efd, writeset);
727 else if (c->extended_usage == CHAN_EXTENDED_READ &&
728 buffer_len(&c->extended) < c->remote_window)
729 FD_SET(c->efd, readset);
730 }
731}
732
Ben Lindstrombba81212001-06-25 05:01:22 +0000733static void
Damien Millerb38eff82000-04-01 11:09:21 +1000734channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
735{
736 if (buffer_len(&c->input) == 0) {
737 packet_start(SSH_MSG_CHANNEL_CLOSE);
738 packet_put_int(c->remote_id);
739 packet_send();
740 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000741 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000742 }
743}
744
Ben Lindstrombba81212001-06-25 05:01:22 +0000745static void
Damien Millerb38eff82000-04-01 11:09:21 +1000746channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
747{
748 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000749 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000750 else
Damien Millerb38eff82000-04-01 11:09:21 +1000751 FD_SET(c->sock, writeset);
752}
753
754/*
755 * This is a special state for X11 authentication spoofing. An opened X11
756 * connection (when authentication spoofing is being done) remains in this
757 * state until the first packet has been completely read. The authentication
758 * data in that packet is then substituted by the real data if it matches the
759 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000760 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000762 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000763static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000765{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000766 u_char *ucp;
767 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000768
769 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000771 return 0;
772
773 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100774 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000775 if (ucp[0] == 0x42) { /* Byte order MSB first. */
776 proto_len = 256 * ucp[6] + ucp[7];
777 data_len = 256 * ucp[8] + ucp[9];
778 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
779 proto_len = ucp[6] + 256 * ucp[7];
780 data_len = ucp[8] + 256 * ucp[9];
781 } else {
782 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100783 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000784 return -1;
785 }
786
787 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000788 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000789 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
790 return 0;
791
792 /* Check if authentication protocol matches. */
793 if (proto_len != strlen(x11_saved_proto) ||
794 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
795 debug("X11 connection uses different authentication protocol.");
796 return -1;
797 }
798 /* Check if authentication data matches our fake data. */
799 if (data_len != x11_fake_data_len ||
800 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
801 x11_fake_data, x11_fake_data_len) != 0) {
802 debug("X11 auth data does not match fake data.");
803 return -1;
804 }
805 /* Check fake data length */
806 if (x11_fake_data_len != x11_saved_data_len) {
807 error("X11 fake_data_len %d != saved_data_len %d",
808 x11_fake_data_len, x11_saved_data_len);
809 return -1;
810 }
811 /*
812 * Received authentication protocol and data match
813 * our fake data. Substitute the fake data with real
814 * data.
815 */
816 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
817 x11_saved_data, x11_saved_data_len);
818 return 1;
819}
820
Ben Lindstrombba81212001-06-25 05:01:22 +0000821static void
Damien Millerb38eff82000-04-01 11:09:21 +1000822channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
823{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000824 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000825 if (ret == 1) {
826 /* Start normal processing for the channel. */
827 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000828 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000829 } else if (ret == -1) {
830 /*
831 * We have received an X11 connection that has bad
832 * authentication information.
833 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000834 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000835 buffer_clear(&c->input);
836 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000837 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000838 c->sock = -1;
839 c->type = SSH_CHANNEL_CLOSED;
840 packet_start(SSH_MSG_CHANNEL_CLOSE);
841 packet_put_int(c->remote_id);
842 packet_send();
843 }
844}
845
Ben Lindstrombba81212001-06-25 05:01:22 +0000846static void
Damien Millerbd483e72000-04-30 10:00:53 +1000847channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000848{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000849 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000850
851 /* c->force_drain = 1; */
852
Damien Millerb38eff82000-04-01 11:09:21 +1000853 if (ret == 1) {
854 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100855 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000856 } else if (ret == -1) {
Damien Millera90fc082002-01-22 23:19:38 +1100857 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000858 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100859 chan_read_failed(c);
860 buffer_clear(&c->input);
861 chan_ibuf_empty(c);
862 buffer_clear(&c->output);
863 /* for proto v1, the peer will send an IEOF */
864 if (compat20)
865 chan_write_failed(c);
866 else
867 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000868 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
869 }
870}
871
Ben Lindstromb3921512001-04-11 15:57:50 +0000872/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000874channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000875{
876 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000877 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100878 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000879 struct {
880 u_int8_t version;
881 u_int8_t command;
882 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000883 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000884 } s4_req, s4_rsp;
885
Ben Lindstromb3921512001-04-11 15:57:50 +0000886 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000887
888 have = buffer_len(&c->input);
889 len = sizeof(s4_req);
890 if (have < len)
891 return 0;
892 p = buffer_ptr(&c->input);
893 for (found = 0, i = len; i < have; i++) {
894 if (p[i] == '\0') {
895 found = 1;
896 break;
897 }
898 if (i > 1024) {
899 /* the peer is probably sending garbage */
900 debug("channel %d: decode socks4: too long",
901 c->self);
902 return -1;
903 }
904 }
905 if (!found)
906 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000907 buffer_get(&c->input, (char *)&s4_req.version, 1);
908 buffer_get(&c->input, (char *)&s4_req.command, 1);
909 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000910 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000911 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000912 p = buffer_ptr(&c->input);
913 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000914 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000915 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000916 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000917 c->self, len, have);
918 strlcpy(username, p, sizeof(username));
919 buffer_consume(&c->input, len);
920 buffer_consume(&c->input, 1); /* trailing '\0' */
921
Ben Lindstromb3921512001-04-11 15:57:50 +0000922 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000923 strlcpy(c->path, host, sizeof(c->path));
924 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100925
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000926 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
927 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000928
Ben Lindstromb3921512001-04-11 15:57:50 +0000929 if (s4_req.command != 1) {
930 debug("channel %d: cannot handle: socks4 cn %d",
931 c->self, s4_req.command);
932 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000933 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000934 s4_rsp.version = 0; /* vn: 0 for reply */
935 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000936 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000937 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000940}
941
Ben Lindstromb3921512001-04-11 15:57:50 +0000942/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000943static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000944channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
945{
946 u_char *p;
947 int have, ret;
948
949 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000950 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000951 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000952 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000953 /* check if the fixed size part of the packet is in buffer. */
954 if (have < 4) {
955 /* need more */
956 FD_SET(c->sock, readset);
957 return;
958 }
959 /* try to guess the protocol */
960 p = buffer_ptr(&c->input);
961 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000962 case 0x04:
963 ret = channel_decode_socks4(c, readset, writeset);
964 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000965 default:
966 ret = -1;
967 break;
968 }
969 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000970 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000971 } else if (ret == 0) {
972 debug2("channel %d: pre_dynamic: need more", c->self);
973 /* need more */
974 FD_SET(c->sock, readset);
975 } else {
976 /* switch to the next state */
977 c->type = SSH_CHANNEL_OPENING;
978 port_open_helper(c, "direct-tcpip");
979 }
980}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000981
Damien Millerb38eff82000-04-01 11:09:21 +1000982/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000983static void
Damien Millerb38eff82000-04-01 11:09:21 +1000984channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
985{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000986 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000987 struct sockaddr addr;
Ben Lindstrom73f57be2001-12-07 17:28:34 +0000988 int newsock, on = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000989 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100990 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000991 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000992
993 if (FD_ISSET(c->sock, readset)) {
994 debug("X11 connection requested.");
995 addrlen = sizeof(addr);
996 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100997 if (c->single_connection) {
998 debug("single_connection: closing X11 listener.");
999 channel_close_fd(&c->sock);
1000 chan_mark_dead(c);
1001 }
Damien Millerb38eff82000-04-01 11:09:21 +10001002 if (newsock < 0) {
1003 error("accept: %.100s", strerror(errno));
1004 return;
1005 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00001006 if (setsockopt(newsock, IPPROTO_TCP, TCP_NODELAY, &on,
1007 sizeof on) == -1)
1008 error("setsockopt TCP_NODELAY: %.100s",
1009 strerror(errno));
Damien Millerd83ff352001-01-30 09:19:34 +11001010 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001011 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001012 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001013 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001014
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001015 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001016 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1017 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001018 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001019 if (nc == NULL) {
1020 close(newsock);
1021 xfree(remote_ipaddr);
1022 return;
1023 }
Damien Millerbd483e72000-04-30 10:00:53 +10001024 if (compat20) {
1025 packet_start(SSH2_MSG_CHANNEL_OPEN);
1026 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001027 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001028 packet_put_int(nc->local_window_max);
1029 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001030 /* originator ipaddr and port */
1031 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001032 if (datafellows & SSH_BUG_X11FWD) {
1033 debug("ssh2 x11 bug compat mode");
1034 } else {
1035 packet_put_int(remote_port);
1036 }
Damien Millerbd483e72000-04-30 10:00:53 +10001037 packet_send();
1038 } else {
1039 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001040 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001041 if (packet_get_protocol_flags() &
1042 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001043 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001044 packet_send();
1045 }
Damien Millerd83ff352001-01-30 09:19:34 +11001046 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001047 }
1048}
1049
Ben Lindstrombba81212001-06-25 05:01:22 +00001050static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001051port_open_helper(Channel *c, char *rtype)
1052{
1053 int direct;
1054 char buf[1024];
1055 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1056 u_short remote_port = get_peer_port(c->sock);
1057
1058 direct = (strcmp(rtype, "direct-tcpip") == 0);
1059
1060 snprintf(buf, sizeof buf,
1061 "%s: listening port %d for %.100s port %d, "
1062 "connect from %.200s port %d",
1063 rtype, c->listening_port, c->path, c->host_port,
1064 remote_ipaddr, remote_port);
1065
1066 xfree(c->remote_name);
1067 c->remote_name = xstrdup(buf);
1068
1069 if (compat20) {
1070 packet_start(SSH2_MSG_CHANNEL_OPEN);
1071 packet_put_cstring(rtype);
1072 packet_put_int(c->self);
1073 packet_put_int(c->local_window_max);
1074 packet_put_int(c->local_maxpacket);
1075 if (direct) {
1076 /* target host, port */
1077 packet_put_cstring(c->path);
1078 packet_put_int(c->host_port);
1079 } else {
1080 /* listen address, port */
1081 packet_put_cstring(c->path);
1082 packet_put_int(c->listening_port);
1083 }
1084 /* originator host and port */
1085 packet_put_cstring(remote_ipaddr);
1086 packet_put_int(remote_port);
1087 packet_send();
1088 } else {
1089 packet_start(SSH_MSG_PORT_OPEN);
1090 packet_put_int(c->self);
1091 packet_put_cstring(c->path);
1092 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001093 if (packet_get_protocol_flags() &
1094 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001095 packet_put_cstring(c->remote_name);
1096 packet_send();
1097 }
1098 xfree(remote_ipaddr);
1099}
1100
Damien Millerb38eff82000-04-01 11:09:21 +10001101/*
1102 * This socket is listening for connections to a forwarded TCP/IP port.
1103 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001104static void
Damien Millerb38eff82000-04-01 11:09:21 +10001105channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1106{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001107 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001108 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001109 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001110 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001111 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001112
Damien Millerb38eff82000-04-01 11:09:21 +10001113 if (FD_ISSET(c->sock, readset)) {
1114 debug("Connection to port %d forwarding "
1115 "to %.100s port %d requested.",
1116 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001117
Damien Miller4623a752001-10-10 15:03:58 +10001118 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1119 nextstate = SSH_CHANNEL_OPENING;
1120 rtype = "forwarded-tcpip";
1121 } else {
1122 if (c->host_port == 0) {
1123 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001124 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001125 } else {
1126 nextstate = SSH_CHANNEL_OPENING;
1127 rtype = "direct-tcpip";
1128 }
1129 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001130
Damien Millerb38eff82000-04-01 11:09:21 +10001131 addrlen = sizeof(addr);
1132 newsock = accept(c->sock, &addr, &addrlen);
1133 if (newsock < 0) {
1134 error("accept: %.100s", strerror(errno));
1135 return;
1136 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001137 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001138 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001139 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001140 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001141 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001142 error("channel_post_port_listener: no new channel:");
1143 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001144 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001145 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001146 nc->listening_port = c->listening_port;
1147 nc->host_port = c->host_port;
1148 strlcpy(nc->path, c->path, sizeof(nc->path));
1149
Damien Miller4623a752001-10-10 15:03:58 +10001150 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1151 /*
1152 * do not call the channel_post handler until
1153 * this flag has been reset by a pre-handler.
1154 * otherwise the FD_ISSET calls might overflow
1155 */
1156 nc->delayed = 1;
1157 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001158 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001159 }
Damien Millerb38eff82000-04-01 11:09:21 +10001160 }
1161}
1162
1163/*
1164 * This is the authentication agent socket listening for connections from
1165 * clients.
1166 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001167static void
Damien Millerb38eff82000-04-01 11:09:21 +10001168channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1169{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001170 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001171 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001172 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001173 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001174 socklen_t addrlen;
1175
1176 if (FD_ISSET(c->sock, readset)) {
1177 addrlen = sizeof(addr);
1178 newsock = accept(c->sock, &addr, &addrlen);
1179 if (newsock < 0) {
1180 error("accept from auth socket: %.100s", strerror(errno));
1181 return;
1182 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001183 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001184 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001185 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1186 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001187 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001188 if (nc == NULL) {
1189 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001190 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001191 close(newsock);
1192 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001193 if (compat20) {
1194 packet_start(SSH2_MSG_CHANNEL_OPEN);
1195 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001196 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001197 packet_put_int(c->local_window_max);
1198 packet_put_int(c->local_maxpacket);
1199 } else {
1200 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001201 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001202 }
Damien Millerb38eff82000-04-01 11:09:21 +10001203 packet_send();
1204 }
1205}
1206
Ben Lindstrombba81212001-06-25 05:01:22 +00001207static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001208channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1209{
Ben Lindstrom69128662001-05-08 20:07:39 +00001210 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001211 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001212
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001213 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001214 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1215 &sz) < 0) {
1216 err = errno;
1217 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001218 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001219 if (err == 0) {
1220 debug("channel %d: connected", c->self);
1221 c->type = SSH_CHANNEL_OPEN;
1222 if (compat20) {
1223 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1224 packet_put_int(c->remote_id);
1225 packet_put_int(c->self);
1226 packet_put_int(c->local_window);
1227 packet_put_int(c->local_maxpacket);
1228 } else {
1229 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1230 packet_put_int(c->remote_id);
1231 packet_put_int(c->self);
1232 }
1233 } else {
1234 debug("channel %d: not connected: %s",
1235 c->self, strerror(err));
1236 if (compat20) {
1237 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1238 packet_put_int(c->remote_id);
1239 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1240 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1241 packet_put_cstring(strerror(err));
1242 packet_put_cstring("");
1243 }
1244 } else {
1245 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1246 packet_put_int(c->remote_id);
1247 }
1248 chan_mark_dead(c);
1249 }
1250 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001251 }
1252}
1253
Ben Lindstrombba81212001-06-25 05:01:22 +00001254static int
Damien Millerb38eff82000-04-01 11:09:21 +10001255channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1256{
1257 char buf[16*1024];
1258 int len;
1259
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001260 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001261 FD_ISSET(c->rfd, readset)) {
1262 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001263 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1264 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001265 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001266 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001267 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001268 if (c->type != SSH_CHANNEL_OPEN) {
1269 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001270 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001271 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001272 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001273 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001274 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001275 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001276 } else {
1277 chan_read_failed(c);
1278 }
1279 return -1;
1280 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001281 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001282 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001283 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001284 chan_read_failed(c);
1285 }
1286 } else {
1287 buffer_append(&c->input, buf, len);
1288 }
Damien Millerb38eff82000-04-01 11:09:21 +10001289 }
1290 return 1;
1291}
Ben Lindstrombba81212001-06-25 05:01:22 +00001292static int
Damien Millerb38eff82000-04-01 11:09:21 +10001293channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1294{
Ben Lindstrome229b252001-03-05 06:28:06 +00001295 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001296 u_char *data;
1297 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001298 int len;
1299
1300 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001301 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001302 FD_ISSET(c->wfd, writeset) &&
1303 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001304 data = buffer_ptr(&c->output);
1305 dlen = buffer_len(&c->output);
1306 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001307 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1308 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001309 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001310 if (c->type != SSH_CHANNEL_OPEN) {
1311 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001312 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001313 return -1;
1314 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001315 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001316 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001317 c->type = SSH_CHANNEL_INPUT_DRAINING;
1318 } else {
1319 chan_write_failed(c);
1320 }
1321 return -1;
1322 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001323 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001324 if (tcgetattr(c->wfd, &tio) == 0 &&
1325 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1326 /*
1327 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001328 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001329 * size of a SSH2_MSG_CHANNEL_DATA message
1330 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001331 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001332 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001333 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001334 }
1335 }
Damien Millerb38eff82000-04-01 11:09:21 +10001336 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001337 if (compat20 && len > 0) {
1338 c->local_consumed += len;
1339 }
1340 }
1341 return 1;
1342}
Ben Lindstrombba81212001-06-25 05:01:22 +00001343static int
Damien Miller33b13562000-04-04 14:38:59 +10001344channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1345{
1346 char buf[16*1024];
1347 int len;
1348
Damien Miller1383bd82000-04-06 12:32:37 +10001349/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001350 if (c->efd != -1) {
1351 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1352 FD_ISSET(c->efd, writeset) &&
1353 buffer_len(&c->extended) > 0) {
1354 len = write(c->efd, buffer_ptr(&c->extended),
1355 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001356 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001357 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001358 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1359 return 1;
1360 if (len <= 0) {
1361 debug2("channel %d: closing write-efd %d",
1362 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001363 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001364 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001365 buffer_consume(&c->extended, len);
1366 c->local_consumed += len;
1367 }
1368 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1369 FD_ISSET(c->efd, readset)) {
1370 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001371 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001372 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001373 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1374 return 1;
1375 if (len <= 0) {
1376 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001377 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001378 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001379 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001380 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001381 }
Damien Miller33b13562000-04-04 14:38:59 +10001382 }
1383 }
1384 return 1;
1385}
Ben Lindstrombba81212001-06-25 05:01:22 +00001386static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001387channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001388{
Ben Lindstromb3921512001-04-11 15:57:50 +00001389 if (c->type == SSH_CHANNEL_OPEN &&
1390 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001391 c->local_window < c->local_window_max/2 &&
1392 c->local_consumed > 0) {
1393 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1394 packet_put_int(c->remote_id);
1395 packet_put_int(c->local_consumed);
1396 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001397 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001398 c->self, c->local_window,
1399 c->local_consumed);
1400 c->local_window += c->local_consumed;
1401 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001402 }
1403 return 1;
1404}
1405
Ben Lindstrombba81212001-06-25 05:01:22 +00001406static void
Damien Millerde6987c2002-01-22 23:20:40 +11001407channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001408{
Damien Miller4623a752001-10-10 15:03:58 +10001409 if (c->delayed)
1410 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001411 channel_handle_rfd(c, readset, writeset);
1412 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001413 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001414 return;
Damien Miller33b13562000-04-04 14:38:59 +10001415 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001416 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001417}
1418
Ben Lindstrombba81212001-06-25 05:01:22 +00001419static void
Damien Millerb38eff82000-04-01 11:09:21 +10001420channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1421{
1422 int len;
1423 /* Send buffered output data to the socket. */
1424 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1425 len = write(c->sock, buffer_ptr(&c->output),
1426 buffer_len(&c->output));
1427 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001428 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001429 else
1430 buffer_consume(&c->output, len);
1431 }
1432}
1433
Ben Lindstrombba81212001-06-25 05:01:22 +00001434static void
Damien Miller33b13562000-04-04 14:38:59 +10001435channel_handler_init_20(void)
1436{
Damien Millerde6987c2002-01-22 23:20:40 +11001437 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001438 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001439 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001440 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001441 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001442 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001443 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001444 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001445
Damien Millerde6987c2002-01-22 23:20:40 +11001446 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001447 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001448 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001449 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001450 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001451 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001452 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001453}
1454
Ben Lindstrombba81212001-06-25 05:01:22 +00001455static void
Damien Millerb38eff82000-04-01 11:09:21 +10001456channel_handler_init_13(void)
1457{
1458 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1459 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1460 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1461 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1462 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1463 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1464 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001465 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001466 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001467
Damien Millerde6987c2002-01-22 23:20:40 +11001468 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001469 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1470 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1471 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1472 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001473 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001474 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001475}
1476
Ben Lindstrombba81212001-06-25 05:01:22 +00001477static void
Damien Millerb38eff82000-04-01 11:09:21 +10001478channel_handler_init_15(void)
1479{
Damien Millerde6987c2002-01-22 23:20:40 +11001480 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001481 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001482 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1483 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1484 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001485 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001486 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001487
1488 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1489 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1490 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001491 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001492 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001493 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001494}
1495
Ben Lindstrombba81212001-06-25 05:01:22 +00001496static void
Damien Millerb38eff82000-04-01 11:09:21 +10001497channel_handler_init(void)
1498{
1499 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001500 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001501 channel_pre[i] = NULL;
1502 channel_post[i] = NULL;
1503 }
Damien Miller33b13562000-04-04 14:38:59 +10001504 if (compat20)
1505 channel_handler_init_20();
1506 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001507 channel_handler_init_13();
1508 else
1509 channel_handler_init_15();
1510}
1511
Damien Miller3ec27592001-10-12 11:35:04 +10001512/* gc dead channels */
1513static void
1514channel_garbage_collect(Channel *c)
1515{
1516 if (c == NULL)
1517 return;
1518 if (c->detach_user != NULL) {
1519 if (!chan_is_dead(c, 0))
1520 return;
1521 debug("channel %d: gc: notify user", c->self);
1522 c->detach_user(c->self, NULL);
1523 /* if we still have a callback */
1524 if (c->detach_user != NULL)
1525 return;
1526 debug("channel %d: gc: user detached", c->self);
1527 }
1528 if (!chan_is_dead(c, 1))
1529 return;
1530 debug("channel %d: garbage collecting", c->self);
1531 channel_free(c);
1532}
1533
Ben Lindstrombba81212001-06-25 05:01:22 +00001534static void
Damien Millerb38eff82000-04-01 11:09:21 +10001535channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1536{
1537 static int did_init = 0;
1538 int i;
1539 Channel *c;
1540
1541 if (!did_init) {
1542 channel_handler_init();
1543 did_init = 1;
1544 }
1545 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001546 c = channels[i];
1547 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001548 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001549 if (ftab[c->type] != NULL)
1550 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001551 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001552 }
1553}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001554
Ben Lindstrome9c99912001-06-09 00:41:05 +00001555/*
1556 * Allocate/update select bitmasks and add any bits relevant to channels in
1557 * select bitmasks.
1558 */
Damien Miller4af51302000-04-16 11:18:38 +10001559void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001560channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001561 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001562{
Damien Miller5e953212001-01-30 09:14:00 +11001563 int n;
1564 u_int sz;
1565
1566 n = MAX(*maxfdp, channel_max_fd);
1567
1568 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001569 /* perhaps check sz < nalloc/2 and shrink? */
1570 if (*readsetp == NULL || sz > *nallocp) {
1571 *readsetp = xrealloc(*readsetp, sz);
1572 *writesetp = xrealloc(*writesetp, sz);
1573 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001574 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001575 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001576 memset(*readsetp, 0, sz);
1577 memset(*writesetp, 0, sz);
1578
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001579 if (!rekeying)
1580 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001581}
1582
Ben Lindstrome9c99912001-06-09 00:41:05 +00001583/*
1584 * After select, perform any appropriate operations for channels which have
1585 * events pending.
1586 */
Damien Miller4af51302000-04-16 11:18:38 +10001587void
Damien Miller95def091999-11-25 00:26:21 +11001588channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589{
Damien Millerb38eff82000-04-01 11:09:21 +10001590 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001591}
1592
Ben Lindstrome9c99912001-06-09 00:41:05 +00001593
Damien Miller5e953212001-01-30 09:14:00 +11001594/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001595
Damien Miller4af51302000-04-16 11:18:38 +10001596void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001597channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001598{
Damien Miller95def091999-11-25 00:26:21 +11001599 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001600 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001601
Damien Miller95def091999-11-25 00:26:21 +11001602 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001603 c = channels[i];
1604 if (c == NULL)
1605 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001606
Ben Lindstrome9c99912001-06-09 00:41:05 +00001607 /*
1608 * We are only interested in channels that can have buffered
1609 * incoming data.
1610 */
Damien Miller34132e52000-01-14 15:45:46 +11001611 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001612 if (c->type != SSH_CHANNEL_OPEN &&
1613 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001614 continue;
1615 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001616 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001617 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001618 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001619 if (compat20 &&
1620 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001621 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001622 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001623 continue;
1624 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001625
Damien Miller95def091999-11-25 00:26:21 +11001626 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001627 if ((c->istate == CHAN_INPUT_OPEN ||
1628 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1629 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001630 /*
1631 * Send some data for the other side over the secure
1632 * connection.
1633 */
Damien Miller33b13562000-04-04 14:38:59 +10001634 if (compat20) {
1635 if (len > c->remote_window)
1636 len = c->remote_window;
1637 if (len > c->remote_maxpacket)
1638 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001639 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001640 if (packet_is_interactive()) {
1641 if (len > 1024)
1642 len = 512;
1643 } else {
1644 /* Keep the packets at reasonable size. */
1645 if (len > packet_get_maxsize()/2)
1646 len = packet_get_maxsize()/2;
1647 }
Damien Miller95def091999-11-25 00:26:21 +11001648 }
Damien Millerb38eff82000-04-01 11:09:21 +10001649 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001650 packet_start(compat20 ?
1651 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001652 packet_put_int(c->remote_id);
1653 packet_put_string(buffer_ptr(&c->input), len);
1654 packet_send();
1655 buffer_consume(&c->input, len);
1656 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001657 }
1658 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001659 if (compat13)
1660 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001661 /*
1662 * input-buffer is empty and read-socket shutdown:
1663 * tell peer, that we will not send more data: send IEOF
1664 */
Damien Millerb38eff82000-04-01 11:09:21 +10001665 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001666 }
Damien Miller33b13562000-04-04 14:38:59 +10001667 /* Send extended data, i.e. stderr */
1668 if (compat20 &&
1669 c->remote_window > 0 &&
1670 (len = buffer_len(&c->extended)) > 0 &&
1671 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001672 debug2("channel %d: rwin %d elen %d euse %d",
1673 c->self, c->remote_window, buffer_len(&c->extended),
1674 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001675 if (len > c->remote_window)
1676 len = c->remote_window;
1677 if (len > c->remote_maxpacket)
1678 len = c->remote_maxpacket;
1679 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1680 packet_put_int(c->remote_id);
1681 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1682 packet_put_string(buffer_ptr(&c->extended), len);
1683 packet_send();
1684 buffer_consume(&c->extended, len);
1685 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001686 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001687 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001688 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689}
1690
Ben Lindstrome9c99912001-06-09 00:41:05 +00001691
1692/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001693
Damien Miller4af51302000-04-16 11:18:38 +10001694void
Damien Miller630d6f42002-01-22 23:17:30 +11001695channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001696{
Damien Miller34132e52000-01-14 15:45:46 +11001697 int id;
Damien Miller95def091999-11-25 00:26:21 +11001698 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001699 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001700 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001701
Damien Miller95def091999-11-25 00:26:21 +11001702 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001703 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001704 c = channel_lookup(id);
1705 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001706 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001707
Damien Miller95def091999-11-25 00:26:21 +11001708 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001709 if (c->type != SSH_CHANNEL_OPEN &&
1710 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001711 return;
1712
1713 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001714 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001715 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001716
Damien Miller95def091999-11-25 00:26:21 +11001717 /* Get the data. */
1718 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001719
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001720 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001721 if (data_len > c->local_maxpacket) {
1722 log("channel %d: rcvd big packet %d, maxpack %d",
1723 c->self, data_len, c->local_maxpacket);
1724 }
1725 if (data_len > c->local_window) {
1726 log("channel %d: rcvd too much data %d, win %d",
1727 c->self, data_len, c->local_window);
1728 xfree(data);
1729 return;
1730 }
1731 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001732 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001733 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001734 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001735 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001736}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001737
Damien Miller4af51302000-04-16 11:18:38 +10001738void
Damien Miller630d6f42002-01-22 23:17:30 +11001739channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001740{
1741 int id;
1742 int tcode;
1743 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001744 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001745 Channel *c;
1746
1747 /* Get the channel number and verify it. */
1748 id = packet_get_int();
1749 c = channel_lookup(id);
1750
1751 if (c == NULL)
1752 packet_disconnect("Received extended_data for bad channel %d.", id);
1753 if (c->type != SSH_CHANNEL_OPEN) {
1754 log("channel %d: ext data for non open", id);
1755 return;
1756 }
1757 tcode = packet_get_int();
1758 if (c->efd == -1 ||
1759 c->extended_usage != CHAN_EXTENDED_WRITE ||
1760 tcode != SSH2_EXTENDED_DATA_STDERR) {
1761 log("channel %d: bad ext data", c->self);
1762 return;
1763 }
1764 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001765 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001766 if (data_len > c->local_window) {
1767 log("channel %d: rcvd too much extended_data %d, win %d",
1768 c->self, data_len, c->local_window);
1769 xfree(data);
1770 return;
1771 }
Damien Millerd3444942000-09-30 14:20:03 +11001772 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001773 c->local_window -= data_len;
1774 buffer_append(&c->extended, data, data_len);
1775 xfree(data);
1776}
1777
Damien Miller4af51302000-04-16 11:18:38 +10001778void
Damien Miller630d6f42002-01-22 23:17:30 +11001779channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001780{
1781 int id;
1782 Channel *c;
1783
Damien Millerb38eff82000-04-01 11:09:21 +10001784 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001785 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001786 c = channel_lookup(id);
1787 if (c == NULL)
1788 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1789 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001790
1791 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001792 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001793 debug("channel %d: FORCE input drain", c->self);
1794 c->istate = CHAN_INPUT_WAIT_DRAIN;
1795 }
1796
Damien Millerb38eff82000-04-01 11:09:21 +10001797}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001798
Damien Miller4af51302000-04-16 11:18:38 +10001799void
Damien Miller630d6f42002-01-22 23:17:30 +11001800channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001801{
Damien Millerb38eff82000-04-01 11:09:21 +10001802 int id;
1803 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001804
Damien Millerb38eff82000-04-01 11:09:21 +10001805 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001806 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001807 c = channel_lookup(id);
1808 if (c == NULL)
1809 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001810
1811 /*
1812 * Send a confirmation that we have closed the channel and no more
1813 * data is coming for it.
1814 */
Damien Miller95def091999-11-25 00:26:21 +11001815 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001816 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001817 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001818
Damien Miller5428f641999-11-25 11:54:57 +11001819 /*
1820 * If the channel is in closed state, we have sent a close request,
1821 * and the other side will eventually respond with a confirmation.
1822 * Thus, we cannot free the channel here, because then there would be
1823 * no-one to receive the confirmation. The channel gets freed when
1824 * the confirmation arrives.
1825 */
Damien Millerb38eff82000-04-01 11:09:21 +10001826 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001827 /*
1828 * Not a closed channel - mark it as draining, which will
1829 * cause it to be freed later.
1830 */
Damien Miller76765c02002-01-22 23:21:15 +11001831 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001832 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001833 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001834}
1835
Damien Millerb38eff82000-04-01 11:09:21 +10001836/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001837void
Damien Miller630d6f42002-01-22 23:17:30 +11001838channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001839{
Damien Millerb38eff82000-04-01 11:09:21 +10001840 int id = packet_get_int();
1841 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001842
Damien Miller48b03fc2002-01-22 23:11:40 +11001843 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001844 if (c == NULL)
1845 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1846 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001847}
1848
Damien Miller4af51302000-04-16 11:18:38 +10001849void
Damien Miller630d6f42002-01-22 23:17:30 +11001850channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001851{
1852 int id = packet_get_int();
1853 Channel *c = channel_lookup(id);
1854
Damien Miller48b03fc2002-01-22 23:11:40 +11001855 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001856 if (c == NULL)
1857 packet_disconnect("Received close confirmation for "
1858 "out-of-range channel %d.", id);
1859 if (c->type != SSH_CHANNEL_CLOSED)
1860 packet_disconnect("Received close confirmation for "
1861 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001862 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001863}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001864
Damien Miller4af51302000-04-16 11:18:38 +10001865void
Damien Miller630d6f42002-01-22 23:17:30 +11001866channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001867{
Damien Millerb38eff82000-04-01 11:09:21 +10001868 int id, remote_id;
1869 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001870
Damien Millerb38eff82000-04-01 11:09:21 +10001871 id = packet_get_int();
1872 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001873
Damien Millerb38eff82000-04-01 11:09:21 +10001874 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1875 packet_disconnect("Received open confirmation for "
1876 "non-opening channel %d.", id);
1877 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001878 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001879 c->remote_id = remote_id;
1880 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001881
1882 if (compat20) {
1883 c->remote_window = packet_get_int();
1884 c->remote_maxpacket = packet_get_int();
1885 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001886 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001887 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001888 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001889 }
1890 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1891 c->remote_window, c->remote_maxpacket);
1892 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001893 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001894}
1895
Ben Lindstrombba81212001-06-25 05:01:22 +00001896static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001897reason2txt(int reason)
1898{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001899 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001900 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1901 return "administratively prohibited";
1902 case SSH2_OPEN_CONNECT_FAILED:
1903 return "connect failed";
1904 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1905 return "unknown channel type";
1906 case SSH2_OPEN_RESOURCE_SHORTAGE:
1907 return "resource shortage";
1908 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001909 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001910}
1911
Damien Miller4af51302000-04-16 11:18:38 +10001912void
Damien Miller630d6f42002-01-22 23:17:30 +11001913channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001914{
Kevin Steves12057502001-02-05 14:54:34 +00001915 int id, reason;
1916 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001917 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001918
Damien Millerb38eff82000-04-01 11:09:21 +10001919 id = packet_get_int();
1920 c = channel_lookup(id);
1921
1922 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1923 packet_disconnect("Received open failure for "
1924 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001925 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001926 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001927 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001928 msg = packet_get_string(NULL);
1929 lang = packet_get_string(NULL);
1930 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001931 log("channel %d: open failed: %s%s%s", id,
1932 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001933 if (msg != NULL)
1934 xfree(msg);
1935 if (lang != NULL)
1936 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001937 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001938 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001939 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001940 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001941}
1942
Damien Miller33b13562000-04-04 14:38:59 +10001943void
Damien Miller630d6f42002-01-22 23:17:30 +11001944channel_input_channel_request(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001945{
1946 int id;
1947 Channel *c;
1948
1949 id = packet_get_int();
1950 c = channel_lookup(id);
1951
1952 if (c == NULL ||
1953 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1954 packet_disconnect("Received request for "
1955 "non-open channel %d.", id);
1956 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001957 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001958 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001959 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001960 } else {
1961 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001962 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001963 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001964 xfree(service);
1965 }
1966}
1967
Damien Miller4af51302000-04-16 11:18:38 +10001968void
Damien Miller630d6f42002-01-22 23:17:30 +11001969channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001970{
1971 Channel *c;
1972 int id, adjust;
1973
1974 if (!compat20)
1975 return;
1976
1977 /* Get the channel number and verify it. */
1978 id = packet_get_int();
1979 c = channel_lookup(id);
1980
1981 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1982 log("Received window adjust for "
1983 "non-open channel %d.", id);
1984 return;
1985 }
1986 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001987 packet_check_eom();
Damien Millerd3444942000-09-30 14:20:03 +11001988 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001989 c->remote_window += adjust;
1990}
1991
Damien Miller4af51302000-04-16 11:18:38 +10001992void
Damien Miller630d6f42002-01-22 23:17:30 +11001993channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001994{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001995 Channel *c = NULL;
1996 u_short host_port;
1997 char *host, *originator_string;
1998 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001999
Ben Lindstrome9c99912001-06-09 00:41:05 +00002000 remote_id = packet_get_int();
2001 host = packet_get_string(NULL);
2002 host_port = packet_get_int();
2003
2004 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2005 originator_string = packet_get_string(NULL);
2006 } else {
2007 originator_string = xstrdup("unknown (remote did not supply name)");
2008 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002009 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002010 sock = channel_connect_to(host, host_port);
2011 if (sock != -1) {
2012 c = channel_new("connected socket",
2013 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2014 originator_string, 1);
2015 if (c == NULL) {
2016 error("channel_input_port_open: channel_new failed");
2017 close(sock);
2018 } else {
2019 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11002020 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002021 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002022 if (c == NULL) {
2023 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2024 packet_put_int(remote_id);
2025 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002026 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002027 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002028}
2029
2030
Ben Lindstrome9c99912001-06-09 00:41:05 +00002031/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002032
Ben Lindstrom908afed2001-10-03 17:34:59 +00002033void
2034channel_set_af(int af)
2035{
2036 IPv4or6 = af;
2037}
2038
Damien Miller5428f641999-11-25 11:54:57 +11002039/*
2040 * Initiate forwarding of connections to local port "port" through the secure
2041 * channel to host:port from remote side.
2042 */
Kevin Steves12057502001-02-05 14:54:34 +00002043int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002044channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
2045 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002046{
Kevin Steves12057502001-02-05 14:54:34 +00002047 return channel_request_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002048 NULL, listen_port,
2049 host_to_connect, port_to_connect,
2050 gateway_ports, /*remote_fwd*/ 0);
2051}
2052
2053/*
2054 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
2055 * (SSH_CHANNEL_RPORT_LISTENER).
2056 */
Kevin Steves12057502001-02-05 14:54:34 +00002057int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002058channel_request_forwarding(
2059 const char *listen_address, u_short listen_port,
2060 const char *host_to_connect, u_short port_to_connect,
2061 int gateway_ports, int remote_fwd)
2062{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002063 Channel *c;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002064 int success, sock, on = 1, type;
Damien Miller34132e52000-01-14 15:45:46 +11002065 struct addrinfo hints, *ai, *aitop;
2066 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11002067 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11002068 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002069
Kevin Steves12057502001-02-05 14:54:34 +00002070 success = 0;
2071
Damien Miller0bc1bd82000-11-13 22:57:25 +11002072 if (remote_fwd) {
2073 host = listen_address;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002074 type = SSH_CHANNEL_RPORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002075 } else {
2076 host = host_to_connect;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002077 type = SSH_CHANNEL_PORT_LISTENER;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002078 }
2079
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002080 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002081 error("Forward host name too long.");
2082 return success;
2083 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002084
Damien Miller0bc1bd82000-11-13 22:57:25 +11002085 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11002086 /*
Damien Miller34132e52000-01-14 15:45:46 +11002087 * getaddrinfo returns a loopback address if the hostname is
2088 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002089 */
Damien Miller34132e52000-01-14 15:45:46 +11002090 memset(&hints, 0, sizeof(hints));
2091 hints.ai_family = IPv4or6;
2092 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2093 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002094 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002095 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2096 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002097
Damien Miller34132e52000-01-14 15:45:46 +11002098 for (ai = aitop; ai; ai = ai->ai_next) {
2099 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2100 continue;
2101 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2102 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11002103 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002104 continue;
2105 }
2106 /* Create a port to listen for the host. */
2107 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2108 if (sock < 0) {
2109 /* this is no error since kernel may not support ipv6 */
2110 verbose("socket: %.100s", strerror(errno));
2111 continue;
2112 }
2113 /*
2114 * Set socket options. We would like the socket to disappear
2115 * as soon as it has been closed for whatever reason.
2116 */
2117 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2118 linger.l_onoff = 1;
2119 linger.l_linger = 5;
2120 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2121 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002122
Damien Miller34132e52000-01-14 15:45:46 +11002123 /* Bind the socket to the address. */
2124 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2125 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002126 if (!ai->ai_next)
2127 error("bind: %.100s", strerror(errno));
2128 else
2129 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002130
Damien Miller34132e52000-01-14 15:45:46 +11002131 close(sock);
2132 continue;
2133 }
2134 /* Start listening for connections on the socket. */
2135 if (listen(sock, 5) < 0) {
2136 error("listen: %.100s", strerror(errno));
2137 close(sock);
2138 continue;
2139 }
2140 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002141 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002142 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002143 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002144 if (c == NULL) {
2145 error("channel_request_forwarding: channel_new failed");
2146 close(sock);
2147 continue;
2148 }
2149 strlcpy(c->path, host, sizeof(c->path));
2150 c->host_port = port_to_connect;
2151 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002152 success = 1;
2153 }
2154 if (success == 0)
Kevin Steves12057502001-02-05 14:54:34 +00002155 error("channel_request_forwarding: cannot listen to port: %d",
2156 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002157 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002158 return success;
Damien Miller95def091999-11-25 00:26:21 +11002159}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002160
Damien Miller5428f641999-11-25 11:54:57 +11002161/*
2162 * Initiate forwarding of connections to port "port" on remote host through
2163 * the secure channel to host:port from local side.
2164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002165
Damien Miller4af51302000-04-16 11:18:38 +10002166void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002167channel_request_remote_forwarding(u_short listen_port,
2168 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002169{
Damien Millerdff50992002-01-22 23:16:32 +11002170 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002171
Damien Miller95def091999-11-25 00:26:21 +11002172 /* Record locally that connection to this host/port is permitted. */
2173 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2174 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002175
Damien Miller95def091999-11-25 00:26:21 +11002176 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002177 if (compat20) {
2178 const char *address_to_bind = "0.0.0.0";
2179 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2180 packet_put_cstring("tcpip-forward");
2181 packet_put_char(0); /* boolean: want reply */
2182 packet_put_cstring(address_to_bind);
2183 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002184 packet_send();
2185 packet_write_wait();
2186 /* Assume that server accepts the request */
2187 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002188 } else {
2189 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002190 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002191 packet_put_cstring(host_to_connect);
2192 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002193 packet_send();
2194 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002195
2196 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002197 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002198 switch (type) {
2199 case SSH_SMSG_SUCCESS:
2200 success = 1;
2201 break;
2202 case SSH_SMSG_FAILURE:
2203 log("Warning: Server denied remote port forwarding.");
2204 break;
2205 default:
2206 /* Unknown packet */
2207 packet_disconnect("Protocol error for port forward request:"
2208 "received packet type %d.", type);
2209 }
2210 }
2211 if (success) {
2212 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2213 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2214 permitted_opens[num_permitted_opens].listen_port = listen_port;
2215 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002216 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002217}
2218
Damien Miller5428f641999-11-25 11:54:57 +11002219/*
2220 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2221 * listening for the port, and sends back a success reply (or disconnect
2222 * message if there was an error). This never returns if there was an error.
2223 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002224
Damien Miller4af51302000-04-16 11:18:38 +10002225void
Damien Millere247cc42000-05-07 12:03:14 +10002226channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002227{
Damien Milleraae6c611999-12-06 11:47:28 +11002228 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002229 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002230
Damien Miller95def091999-11-25 00:26:21 +11002231 /* Get arguments from the packet. */
2232 port = packet_get_int();
2233 hostname = packet_get_string(NULL);
2234 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002235
Damien Millerbac2d8a2000-09-05 16:13:06 +11002236#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002237 /*
2238 * Check that an unprivileged user is not trying to forward a
2239 * privileged port.
2240 */
Damien Miller95def091999-11-25 00:26:21 +11002241 if (port < IPPORT_RESERVED && !is_root)
2242 packet_disconnect("Requested forwarding of port %d but user is not root.",
2243 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002244#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002245 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10002246 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002247
2248 /* Free the argument string. */
2249 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002250}
2251
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002252/*
2253 * Permits opening to any host/port if permitted_opens[] is empty. This is
2254 * usually called by the server, because the user could connect to any port
2255 * anyway, and the server has no way to know but to trust the client anyway.
2256 */
2257void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002258channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002259{
2260 if (num_permitted_opens == 0)
2261 all_opens_permitted = 1;
2262}
2263
Ben Lindstroma3700052001-04-05 23:26:32 +00002264void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002265channel_add_permitted_opens(char *host, int port)
2266{
2267 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2268 fatal("channel_request_remote_forwarding: too many forwards");
2269 debug("allow port forwarding to host %s port %d", host, port);
2270
2271 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2272 permitted_opens[num_permitted_opens].port_to_connect = port;
2273 num_permitted_opens++;
2274
2275 all_opens_permitted = 0;
2276}
2277
Ben Lindstroma3700052001-04-05 23:26:32 +00002278void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002279channel_clear_permitted_opens(void)
2280{
2281 int i;
2282
2283 for (i = 0; i < num_permitted_opens; i++)
2284 xfree(permitted_opens[i].host_to_connect);
2285 num_permitted_opens = 0;
2286
2287}
2288
2289
2290/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002291static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002292connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002293{
Damien Miller34132e52000-01-14 15:45:46 +11002294 struct addrinfo hints, *ai, *aitop;
2295 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2296 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002297 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002298
Damien Miller34132e52000-01-14 15:45:46 +11002299 memset(&hints, 0, sizeof(hints));
2300 hints.ai_family = IPv4or6;
2301 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002302 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002303 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002304 error("connect_to %.100s: unknown host (%s)", host,
2305 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002306 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002307 }
Damien Miller34132e52000-01-14 15:45:46 +11002308 for (ai = aitop; ai; ai = ai->ai_next) {
2309 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2310 continue;
2311 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2312 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002313 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002314 continue;
2315 }
Damien Miller34132e52000-01-14 15:45:46 +11002316 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2317 if (sock < 0) {
2318 error("socket: %.100s", strerror(errno));
2319 continue;
2320 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002321 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002322 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002323 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2324 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002325 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002326 strerror(errno));
2327 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002328 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002329 }
2330 break; /* success */
2331
2332 }
2333 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002334 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002335 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002336 return -1;
2337 }
2338 /* success */
2339 return sock;
2340}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002341
Damien Miller0bc1bd82000-11-13 22:57:25 +11002342int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002343channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002344{
2345 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002346
Damien Miller0bc1bd82000-11-13 22:57:25 +11002347 for (i = 0; i < num_permitted_opens; i++)
2348 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002349 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002350 permitted_opens[i].host_to_connect,
2351 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002352 error("WARNING: Server requests forwarding for unknown listen_port %d",
2353 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002354 return -1;
2355}
Damien Millerb38eff82000-04-01 11:09:21 +10002356
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002357/* Check if connecting to that port is permitted and connect. */
2358int
2359channel_connect_to(const char *host, u_short port)
2360{
2361 int i, permit;
2362
2363 permit = all_opens_permitted;
2364 if (!permit) {
2365 for (i = 0; i < num_permitted_opens; i++)
2366 if (permitted_opens[i].port_to_connect == port &&
2367 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2368 permit = 1;
2369
2370 }
2371 if (!permit) {
2372 log("Received request to connect to host %.100s port %d, "
2373 "but the request was denied.", host, port);
2374 return -1;
2375 }
2376 return connect_to(host, port);
2377}
2378
Ben Lindstrome9c99912001-06-09 00:41:05 +00002379/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002380
Damien Miller5428f641999-11-25 11:54:57 +11002381/*
2382 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002383 * Returns a suitable display number for the DISPLAY variable, or -1 if
2384 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002385 */
Kevin Steves366298c2001-12-19 17:58:01 +00002386int
Damien Millere7378562001-12-21 14:58:35 +11002387x11_create_display_inet(int x11_display_offset, int gateway_ports,
2388 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002389{
Damien Millere7378562001-12-21 14:58:35 +11002390 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002391 int display_number, sock;
2392 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002393 struct addrinfo hints, *ai, *aitop;
2394 char strport[NI_MAXSERV];
2395 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002396
Damien Millera34a28b1999-12-14 10:47:15 +11002397 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002398 display_number < MAX_DISPLAYS;
2399 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002400 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002401 memset(&hints, 0, sizeof(hints));
2402 hints.ai_family = IPv4or6;
Kevin Steves366298c2001-12-19 17:58:01 +00002403 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002404 hints.ai_socktype = SOCK_STREAM;
2405 snprintf(strport, sizeof strport, "%d", port);
2406 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2407 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002408 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002409 }
Damien Miller34132e52000-01-14 15:45:46 +11002410 for (ai = aitop; ai; ai = ai->ai_next) {
2411 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2412 continue;
2413 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2414 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002415 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002416 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002417 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002418 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002419 debug("x11_create_display_inet: Socket family %d not supported",
2420 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002421 continue;
2422 }
Damien Miller34132e52000-01-14 15:45:46 +11002423 }
2424 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2425 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002426 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002427
2428 if (ai->ai_next)
2429 continue;
2430
Damien Miller34132e52000-01-14 15:45:46 +11002431 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002432 close(socks[n]);
2433 }
2434 num_socks = 0;
2435 break;
2436 }
2437 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002438#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002439 if (num_socks == NUM_SOCKS)
2440 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002441#else
2442 break;
2443#endif
Damien Miller95def091999-11-25 00:26:21 +11002444 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002445 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002446 if (num_socks > 0)
2447 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002448 }
Damien Miller95def091999-11-25 00:26:21 +11002449 if (display_number >= MAX_DISPLAYS) {
2450 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002451 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002452 }
Damien Miller95def091999-11-25 00:26:21 +11002453 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002454 for (n = 0; n < num_socks; n++) {
2455 sock = socks[n];
2456 if (listen(sock, 5) < 0) {
2457 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002458 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002459 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002460 }
Damien Miller95def091999-11-25 00:26:21 +11002461 }
Damien Miller34132e52000-01-14 15:45:46 +11002462
Damien Miller34132e52000-01-14 15:45:46 +11002463 /* Allocate a channel for each socket. */
2464 for (n = 0; n < num_socks; n++) {
2465 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002466 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002467 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2468 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002469 0, xstrdup("X11 inet listener"), 1);
Damien Millere7378562001-12-21 14:58:35 +11002470 if (nc != NULL)
2471 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002473
Kevin Steves366298c2001-12-19 17:58:01 +00002474 /* Return the display number for the DISPLAY environment variable. */
2475 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002476}
2477
Ben Lindstrombba81212001-06-25 05:01:22 +00002478static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002479connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002480{
Damien Miller95def091999-11-25 00:26:21 +11002481 int sock;
2482 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002483
Damien Miller3afe3752001-12-21 12:39:51 +11002484 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2485 if (sock < 0)
2486 error("socket: %.100s", strerror(errno));
2487 memset(&addr, 0, sizeof(addr));
2488 addr.sun_family = AF_UNIX;
2489 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2490 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2491 return sock;
2492 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002493 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2494 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002495}
2496
Damien Millerbd483e72000-04-30 10:00:53 +10002497int
2498x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002499{
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002500 int display_number, sock = 0, on = 1;
Damien Miller95def091999-11-25 00:26:21 +11002501 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002502 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002503 struct addrinfo hints, *ai, *aitop;
2504 char strport[NI_MAXSERV];
2505 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506
Damien Miller95def091999-11-25 00:26:21 +11002507 /* Try to open a socket for the local X server. */
2508 display = getenv("DISPLAY");
2509 if (!display) {
2510 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002511 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002512 }
Damien Miller5428f641999-11-25 11:54:57 +11002513 /*
2514 * Now we decode the value of the DISPLAY variable and make a
2515 * connection to the real X server.
2516 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517
Damien Miller5428f641999-11-25 11:54:57 +11002518 /*
2519 * Check if it is a unix domain socket. Unix domain displays are in
2520 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2521 */
Damien Miller95def091999-11-25 00:26:21 +11002522 if (strncmp(display, "unix:", 5) == 0 ||
2523 display[0] == ':') {
2524 /* Connect to the unix domain socket. */
2525 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2526 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002527 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002528 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002529 }
2530 /* Create a socket. */
2531 sock = connect_local_xsocket(display_number);
2532 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002533 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002534
2535 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002536 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002537 }
Damien Miller5428f641999-11-25 11:54:57 +11002538 /*
2539 * Connect to an inet socket. The DISPLAY value is supposedly
2540 * hostname:d[.s], where hostname may also be numeric IP address.
2541 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002542 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002543 cp = strchr(buf, ':');
2544 if (!cp) {
2545 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002546 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002547 }
Damien Miller95def091999-11-25 00:26:21 +11002548 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002549 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002550 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2551 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002552 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002553 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002554 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002555
Damien Miller34132e52000-01-14 15:45:46 +11002556 /* Look up the host address */
2557 memset(&hints, 0, sizeof(hints));
2558 hints.ai_family = IPv4or6;
2559 hints.ai_socktype = SOCK_STREAM;
2560 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2561 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2562 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002563 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002564 }
Damien Miller34132e52000-01-14 15:45:46 +11002565 for (ai = aitop; ai; ai = ai->ai_next) {
2566 /* Create a socket. */
2567 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2568 if (sock < 0) {
2569 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002570 continue;
2571 }
2572 /* Connect it to the display. */
2573 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2574 debug("connect %.100s port %d: %.100s", buf,
2575 6000 + display_number, strerror(errno));
2576 close(sock);
2577 continue;
2578 }
2579 /* Success */
2580 break;
Damien Miller34132e52000-01-14 15:45:46 +11002581 }
Damien Miller34132e52000-01-14 15:45:46 +11002582 freeaddrinfo(aitop);
2583 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002584 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002585 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002586 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002587 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002588 if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on) == -1)
2589 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002590 return sock;
2591}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002592
Damien Millerbd483e72000-04-30 10:00:53 +10002593/*
2594 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2595 * the remote channel number. We should do whatever we want, and respond
2596 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2597 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002598
Damien Millerbd483e72000-04-30 10:00:53 +10002599void
Damien Miller630d6f42002-01-22 23:17:30 +11002600x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002601{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002602 Channel *c = NULL;
2603 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002604 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002605
2606 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002607
2608 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002609
2610 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002611 remote_host = packet_get_string(NULL);
2612 } else {
2613 remote_host = xstrdup("unknown (remote did not supply name)");
2614 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002615 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002616
2617 /* Obtain a connection to the real X display. */
2618 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002619 if (sock != -1) {
2620 /* Allocate a channel for this connection. */
2621 c = channel_new("connected x11 socket",
2622 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2623 remote_host, 1);
2624 if (c == NULL) {
2625 error("x11_input_open: channel_new failed");
2626 close(sock);
2627 } else {
2628 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002629 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002630 }
2631 }
2632 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002633 /* Send refusal to the remote host. */
2634 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002635 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002636 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002637 /* Send a confirmation to the remote host. */
2638 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002639 packet_put_int(remote_id);
2640 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002641 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002642 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002643}
2644
Damien Miller69b69aa2000-10-28 14:19:58 +11002645/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2646void
Damien Miller630d6f42002-01-22 23:17:30 +11002647deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002648{
2649 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002650 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002651 case SSH_SMSG_AGENT_OPEN:
2652 error("Warning: ssh server tried agent forwarding.");
2653 break;
2654 case SSH_SMSG_X11_OPEN:
2655 error("Warning: ssh server tried X11 forwarding.");
2656 break;
2657 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002658 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002659 break;
2660 }
2661 error("Warning: this is probably a break in attempt by a malicious server.");
2662 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2663 packet_put_int(rchan);
2664 packet_send();
2665}
2666
Damien Miller5428f641999-11-25 11:54:57 +11002667/*
2668 * Requests forwarding of X11 connections, generates fake authentication
2669 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002670 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002671 */
Damien Miller4af51302000-04-16 11:18:38 +10002672void
Damien Millerbd483e72000-04-30 10:00:53 +10002673x11_request_forwarding_with_spoofing(int client_session_id,
2674 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002675{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002676 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002677 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002678 char *new_data;
2679 int screen_number;
2680 const char *cp;
2681 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002682
Damien Miller95def091999-11-25 00:26:21 +11002683 cp = getenv("DISPLAY");
2684 if (cp)
2685 cp = strchr(cp, ':');
2686 if (cp)
2687 cp = strchr(cp, '.');
2688 if (cp)
2689 screen_number = atoi(cp + 1);
2690 else
2691 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002692
Damien Miller95def091999-11-25 00:26:21 +11002693 /* Save protocol name. */
2694 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002695
Damien Miller5428f641999-11-25 11:54:57 +11002696 /*
2697 * Extract real authentication data and generate fake data of the
2698 * same length.
2699 */
Damien Miller95def091999-11-25 00:26:21 +11002700 x11_saved_data = xmalloc(data_len);
2701 x11_fake_data = xmalloc(data_len);
2702 for (i = 0; i < data_len; i++) {
2703 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2704 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2705 if (i % 4 == 0)
2706 rand = arc4random();
2707 x11_saved_data[i] = value;
2708 x11_fake_data[i] = rand & 0xff;
2709 rand >>= 8;
2710 }
2711 x11_saved_data_len = data_len;
2712 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002713
Damien Miller95def091999-11-25 00:26:21 +11002714 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002715 len = 2 * data_len + 1;
2716 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002717 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002718 snprintf(new_data + 2 * i, len - 2 * i,
2719 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002720
Damien Miller95def091999-11-25 00:26:21 +11002721 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002722 if (compat20) {
2723 channel_request_start(client_session_id, "x11-req", 0);
2724 packet_put_char(0); /* XXX bool single connection */
2725 } else {
2726 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2727 }
2728 packet_put_cstring(proto);
2729 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002730 packet_put_int(screen_number);
2731 packet_send();
2732 packet_write_wait();
2733 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002734}
2735
Ben Lindstrome9c99912001-06-09 00:41:05 +00002736
2737/* -- agent forwarding */
2738
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002739/* Sends a message to the server to request authentication fd forwarding. */
2740
Damien Miller4af51302000-04-16 11:18:38 +10002741void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002742auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002743{
Damien Miller95def091999-11-25 00:26:21 +11002744 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2745 packet_send();
2746 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002747}
2748
Damien Miller5428f641999-11-25 11:54:57 +11002749/*
2750 * Returns the name of the forwarded authentication socket. Returns NULL if
2751 * there is no forwarded authentication socket. The returned value points to
2752 * a static buffer.
2753 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002754
Damien Miller95def091999-11-25 00:26:21 +11002755char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002756auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002757{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002758 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002759}
2760
2761/* removes the agent forwarding socket */
2762
Damien Miller4af51302000-04-16 11:18:38 +10002763void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002764auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002765{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002766 struct passwd *pw = _pw;
2767
Ben Lindstrom838394c2001-06-09 01:11:59 +00002768 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002769 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002770 unlink(auth_sock_name);
2771 rmdir(auth_sock_dir);
2772 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002773 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002774 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002775}
2776
Damien Miller5428f641999-11-25 11:54:57 +11002777/*
Damien Millerd3a18572000-06-07 19:55:44 +10002778 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002779 * This starts forwarding authentication requests.
2780 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002781
Damien Millerd3a18572000-06-07 19:55:44 +10002782int
Damien Miller95def091999-11-25 00:26:21 +11002783auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002784{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002785 Channel *nc;
2786 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002787 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002788
Ben Lindstrome9c99912001-06-09 00:41:05 +00002789 if (auth_get_socket_name() != NULL) {
2790 error("authentication forwarding requested twice.");
2791 return 0;
2792 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793
Damien Miller95def091999-11-25 00:26:21 +11002794 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002795 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002796
Damien Miller95def091999-11-25 00:26:21 +11002797 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002798 auth_sock_name = xmalloc(MAXPATHLEN);
2799 auth_sock_dir = xmalloc(MAXPATHLEN);
2800 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002801
Damien Miller95def091999-11-25 00:26:21 +11002802 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002803 if (mkdtemp(auth_sock_dir) == NULL) {
2804 packet_send_debug("Agent forwarding disabled: "
2805 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002806 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002807 xfree(auth_sock_name);
2808 xfree(auth_sock_dir);
2809 auth_sock_name = NULL;
2810 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002811 return 0;
2812 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002813 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2814 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002815
Ben Lindstrom838394c2001-06-09 01:11:59 +00002816 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002817 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002818
Damien Miller95def091999-11-25 00:26:21 +11002819 /* Create the socket. */
2820 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2821 if (sock < 0)
2822 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002823
Damien Miller95def091999-11-25 00:26:21 +11002824 /* Bind it to the name. */
2825 memset(&sunaddr, 0, sizeof(sunaddr));
2826 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002827 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828
Damien Miller95def091999-11-25 00:26:21 +11002829 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2830 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002831
Damien Miller95def091999-11-25 00:26:21 +11002832 /* Restore the privileged uid. */
2833 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002834
Damien Miller95def091999-11-25 00:26:21 +11002835 /* Start listening on the socket. */
2836 if (listen(sock, 5) < 0)
2837 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002838
Damien Miller95def091999-11-25 00:26:21 +11002839 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002840 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002841 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2842 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2843 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002844 if (nc == NULL) {
2845 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002846 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002847 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002848 close(sock);
2849 return 0;
2850 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002851 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002852 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002853}
2854
2855/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2856
Damien Miller4af51302000-04-16 11:18:38 +10002857void
Damien Miller630d6f42002-01-22 23:17:30 +11002858auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002859{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002860 Channel *c = NULL;
2861 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002862 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863
Damien Miller95def091999-11-25 00:26:21 +11002864 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002865 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002866 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002867
Damien Miller5428f641999-11-25 11:54:57 +11002868 /*
2869 * Get a connection to the local authentication agent (this may again
2870 * get forwarded).
2871 */
Damien Miller95def091999-11-25 00:26:21 +11002872 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002873
Damien Miller5428f641999-11-25 11:54:57 +11002874 /*
2875 * If we could not connect the agent, send an error message back to
2876 * the server. This should never happen unless the agent dies,
2877 * because authentication forwarding is only enabled if we have an
2878 * agent.
2879 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002880 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002881 name = xstrdup("authentication agent connection");
2882 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2883 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002884 if (c == NULL) {
2885 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002886 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002887 close(sock);
2888 } else {
2889 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002890 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002891 }
Damien Miller95def091999-11-25 00:26:21 +11002892 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002893 if (c == NULL) {
2894 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2895 packet_put_int(remote_id);
2896 } else {
2897 /* Send a confirmation to the remote host. */
2898 debug("Forwarding authentication connection.");
2899 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2900 packet_put_int(remote_id);
2901 packet_put_int(c->self);
2902 }
Damien Miller95def091999-11-25 00:26:21 +11002903 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002904}