blob: 03f12d3968130ff10a6f6504d7882182a328daad [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 Millerb16461c2002-01-22 23:29:22 +110042RCSID("$OpenBSD: channels.c,v 1.160 2002/01/16 13:17:51 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;
1796 }
1797
Damien Millerb38eff82000-04-01 11:09:21 +10001798}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001799
Damien Miller4af51302000-04-16 11:18:38 +10001800void
Damien Miller630d6f42002-01-22 23:17:30 +11001801channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001802{
Damien Millerb38eff82000-04-01 11:09:21 +10001803 int id;
1804 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001805
Damien Millerb38eff82000-04-01 11:09:21 +10001806 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001807 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001808 c = channel_lookup(id);
1809 if (c == NULL)
1810 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001811
1812 /*
1813 * Send a confirmation that we have closed the channel and no more
1814 * data is coming for it.
1815 */
Damien Miller95def091999-11-25 00:26:21 +11001816 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001817 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001818 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819
Damien Miller5428f641999-11-25 11:54:57 +11001820 /*
1821 * If the channel is in closed state, we have sent a close request,
1822 * and the other side will eventually respond with a confirmation.
1823 * Thus, we cannot free the channel here, because then there would be
1824 * no-one to receive the confirmation. The channel gets freed when
1825 * the confirmation arrives.
1826 */
Damien Millerb38eff82000-04-01 11:09:21 +10001827 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001828 /*
1829 * Not a closed channel - mark it as draining, which will
1830 * cause it to be freed later.
1831 */
Damien Miller76765c02002-01-22 23:21:15 +11001832 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001833 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001834 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001835}
1836
Damien Millerb38eff82000-04-01 11:09:21 +10001837/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001838void
Damien Miller630d6f42002-01-22 23:17:30 +11001839channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840{
Damien Millerb38eff82000-04-01 11:09:21 +10001841 int id = packet_get_int();
1842 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001843
Damien Miller48b03fc2002-01-22 23:11:40 +11001844 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001845 if (c == NULL)
1846 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1847 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848}
1849
Damien Miller4af51302000-04-16 11:18:38 +10001850void
Damien Miller630d6f42002-01-22 23:17:30 +11001851channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001852{
1853 int id = packet_get_int();
1854 Channel *c = channel_lookup(id);
1855
Damien Miller48b03fc2002-01-22 23:11:40 +11001856 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001857 if (c == NULL)
1858 packet_disconnect("Received close confirmation for "
1859 "out-of-range channel %d.", id);
1860 if (c->type != SSH_CHANNEL_CLOSED)
1861 packet_disconnect("Received close confirmation for "
1862 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001863 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001864}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865
Damien Miller4af51302000-04-16 11:18:38 +10001866void
Damien Miller630d6f42002-01-22 23:17:30 +11001867channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001868{
Damien Millerb38eff82000-04-01 11:09:21 +10001869 int id, remote_id;
1870 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871
Damien Millerb38eff82000-04-01 11:09:21 +10001872 id = packet_get_int();
1873 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001874
Damien Millerb38eff82000-04-01 11:09:21 +10001875 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1876 packet_disconnect("Received open confirmation for "
1877 "non-opening channel %d.", id);
1878 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001879 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001880 c->remote_id = remote_id;
1881 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001882
1883 if (compat20) {
1884 c->remote_window = packet_get_int();
1885 c->remote_maxpacket = packet_get_int();
1886 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001887 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001888 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001889 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001890 }
1891 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1892 c->remote_window, c->remote_maxpacket);
1893 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001894 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001895}
1896
Ben Lindstrombba81212001-06-25 05:01:22 +00001897static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001898reason2txt(int reason)
1899{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001900 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001901 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1902 return "administratively prohibited";
1903 case SSH2_OPEN_CONNECT_FAILED:
1904 return "connect failed";
1905 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1906 return "unknown channel type";
1907 case SSH2_OPEN_RESOURCE_SHORTAGE:
1908 return "resource shortage";
1909 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001910 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001911}
1912
Damien Miller4af51302000-04-16 11:18:38 +10001913void
Damien Miller630d6f42002-01-22 23:17:30 +11001914channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001915{
Kevin Steves12057502001-02-05 14:54:34 +00001916 int id, reason;
1917 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001918 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919
Damien Millerb38eff82000-04-01 11:09:21 +10001920 id = packet_get_int();
1921 c = channel_lookup(id);
1922
1923 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1924 packet_disconnect("Received open failure for "
1925 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001926 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001927 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001928 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001929 msg = packet_get_string(NULL);
1930 lang = packet_get_string(NULL);
1931 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001932 log("channel %d: open failed: %s%s%s", id,
1933 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001934 if (msg != NULL)
1935 xfree(msg);
1936 if (lang != NULL)
1937 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001938 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001939 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001940 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001941 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001942}
1943
Damien Miller33b13562000-04-04 14:38:59 +10001944void
Damien Miller630d6f42002-01-22 23:17:30 +11001945channel_input_channel_request(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001946{
1947 int id;
1948 Channel *c;
1949
1950 id = packet_get_int();
1951 c = channel_lookup(id);
1952
1953 if (c == NULL ||
1954 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1955 packet_disconnect("Received request for "
1956 "non-open channel %d.", id);
1957 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001958 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001959 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001960 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001961 } else {
1962 char *service = packet_get_string(NULL);
Ben Lindstromcc74df72001-03-05 06:20:14 +00001963 debug("channel %d: rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001964 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001965 xfree(service);
1966 }
1967}
1968
Damien Miller4af51302000-04-16 11:18:38 +10001969void
Damien Miller630d6f42002-01-22 23:17:30 +11001970channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001971{
1972 Channel *c;
1973 int id, adjust;
1974
1975 if (!compat20)
1976 return;
1977
1978 /* Get the channel number and verify it. */
1979 id = packet_get_int();
1980 c = channel_lookup(id);
1981
1982 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1983 log("Received window adjust for "
1984 "non-open channel %d.", id);
1985 return;
1986 }
1987 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001988 packet_check_eom();
Damien Millerd3444942000-09-30 14:20:03 +11001989 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001990 c->remote_window += adjust;
1991}
1992
Damien Miller4af51302000-04-16 11:18:38 +10001993void
Damien Miller630d6f42002-01-22 23:17:30 +11001994channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001995{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001996 Channel *c = NULL;
1997 u_short host_port;
1998 char *host, *originator_string;
1999 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002000
Ben Lindstrome9c99912001-06-09 00:41:05 +00002001 remote_id = packet_get_int();
2002 host = packet_get_string(NULL);
2003 host_port = packet_get_int();
2004
2005 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2006 originator_string = packet_get_string(NULL);
2007 } else {
2008 originator_string = xstrdup("unknown (remote did not supply name)");
2009 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002010 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002011 sock = channel_connect_to(host, host_port);
2012 if (sock != -1) {
2013 c = channel_new("connected socket",
2014 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2015 originator_string, 1);
2016 if (c == NULL) {
2017 error("channel_input_port_open: channel_new failed");
2018 close(sock);
2019 } else {
2020 c->remote_id = remote_id;
Damien Miller95def091999-11-25 00:26:21 +11002021 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002022 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002023 if (c == NULL) {
2024 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2025 packet_put_int(remote_id);
2026 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002027 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002028 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002029}
2030
2031
Ben Lindstrome9c99912001-06-09 00:41:05 +00002032/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002033
Ben Lindstrom908afed2001-10-03 17:34:59 +00002034void
2035channel_set_af(int af)
2036{
2037 IPv4or6 = af;
2038}
2039
Damien Millerb16461c2002-01-22 23:29:22 +11002040static int
2041channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2042 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002043{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002044 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11002045 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11002046 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002047 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11002048 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11002049 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002050
Kevin Steves12057502001-02-05 14:54:34 +00002051 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11002052 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2053 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00002054
Damien Millerb16461c2002-01-22 23:29:22 +11002055 if (host == NULL) {
2056 error("No forward host name.");
2057 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002058 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002059 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002060 error("Forward host name too long.");
2061 return success;
2062 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002063
Damien Miller5428f641999-11-25 11:54:57 +11002064 /*
Damien Miller34132e52000-01-14 15:45:46 +11002065 * getaddrinfo returns a loopback address if the hostname is
2066 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002067 */
Damien Miller34132e52000-01-14 15:45:46 +11002068 memset(&hints, 0, sizeof(hints));
2069 hints.ai_family = IPv4or6;
2070 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2071 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002072 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002073 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2074 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002075
Damien Miller34132e52000-01-14 15:45:46 +11002076 for (ai = aitop; ai; ai = ai->ai_next) {
2077 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2078 continue;
2079 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2080 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002081 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002082 continue;
2083 }
2084 /* Create a port to listen for the host. */
2085 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2086 if (sock < 0) {
2087 /* this is no error since kernel may not support ipv6 */
2088 verbose("socket: %.100s", strerror(errno));
2089 continue;
2090 }
2091 /*
2092 * Set socket options. We would like the socket to disappear
2093 * as soon as it has been closed for whatever reason.
2094 */
2095 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
2096 linger.l_onoff = 1;
2097 linger.l_linger = 5;
2098 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
2099 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002100
Damien Miller34132e52000-01-14 15:45:46 +11002101 /* Bind the socket to the address. */
2102 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2103 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002104 if (!ai->ai_next)
2105 error("bind: %.100s", strerror(errno));
2106 else
2107 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002108
Damien Miller34132e52000-01-14 15:45:46 +11002109 close(sock);
2110 continue;
2111 }
2112 /* Start listening for connections on the socket. */
2113 if (listen(sock, 5) < 0) {
2114 error("listen: %.100s", strerror(errno));
2115 close(sock);
2116 continue;
2117 }
2118 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002119 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002120 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002121 0, xstrdup("port listener"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002122 if (c == NULL) {
Damien Millerb16461c2002-01-22 23:29:22 +11002123 error("channel_setup_fwd_listener: channel_new failed");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002124 close(sock);
2125 continue;
2126 }
2127 strlcpy(c->path, host, sizeof(c->path));
2128 c->host_port = port_to_connect;
2129 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002130 success = 1;
2131 }
2132 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002133 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002134 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002135 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002136 return success;
Damien Miller95def091999-11-25 00:26:21 +11002137}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002138
Damien Millerb16461c2002-01-22 23:29:22 +11002139/* protocol local port fwd, used by ssh (and sshd in v1) */
2140int
2141channel_setup_local_fwd_listener(u_short listen_port,
2142 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2143{
2144 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2145 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2146}
2147
2148/* protocol v2 remote port fwd, used by sshd */
2149int
2150channel_setup_remote_fwd_listener(const char *listen_address,
2151 u_short listen_port, int gateway_ports)
2152{
2153 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2154 listen_address, listen_port, NULL, 0, gateway_ports);
2155}
2156
Damien Miller5428f641999-11-25 11:54:57 +11002157/*
2158 * Initiate forwarding of connections to port "port" on remote host through
2159 * the secure channel to host:port from local side.
2160 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002161
Damien Miller4af51302000-04-16 11:18:38 +10002162void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002163channel_request_remote_forwarding(u_short listen_port,
2164 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002165{
Damien Millerdff50992002-01-22 23:16:32 +11002166 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002167
Damien Miller95def091999-11-25 00:26:21 +11002168 /* Record locally that connection to this host/port is permitted. */
2169 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2170 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171
Damien Miller95def091999-11-25 00:26:21 +11002172 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002173 if (compat20) {
2174 const char *address_to_bind = "0.0.0.0";
2175 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2176 packet_put_cstring("tcpip-forward");
2177 packet_put_char(0); /* boolean: want reply */
2178 packet_put_cstring(address_to_bind);
2179 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002180 packet_send();
2181 packet_write_wait();
2182 /* Assume that server accepts the request */
2183 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002184 } else {
2185 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002186 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002187 packet_put_cstring(host_to_connect);
2188 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002189 packet_send();
2190 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002191
2192 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002193 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002194 switch (type) {
2195 case SSH_SMSG_SUCCESS:
2196 success = 1;
2197 break;
2198 case SSH_SMSG_FAILURE:
2199 log("Warning: Server denied remote port forwarding.");
2200 break;
2201 default:
2202 /* Unknown packet */
2203 packet_disconnect("Protocol error for port forward request:"
2204 "received packet type %d.", type);
2205 }
2206 }
2207 if (success) {
2208 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2209 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2210 permitted_opens[num_permitted_opens].listen_port = listen_port;
2211 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002212 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002213}
2214
Damien Miller5428f641999-11-25 11:54:57 +11002215/*
2216 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2217 * listening for the port, and sends back a success reply (or disconnect
2218 * message if there was an error). This never returns if there was an error.
2219 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002220
Damien Miller4af51302000-04-16 11:18:38 +10002221void
Damien Millere247cc42000-05-07 12:03:14 +10002222channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002223{
Damien Milleraae6c611999-12-06 11:47:28 +11002224 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002225 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002226
Damien Miller95def091999-11-25 00:26:21 +11002227 /* Get arguments from the packet. */
2228 port = packet_get_int();
2229 hostname = packet_get_string(NULL);
2230 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002231
Damien Millerbac2d8a2000-09-05 16:13:06 +11002232#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002233 /*
2234 * Check that an unprivileged user is not trying to forward a
2235 * privileged port.
2236 */
Damien Miller95def091999-11-25 00:26:21 +11002237 if (port < IPPORT_RESERVED && !is_root)
2238 packet_disconnect("Requested forwarding of port %d but user is not root.",
2239 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002240#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002241 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002242 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002243
2244 /* Free the argument string. */
2245 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002246}
2247
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002248/*
2249 * Permits opening to any host/port if permitted_opens[] is empty. This is
2250 * usually called by the server, because the user could connect to any port
2251 * anyway, and the server has no way to know but to trust the client anyway.
2252 */
2253void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002254channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002255{
2256 if (num_permitted_opens == 0)
2257 all_opens_permitted = 1;
2258}
2259
Ben Lindstroma3700052001-04-05 23:26:32 +00002260void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002261channel_add_permitted_opens(char *host, int port)
2262{
2263 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2264 fatal("channel_request_remote_forwarding: too many forwards");
2265 debug("allow port forwarding to host %s port %d", host, port);
2266
2267 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2268 permitted_opens[num_permitted_opens].port_to_connect = port;
2269 num_permitted_opens++;
2270
2271 all_opens_permitted = 0;
2272}
2273
Ben Lindstroma3700052001-04-05 23:26:32 +00002274void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002275channel_clear_permitted_opens(void)
2276{
2277 int i;
2278
2279 for (i = 0; i < num_permitted_opens; i++)
2280 xfree(permitted_opens[i].host_to_connect);
2281 num_permitted_opens = 0;
2282
2283}
2284
2285
2286/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002287static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002288connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002289{
Damien Miller34132e52000-01-14 15:45:46 +11002290 struct addrinfo hints, *ai, *aitop;
2291 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2292 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002293 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002294
Damien Miller34132e52000-01-14 15:45:46 +11002295 memset(&hints, 0, sizeof(hints));
2296 hints.ai_family = IPv4or6;
2297 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002298 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002299 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002300 error("connect_to %.100s: unknown host (%s)", host,
2301 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002302 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303 }
Damien Miller34132e52000-01-14 15:45:46 +11002304 for (ai = aitop; ai; ai = ai->ai_next) {
2305 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2306 continue;
2307 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2308 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002309 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002310 continue;
2311 }
Damien Miller34132e52000-01-14 15:45:46 +11002312 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2313 if (sock < 0) {
2314 error("socket: %.100s", strerror(errno));
2315 continue;
2316 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002317 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002318 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002319 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2320 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002321 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002322 strerror(errno));
2323 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002324 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002325 }
2326 break; /* success */
2327
2328 }
2329 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002330 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002331 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002332 return -1;
2333 }
2334 /* success */
2335 return sock;
2336}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002337
Damien Miller0bc1bd82000-11-13 22:57:25 +11002338int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002339channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002340{
2341 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002342
Damien Miller0bc1bd82000-11-13 22:57:25 +11002343 for (i = 0; i < num_permitted_opens; i++)
2344 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002345 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002346 permitted_opens[i].host_to_connect,
2347 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002348 error("WARNING: Server requests forwarding for unknown listen_port %d",
2349 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002350 return -1;
2351}
Damien Millerb38eff82000-04-01 11:09:21 +10002352
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002353/* Check if connecting to that port is permitted and connect. */
2354int
2355channel_connect_to(const char *host, u_short port)
2356{
2357 int i, permit;
2358
2359 permit = all_opens_permitted;
2360 if (!permit) {
2361 for (i = 0; i < num_permitted_opens; i++)
2362 if (permitted_opens[i].port_to_connect == port &&
2363 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2364 permit = 1;
2365
2366 }
2367 if (!permit) {
2368 log("Received request to connect to host %.100s port %d, "
2369 "but the request was denied.", host, port);
2370 return -1;
2371 }
2372 return connect_to(host, port);
2373}
2374
Ben Lindstrome9c99912001-06-09 00:41:05 +00002375/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002376
Damien Miller5428f641999-11-25 11:54:57 +11002377/*
2378 * Creates an internet domain socket for listening for X11 connections.
Kevin Steves366298c2001-12-19 17:58:01 +00002379 * Returns a suitable display number for the DISPLAY variable, or -1 if
2380 * an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002381 */
Kevin Steves366298c2001-12-19 17:58:01 +00002382int
Damien Millere7378562001-12-21 14:58:35 +11002383x11_create_display_inet(int x11_display_offset, int gateway_ports,
2384 int single_connection)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002385{
Damien Millere7378562001-12-21 14:58:35 +11002386 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002387 int display_number, sock;
2388 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002389 struct addrinfo hints, *ai, *aitop;
2390 char strport[NI_MAXSERV];
2391 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002392
Damien Millera34a28b1999-12-14 10:47:15 +11002393 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002394 display_number < MAX_DISPLAYS;
2395 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002396 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002397 memset(&hints, 0, sizeof(hints));
2398 hints.ai_family = IPv4or6;
Kevin Steves366298c2001-12-19 17:58:01 +00002399 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002400 hints.ai_socktype = SOCK_STREAM;
2401 snprintf(strport, sizeof strport, "%d", port);
2402 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2403 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002404 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002405 }
Damien Miller34132e52000-01-14 15:45:46 +11002406 for (ai = aitop; ai; ai = ai->ai_next) {
2407 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2408 continue;
2409 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2410 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002411 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002412 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002413 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002414 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002415 debug("x11_create_display_inet: Socket family %d not supported",
2416 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002417 continue;
2418 }
Damien Miller34132e52000-01-14 15:45:46 +11002419 }
2420 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2421 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002422 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002423
2424 if (ai->ai_next)
2425 continue;
2426
Damien Miller34132e52000-01-14 15:45:46 +11002427 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002428 close(socks[n]);
2429 }
2430 num_socks = 0;
2431 break;
2432 }
2433 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002434#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002435 if (num_socks == NUM_SOCKS)
2436 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002437#else
2438 break;
2439#endif
Damien Miller95def091999-11-25 00:26:21 +11002440 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002441 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002442 if (num_socks > 0)
2443 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002444 }
Damien Miller95def091999-11-25 00:26:21 +11002445 if (display_number >= MAX_DISPLAYS) {
2446 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002447 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002448 }
Damien Miller95def091999-11-25 00:26:21 +11002449 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002450 for (n = 0; n < num_socks; n++) {
2451 sock = socks[n];
2452 if (listen(sock, 5) < 0) {
2453 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002454 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002455 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002456 }
Damien Miller95def091999-11-25 00:26:21 +11002457 }
Damien Miller34132e52000-01-14 15:45:46 +11002458
Damien Miller34132e52000-01-14 15:45:46 +11002459 /* Allocate a channel for each socket. */
2460 for (n = 0; n < num_socks; n++) {
2461 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002462 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002463 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2464 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11002465 0, xstrdup("X11 inet listener"), 1);
Damien Millere7378562001-12-21 14:58:35 +11002466 if (nc != NULL)
2467 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002468 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002469
Kevin Steves366298c2001-12-19 17:58:01 +00002470 /* Return the display number for the DISPLAY environment variable. */
2471 return display_number;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002472}
2473
Ben Lindstrombba81212001-06-25 05:01:22 +00002474static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002475connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002476{
Damien Miller95def091999-11-25 00:26:21 +11002477 int sock;
2478 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002479
Damien Miller3afe3752001-12-21 12:39:51 +11002480 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2481 if (sock < 0)
2482 error("socket: %.100s", strerror(errno));
2483 memset(&addr, 0, sizeof(addr));
2484 addr.sun_family = AF_UNIX;
2485 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2486 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2487 return sock;
2488 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002489 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2490 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491}
2492
Damien Millerbd483e72000-04-30 10:00:53 +10002493int
2494x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002495{
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002496 int display_number, sock = 0, on = 1;
Damien Miller95def091999-11-25 00:26:21 +11002497 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002498 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002499 struct addrinfo hints, *ai, *aitop;
2500 char strport[NI_MAXSERV];
2501 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002502
Damien Miller95def091999-11-25 00:26:21 +11002503 /* Try to open a socket for the local X server. */
2504 display = getenv("DISPLAY");
2505 if (!display) {
2506 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002507 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002508 }
Damien Miller5428f641999-11-25 11:54:57 +11002509 /*
2510 * Now we decode the value of the DISPLAY variable and make a
2511 * connection to the real X server.
2512 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002513
Damien Miller5428f641999-11-25 11:54:57 +11002514 /*
2515 * Check if it is a unix domain socket. Unix domain displays are in
2516 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2517 */
Damien Miller95def091999-11-25 00:26:21 +11002518 if (strncmp(display, "unix:", 5) == 0 ||
2519 display[0] == ':') {
2520 /* Connect to the unix domain socket. */
2521 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2522 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002523 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002524 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002525 }
2526 /* Create a socket. */
2527 sock = connect_local_xsocket(display_number);
2528 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002529 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002530
2531 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002532 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002533 }
Damien Miller5428f641999-11-25 11:54:57 +11002534 /*
2535 * Connect to an inet socket. The DISPLAY value is supposedly
2536 * hostname:d[.s], where hostname may also be numeric IP address.
2537 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002538 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002539 cp = strchr(buf, ':');
2540 if (!cp) {
2541 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002542 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002543 }
Damien Miller95def091999-11-25 00:26:21 +11002544 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002545 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002546 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2547 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002548 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002549 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002550 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551
Damien Miller34132e52000-01-14 15:45:46 +11002552 /* Look up the host address */
2553 memset(&hints, 0, sizeof(hints));
2554 hints.ai_family = IPv4or6;
2555 hints.ai_socktype = SOCK_STREAM;
2556 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2557 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2558 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002559 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002560 }
Damien Miller34132e52000-01-14 15:45:46 +11002561 for (ai = aitop; ai; ai = ai->ai_next) {
2562 /* Create a socket. */
2563 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2564 if (sock < 0) {
2565 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002566 continue;
2567 }
2568 /* Connect it to the display. */
2569 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2570 debug("connect %.100s port %d: %.100s", buf,
2571 6000 + display_number, strerror(errno));
2572 close(sock);
2573 continue;
2574 }
2575 /* Success */
2576 break;
Damien Miller34132e52000-01-14 15:45:46 +11002577 }
Damien Miller34132e52000-01-14 15:45:46 +11002578 freeaddrinfo(aitop);
2579 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002580 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002581 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002582 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002583 }
Ben Lindstrom73f57be2001-12-07 17:28:34 +00002584 if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on) == -1)
2585 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002586 return sock;
2587}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002588
Damien Millerbd483e72000-04-30 10:00:53 +10002589/*
2590 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2591 * the remote channel number. We should do whatever we want, and respond
2592 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2593 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002594
Damien Millerbd483e72000-04-30 10:00:53 +10002595void
Damien Miller630d6f42002-01-22 23:17:30 +11002596x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002597{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002598 Channel *c = NULL;
2599 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002600 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002601
2602 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002603
2604 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002605
2606 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002607 remote_host = packet_get_string(NULL);
2608 } else {
2609 remote_host = xstrdup("unknown (remote did not supply name)");
2610 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002611 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002612
2613 /* Obtain a connection to the real X display. */
2614 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002615 if (sock != -1) {
2616 /* Allocate a channel for this connection. */
2617 c = channel_new("connected x11 socket",
2618 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2619 remote_host, 1);
2620 if (c == NULL) {
2621 error("x11_input_open: channel_new failed");
2622 close(sock);
2623 } else {
2624 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002625 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002626 }
2627 }
2628 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002629 /* Send refusal to the remote host. */
2630 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002631 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002632 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002633 /* Send a confirmation to the remote host. */
2634 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002635 packet_put_int(remote_id);
2636 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002637 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002638 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002639}
2640
Damien Miller69b69aa2000-10-28 14:19:58 +11002641/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2642void
Damien Miller630d6f42002-01-22 23:17:30 +11002643deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002644{
2645 int rchan = packet_get_int();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002646 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002647 case SSH_SMSG_AGENT_OPEN:
2648 error("Warning: ssh server tried agent forwarding.");
2649 break;
2650 case SSH_SMSG_X11_OPEN:
2651 error("Warning: ssh server tried X11 forwarding.");
2652 break;
2653 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002654 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002655 break;
2656 }
2657 error("Warning: this is probably a break in attempt by a malicious server.");
2658 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2659 packet_put_int(rchan);
2660 packet_send();
2661}
2662
Damien Miller5428f641999-11-25 11:54:57 +11002663/*
2664 * Requests forwarding of X11 connections, generates fake authentication
2665 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002666 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002667 */
Damien Miller4af51302000-04-16 11:18:38 +10002668void
Damien Millerbd483e72000-04-30 10:00:53 +10002669x11_request_forwarding_with_spoofing(int client_session_id,
2670 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002671{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002672 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002673 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002674 char *new_data;
2675 int screen_number;
2676 const char *cp;
2677 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002678
Damien Miller95def091999-11-25 00:26:21 +11002679 cp = getenv("DISPLAY");
2680 if (cp)
2681 cp = strchr(cp, ':');
2682 if (cp)
2683 cp = strchr(cp, '.');
2684 if (cp)
2685 screen_number = atoi(cp + 1);
2686 else
2687 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002688
Damien Miller95def091999-11-25 00:26:21 +11002689 /* Save protocol name. */
2690 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002691
Damien Miller5428f641999-11-25 11:54:57 +11002692 /*
2693 * Extract real authentication data and generate fake data of the
2694 * same length.
2695 */
Damien Miller95def091999-11-25 00:26:21 +11002696 x11_saved_data = xmalloc(data_len);
2697 x11_fake_data = xmalloc(data_len);
2698 for (i = 0; i < data_len; i++) {
2699 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2700 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2701 if (i % 4 == 0)
2702 rand = arc4random();
2703 x11_saved_data[i] = value;
2704 x11_fake_data[i] = rand & 0xff;
2705 rand >>= 8;
2706 }
2707 x11_saved_data_len = data_len;
2708 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002709
Damien Miller95def091999-11-25 00:26:21 +11002710 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002711 len = 2 * data_len + 1;
2712 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002713 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002714 snprintf(new_data + 2 * i, len - 2 * i,
2715 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002716
Damien Miller95def091999-11-25 00:26:21 +11002717 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002718 if (compat20) {
2719 channel_request_start(client_session_id, "x11-req", 0);
2720 packet_put_char(0); /* XXX bool single connection */
2721 } else {
2722 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2723 }
2724 packet_put_cstring(proto);
2725 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002726 packet_put_int(screen_number);
2727 packet_send();
2728 packet_write_wait();
2729 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002730}
2731
Ben Lindstrome9c99912001-06-09 00:41:05 +00002732
2733/* -- agent forwarding */
2734
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002735/* Sends a message to the server to request authentication fd forwarding. */
2736
Damien Miller4af51302000-04-16 11:18:38 +10002737void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002738auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002739{
Damien Miller95def091999-11-25 00:26:21 +11002740 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2741 packet_send();
2742 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002743}
2744
Damien Miller5428f641999-11-25 11:54:57 +11002745/*
2746 * Returns the name of the forwarded authentication socket. Returns NULL if
2747 * there is no forwarded authentication socket. The returned value points to
2748 * a static buffer.
2749 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002750
Damien Miller95def091999-11-25 00:26:21 +11002751char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002752auth_get_socket_name(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002753{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002754 return auth_sock_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002755}
2756
2757/* removes the agent forwarding socket */
2758
Damien Miller4af51302000-04-16 11:18:38 +10002759void
Ben Lindstrom983c0982001-06-09 01:20:06 +00002760auth_sock_cleanup_proc(void *_pw)
Damien Miller95def091999-11-25 00:26:21 +11002761{
Ben Lindstrom983c0982001-06-09 01:20:06 +00002762 struct passwd *pw = _pw;
2763
Ben Lindstrom838394c2001-06-09 01:11:59 +00002764 if (auth_sock_name) {
Ben Lindstrom983c0982001-06-09 01:20:06 +00002765 temporarily_use_uid(pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002766 unlink(auth_sock_name);
2767 rmdir(auth_sock_dir);
2768 auth_sock_name = NULL;
Ben Lindstrom983c0982001-06-09 01:20:06 +00002769 restore_uid();
Ben Lindstrom838394c2001-06-09 01:11:59 +00002770 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002771}
2772
Damien Miller5428f641999-11-25 11:54:57 +11002773/*
Damien Millerd3a18572000-06-07 19:55:44 +10002774 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002775 * This starts forwarding authentication requests.
2776 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002777
Damien Millerd3a18572000-06-07 19:55:44 +10002778int
Damien Miller95def091999-11-25 00:26:21 +11002779auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002780{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002781 Channel *nc;
2782 int sock;
Damien Miller95def091999-11-25 00:26:21 +11002783 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002784
Ben Lindstrome9c99912001-06-09 00:41:05 +00002785 if (auth_get_socket_name() != NULL) {
2786 error("authentication forwarding requested twice.");
2787 return 0;
2788 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002789
Damien Miller95def091999-11-25 00:26:21 +11002790 /* Temporarily drop privileged uid for mkdir/bind. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +00002791 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002792
Damien Miller95def091999-11-25 00:26:21 +11002793 /* Allocate a buffer for the socket name, and format the name. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002794 auth_sock_name = xmalloc(MAXPATHLEN);
2795 auth_sock_dir = xmalloc(MAXPATHLEN);
2796 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXX", MAXPATHLEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002797
Damien Miller95def091999-11-25 00:26:21 +11002798 /* Create private directory for socket */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002799 if (mkdtemp(auth_sock_dir) == NULL) {
2800 packet_send_debug("Agent forwarding disabled: "
2801 "mkdtemp() failed: %.100s", strerror(errno));
Damien Millerd3a18572000-06-07 19:55:44 +10002802 restore_uid();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002803 xfree(auth_sock_name);
2804 xfree(auth_sock_dir);
2805 auth_sock_name = NULL;
2806 auth_sock_dir = NULL;
Damien Millerd3a18572000-06-07 19:55:44 +10002807 return 0;
2808 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002809 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%d",
2810 auth_sock_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002811
Ben Lindstrom838394c2001-06-09 01:11:59 +00002812 /* delete agent socket on fatal() */
Ben Lindstrom983c0982001-06-09 01:20:06 +00002813 fatal_add_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom838394c2001-06-09 01:11:59 +00002814
Damien Miller95def091999-11-25 00:26:21 +11002815 /* Create the socket. */
2816 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2817 if (sock < 0)
2818 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002819
Damien Miller95def091999-11-25 00:26:21 +11002820 /* Bind it to the name. */
2821 memset(&sunaddr, 0, sizeof(sunaddr));
2822 sunaddr.sun_family = AF_UNIX;
Ben Lindstromccd8d072001-12-07 17:26:48 +00002823 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002824
Damien Miller95def091999-11-25 00:26:21 +11002825 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2826 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002827
Damien Miller95def091999-11-25 00:26:21 +11002828 /* Restore the privileged uid. */
2829 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002830
Damien Miller95def091999-11-25 00:26:21 +11002831 /* Start listening on the socket. */
2832 if (listen(sock, 5) < 0)
2833 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002834
Damien Miller95def091999-11-25 00:26:21 +11002835 /* Allocate a channel for the authentication agent socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002836 nc = channel_new("auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11002837 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2838 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2839 0, xstrdup("auth socket"), 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002840 if (nc == NULL) {
2841 error("auth_input_request_forwarding: channel_new failed");
Ben Lindstrom983c0982001-06-09 01:20:06 +00002842 auth_sock_cleanup_proc(pw);
Ben Lindstromdf4981b2001-06-09 01:32:29 +00002843 fatal_remove_cleanup(auth_sock_cleanup_proc, pw);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002844 close(sock);
2845 return 0;
2846 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002847 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
Damien Millerd3a18572000-06-07 19:55:44 +10002848 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849}
2850
2851/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2852
Damien Miller4af51302000-04-16 11:18:38 +10002853void
Damien Miller630d6f42002-01-22 23:17:30 +11002854auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002855{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002856 Channel *c = NULL;
2857 int remote_id, sock;
Ben Lindstrome9c99912001-06-09 00:41:05 +00002858 char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002859
Damien Miller95def091999-11-25 00:26:21 +11002860 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002861 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002862 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863
Damien Miller5428f641999-11-25 11:54:57 +11002864 /*
2865 * Get a connection to the local authentication agent (this may again
2866 * get forwarded).
2867 */
Damien Miller95def091999-11-25 00:26:21 +11002868 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002869
Damien Miller5428f641999-11-25 11:54:57 +11002870 /*
2871 * If we could not connect the agent, send an error message back to
2872 * the server. This should never happen unless the agent dies,
2873 * because authentication forwarding is only enabled if we have an
2874 * agent.
2875 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002876 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002877 name = xstrdup("authentication agent connection");
2878 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
2879 -1, 0, 0, 0, name, 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002880 if (c == NULL) {
2881 error("auth_input_open_request: channel_new failed");
Ben Lindstrome9c99912001-06-09 00:41:05 +00002882 xfree(name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002883 close(sock);
2884 } else {
2885 c->remote_id = remote_id;
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002886 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002887 }
Damien Miller95def091999-11-25 00:26:21 +11002888 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002889 if (c == NULL) {
2890 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2891 packet_put_int(remote_id);
2892 } else {
2893 /* Send a confirmation to the remote host. */
2894 debug("Forwarding authentication connection.");
2895 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2896 packet_put_int(remote_id);
2897 packet_put_int(c->self);
2898 }
Damien Miller95def091999-11-25 00:26:21 +11002899 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002900}