blob: 73bc10a1a1c1e040f47ee18a7b631c79dd30655e [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 Miller73f10742002-01-22 23:34:52 +110042RCSID("$OpenBSD: channels.c,v 1.161 2002/01/21 23:27:10 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh1.h"
46#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "packet.h"
48#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "log.h"
51#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100055#include "key.h"
56#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110057#include "pathnames.h"
Damien Miller994cf142000-07-21 10:19:44 +100058
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Ben Lindstrome9c99912001-06-09 00:41:05 +000060/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Damien Miller5428f641999-11-25 11:54:57 +110062/*
63 * Pointer to an array containing all allocated channels. The array is
64 * dynamically extended as needed.
65 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000066static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller5428f641999-11-25 11:54:57 +110068/*
69 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000070 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110071 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072static int channels_alloc = 0;
73
Damien Miller5428f641999-11-25 11:54:57 +110074/*
75 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000076 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110077 */
Damien Miller5e953212001-01-30 09:14:00 +110078static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Data structure for storing which hosts are permitted for forward requests.
85 * The local sides of any remote forwards are stored in this array to prevent
86 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
87 * network (which might be behind a firewall).
88 */
Damien Miller95def091999-11-25 00:26:21 +110089typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100090 char *host_to_connect; /* Connect to 'host'. */
91 u_short port_to_connect; /* Connect to 'port'. */
92 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093} ForwardPermission;
94
95/* List of all permitted host/port pairs to connect. */
96static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000097
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098/* Number of permitted host/port pairs in the array. */
99static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * If this is true, all opens are permitted. This is the case on the server
102 * on which we have to trust the client anyway, and the user could do
103 * anything after logging in anyway.
104 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105static int all_opens_permitted = 0;
106
Ben Lindstrome9c99912001-06-09 00:41:05 +0000107
108/* -- X11 forwarding */
109
110/* Maximum number of fake X11 displays to try. */
111#define MAX_DISPLAYS 1000
112
113/* Saved X11 authentication protocol name. */
114static char *x11_saved_proto = NULL;
115
116/* Saved X11 authentication data. This is the real data. */
117static char *x11_saved_data = NULL;
118static u_int x11_saved_data_len = 0;
119
120/*
121 * Fake X11 authentication data. This is what the server will be sending us;
122 * we should replace any occurrences of this by the real data.
123 */
124static char *x11_fake_data = NULL;
125static u_int x11_fake_data_len;
126
127
128/* -- agent forwarding */
129
130#define NUM_SOCKS 10
131
132/* Name and directory of socket for authentication agent forwarding. */
133static char *auth_sock_name = NULL;
134static char *auth_sock_dir = NULL;
135
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000137static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000138
Ben Lindstrome9c99912001-06-09 00:41:05 +0000139/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000141
Ben Lindstrome9c99912001-06-09 00:41:05 +0000142/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000143
144Channel *
145channel_lookup(int id)
146{
147 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148
Damien Millerc0fd17f2000-06-26 10:22:53 +1000149 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000150 log("channel_lookup: %d: bad id", id);
151 return NULL;
152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000153 c = channels[id];
154 if (c == NULL) {
Damien Millerb38eff82000-04-01 11:09:21 +1000155 log("channel_lookup: %d: bad id: channel free", id);
156 return NULL;
157 }
158 return c;
159}
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Damien Millere247cc42000-05-07 12:03:14 +1000162 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000163 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100167channel_register_fds(Channel *c, int rfd, int wfd, int efd,
168 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100171 channel_max_fd = MAX(channel_max_fd, rfd);
172 channel_max_fd = MAX(channel_max_fd, wfd);
173 channel_max_fd = MAX(channel_max_fd, efd);
174
Damien Miller5428f641999-11-25 11:54:57 +1100175 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000176
Damien Miller6f83b8e2000-05-02 09:23:45 +1000177 c->rfd = rfd;
178 c->wfd = wfd;
179 c->sock = (rfd == wfd) ? rfd : -1;
180 c->efd = efd;
181 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100182
Damien Miller79438cc2001-02-16 12:34:57 +1100183 /* XXX ugly hack: nonblock is only set by the server */
184 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000185 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100186 c->isatty = 1;
187 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000188 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100189 c->self, c->wfd);
190 }
191 } else {
192 c->isatty = 0;
193 }
194
Damien Miller69b69aa2000-10-28 14:19:58 +1100195 /* enable nonblocking mode */
196 if (nonblock) {
197 if (rfd != -1)
198 set_nonblock(rfd);
199 if (wfd != -1)
200 set_nonblock(wfd);
201 if (efd != -1)
202 set_nonblock(efd);
203 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000204}
205
206/*
207 * Allocate a new channel object and set its type and socket. This will cause
208 * remote_name to be freed.
209 */
210
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000211Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000212channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Damien Miller69b69aa2000-10-28 14:19:58 +1100213 int window, int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000214{
215 int i, found;
216 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Do initial allocation if this is the first call. */
219 if (channels_alloc == 0) {
220 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000221 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100222 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000223 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000224 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100225 }
226 /* Try to find a free slot where to put the new channel. */
227 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000228 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100229 /* Found a free slot. */
230 found = i;
231 break;
232 }
233 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100234 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100235 found = channels_alloc;
236 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100237 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000238 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100239 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000240 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100241 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000242 /* Initialize and return new channel. */
243 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000244 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100245 buffer_init(&c->input);
246 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000247 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100248 c->ostate = CHAN_OUTPUT_OPEN;
249 c->istate = CHAN_INPUT_OPEN;
250 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100251 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100252 c->self = found;
253 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000254 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000255 c->local_window = window;
256 c->local_window_max = window;
257 c->local_consumed = 0;
258 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100259 c->remote_id = -1;
260 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000261 c->remote_window = 0;
262 c->remote_maxpacket = 0;
263 c->cb_fn = NULL;
264 c->cb_arg = NULL;
265 c->cb_event = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000266 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100267 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000268 c->detach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000269 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100270 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000271 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000273
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000274static int
275channel_find_maxfd(void)
276{
277 int i, max = 0;
278 Channel *c;
279
280 for (i = 0; i < channels_alloc; i++) {
281 c = channels[i];
282 if (c != NULL) {
283 max = MAX(max, c->rfd);
284 max = MAX(max, c->wfd);
285 max = MAX(max, c->efd);
286 }
287 }
288 return max;
289}
290
291int
292channel_close_fd(int *fdp)
293{
294 int ret = 0, fd = *fdp;
295
296 if (fd != -1) {
297 ret = close(fd);
298 *fdp = -1;
299 if (fd == channel_max_fd)
300 channel_max_fd = channel_find_maxfd();
301 }
302 return ret;
303}
304
Damien Miller6f83b8e2000-05-02 09:23:45 +1000305/* Close all channel fd/socket. */
306
Ben Lindstrombba81212001-06-25 05:01:22 +0000307static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000308channel_close_fds(Channel *c)
309{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000310 debug3("channel_close_fds: channel %d: r %d w %d e %d",
311 c->self, c->rfd, c->wfd, c->efd);
312
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000313 channel_close_fd(&c->sock);
314 channel_close_fd(&c->rfd);
315 channel_close_fd(&c->wfd);
316 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000317}
318
319/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320
Damien Miller4af51302000-04-16 11:18:38 +1000321void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000322channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000324 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000325 int i, n;
326
327 for (n = 0, i = 0; i < channels_alloc; i++)
328 if (channels[i])
329 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000330 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000331 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000332
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000333 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000334 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000335 xfree(s);
336
Damien Miller6f83b8e2000-05-02 09:23:45 +1000337 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000338 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000339 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000340 buffer_free(&c->input);
341 buffer_free(&c->output);
342 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000343 if (c->remote_name) {
344 xfree(c->remote_name);
345 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100346 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000347 channels[c->self] = NULL;
348 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349}
350
Ben Lindstrome9c99912001-06-09 00:41:05 +0000351void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000352channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000353{
354 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000355
Ben Lindstrom601e4362001-06-21 03:19:23 +0000356 for (i = 0; i < channels_alloc; i++)
357 if (channels[i] != NULL)
358 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000359}
360
361/*
362 * Closes the sockets/fds of all channels. This is used to close extra file
363 * descriptors after a fork.
364 */
365
366void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000367channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000368{
369 int i;
370
371 for (i = 0; i < channels_alloc; i++)
372 if (channels[i] != NULL)
373 channel_close_fds(channels[i]);
374}
375
376/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000377 * Stop listening to channels.
378 */
379
380void
381channel_stop_listening(void)
382{
383 int i;
384 Channel *c;
385
386 for (i = 0; i < channels_alloc; i++) {
387 c = channels[i];
388 if (c != NULL) {
389 switch (c->type) {
390 case SSH_CHANNEL_AUTH_SOCKET:
391 case SSH_CHANNEL_PORT_LISTENER:
392 case SSH_CHANNEL_RPORT_LISTENER:
393 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000394 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000395 channel_free(c);
396 break;
397 }
398 }
399 }
400}
401
402/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000403 * Returns true if no channel has too much buffered data, and false if one or
404 * more channel is overfull.
405 */
406
407int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000408channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409{
410 u_int i;
411 Channel *c;
412
413 for (i = 0; i < channels_alloc; i++) {
414 c = channels[i];
415 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000416#if 0
417 if (!compat20 &&
418 buffer_len(&c->input) > packet_get_maxsize()) {
Ben Lindstrome9c99912001-06-09 00:41:05 +0000419 debug("channel %d: big input buffer %d",
420 c->self, buffer_len(&c->input));
421 return 0;
422 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000423#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000424 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000425 debug("channel %d: big output buffer %d > %d",
426 c->self, buffer_len(&c->output),
427 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000428 return 0;
429 }
430 }
431 }
432 return 1;
433}
434
435/* Returns true if any channel is still open. */
436
437int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000438channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000439{
440 int i;
441 Channel *c;
442
443 for (i = 0; i < channels_alloc; i++) {
444 c = channels[i];
445 if (c == NULL)
446 continue;
447 switch (c->type) {
448 case SSH_CHANNEL_X11_LISTENER:
449 case SSH_CHANNEL_PORT_LISTENER:
450 case SSH_CHANNEL_RPORT_LISTENER:
451 case SSH_CHANNEL_CLOSED:
452 case SSH_CHANNEL_AUTH_SOCKET:
453 case SSH_CHANNEL_DYNAMIC:
454 case SSH_CHANNEL_CONNECTING:
455 case SSH_CHANNEL_ZOMBIE:
456 continue;
457 case SSH_CHANNEL_LARVAL:
458 if (!compat20)
459 fatal("cannot happen: SSH_CHANNEL_LARVAL");
460 continue;
461 case SSH_CHANNEL_OPENING:
462 case SSH_CHANNEL_OPEN:
463 case SSH_CHANNEL_X11_OPEN:
464 return 1;
465 case SSH_CHANNEL_INPUT_DRAINING:
466 case SSH_CHANNEL_OUTPUT_DRAINING:
467 if (!compat13)
468 fatal("cannot happen: OUT_DRAIN");
469 return 1;
470 default:
471 fatal("channel_still_open: bad channel type %d", c->type);
472 /* NOTREACHED */
473 }
474 }
475 return 0;
476}
477
478/* Returns the id of an open channel suitable for keepaliving */
479
480int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000481channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482{
483 int i;
484 Channel *c;
485
486 for (i = 0; i < channels_alloc; i++) {
487 c = channels[i];
488 if (c == NULL)
489 continue;
490 switch (c->type) {
491 case SSH_CHANNEL_CLOSED:
492 case SSH_CHANNEL_DYNAMIC:
493 case SSH_CHANNEL_X11_LISTENER:
494 case SSH_CHANNEL_PORT_LISTENER:
495 case SSH_CHANNEL_RPORT_LISTENER:
496 case SSH_CHANNEL_OPENING:
497 case SSH_CHANNEL_CONNECTING:
498 case SSH_CHANNEL_ZOMBIE:
499 continue;
500 case SSH_CHANNEL_LARVAL:
501 case SSH_CHANNEL_AUTH_SOCKET:
502 case SSH_CHANNEL_OPEN:
503 case SSH_CHANNEL_X11_OPEN:
504 return i;
505 case SSH_CHANNEL_INPUT_DRAINING:
506 case SSH_CHANNEL_OUTPUT_DRAINING:
507 if (!compat13)
508 fatal("cannot happen: OUT_DRAIN");
509 return i;
510 default:
511 fatal("channel_find_open: bad channel type %d", c->type);
512 /* NOTREACHED */
513 }
514 }
515 return -1;
516}
517
518
519/*
520 * Returns a message describing the currently open forwarded connections,
521 * suitable for sending to the client. The message contains crlf pairs for
522 * newlines.
523 */
524
525char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000526channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000527{
528 Buffer buffer;
529 Channel *c;
530 char buf[1024], *cp;
531 int i;
532
533 buffer_init(&buffer);
534 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
535 buffer_append(&buffer, buf, strlen(buf));
536 for (i = 0; i < channels_alloc; i++) {
537 c = channels[i];
538 if (c == NULL)
539 continue;
540 switch (c->type) {
541 case SSH_CHANNEL_X11_LISTENER:
542 case SSH_CHANNEL_PORT_LISTENER:
543 case SSH_CHANNEL_RPORT_LISTENER:
544 case SSH_CHANNEL_CLOSED:
545 case SSH_CHANNEL_AUTH_SOCKET:
546 case SSH_CHANNEL_ZOMBIE:
547 continue;
548 case SSH_CHANNEL_LARVAL:
549 case SSH_CHANNEL_OPENING:
550 case SSH_CHANNEL_CONNECTING:
551 case SSH_CHANNEL_DYNAMIC:
552 case SSH_CHANNEL_OPEN:
553 case SSH_CHANNEL_X11_OPEN:
554 case SSH_CHANNEL_INPUT_DRAINING:
555 case SSH_CHANNEL_OUTPUT_DRAINING:
556 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
557 c->self, c->remote_name,
558 c->type, c->remote_id,
559 c->istate, buffer_len(&c->input),
560 c->ostate, buffer_len(&c->output),
561 c->rfd, c->wfd);
562 buffer_append(&buffer, buf, strlen(buf));
563 continue;
564 default:
565 fatal("channel_open_message: bad channel type %d", c->type);
566 /* NOTREACHED */
567 }
568 }
569 buffer_append(&buffer, "\0", 1);
570 cp = xstrdup(buffer_ptr(&buffer));
571 buffer_free(&buffer);
572 return cp;
573}
574
575void
576channel_send_open(int id)
577{
578 Channel *c = channel_lookup(id);
579 if (c == NULL) {
580 log("channel_send_open: %d: bad id", id);
581 return;
582 }
583 debug("send channel open %d", id);
584 packet_start(SSH2_MSG_CHANNEL_OPEN);
585 packet_put_cstring(c->ctype);
586 packet_put_int(c->self);
587 packet_put_int(c->local_window);
588 packet_put_int(c->local_maxpacket);
589 packet_send();
590}
591
592void
593channel_request(int id, char *service, int wantconfirm)
594{
595 channel_request_start(id, service, wantconfirm);
596 packet_send();
597 debug("channel request %d: %s", id, service) ;
598}
599void
600channel_request_start(int id, char *service, int wantconfirm)
601{
602 Channel *c = channel_lookup(id);
603 if (c == NULL) {
604 log("channel_request: %d: bad id", id);
605 return;
606 }
607 packet_start(SSH2_MSG_CHANNEL_REQUEST);
608 packet_put_int(c->remote_id);
609 packet_put_cstring(service);
610 packet_put_char(wantconfirm);
611}
612void
613channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
614{
615 Channel *c = channel_lookup(id);
616 if (c == NULL) {
617 log("channel_register_callback: %d: bad id", id);
618 return;
619 }
620 c->cb_event = mtype;
621 c->cb_fn = fn;
622 c->cb_arg = arg;
623}
624void
625channel_register_cleanup(int id, channel_callback_fn *fn)
626{
627 Channel *c = channel_lookup(id);
628 if (c == NULL) {
629 log("channel_register_cleanup: %d: bad id", id);
630 return;
631 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000632 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633}
634void
635channel_cancel_cleanup(int id)
636{
637 Channel *c = channel_lookup(id);
638 if (c == NULL) {
639 log("channel_cancel_cleanup: %d: bad id", id);
640 return;
641 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000642 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643}
644void
645channel_register_filter(int id, channel_filter_fn *fn)
646{
647 Channel *c = channel_lookup(id);
648 if (c == NULL) {
649 log("channel_register_filter: %d: bad id", id);
650 return;
651 }
652 c->input_filter = fn;
653}
654
655void
656channel_set_fds(int id, int rfd, int wfd, int efd,
657 int extusage, int nonblock)
658{
659 Channel *c = channel_lookup(id);
660 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
661 fatal("channel_activate for non-larval channel %d.", id);
662 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
663 c->type = SSH_CHANNEL_OPEN;
664 /* XXX window size? */
665 c->local_window = c->local_window_max = c->local_maxpacket * 2;
666 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
667 packet_put_int(c->remote_id);
668 packet_put_int(c->local_window);
669 packet_send();
670}
671
Damien Miller5428f641999-11-25 11:54:57 +1100672/*
Damien Millerb38eff82000-04-01 11:09:21 +1000673 * 'channel_pre*' are called just before select() to add any bits relevant to
674 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100675 */
Damien Millerb38eff82000-04-01 11:09:21 +1000676/*
677 * 'channel_post*': perform any appropriate operations for channels which
678 * have events pending.
679 */
680typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
681chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
682chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
683
Ben Lindstrombba81212001-06-25 05:01:22 +0000684static void
Damien Millerb38eff82000-04-01 11:09:21 +1000685channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
686{
687 FD_SET(c->sock, readset);
688}
689
Ben Lindstrombba81212001-06-25 05:01:22 +0000690static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000691channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
692{
693 debug3("channel %d: waiting for connection", c->self);
694 FD_SET(c->sock, writeset);
695}
696
Ben Lindstrombba81212001-06-25 05:01:22 +0000697static void
Damien Millerb38eff82000-04-01 11:09:21 +1000698channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
699{
700 if (buffer_len(&c->input) < packet_get_maxsize())
701 FD_SET(c->sock, readset);
702 if (buffer_len(&c->output) > 0)
703 FD_SET(c->sock, writeset);
704}
705
Ben Lindstrombba81212001-06-25 05:01:22 +0000706static void
Damien Millerde6987c2002-01-22 23:20:40 +1100707channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000708{
Damien Millerde6987c2002-01-22 23:20:40 +1100709 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000710
Damien Miller33b13562000-04-04 14:38:59 +1000711 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100712 limit > 0 &&
713 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000714 FD_SET(c->rfd, readset);
715 if (c->ostate == CHAN_OUTPUT_OPEN ||
716 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
717 if (buffer_len(&c->output) > 0) {
718 FD_SET(c->wfd, writeset);
719 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
720 chan_obuf_empty(c);
721 }
722 }
723 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100724 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000725 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
726 buffer_len(&c->extended) > 0)
727 FD_SET(c->efd, writeset);
728 else if (c->extended_usage == CHAN_EXTENDED_READ &&
729 buffer_len(&c->extended) < c->remote_window)
730 FD_SET(c->efd, readset);
731 }
732}
733
Ben Lindstrombba81212001-06-25 05:01:22 +0000734static void
Damien Millerb38eff82000-04-01 11:09:21 +1000735channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
736{
737 if (buffer_len(&c->input) == 0) {
738 packet_start(SSH_MSG_CHANNEL_CLOSE);
739 packet_put_int(c->remote_id);
740 packet_send();
741 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000742 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000743 }
744}
745
Ben Lindstrombba81212001-06-25 05:01:22 +0000746static void
Damien Millerb38eff82000-04-01 11:09:21 +1000747channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
748{
749 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000750 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000751 else
Damien Millerb38eff82000-04-01 11:09:21 +1000752 FD_SET(c->sock, writeset);
753}
754
755/*
756 * This is a special state for X11 authentication spoofing. An opened X11
757 * connection (when authentication spoofing is being done) remains in this
758 * state until the first packet has been completely read. The authentication
759 * data in that packet is then substituted by the real data if it matches the
760 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000761 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000763 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000764static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000766{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000767 u_char *ucp;
768 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000769
770 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000772 return 0;
773
774 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100775 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000776 if (ucp[0] == 0x42) { /* Byte order MSB first. */
777 proto_len = 256 * ucp[6] + ucp[7];
778 data_len = 256 * ucp[8] + ucp[9];
779 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
780 proto_len = ucp[6] + 256 * ucp[7];
781 data_len = ucp[8] + 256 * ucp[9];
782 } else {
783 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100784 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000785 return -1;
786 }
787
788 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000790 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
791 return 0;
792
793 /* Check if authentication protocol matches. */
794 if (proto_len != strlen(x11_saved_proto) ||
795 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
796 debug("X11 connection uses different authentication protocol.");
797 return -1;
798 }
799 /* Check if authentication data matches our fake data. */
800 if (data_len != x11_fake_data_len ||
801 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
802 x11_fake_data, x11_fake_data_len) != 0) {
803 debug("X11 auth data does not match fake data.");
804 return -1;
805 }
806 /* Check fake data length */
807 if (x11_fake_data_len != x11_saved_data_len) {
808 error("X11 fake_data_len %d != saved_data_len %d",
809 x11_fake_data_len, x11_saved_data_len);
810 return -1;
811 }
812 /*
813 * Received authentication protocol and data match
814 * our fake data. Substitute the fake data with real
815 * data.
816 */
817 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
818 x11_saved_data, x11_saved_data_len);
819 return 1;
820}
821
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Millerb38eff82000-04-01 11:09:21 +1000823channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
824{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000825 int ret = x11_open_helper(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000826 if (ret == 1) {
827 /* Start normal processing for the channel. */
828 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000829 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000830 } else if (ret == -1) {
831 /*
832 * We have received an X11 connection that has bad
833 * authentication information.
834 */
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000835 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000836 buffer_clear(&c->input);
837 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000838 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000839 c->sock = -1;
840 c->type = SSH_CHANNEL_CLOSED;
841 packet_start(SSH_MSG_CHANNEL_CLOSE);
842 packet_put_int(c->remote_id);
843 packet_send();
844 }
845}
846
Ben Lindstrombba81212001-06-25 05:01:22 +0000847static void
Damien Millerbd483e72000-04-30 10:00:53 +1000848channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000849{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000850 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000851
852 /* c->force_drain = 1; */
853
Damien Millerb38eff82000-04-01 11:09:21 +1000854 if (ret == 1) {
855 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100856 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000857 } else if (ret == -1) {
Damien Millera90fc082002-01-22 23:19:38 +1100858 log("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000859 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100860 chan_read_failed(c);
861 buffer_clear(&c->input);
862 chan_ibuf_empty(c);
863 buffer_clear(&c->output);
864 /* for proto v1, the peer will send an IEOF */
865 if (compat20)
866 chan_write_failed(c);
867 else
868 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000869 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
870 }
871}
872
Ben Lindstromb3921512001-04-11 15:57:50 +0000873/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000874static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000875channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000876{
877 u_char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000878 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100879 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000880 struct {
881 u_int8_t version;
882 u_int8_t command;
883 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000884 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000885 } s4_req, s4_rsp;
886
Ben Lindstromb3921512001-04-11 15:57:50 +0000887 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000888
889 have = buffer_len(&c->input);
890 len = sizeof(s4_req);
891 if (have < len)
892 return 0;
893 p = buffer_ptr(&c->input);
894 for (found = 0, i = len; i < have; i++) {
895 if (p[i] == '\0') {
896 found = 1;
897 break;
898 }
899 if (i > 1024) {
900 /* the peer is probably sending garbage */
901 debug("channel %d: decode socks4: too long",
902 c->self);
903 return -1;
904 }
905 }
906 if (!found)
907 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000908 buffer_get(&c->input, (char *)&s4_req.version, 1);
909 buffer_get(&c->input, (char *)&s4_req.command, 1);
910 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000911 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000912 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000913 p = buffer_ptr(&c->input);
914 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000915 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000916 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000917 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000918 c->self, len, have);
919 strlcpy(username, p, sizeof(username));
920 buffer_consume(&c->input, len);
921 buffer_consume(&c->input, 1); /* trailing '\0' */
922
Ben Lindstromb3921512001-04-11 15:57:50 +0000923 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000924 strlcpy(c->path, host, sizeof(c->path));
925 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100926
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000927 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
928 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000929
Ben Lindstromb3921512001-04-11 15:57:50 +0000930 if (s4_req.command != 1) {
931 debug("channel %d: cannot handle: socks4 cn %d",
932 c->self, s4_req.command);
933 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000934 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000935 s4_rsp.version = 0; /* vn: 0 for reply */
936 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000937 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000938 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000939 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000940 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000941}
942
Ben Lindstromb3921512001-04-11 15:57:50 +0000943/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000944static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000945channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
946{
947 u_char *p;
948 int have, ret;
949
950 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000951 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000952 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000953 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000954 /* check if the fixed size part of the packet is in buffer. */
955 if (have < 4) {
956 /* need more */
957 FD_SET(c->sock, readset);
958 return;
959 }
960 /* try to guess the protocol */
961 p = buffer_ptr(&c->input);
962 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000963 case 0x04:
964 ret = channel_decode_socks4(c, readset, writeset);
965 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000966 default:
967 ret = -1;
968 break;
969 }
970 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000971 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000972 } else if (ret == 0) {
973 debug2("channel %d: pre_dynamic: need more", c->self);
974 /* need more */
975 FD_SET(c->sock, readset);
976 } else {
977 /* switch to the next state */
978 c->type = SSH_CHANNEL_OPENING;
979 port_open_helper(c, "direct-tcpip");
980 }
981}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000982
Damien Millerb38eff82000-04-01 11:09:21 +1000983/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000984static void
Damien Millerb38eff82000-04-01 11:09:21 +1000985channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
986{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000987 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000988 struct sockaddr addr;
Ben Lindstrom73f57be2001-12-07 17:28:34 +0000989 int newsock, on = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000990 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100991 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000992 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000993
994 if (FD_ISSET(c->sock, readset)) {
995 debug("X11 connection requested.");
996 addrlen = sizeof(addr);
997 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100998 if (c->single_connection) {
999 debug("single_connection: closing X11 listener.");
1000 channel_close_fd(&c->sock);
1001 chan_mark_dead(c);
1002 }
Damien Millerb38eff82000-04-01 11:09:21 +10001003 if (newsock < 0) {
1004 error("accept: %.100s", strerror(errno));
1005 return;
1006 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00001007 if (setsockopt(newsock, IPPROTO_TCP, TCP_NODELAY, &on,
1008 sizeof on) == -1)
1009 error("setsockopt TCP_NODELAY: %.100s",
1010 strerror(errno));
Damien Millerd83ff352001-01-30 09:19:34 +11001011 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001012 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001013 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001014 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001015
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001016 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001017 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1018 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +11001019 0, xstrdup(buf), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001020 if (nc == NULL) {
1021 close(newsock);
1022 xfree(remote_ipaddr);
1023 return;
1024 }
Damien Millerbd483e72000-04-30 10:00:53 +10001025 if (compat20) {
1026 packet_start(SSH2_MSG_CHANNEL_OPEN);
1027 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001028 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001029 packet_put_int(nc->local_window_max);
1030 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001031 /* originator ipaddr and port */
1032 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001033 if (datafellows & SSH_BUG_X11FWD) {
1034 debug("ssh2 x11 bug compat mode");
1035 } else {
1036 packet_put_int(remote_port);
1037 }
Damien Millerbd483e72000-04-30 10:00:53 +10001038 packet_send();
1039 } else {
1040 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001041 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001042 if (packet_get_protocol_flags() &
1043 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001044 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001045 packet_send();
1046 }
Damien Millerd83ff352001-01-30 09:19:34 +11001047 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001048 }
1049}
1050
Ben Lindstrombba81212001-06-25 05:01:22 +00001051static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001052port_open_helper(Channel *c, char *rtype)
1053{
1054 int direct;
1055 char buf[1024];
1056 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1057 u_short remote_port = get_peer_port(c->sock);
1058
1059 direct = (strcmp(rtype, "direct-tcpip") == 0);
1060
1061 snprintf(buf, sizeof buf,
1062 "%s: listening port %d for %.100s port %d, "
1063 "connect from %.200s port %d",
1064 rtype, c->listening_port, c->path, c->host_port,
1065 remote_ipaddr, remote_port);
1066
1067 xfree(c->remote_name);
1068 c->remote_name = xstrdup(buf);
1069
1070 if (compat20) {
1071 packet_start(SSH2_MSG_CHANNEL_OPEN);
1072 packet_put_cstring(rtype);
1073 packet_put_int(c->self);
1074 packet_put_int(c->local_window_max);
1075 packet_put_int(c->local_maxpacket);
1076 if (direct) {
1077 /* target host, port */
1078 packet_put_cstring(c->path);
1079 packet_put_int(c->host_port);
1080 } else {
1081 /* listen address, port */
1082 packet_put_cstring(c->path);
1083 packet_put_int(c->listening_port);
1084 }
1085 /* originator host and port */
1086 packet_put_cstring(remote_ipaddr);
1087 packet_put_int(remote_port);
1088 packet_send();
1089 } else {
1090 packet_start(SSH_MSG_PORT_OPEN);
1091 packet_put_int(c->self);
1092 packet_put_cstring(c->path);
1093 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001094 if (packet_get_protocol_flags() &
1095 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001096 packet_put_cstring(c->remote_name);
1097 packet_send();
1098 }
1099 xfree(remote_ipaddr);
1100}
1101
Damien Millerb38eff82000-04-01 11:09:21 +10001102/*
1103 * This socket is listening for connections to a forwarded TCP/IP port.
1104 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001105static void
Damien Millerb38eff82000-04-01 11:09:21 +10001106channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1107{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001109 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001110 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001111 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001112 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001113
Damien Millerb38eff82000-04-01 11:09:21 +10001114 if (FD_ISSET(c->sock, readset)) {
1115 debug("Connection to port %d forwarding "
1116 "to %.100s port %d requested.",
1117 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001118
Damien Miller4623a752001-10-10 15:03:58 +10001119 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1120 nextstate = SSH_CHANNEL_OPENING;
1121 rtype = "forwarded-tcpip";
1122 } else {
1123 if (c->host_port == 0) {
1124 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001125 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001126 } else {
1127 nextstate = SSH_CHANNEL_OPENING;
1128 rtype = "direct-tcpip";
1129 }
1130 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001131
Damien Millerb38eff82000-04-01 11:09:21 +10001132 addrlen = sizeof(addr);
1133 newsock = accept(c->sock, &addr, &addrlen);
1134 if (newsock < 0) {
1135 error("accept: %.100s", strerror(errno));
1136 return;
1137 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001138 nc = channel_new(rtype,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001139 nextstate, newsock, newsock, -1,
Damien Millerb38eff82000-04-01 11:09:21 +10001140 c->local_window_max, c->local_maxpacket,
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001141 0, xstrdup(rtype), 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001142 if (nc == NULL) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001143 error("channel_post_port_listener: no new channel:");
1144 close(newsock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001145 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001146 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001147 nc->listening_port = c->listening_port;
1148 nc->host_port = c->host_port;
1149 strlcpy(nc->path, c->path, sizeof(nc->path));
1150
Damien Miller4623a752001-10-10 15:03:58 +10001151 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1152 /*
1153 * do not call the channel_post handler until
1154 * this flag has been reset by a pre-handler.
1155 * otherwise the FD_ISSET calls might overflow
1156 */
1157 nc->delayed = 1;
1158 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001159 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001160 }
Damien Millerb38eff82000-04-01 11:09:21 +10001161 }
1162}
1163
1164/*
1165 * This is the authentication agent socket listening for connections from
1166 * clients.
1167 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001168static void
Damien Millerb38eff82000-04-01 11:09:21 +10001169channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1170{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001171 Channel *nc;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001172 char *name;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001173 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001174 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001175 socklen_t addrlen;
1176
1177 if (FD_ISSET(c->sock, readset)) {
1178 addrlen = sizeof(addr);
1179 newsock = accept(c->sock, &addr, &addrlen);
1180 if (newsock < 0) {
1181 error("accept from auth socket: %.100s", strerror(errno));
1182 return;
1183 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001184 name = xstrdup("accepted auth socket");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001185 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001186 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1187 c->local_window_max, c->local_maxpacket,
Ben Lindstrome9c99912001-06-09 00:41:05 +00001188 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001189 if (nc == NULL) {
1190 error("channel_post_auth_listener: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00001191 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001192 close(newsock);
1193 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001194 if (compat20) {
1195 packet_start(SSH2_MSG_CHANNEL_OPEN);
1196 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001197 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001198 packet_put_int(c->local_window_max);
1199 packet_put_int(c->local_maxpacket);
1200 } else {
1201 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001202 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001203 }
Damien Millerb38eff82000-04-01 11:09:21 +10001204 packet_send();
1205 }
1206}
1207
Ben Lindstrombba81212001-06-25 05:01:22 +00001208static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001209channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1210{
Ben Lindstrom69128662001-05-08 20:07:39 +00001211 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001212 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001213
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001214 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001215 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
1216 &sz) < 0) {
1217 err = errno;
1218 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001219 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001220 if (err == 0) {
1221 debug("channel %d: connected", c->self);
1222 c->type = SSH_CHANNEL_OPEN;
1223 if (compat20) {
1224 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1225 packet_put_int(c->remote_id);
1226 packet_put_int(c->self);
1227 packet_put_int(c->local_window);
1228 packet_put_int(c->local_maxpacket);
1229 } else {
1230 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1231 packet_put_int(c->remote_id);
1232 packet_put_int(c->self);
1233 }
1234 } else {
1235 debug("channel %d: not connected: %s",
1236 c->self, strerror(err));
1237 if (compat20) {
1238 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1239 packet_put_int(c->remote_id);
1240 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1241 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1242 packet_put_cstring(strerror(err));
1243 packet_put_cstring("");
1244 }
1245 } else {
1246 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1247 packet_put_int(c->remote_id);
1248 }
1249 chan_mark_dead(c);
1250 }
1251 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001252 }
1253}
1254
Ben Lindstrombba81212001-06-25 05:01:22 +00001255static int
Damien Millerb38eff82000-04-01 11:09:21 +10001256channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1257{
1258 char buf[16*1024];
1259 int len;
1260
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001261 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001262 FD_ISSET(c->rfd, readset)) {
1263 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001264 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1265 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001266 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001267 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001268 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001269 if (c->type != SSH_CHANNEL_OPEN) {
1270 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001271 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001272 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001273 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001274 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001275 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001276 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001277 } else {
1278 chan_read_failed(c);
1279 }
1280 return -1;
1281 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001282 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001283 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001284 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001285 chan_read_failed(c);
1286 }
1287 } else {
1288 buffer_append(&c->input, buf, len);
1289 }
Damien Millerb38eff82000-04-01 11:09:21 +10001290 }
1291 return 1;
1292}
Ben Lindstrombba81212001-06-25 05:01:22 +00001293static int
Damien Millerb38eff82000-04-01 11:09:21 +10001294channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1295{
Ben Lindstrome229b252001-03-05 06:28:06 +00001296 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001297 u_char *data;
1298 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001299 int len;
1300
1301 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001302 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001303 FD_ISSET(c->wfd, writeset) &&
1304 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001305 data = buffer_ptr(&c->output);
1306 dlen = buffer_len(&c->output);
1307 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001308 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1309 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001310 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001311 if (c->type != SSH_CHANNEL_OPEN) {
1312 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001313 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001314 return -1;
1315 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001316 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001317 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001318 c->type = SSH_CHANNEL_INPUT_DRAINING;
1319 } else {
1320 chan_write_failed(c);
1321 }
1322 return -1;
1323 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001324 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001325 if (tcgetattr(c->wfd, &tio) == 0 &&
1326 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1327 /*
1328 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001329 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001330 * size of a SSH2_MSG_CHANNEL_DATA message
1331 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001332 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001333 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001334 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001335 }
1336 }
Damien Millerb38eff82000-04-01 11:09:21 +10001337 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001338 if (compat20 && len > 0) {
1339 c->local_consumed += len;
1340 }
1341 }
1342 return 1;
1343}
Ben Lindstrombba81212001-06-25 05:01:22 +00001344static int
Damien Miller33b13562000-04-04 14:38:59 +10001345channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1346{
1347 char buf[16*1024];
1348 int len;
1349
Damien Miller1383bd82000-04-06 12:32:37 +10001350/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001351 if (c->efd != -1) {
1352 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1353 FD_ISSET(c->efd, writeset) &&
1354 buffer_len(&c->extended) > 0) {
1355 len = write(c->efd, buffer_ptr(&c->extended),
1356 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001357 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001358 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001359 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1360 return 1;
1361 if (len <= 0) {
1362 debug2("channel %d: closing write-efd %d",
1363 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001364 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001365 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001366 buffer_consume(&c->extended, len);
1367 c->local_consumed += len;
1368 }
1369 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1370 FD_ISSET(c->efd, readset)) {
1371 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001372 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001373 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001374 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1375 return 1;
1376 if (len <= 0) {
1377 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001378 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001379 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001380 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001381 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001382 }
Damien Miller33b13562000-04-04 14:38:59 +10001383 }
1384 }
1385 return 1;
1386}
Ben Lindstrombba81212001-06-25 05:01:22 +00001387static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001388channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001389{
Ben Lindstromb3921512001-04-11 15:57:50 +00001390 if (c->type == SSH_CHANNEL_OPEN &&
1391 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001392 c->local_window < c->local_window_max/2 &&
1393 c->local_consumed > 0) {
1394 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1395 packet_put_int(c->remote_id);
1396 packet_put_int(c->local_consumed);
1397 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001398 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001399 c->self, c->local_window,
1400 c->local_consumed);
1401 c->local_window += c->local_consumed;
1402 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001403 }
1404 return 1;
1405}
1406
Ben Lindstrombba81212001-06-25 05:01:22 +00001407static void
Damien Millerde6987c2002-01-22 23:20:40 +11001408channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001409{
Damien Miller4623a752001-10-10 15:03:58 +10001410 if (c->delayed)
1411 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001412 channel_handle_rfd(c, readset, writeset);
1413 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001414 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001415 return;
Damien Miller33b13562000-04-04 14:38:59 +10001416 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001417 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001418}
1419
Ben Lindstrombba81212001-06-25 05:01:22 +00001420static void
Damien Millerb38eff82000-04-01 11:09:21 +10001421channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1422{
1423 int len;
1424 /* Send buffered output data to the socket. */
1425 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1426 len = write(c->sock, buffer_ptr(&c->output),
1427 buffer_len(&c->output));
1428 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001429 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001430 else
1431 buffer_consume(&c->output, len);
1432 }
1433}
1434
Ben Lindstrombba81212001-06-25 05:01:22 +00001435static void
Damien Miller33b13562000-04-04 14:38:59 +10001436channel_handler_init_20(void)
1437{
Damien Millerde6987c2002-01-22 23:20:40 +11001438 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001439 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001440 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001441 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001442 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001443 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001444 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001445 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001446
Damien Millerde6987c2002-01-22 23:20:40 +11001447 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001448 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001449 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001450 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001451 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001452 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001453 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001454}
1455
Ben Lindstrombba81212001-06-25 05:01:22 +00001456static void
Damien Millerb38eff82000-04-01 11:09:21 +10001457channel_handler_init_13(void)
1458{
1459 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1460 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1461 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1462 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1463 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1464 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1465 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001466 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001467 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001468
Damien Millerde6987c2002-01-22 23:20:40 +11001469 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001470 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1471 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1472 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1473 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001474 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001475 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001476}
1477
Ben Lindstrombba81212001-06-25 05:01:22 +00001478static void
Damien Millerb38eff82000-04-01 11:09:21 +10001479channel_handler_init_15(void)
1480{
Damien Millerde6987c2002-01-22 23:20:40 +11001481 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001482 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001483 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1484 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1485 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001486 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001487 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001488
1489 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1490 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1491 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001492 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001493 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001494 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001495}
1496
Ben Lindstrombba81212001-06-25 05:01:22 +00001497static void
Damien Millerb38eff82000-04-01 11:09:21 +10001498channel_handler_init(void)
1499{
1500 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001501 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001502 channel_pre[i] = NULL;
1503 channel_post[i] = NULL;
1504 }
Damien Miller33b13562000-04-04 14:38:59 +10001505 if (compat20)
1506 channel_handler_init_20();
1507 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001508 channel_handler_init_13();
1509 else
1510 channel_handler_init_15();
1511}
1512
Damien Miller3ec27592001-10-12 11:35:04 +10001513/* gc dead channels */
1514static void
1515channel_garbage_collect(Channel *c)
1516{
1517 if (c == NULL)
1518 return;
1519 if (c->detach_user != NULL) {
1520 if (!chan_is_dead(c, 0))
1521 return;
1522 debug("channel %d: gc: notify user", c->self);
1523 c->detach_user(c->self, NULL);
1524 /* if we still have a callback */
1525 if (c->detach_user != NULL)
1526 return;
1527 debug("channel %d: gc: user detached", c->self);
1528 }
1529 if (!chan_is_dead(c, 1))
1530 return;
1531 debug("channel %d: garbage collecting", c->self);
1532 channel_free(c);
1533}
1534
Ben Lindstrombba81212001-06-25 05:01:22 +00001535static void
Damien Millerb38eff82000-04-01 11:09:21 +10001536channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1537{
1538 static int did_init = 0;
1539 int i;
1540 Channel *c;
1541
1542 if (!did_init) {
1543 channel_handler_init();
1544 did_init = 1;
1545 }
1546 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001547 c = channels[i];
1548 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001549 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001550 if (ftab[c->type] != NULL)
1551 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001552 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001553 }
1554}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001555
Ben Lindstrome9c99912001-06-09 00:41:05 +00001556/*
1557 * Allocate/update select bitmasks and add any bits relevant to channels in
1558 * select bitmasks.
1559 */
Damien Miller4af51302000-04-16 11:18:38 +10001560void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001561channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001562 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563{
Damien Miller5e953212001-01-30 09:14:00 +11001564 int n;
1565 u_int sz;
1566
1567 n = MAX(*maxfdp, channel_max_fd);
1568
1569 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001570 /* perhaps check sz < nalloc/2 and shrink? */
1571 if (*readsetp == NULL || sz > *nallocp) {
1572 *readsetp = xrealloc(*readsetp, sz);
1573 *writesetp = xrealloc(*writesetp, sz);
1574 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001575 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001576 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001577 memset(*readsetp, 0, sz);
1578 memset(*writesetp, 0, sz);
1579
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001580 if (!rekeying)
1581 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582}
1583
Ben Lindstrome9c99912001-06-09 00:41:05 +00001584/*
1585 * After select, perform any appropriate operations for channels which have
1586 * events pending.
1587 */
Damien Miller4af51302000-04-16 11:18:38 +10001588void
Damien Miller95def091999-11-25 00:26:21 +11001589channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001590{
Damien Millerb38eff82000-04-01 11:09:21 +10001591 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001592}
1593
Ben Lindstrome9c99912001-06-09 00:41:05 +00001594
Damien Miller5e953212001-01-30 09:14:00 +11001595/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001596
Damien Miller4af51302000-04-16 11:18:38 +10001597void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001598channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599{
Damien Miller95def091999-11-25 00:26:21 +11001600 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +10001601 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001602
Damien Miller95def091999-11-25 00:26:21 +11001603 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001604 c = channels[i];
1605 if (c == NULL)
1606 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001607
Ben Lindstrome9c99912001-06-09 00:41:05 +00001608 /*
1609 * We are only interested in channels that can have buffered
1610 * incoming data.
1611 */
Damien Miller34132e52000-01-14 15:45:46 +11001612 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001613 if (c->type != SSH_CHANNEL_OPEN &&
1614 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001615 continue;
1616 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001617 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001618 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001619 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001620 if (compat20 &&
1621 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001622 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001623 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001624 continue;
1625 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001626
Damien Miller95def091999-11-25 00:26:21 +11001627 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001628 if ((c->istate == CHAN_INPUT_OPEN ||
1629 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1630 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001631 /*
1632 * Send some data for the other side over the secure
1633 * connection.
1634 */
Damien Miller33b13562000-04-04 14:38:59 +10001635 if (compat20) {
1636 if (len > c->remote_window)
1637 len = c->remote_window;
1638 if (len > c->remote_maxpacket)
1639 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001640 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001641 if (packet_is_interactive()) {
1642 if (len > 1024)
1643 len = 512;
1644 } else {
1645 /* Keep the packets at reasonable size. */
1646 if (len > packet_get_maxsize()/2)
1647 len = packet_get_maxsize()/2;
1648 }
Damien Miller95def091999-11-25 00:26:21 +11001649 }
Damien Millerb38eff82000-04-01 11:09:21 +10001650 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001651 packet_start(compat20 ?
1652 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001653 packet_put_int(c->remote_id);
1654 packet_put_string(buffer_ptr(&c->input), len);
1655 packet_send();
1656 buffer_consume(&c->input, len);
1657 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001658 }
1659 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001660 if (compat13)
1661 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001662 /*
1663 * input-buffer is empty and read-socket shutdown:
1664 * tell peer, that we will not send more data: send IEOF
1665 */
Damien Millerb38eff82000-04-01 11:09:21 +10001666 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001667 }
Damien Miller33b13562000-04-04 14:38:59 +10001668 /* Send extended data, i.e. stderr */
1669 if (compat20 &&
1670 c->remote_window > 0 &&
1671 (len = buffer_len(&c->extended)) > 0 &&
1672 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001673 debug2("channel %d: rwin %d elen %d euse %d",
1674 c->self, c->remote_window, buffer_len(&c->extended),
1675 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001676 if (len > c->remote_window)
1677 len = c->remote_window;
1678 if (len > c->remote_maxpacket)
1679 len = c->remote_maxpacket;
1680 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1681 packet_put_int(c->remote_id);
1682 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1683 packet_put_string(buffer_ptr(&c->extended), len);
1684 packet_send();
1685 buffer_consume(&c->extended, len);
1686 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001687 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001688 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001690}
1691
Ben Lindstrome9c99912001-06-09 00:41:05 +00001692
1693/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001694
Damien Miller4af51302000-04-16 11:18:38 +10001695void
Damien Miller630d6f42002-01-22 23:17:30 +11001696channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001697{
Damien Miller34132e52000-01-14 15:45:46 +11001698 int id;
Damien Miller95def091999-11-25 00:26:21 +11001699 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001700 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001701 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001702
Damien Miller95def091999-11-25 00:26:21 +11001703 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001704 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001705 c = channel_lookup(id);
1706 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001707 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001708
Damien Miller95def091999-11-25 00:26:21 +11001709 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001710 if (c->type != SSH_CHANNEL_OPEN &&
1711 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001712 return;
1713
1714 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001715 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001716 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001717
Damien Miller95def091999-11-25 00:26:21 +11001718 /* Get the data. */
1719 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001720
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001721 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001722 if (data_len > c->local_maxpacket) {
1723 log("channel %d: rcvd big packet %d, maxpack %d",
1724 c->self, data_len, c->local_maxpacket);
1725 }
1726 if (data_len > c->local_window) {
1727 log("channel %d: rcvd too much data %d, win %d",
1728 c->self, data_len, c->local_window);
1729 xfree(data);
1730 return;
1731 }
1732 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001733 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001734 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001735 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001736 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001737}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001738
Damien Miller4af51302000-04-16 11:18:38 +10001739void
Damien Miller630d6f42002-01-22 23:17:30 +11001740channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001741{
1742 int id;
1743 int tcode;
1744 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001745 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001746 Channel *c;
1747
1748 /* Get the channel number and verify it. */
1749 id = packet_get_int();
1750 c = channel_lookup(id);
1751
1752 if (c == NULL)
1753 packet_disconnect("Received extended_data for bad channel %d.", id);
1754 if (c->type != SSH_CHANNEL_OPEN) {
1755 log("channel %d: ext data for non open", id);
1756 return;
1757 }
1758 tcode = packet_get_int();
1759 if (c->efd == -1 ||
1760 c->extended_usage != CHAN_EXTENDED_WRITE ||
1761 tcode != SSH2_EXTENDED_DATA_STDERR) {
1762 log("channel %d: bad ext data", c->self);
1763 return;
1764 }
1765 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001766 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001767 if (data_len > c->local_window) {
1768 log("channel %d: rcvd too much extended_data %d, win %d",
1769 c->self, data_len, c->local_window);
1770 xfree(data);
1771 return;
1772 }
Damien Millerd3444942000-09-30 14:20:03 +11001773 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001774 c->local_window -= data_len;
1775 buffer_append(&c->extended, data, data_len);
1776 xfree(data);
1777}
1778
Damien Miller4af51302000-04-16 11:18:38 +10001779void
Damien Miller630d6f42002-01-22 23:17:30 +11001780channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001781{
1782 int id;
1783 Channel *c;
1784
Damien Millerb38eff82000-04-01 11:09:21 +10001785 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001786 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001787 c = channel_lookup(id);
1788 if (c == NULL)
1789 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1790 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001791
1792 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001793 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001794 debug("channel %d: FORCE input drain", c->self);
1795 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11001796 if (buffer_len(&c->input) == 0)
1797 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001798 }
1799
Damien Millerb38eff82000-04-01 11:09:21 +10001800}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001801
Damien Miller4af51302000-04-16 11:18:38 +10001802void
Damien Miller630d6f42002-01-22 23:17:30 +11001803channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001804{
Damien Millerb38eff82000-04-01 11:09:21 +10001805 int id;
1806 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001807
Damien Millerb38eff82000-04-01 11:09:21 +10001808 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001809 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001810 c = channel_lookup(id);
1811 if (c == NULL)
1812 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001813
1814 /*
1815 * Send a confirmation that we have closed the channel and no more
1816 * data is coming for it.
1817 */
Damien Miller95def091999-11-25 00:26:21 +11001818 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001819 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001820 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001821
Damien Miller5428f641999-11-25 11:54:57 +11001822 /*
1823 * If the channel is in closed state, we have sent a close request,
1824 * and the other side will eventually respond with a confirmation.
1825 * Thus, we cannot free the channel here, because then there would be
1826 * no-one to receive the confirmation. The channel gets freed when
1827 * the confirmation arrives.
1828 */
Damien Millerb38eff82000-04-01 11:09:21 +10001829 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001830 /*
1831 * Not a closed channel - mark it as draining, which will
1832 * cause it to be freed later.
1833 */
Damien Miller76765c02002-01-22 23:21:15 +11001834 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001835 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001836 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001837}
1838
Damien Millerb38eff82000-04-01 11:09:21 +10001839/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001840void
Damien Miller630d6f42002-01-22 23:17:30 +11001841channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001842{
Damien Millerb38eff82000-04-01 11:09:21 +10001843 int id = packet_get_int();
1844 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001845
Damien Miller48b03fc2002-01-22 23:11:40 +11001846 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001847 if (c == NULL)
1848 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1849 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001850}
1851
Damien Miller4af51302000-04-16 11:18:38 +10001852void
Damien Miller630d6f42002-01-22 23:17:30 +11001853channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001854{
1855 int id = packet_get_int();
1856 Channel *c = channel_lookup(id);
1857
Damien Miller48b03fc2002-01-22 23:11:40 +11001858 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001859 if (c == NULL)
1860 packet_disconnect("Received close confirmation for "
1861 "out-of-range channel %d.", id);
1862 if (c->type != SSH_CHANNEL_CLOSED)
1863 packet_disconnect("Received close confirmation for "
1864 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001865 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001866}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001867
Damien Miller4af51302000-04-16 11:18:38 +10001868void
Damien Miller630d6f42002-01-22 23:17:30 +11001869channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001870{
Damien Millerb38eff82000-04-01 11:09:21 +10001871 int id, remote_id;
1872 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001873
Damien Millerb38eff82000-04-01 11:09:21 +10001874 id = packet_get_int();
1875 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001876
Damien Millerb38eff82000-04-01 11:09:21 +10001877 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1878 packet_disconnect("Received open confirmation for "
1879 "non-opening channel %d.", id);
1880 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001881 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001882 c->remote_id = remote_id;
1883 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001884
1885 if (compat20) {
1886 c->remote_window = packet_get_int();
1887 c->remote_maxpacket = packet_get_int();
1888 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001889 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001890 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001891 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001892 }
1893 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1894 c->remote_window, c->remote_maxpacket);
1895 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001896 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001897}
1898
Ben Lindstrombba81212001-06-25 05:01:22 +00001899static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001900reason2txt(int reason)
1901{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001902 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001903 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1904 return "administratively prohibited";
1905 case SSH2_OPEN_CONNECT_FAILED:
1906 return "connect failed";
1907 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1908 return "unknown channel type";
1909 case SSH2_OPEN_RESOURCE_SHORTAGE:
1910 return "resource shortage";
1911 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001912 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001913}
1914
Damien Miller4af51302000-04-16 11:18:38 +10001915void
Damien Miller630d6f42002-01-22 23:17:30 +11001916channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001917{
Kevin Steves12057502001-02-05 14:54:34 +00001918 int id, reason;
1919 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001920 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001921
Damien Millerb38eff82000-04-01 11:09:21 +10001922 id = packet_get_int();
1923 c = channel_lookup(id);
1924
1925 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1926 packet_disconnect("Received open failure for "
1927 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001928 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001929 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001930 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001931 msg = packet_get_string(NULL);
1932 lang = packet_get_string(NULL);
1933 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001934 log("channel %d: open failed: %s%s%s", id,
1935 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001936 if (msg != NULL)
1937 xfree(msg);
1938 if (lang != NULL)
1939 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001940 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001941 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001942 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001943 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001944}
1945
Damien Miller33b13562000-04-04 14:38:59 +10001946void
Damien Miller630d6f42002-01-22 23:17:30 +11001947channel_input_channel_request(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001948{
1949 int id;
1950 Channel *c;
1951
1952 id = packet_get_int();
1953 c = channel_lookup(id);
1954
1955 if (c == NULL ||
1956 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1957 packet_disconnect("Received request for "
1958 "non-open channel %d.", id);
1959 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001960 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001961 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001962 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001963 } else {
1964 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001965 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001966 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001967 xfree(service);
1968 }
1969}
1970
Damien Miller4af51302000-04-16 11:18:38 +10001971void
Damien Miller630d6f42002-01-22 23:17:30 +11001972channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001973{
1974 Channel *c;
1975 int id, adjust;
1976
1977 if (!compat20)
1978 return;
1979
1980 /* Get the channel number and verify it. */
1981 id = packet_get_int();
1982 c = channel_lookup(id);
1983
1984 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1985 log("Received window adjust for "
1986 "non-open channel %d.", id);
1987 return;
1988 }
1989 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001990 packet_check_eom();
Damien Millerd3444942000-09-30 14:20:03 +11001991 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001992 c->remote_window += adjust;
1993}
1994
Damien Miller4af51302000-04-16 11:18:38 +10001995void
Damien Miller630d6f42002-01-22 23:17:30 +11001996channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001997{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001998 Channel *c = NULL;
1999 u_short host_port;
2000 char *host, *originator_string;
2001 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002002
Ben Lindstrome9c99912001-06-09 00:41:05 +00002003 remote_id = packet_get_int();
2004 host = packet_get_string(NULL);
2005 host_port = packet_get_int();
2006
2007 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2008 originator_string = packet_get_string(NULL);
2009 } else {
2010 originator_string = xstrdup("unknown (remote did not supply name)");
2011 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002012 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002013 sock = channel_connect_to(host, host_port);
2014 if (sock != -1) {
2015 c = channel_new("connected socket",
2016 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2017 originator_string, 1);
2018 if (c == NULL) {
2019 error("channel_input_port_open: channel_new failed");
2020 close(sock);
2021 } else {
2022 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11002023 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002024 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002025 if (c == NULL) {
2026 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2027 packet_put_int(remote_id);
2028 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002029 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002030 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002031}
2032
2033
Ben Lindstrome9c99912001-06-09 00:41:05 +00002034/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002035
Ben Lindstrom908afed2001-10-03 17:34:59 +00002036void
2037channel_set_af(int af)
2038{
2039 IPv4or6 = af;
2040}
2041
Damien Millerb16461c2002-01-22 23:29:22 +11002042static int
2043channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2044 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002045{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002046 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11002047 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11002048 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002049 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11002050 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11002051 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002052
Kevin Steves12057502001-02-05 14:54:34 +00002053 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11002054 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2055 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00002056
Damien Millerb16461c2002-01-22 23:29:22 +11002057 if (host == NULL) {
2058 error("No forward host name.");
2059 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002060 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002061 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002062 error("Forward host name too long.");
2063 return success;
2064 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002065
Damien Miller5428f641999-11-25 11:54:57 +11002066 /*
Damien Miller34132e52000-01-14 15:45:46 +11002067 * getaddrinfo returns a loopback address if the hostname is
2068 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002069 */
Damien Miller34132e52000-01-14 15:45:46 +11002070 memset(&hints, 0, sizeof(hints));
2071 hints.ai_family = IPv4or6;
2072 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2073 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002074 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002075 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2076 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002077
Damien Miller34132e52000-01-14 15:45:46 +11002078 for (ai = aitop; ai; ai = ai->ai_next) {
2079 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2080 continue;
2081 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2082 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002083 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002084 continue;
2085 }
2086 /* Create a port to listen for the host. */
2087 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2088 if (sock < 0) {
2089 /* this is no error since kernel may not support ipv6 */
2090 verbose("socket: %.100s", strerror(errno));
2091 continue;
2092 }
2093 /*
2094 * Set socket options. We would like the socket to disappear
2095 * as soon as it has been closed for whatever reason.
2096 */
2097 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2098 linger.l_onoff = 1;
2099 linger.l_linger = 5;
2100 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2101 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002102
Damien Miller34132e52000-01-14 15:45:46 +11002103 /* Bind the socket to the address. */
2104 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2105 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002106 if (!ai->ai_next)
2107 error("bind: %.100s", strerror(errno));
2108 else
2109 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002110
Damien Miller34132e52000-01-14 15:45:46 +11002111 close(sock);
2112 continue;
2113 }
2114 /* Start listening for connections on the socket. */
2115 if (listen(sock, 5) < 0) {
2116 error("listen: %.100s", strerror(errno));
2117 close(sock);
2118 continue;
2119 }
2120 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002121 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002122 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002123 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002124 if (c == NULL) {
Damien Millerb16461c2002-01-22 23:29:22 +11002125 error("channel_setup_fwd_listener: channel_new failed");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002126 close(sock);
2127 continue;
2128 }
2129 strlcpy(c->path, host, sizeof(c->path));
2130 c->host_port = port_to_connect;
2131 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002132 success = 1;
2133 }
2134 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002135 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002136 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002137 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002138 return success;
Damien Miller95def091999-11-25 00:26:21 +11002139}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002140
Damien Millerb16461c2002-01-22 23:29:22 +11002141/* protocol local port fwd, used by ssh (and sshd in v1) */
2142int
2143channel_setup_local_fwd_listener(u_short listen_port,
2144 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2145{
2146 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2147 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2148}
2149
2150/* protocol v2 remote port fwd, used by sshd */
2151int
2152channel_setup_remote_fwd_listener(const char *listen_address,
2153 u_short listen_port, int gateway_ports)
2154{
2155 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2156 listen_address, listen_port, NULL, 0, gateway_ports);
2157}
2158
Damien Miller5428f641999-11-25 11:54:57 +11002159/*
2160 * Initiate forwarding of connections to port "port" on remote host through
2161 * the secure channel to host:port from local side.
2162 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
Damien Miller4af51302000-04-16 11:18:38 +10002164void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002165channel_request_remote_forwarding(u_short listen_port,
2166 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167{
Damien Millerdff50992002-01-22 23:16:32 +11002168 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002169
Damien Miller95def091999-11-25 00:26:21 +11002170 /* Record locally that connection to this host/port is permitted. */
2171 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2172 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173
Damien Miller95def091999-11-25 00:26:21 +11002174 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002175 if (compat20) {
2176 const char *address_to_bind = "0.0.0.0";
2177 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2178 packet_put_cstring("tcpip-forward");
2179 packet_put_char(0); /* boolean: want reply */
2180 packet_put_cstring(address_to_bind);
2181 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002182 packet_send();
2183 packet_write_wait();
2184 /* Assume that server accepts the request */
2185 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002186 } else {
2187 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002188 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002189 packet_put_cstring(host_to_connect);
2190 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002191 packet_send();
2192 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002193
2194 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002195 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002196 switch (type) {
2197 case SSH_SMSG_SUCCESS:
2198 success = 1;
2199 break;
2200 case SSH_SMSG_FAILURE:
2201 log("Warning: Server denied remote port forwarding.");
2202 break;
2203 default:
2204 /* Unknown packet */
2205 packet_disconnect("Protocol error for port forward request:"
2206 "received packet type %d.", type);
2207 }
2208 }
2209 if (success) {
2210 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2211 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2212 permitted_opens[num_permitted_opens].listen_port = listen_port;
2213 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002214 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002215}
2216
Damien Miller5428f641999-11-25 11:54:57 +11002217/*
2218 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2219 * listening for the port, and sends back a success reply (or disconnect
2220 * message if there was an error). This never returns if there was an error.
2221 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222
Damien Miller4af51302000-04-16 11:18:38 +10002223void
Damien Millere247cc42000-05-07 12:03:14 +10002224channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002225{
Damien Milleraae6c611999-12-06 11:47:28 +11002226 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002227 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002228
Damien Miller95def091999-11-25 00:26:21 +11002229 /* Get arguments from the packet. */
2230 port = packet_get_int();
2231 hostname = packet_get_string(NULL);
2232 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233
Damien Millerbac2d8a2000-09-05 16:13:06 +11002234#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002235 /*
2236 * Check that an unprivileged user is not trying to forward a
2237 * privileged port.
2238 */
Damien Miller95def091999-11-25 00:26:21 +11002239 if (port < IPPORT_RESERVED && !is_root)
2240 packet_disconnect("Requested forwarding of port %d but user is not root.",
2241 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002242#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002243 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002244 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002245
2246 /* Free the argument string. */
2247 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248}
2249
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002250/*
2251 * Permits opening to any host/port if permitted_opens[] is empty. This is
2252 * usually called by the server, because the user could connect to any port
2253 * anyway, and the server has no way to know but to trust the client anyway.
2254 */
2255void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002256channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002257{
2258 if (num_permitted_opens == 0)
2259 all_opens_permitted = 1;
2260}
2261
Ben Lindstroma3700052001-04-05 23:26:32 +00002262void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002263channel_add_permitted_opens(char *host, int port)
2264{
2265 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2266 fatal("channel_request_remote_forwarding: too many forwards");
2267 debug("allow port forwarding to host %s port %d", host, port);
2268
2269 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2270 permitted_opens[num_permitted_opens].port_to_connect = port;
2271 num_permitted_opens++;
2272
2273 all_opens_permitted = 0;
2274}
2275
Ben Lindstroma3700052001-04-05 23:26:32 +00002276void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002277channel_clear_permitted_opens(void)
2278{
2279 int i;
2280
2281 for (i = 0; i < num_permitted_opens; i++)
2282 xfree(permitted_opens[i].host_to_connect);
2283 num_permitted_opens = 0;
2284
2285}
2286
2287
2288/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002289static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002290connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002291{
Damien Miller34132e52000-01-14 15:45:46 +11002292 struct addrinfo hints, *ai, *aitop;
2293 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2294 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002295 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002296
Damien Miller34132e52000-01-14 15:45:46 +11002297 memset(&hints, 0, sizeof(hints));
2298 hints.ai_family = IPv4or6;
2299 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002300 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002301 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002302 error("connect_to %.100s: unknown host (%s)", host,
2303 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002304 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002305 }
Damien Miller34132e52000-01-14 15:45:46 +11002306 for (ai = aitop; ai; ai = ai->ai_next) {
2307 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2308 continue;
2309 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2310 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002311 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002312 continue;
2313 }
Damien Miller34132e52000-01-14 15:45:46 +11002314 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2315 if (sock < 0) {
2316 error("socket: %.100s", strerror(errno));
2317 continue;
2318 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002319 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002320 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002321 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2322 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002323 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002324 strerror(errno));
2325 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002326 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002327 }
2328 break; /* success */
2329
2330 }
2331 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002332 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002333 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002334 return -1;
2335 }
2336 /* success */
2337 return sock;
2338}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002339
Damien Miller0bc1bd82000-11-13 22:57:25 +11002340int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002341channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002342{
2343 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002344
Damien Miller0bc1bd82000-11-13 22:57:25 +11002345 for (i = 0; i < num_permitted_opens; i++)
2346 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002347 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002348 permitted_opens[i].host_to_connect,
2349 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002350 error("WARNING: Server requests forwarding for unknown listen_port %d",
2351 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002352 return -1;
2353}
Damien Millerb38eff82000-04-01 11:09:21 +10002354
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002355/* Check if connecting to that port is permitted and connect. */
2356int
2357channel_connect_to(const char *host, u_short port)
2358{
2359 int i, permit;
2360
2361 permit = all_opens_permitted;
2362 if (!permit) {
2363 for (i = 0; i < num_permitted_opens; i++)
2364 if (permitted_opens[i].port_to_connect == port &&
2365 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2366 permit = 1;
2367
2368 }
2369 if (!permit) {
2370 log("Received request to connect to host %.100s port %d, "
2371 "but the request was denied.", host, port);
2372 return -1;
2373 }
2374 return connect_to(host, port);
2375}
2376
Ben Lindstrome9c99912001-06-09 00:41:05 +00002377/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002378
Damien Miller5428f641999-11-25 11:54:57 +11002379/*
2380 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002381 * Returns a suitable display number for the DISPLAY variable, or -1 if
2382 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002383 */
Kevin Steves366298c2001-12-19 17:58:01 +00002384int
Damien Millere7378562001-12-21 14:58:35 +11002385x11_create_display_inet(int x11_display_offset, int gateway_ports,
2386 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002387{
Damien Millere7378562001-12-21 14:58:35 +11002388 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002389 int display_number, sock;
2390 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002391 struct addrinfo hints, *ai, *aitop;
2392 char strport[NI_MAXSERV];
2393 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002394
Damien Millera34a28b1999-12-14 10:47:15 +11002395 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002396 display_number < MAX_DISPLAYS;
2397 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002398 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002399 memset(&hints, 0, sizeof(hints));
2400 hints.ai_family = IPv4or6;
Kevin Steves366298c2001-12-19 17:58:01 +00002401 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002402 hints.ai_socktype = SOCK_STREAM;
2403 snprintf(strport, sizeof strport, "%d", port);
2404 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2405 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002406 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002407 }
Damien Miller34132e52000-01-14 15:45:46 +11002408 for (ai = aitop; ai; ai = ai->ai_next) {
2409 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2410 continue;
2411 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2412 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002413 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002414 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002415 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002416 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002417 debug("x11_create_display_inet: Socket family %d not supported",
2418 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002419 continue;
2420 }
Damien Miller34132e52000-01-14 15:45:46 +11002421 }
2422 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2423 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002424 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002425
2426 if (ai->ai_next)
2427 continue;
2428
Damien Miller34132e52000-01-14 15:45:46 +11002429 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002430 close(socks[n]);
2431 }
2432 num_socks = 0;
2433 break;
2434 }
2435 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002436#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002437 if (num_socks == NUM_SOCKS)
2438 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002439#else
2440 break;
2441#endif
Damien Miller95def091999-11-25 00:26:21 +11002442 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002443 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002444 if (num_socks > 0)
2445 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002446 }
Damien Miller95def091999-11-25 00:26:21 +11002447 if (display_number >= MAX_DISPLAYS) {
2448 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002449 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002450 }
Damien Miller95def091999-11-25 00:26:21 +11002451 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002452 for (n = 0; n < num_socks; n++) {
2453 sock = socks[n];
2454 if (listen(sock, 5) < 0) {
2455 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002456 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002457 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002458 }
Damien Miller95def091999-11-25 00:26:21 +11002459 }
Damien Miller34132e52000-01-14 15:45:46 +11002460
Damien Miller34132e52000-01-14 15:45:46 +11002461 /* Allocate a channel for each socket. */
2462 for (n = 0; n < num_socks; n++) {
2463 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002464 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002465 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2466 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002467 0, xstrdup("X11 inet listener"), 1);
Damien Millere7378562001-12-21 14:58:35 +11002468 if (nc != NULL)
2469 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002470 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002471
Kevin Steves366298c2001-12-19 17:58:01 +00002472 /* Return the display number for the DISPLAY environment variable. */
2473 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002474}
2475
Ben Lindstrombba81212001-06-25 05:01:22 +00002476static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002477connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002478{
Damien Miller95def091999-11-25 00:26:21 +11002479 int sock;
2480 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481
Damien Miller3afe3752001-12-21 12:39:51 +11002482 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2483 if (sock < 0)
2484 error("socket: %.100s", strerror(errno));
2485 memset(&addr, 0, sizeof(addr));
2486 addr.sun_family = AF_UNIX;
2487 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2488 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2489 return sock;
2490 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002491 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2492 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002493}
2494
Damien Millerbd483e72000-04-30 10:00:53 +10002495int
2496x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002497{
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002498 int display_number, sock = 0, on = 1;
Damien Miller95def091999-11-25 00:26:21 +11002499 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002500 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002501 struct addrinfo hints, *ai, *aitop;
2502 char strport[NI_MAXSERV];
2503 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002504
Damien Miller95def091999-11-25 00:26:21 +11002505 /* Try to open a socket for the local X server. */
2506 display = getenv("DISPLAY");
2507 if (!display) {
2508 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002509 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002510 }
Damien Miller5428f641999-11-25 11:54:57 +11002511 /*
2512 * Now we decode the value of the DISPLAY variable and make a
2513 * connection to the real X server.
2514 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002515
Damien Miller5428f641999-11-25 11:54:57 +11002516 /*
2517 * Check if it is a unix domain socket. Unix domain displays are in
2518 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2519 */
Damien Miller95def091999-11-25 00:26:21 +11002520 if (strncmp(display, "unix:", 5) == 0 ||
2521 display[0] == ':') {
2522 /* Connect to the unix domain socket. */
2523 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2524 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002525 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002526 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002527 }
2528 /* Create a socket. */
2529 sock = connect_local_xsocket(display_number);
2530 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002531 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002532
2533 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002534 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002535 }
Damien Miller5428f641999-11-25 11:54:57 +11002536 /*
2537 * Connect to an inet socket. The DISPLAY value is supposedly
2538 * hostname:d[.s], where hostname may also be numeric IP address.
2539 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002540 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002541 cp = strchr(buf, ':');
2542 if (!cp) {
2543 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002544 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002545 }
Damien Miller95def091999-11-25 00:26:21 +11002546 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002547 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002548 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2549 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002550 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002551 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002552 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002553
Damien Miller34132e52000-01-14 15:45:46 +11002554 /* Look up the host address */
2555 memset(&hints, 0, sizeof(hints));
2556 hints.ai_family = IPv4or6;
2557 hints.ai_socktype = SOCK_STREAM;
2558 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2559 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2560 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002561 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002562 }
Damien Miller34132e52000-01-14 15:45:46 +11002563 for (ai = aitop; ai; ai = ai->ai_next) {
2564 /* Create a socket. */
2565 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2566 if (sock < 0) {
2567 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002568 continue;
2569 }
2570 /* Connect it to the display. */
2571 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2572 debug("connect %.100s port %d: %.100s", buf,
2573 6000 + display_number, strerror(errno));
2574 close(sock);
2575 continue;
2576 }
2577 /* Success */
2578 break;
Damien Miller34132e52000-01-14 15:45:46 +11002579 }
Damien Miller34132e52000-01-14 15:45:46 +11002580 freeaddrinfo(aitop);
2581 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002582 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002583 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002584 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002585 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002586 if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on) == -1)
2587 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002588 return sock;
2589}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002590
Damien Millerbd483e72000-04-30 10:00:53 +10002591/*
2592 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2593 * the remote channel number. We should do whatever we want, and respond
2594 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2595 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002596
Damien Millerbd483e72000-04-30 10:00:53 +10002597void
Damien Miller630d6f42002-01-22 23:17:30 +11002598x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002599{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002600 Channel *c = NULL;
2601 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002602 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002603
2604 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002605
2606 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002607
2608 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002609 remote_host = packet_get_string(NULL);
2610 } else {
2611 remote_host = xstrdup("unknown (remote did not supply name)");
2612 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002613 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002614
2615 /* Obtain a connection to the real X display. */
2616 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002617 if (sock != -1) {
2618 /* Allocate a channel for this connection. */
2619 c = channel_new("connected x11 socket",
2620 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2621 remote_host, 1);
2622 if (c == NULL) {
2623 error("x11_input_open: channel_new failed");
2624 close(sock);
2625 } else {
2626 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002627 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002628 }
2629 }
2630 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002631 /* Send refusal to the remote host. */
2632 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002633 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002634 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002635 /* Send a confirmation to the remote host. */
2636 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002637 packet_put_int(remote_id);
2638 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002639 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002640 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002641}
2642
Damien Miller69b69aa2000-10-28 14:19:58 +11002643/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2644void
Damien Miller630d6f42002-01-22 23:17:30 +11002645deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002646{
2647 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002648 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002649 case SSH_SMSG_AGENT_OPEN:
2650 error("Warning: ssh server tried agent forwarding.");
2651 break;
2652 case SSH_SMSG_X11_OPEN:
2653 error("Warning: ssh server tried X11 forwarding.");
2654 break;
2655 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002656 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002657 break;
2658 }
2659 error("Warning: this is probably a break in attempt by a malicious server.");
2660 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2661 packet_put_int(rchan);
2662 packet_send();
2663}
2664
Damien Miller5428f641999-11-25 11:54:57 +11002665/*
2666 * Requests forwarding of X11 connections, generates fake authentication
2667 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002668 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002669 */
Damien Miller4af51302000-04-16 11:18:38 +10002670void
Damien Millerbd483e72000-04-30 10:00:53 +10002671x11_request_forwarding_with_spoofing(int client_session_id,
2672 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002673{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002674 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002675 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002676 char *new_data;
2677 int screen_number;
2678 const char *cp;
2679 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002680
Damien Miller95def091999-11-25 00:26:21 +11002681 cp = getenv("DISPLAY");
2682 if (cp)
2683 cp = strchr(cp, ':');
2684 if (cp)
2685 cp = strchr(cp, '.');
2686 if (cp)
2687 screen_number = atoi(cp + 1);
2688 else
2689 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002690
Damien Miller95def091999-11-25 00:26:21 +11002691 /* Save protocol name. */
2692 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002693
Damien Miller5428f641999-11-25 11:54:57 +11002694 /*
2695 * Extract real authentication data and generate fake data of the
2696 * same length.
2697 */
Damien Miller95def091999-11-25 00:26:21 +11002698 x11_saved_data = xmalloc(data_len);
2699 x11_fake_data = xmalloc(data_len);
2700 for (i = 0; i < data_len; i++) {
2701 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2702 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2703 if (i % 4 == 0)
2704 rand = arc4random();
2705 x11_saved_data[i] = value;
2706 x11_fake_data[i] = rand & 0xff;
2707 rand >>= 8;
2708 }
2709 x11_saved_data_len = data_len;
2710 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002711
Damien Miller95def091999-11-25 00:26:21 +11002712 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002713 len = 2 * data_len + 1;
2714 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002715 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002716 snprintf(new_data + 2 * i, len - 2 * i,
2717 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002718
Damien Miller95def091999-11-25 00:26:21 +11002719 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002720 if (compat20) {
2721 channel_request_start(client_session_id, "x11-req", 0);
2722 packet_put_char(0); /* XXX bool single connection */
2723 } else {
2724 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2725 }
2726 packet_put_cstring(proto);
2727 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002728 packet_put_int(screen_number);
2729 packet_send();
2730 packet_write_wait();
2731 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002732}
2733
Ben Lindstrome9c99912001-06-09 00:41:05 +00002734
2735/* -- agent forwarding */
2736
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002737/* Sends a message to the server to request authentication fd forwarding. */
2738
Damien Miller4af51302000-04-16 11:18:38 +10002739void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002740auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002741{
Damien Miller95def091999-11-25 00:26:21 +11002742 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2743 packet_send();
2744 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002745}
2746
Damien Miller5428f641999-11-25 11:54:57 +11002747/*
2748 * Returns the name of the forwarded authentication socket. Returns NULL if
2749 * there is no forwarded authentication socket. The returned value points to
2750 * a static buffer.
2751 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752
Damien Miller95def091999-11-25 00:26:21 +11002753char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002754auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002755{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002756 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002757}
2758
2759/* removes the agent forwarding socket */
2760
Damien Miller4af51302000-04-16 11:18:38 +10002761void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002762auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002763{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002764 struct passwd *pw = _pw;
2765
Ben Lindstrom838394c2001-06-09 01:11:59 +00002766 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002767 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002768 unlink(auth_sock_name);
2769 rmdir(auth_sock_dir);
2770 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002771 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002772 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002773}
2774
Damien Miller5428f641999-11-25 11:54:57 +11002775/*
Damien Millerd3a18572000-06-07 19:55:44 +10002776 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002777 * This starts forwarding authentication requests.
2778 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002779
Damien Millerd3a18572000-06-07 19:55:44 +10002780int
Damien Miller95def091999-11-25 00:26:21 +11002781auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002782{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002783 Channel *nc;
2784 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002785 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002786
Ben Lindstrome9c99912001-06-09 00:41:05 +00002787 if (auth_get_socket_name() != NULL) {
2788 error("authentication forwarding requested twice.");
2789 return 0;
2790 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002791
Damien Miller95def091999-11-25 00:26:21 +11002792 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002793 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002794
Damien Miller95def091999-11-25 00:26:21 +11002795 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002796 auth_sock_name = xmalloc(MAXPATHLEN);
2797 auth_sock_dir = xmalloc(MAXPATHLEN);
2798 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002799
Damien Miller95def091999-11-25 00:26:21 +11002800 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002801 if (mkdtemp(auth_sock_dir) == NULL) {
2802 packet_send_debug("Agent forwarding disabled: "
2803 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002804 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002805 xfree(auth_sock_name);
2806 xfree(auth_sock_dir);
2807 auth_sock_name = NULL;
2808 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002809 return 0;
2810 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002811 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2812 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002813
Ben Lindstrom838394c2001-06-09 01:11:59 +00002814 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002815 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002816
Damien Miller95def091999-11-25 00:26:21 +11002817 /* Create the socket. */
2818 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2819 if (sock < 0)
2820 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002821
Damien Miller95def091999-11-25 00:26:21 +11002822 /* Bind it to the name. */
2823 memset(&sunaddr, 0, sizeof(sunaddr));
2824 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002825 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002826
Damien Miller95def091999-11-25 00:26:21 +11002827 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2828 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002829
Damien Miller95def091999-11-25 00:26:21 +11002830 /* Restore the privileged uid. */
2831 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002832
Damien Miller95def091999-11-25 00:26:21 +11002833 /* Start listening on the socket. */
2834 if (listen(sock, 5) < 0)
2835 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002836
Damien Miller95def091999-11-25 00:26:21 +11002837 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002838 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002839 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2840 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2841 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002842 if (nc == NULL) {
2843 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002844 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002845 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002846 close(sock);
2847 return 0;
2848 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002849 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002850 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002851}
2852
2853/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2854
Damien Miller4af51302000-04-16 11:18:38 +10002855void
Damien Miller630d6f42002-01-22 23:17:30 +11002856auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002857{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002858 Channel *c = NULL;
2859 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002860 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002861
Damien Miller95def091999-11-25 00:26:21 +11002862 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002863 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002864 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002865
Damien Miller5428f641999-11-25 11:54:57 +11002866 /*
2867 * Get a connection to the local authentication agent (this may again
2868 * get forwarded).
2869 */
Damien Miller95def091999-11-25 00:26:21 +11002870 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002871
Damien Miller5428f641999-11-25 11:54:57 +11002872 /*
2873 * If we could not connect the agent, send an error message back to
2874 * the server. This should never happen unless the agent dies,
2875 * because authentication forwarding is only enabled if we have an
2876 * agent.
2877 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002878 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002879 name = xstrdup("authentication agent connection");
2880 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2881 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002882 if (c == NULL) {
2883 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002884 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002885 close(sock);
2886 } else {
2887 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002888 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002889 }
Damien Miller95def091999-11-25 00:26:21 +11002890 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002891 if (c == NULL) {
2892 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2893 packet_put_int(remote_id);
2894 } else {
2895 /* Send a confirmation to the remote host. */
2896 debug("Forwarding authentication connection.");
2897 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2898 packet_put_int(remote_id);
2899 packet_put_int(c->self);
2900 }
Damien Miller95def091999-11-25 00:26:21 +11002901 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002902}