blob: 2021bad53b9fc3b315b004d7ea16c233dbf6f659 [file] [log] [blame]
Damien Millerbe43ebf2006-07-24 13:51:51 +10001/* $OpenBSD: channels.c,v 1.255 2006/07/12 22:28:51 stevesk Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
44#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110045#include <sys/types.h>
46#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
48
49#include <netinet/in.h>
50#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110051
Darren Tucker39972492006-07-12 22:22:46 +100052#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100053#if defined(HAVE_NETDB_H)
54# include <netdb.h>
55#endif
Damien Miller99bd21e2006-03-15 11:11:28 +110056#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
58#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059#include "ssh1.h"
60#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061#include "packet.h"
62#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "log.h"
64#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100068#include "key.h"
69#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110070#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100071#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Ben Lindstrome9c99912001-06-09 00:41:05 +000073/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075/*
76 * Pointer to an array containing all allocated channels. The array is
77 * dynamically extended as needed.
78 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000079static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Miller5428f641999-11-25 11:54:57 +110081/*
82 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000083 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110084 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100085static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000089 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110090 */
Damien Miller5e953212001-01-30 09:14:00 +110091static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Ben Lindstrome9c99912001-06-09 00:41:05 +000094/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller5428f641999-11-25 11:54:57 +110096/*
97 * Data structure for storing which hosts are permitted for forward requests.
98 * The local sides of any remote forwards are stored in this array to prevent
99 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
100 * network (which might be behind a firewall).
101 */
Damien Miller95def091999-11-25 00:26:21 +1100102typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000103 char *host_to_connect; /* Connect to 'host'. */
104 u_short port_to_connect; /* Connect to 'port'. */
105 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106} ForwardPermission;
107
108/* List of all permitted host/port pairs to connect. */
109static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000110
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111/* Number of permitted host/port pairs in the array. */
112static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100113/*
114 * If this is true, all opens are permitted. This is the case on the server
115 * on which we have to trust the client anyway, and the user could do
116 * anything after logging in anyway.
117 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118static int all_opens_permitted = 0;
119
Ben Lindstrome9c99912001-06-09 00:41:05 +0000120
121/* -- X11 forwarding */
122
123/* Maximum number of fake X11 displays to try. */
124#define MAX_DISPLAYS 1000
125
Damien Miller13390022005-07-06 09:44:19 +1000126/* Saved X11 local (client) display. */
127static char *x11_saved_display = NULL;
128
Ben Lindstrome9c99912001-06-09 00:41:05 +0000129/* Saved X11 authentication protocol name. */
130static char *x11_saved_proto = NULL;
131
132/* Saved X11 authentication data. This is the real data. */
133static char *x11_saved_data = NULL;
134static u_int x11_saved_data_len = 0;
135
136/*
137 * Fake X11 authentication data. This is what the server will be sending us;
138 * we should replace any occurrences of this by the real data.
139 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100140static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000141static u_int x11_fake_data_len;
142
143
144/* -- agent forwarding */
145
146#define NUM_SOCKS 10
147
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000148/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000149static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000150
Ben Lindstrome9c99912001-06-09 00:41:05 +0000151/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000152static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000153
Ben Lindstrome9c99912001-06-09 00:41:05 +0000154/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000155
156Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100157channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000158{
159 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000160
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000161 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100162 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000163 return NULL;
164 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000165 c = channels[id];
166 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100167 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000168 return NULL;
169 }
170 return c;
171}
172
Damien Miller5428f641999-11-25 11:54:57 +1100173/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100174 * Returns the channel if it is allowed to receive protocol messages.
175 * Private channels, like listening sockets, may not receive messages.
176 */
177Channel *
178channel_lookup(int id)
179{
180 Channel *c;
181
182 if ((c = channel_by_id(id)) == NULL)
183 return (NULL);
184
Damien Millerd62f2ca2006-03-26 13:57:41 +1100185 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100186 case SSH_CHANNEL_X11_OPEN:
187 case SSH_CHANNEL_LARVAL:
188 case SSH_CHANNEL_CONNECTING:
189 case SSH_CHANNEL_DYNAMIC:
190 case SSH_CHANNEL_OPENING:
191 case SSH_CHANNEL_OPEN:
192 case SSH_CHANNEL_INPUT_DRAINING:
193 case SSH_CHANNEL_OUTPUT_DRAINING:
194 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100195 }
196 logit("Non-public channel %d, type %d.", id, c->type);
197 return (NULL);
198}
199
200/*
Damien Millere247cc42000-05-07 12:03:14 +1000201 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000202 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100203 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000204static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100205channel_register_fds(Channel *c, int rfd, int wfd, int efd,
206 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207{
Damien Miller95def091999-11-25 00:26:21 +1100208 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100209 channel_max_fd = MAX(channel_max_fd, rfd);
210 channel_max_fd = MAX(channel_max_fd, wfd);
211 channel_max_fd = MAX(channel_max_fd, efd);
212
Damien Miller5428f641999-11-25 11:54:57 +1100213 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000214
Damien Miller6f83b8e2000-05-02 09:23:45 +1000215 c->rfd = rfd;
216 c->wfd = wfd;
217 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000218 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000219 c->efd = efd;
220 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100221
Damien Miller79438cc2001-02-16 12:34:57 +1100222 /* XXX ugly hack: nonblock is only set by the server */
223 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000224 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100225 c->isatty = 1;
226 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000227 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100228 c->self, c->wfd);
229 }
230 } else {
231 c->isatty = 0;
232 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000233 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100234
Damien Miller69b69aa2000-10-28 14:19:58 +1100235 /* enable nonblocking mode */
236 if (nonblock) {
237 if (rfd != -1)
238 set_nonblock(rfd);
239 if (wfd != -1)
240 set_nonblock(wfd);
241 if (efd != -1)
242 set_nonblock(efd);
243 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000244}
245
246/*
247 * Allocate a new channel object and set its type and socket. This will cause
248 * remote_name to be freed.
249 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000250Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000251channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000252 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000254 int found;
255 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000256 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller95def091999-11-25 00:26:21 +1100258 /* Do initial allocation if this is the first call. */
259 if (channels_alloc == 0) {
260 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100261 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100262 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000263 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100264 }
265 /* Try to find a free slot where to put the new channel. */
266 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000267 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100268 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000269 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100270 break;
271 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000272 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100273 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100274 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000275 if (channels_alloc > 10000)
276 fatal("channel_new: internal error: channels_alloc %d "
277 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100278 channels = xrealloc(channels, channels_alloc + 10,
279 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000280 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100281 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100282 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000283 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100284 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000285 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100286 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100287 buffer_init(&c->input);
288 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000289 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100290 c->ostate = CHAN_OUTPUT_OPEN;
291 c->istate = CHAN_INPUT_OPEN;
292 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100293 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100294 c->self = found;
295 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000296 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000297 c->local_window = window;
298 c->local_window_max = window;
299 c->local_consumed = 0;
300 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100301 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000302 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000303 c->remote_window = 0;
304 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000305 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100306 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000307 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100308 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100309 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000310 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000311 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100312 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100313 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000314 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000316
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000317static int
318channel_find_maxfd(void)
319{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000320 u_int i;
321 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000322 Channel *c;
323
324 for (i = 0; i < channels_alloc; i++) {
325 c = channels[i];
326 if (c != NULL) {
327 max = MAX(max, c->rfd);
328 max = MAX(max, c->wfd);
329 max = MAX(max, c->efd);
330 }
331 }
332 return max;
333}
334
335int
336channel_close_fd(int *fdp)
337{
338 int ret = 0, fd = *fdp;
339
340 if (fd != -1) {
341 ret = close(fd);
342 *fdp = -1;
343 if (fd == channel_max_fd)
344 channel_max_fd = channel_find_maxfd();
345 }
346 return ret;
347}
348
Damien Miller6f83b8e2000-05-02 09:23:45 +1000349/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000350static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000351channel_close_fds(Channel *c)
352{
Damien Miller0e220db2004-06-15 10:34:08 +1000353 debug3("channel %d: close_fds r %d w %d e %d c %d",
354 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000355
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000356 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000357 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000358 channel_close_fd(&c->rfd);
359 channel_close_fd(&c->wfd);
360 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000361}
362
363/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000364void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000365channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000367 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000368 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000369
370 for (n = 0, i = 0; i < channels_alloc; i++)
371 if (channels[i])
372 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000373 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000374 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000375
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000376 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000377 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000378 xfree(s);
379
Damien Miller6f83b8e2000-05-02 09:23:45 +1000380 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000381 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000382 if (c->ctl_fd != -1)
383 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000384 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000385 buffer_free(&c->input);
386 buffer_free(&c->output);
387 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000388 if (c->remote_name) {
389 xfree(c->remote_name);
390 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100391 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000392 channels[c->self] = NULL;
393 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394}
395
Ben Lindstrome9c99912001-06-09 00:41:05 +0000396void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000397channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000398{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000399 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000400
Ben Lindstrom601e4362001-06-21 03:19:23 +0000401 for (i = 0; i < channels_alloc; i++)
402 if (channels[i] != NULL)
403 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000404}
405
406/*
407 * Closes the sockets/fds of all channels. This is used to close extra file
408 * descriptors after a fork.
409 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000410void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000411channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000412{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000413 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000414
415 for (i = 0; i < channels_alloc; i++)
416 if (channels[i] != NULL)
417 channel_close_fds(channels[i]);
418}
419
420/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000421 * Stop listening to channels.
422 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000423void
424channel_stop_listening(void)
425{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000426 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000427 Channel *c;
428
429 for (i = 0; i < channels_alloc; i++) {
430 c = channels[i];
431 if (c != NULL) {
432 switch (c->type) {
433 case SSH_CHANNEL_AUTH_SOCKET:
434 case SSH_CHANNEL_PORT_LISTENER:
435 case SSH_CHANNEL_RPORT_LISTENER:
436 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000437 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000438 channel_free(c);
439 break;
440 }
441 }
442 }
443}
444
445/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446 * Returns true if no channel has too much buffered data, and false if one or
447 * more channel is overfull.
448 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000450channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451{
452 u_int i;
453 Channel *c;
454
455 for (i = 0; i < channels_alloc; i++) {
456 c = channels[i];
457 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000458#if 0
459 if (!compat20 &&
460 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100461 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000462 c->self, buffer_len(&c->input));
463 return 0;
464 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000465#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000466 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000467 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000468 c->self, buffer_len(&c->output),
469 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000470 return 0;
471 }
472 }
473 }
474 return 1;
475}
476
477/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000478int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000479channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000481 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482 Channel *c;
483
484 for (i = 0; i < channels_alloc; i++) {
485 c = channels[i];
486 if (c == NULL)
487 continue;
488 switch (c->type) {
489 case SSH_CHANNEL_X11_LISTENER:
490 case SSH_CHANNEL_PORT_LISTENER:
491 case SSH_CHANNEL_RPORT_LISTENER:
492 case SSH_CHANNEL_CLOSED:
493 case SSH_CHANNEL_AUTH_SOCKET:
494 case SSH_CHANNEL_DYNAMIC:
495 case SSH_CHANNEL_CONNECTING:
496 case SSH_CHANNEL_ZOMBIE:
497 continue;
498 case SSH_CHANNEL_LARVAL:
499 if (!compat20)
500 fatal("cannot happen: SSH_CHANNEL_LARVAL");
501 continue;
502 case SSH_CHANNEL_OPENING:
503 case SSH_CHANNEL_OPEN:
504 case SSH_CHANNEL_X11_OPEN:
505 return 1;
506 case SSH_CHANNEL_INPUT_DRAINING:
507 case SSH_CHANNEL_OUTPUT_DRAINING:
508 if (!compat13)
509 fatal("cannot happen: OUT_DRAIN");
510 return 1;
511 default:
512 fatal("channel_still_open: bad channel type %d", c->type);
513 /* NOTREACHED */
514 }
515 }
516 return 0;
517}
518
519/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000520int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000521channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000522{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000523 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000524 Channel *c;
525
526 for (i = 0; i < channels_alloc; i++) {
527 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000528 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000529 continue;
530 switch (c->type) {
531 case SSH_CHANNEL_CLOSED:
532 case SSH_CHANNEL_DYNAMIC:
533 case SSH_CHANNEL_X11_LISTENER:
534 case SSH_CHANNEL_PORT_LISTENER:
535 case SSH_CHANNEL_RPORT_LISTENER:
536 case SSH_CHANNEL_OPENING:
537 case SSH_CHANNEL_CONNECTING:
538 case SSH_CHANNEL_ZOMBIE:
539 continue;
540 case SSH_CHANNEL_LARVAL:
541 case SSH_CHANNEL_AUTH_SOCKET:
542 case SSH_CHANNEL_OPEN:
543 case SSH_CHANNEL_X11_OPEN:
544 return i;
545 case SSH_CHANNEL_INPUT_DRAINING:
546 case SSH_CHANNEL_OUTPUT_DRAINING:
547 if (!compat13)
548 fatal("cannot happen: OUT_DRAIN");
549 return i;
550 default:
551 fatal("channel_find_open: bad channel type %d", c->type);
552 /* NOTREACHED */
553 }
554 }
555 return -1;
556}
557
558
559/*
560 * Returns a message describing the currently open forwarded connections,
561 * suitable for sending to the client. The message contains crlf pairs for
562 * newlines.
563 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000564char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000565channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566{
567 Buffer buffer;
568 Channel *c;
569 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000570 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000571
572 buffer_init(&buffer);
573 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
574 buffer_append(&buffer, buf, strlen(buf));
575 for (i = 0; i < channels_alloc; i++) {
576 c = channels[i];
577 if (c == NULL)
578 continue;
579 switch (c->type) {
580 case SSH_CHANNEL_X11_LISTENER:
581 case SSH_CHANNEL_PORT_LISTENER:
582 case SSH_CHANNEL_RPORT_LISTENER:
583 case SSH_CHANNEL_CLOSED:
584 case SSH_CHANNEL_AUTH_SOCKET:
585 case SSH_CHANNEL_ZOMBIE:
586 continue;
587 case SSH_CHANNEL_LARVAL:
588 case SSH_CHANNEL_OPENING:
589 case SSH_CHANNEL_CONNECTING:
590 case SSH_CHANNEL_DYNAMIC:
591 case SSH_CHANNEL_OPEN:
592 case SSH_CHANNEL_X11_OPEN:
593 case SSH_CHANNEL_INPUT_DRAINING:
594 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000595 snprintf(buf, sizeof buf,
596 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000597 c->self, c->remote_name,
598 c->type, c->remote_id,
599 c->istate, buffer_len(&c->input),
600 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000601 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602 buffer_append(&buffer, buf, strlen(buf));
603 continue;
604 default:
605 fatal("channel_open_message: bad channel type %d", c->type);
606 /* NOTREACHED */
607 }
608 }
609 buffer_append(&buffer, "\0", 1);
610 cp = xstrdup(buffer_ptr(&buffer));
611 buffer_free(&buffer);
612 return cp;
613}
614
615void
616channel_send_open(int id)
617{
618 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000619
Ben Lindstrome9c99912001-06-09 00:41:05 +0000620 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000621 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000622 return;
623 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000624 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625 packet_start(SSH2_MSG_CHANNEL_OPEN);
626 packet_put_cstring(c->ctype);
627 packet_put_int(c->self);
628 packet_put_int(c->local_window);
629 packet_put_int(c->local_maxpacket);
630 packet_send();
631}
632
633void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000634channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000635{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000636 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000637
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000639 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000640 return;
641 }
Damien Miller0e220db2004-06-15 10:34:08 +1000642 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 packet_start(SSH2_MSG_CHANNEL_REQUEST);
644 packet_put_int(c->remote_id);
645 packet_put_cstring(service);
646 packet_put_char(wantconfirm);
647}
Damien Miller4f7becb2006-03-26 14:10:14 +1100648
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649void
Damien Miller0e220db2004-06-15 10:34:08 +1000650channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000651{
652 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000653
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000655 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 return;
657 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100658 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000659 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660}
Damien Miller4f7becb2006-03-26 14:10:14 +1100661
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662void
Damien Miller39eda6e2005-11-05 14:52:50 +1100663channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664{
Damien Millerd47c62a2005-12-13 19:33:57 +1100665 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000666
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000668 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000669 return;
670 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000671 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100672 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673}
Damien Miller4f7becb2006-03-26 14:10:14 +1100674
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675void
676channel_cancel_cleanup(int id)
677{
Damien Millerd47c62a2005-12-13 19:33:57 +1100678 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000679
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000681 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682 return;
683 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000684 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100685 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686}
Damien Miller4f7becb2006-03-26 14:10:14 +1100687
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688void
Damien Miller077b2382005-12-31 16:22:32 +1100689channel_register_filter(int id, channel_infilter_fn *ifn,
690 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691{
692 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000693
Ben Lindstrome9c99912001-06-09 00:41:05 +0000694 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000695 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696 return;
697 }
Damien Miller077b2382005-12-31 16:22:32 +1100698 c->input_filter = ifn;
699 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000700}
701
702void
703channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100704 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705{
706 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000707
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
709 fatal("channel_activate for non-larval channel %d.", id);
710 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
711 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100712 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
714 packet_put_int(c->remote_id);
715 packet_put_int(c->local_window);
716 packet_send();
717}
718
Damien Miller5428f641999-11-25 11:54:57 +1100719/*
Damien Millerb38eff82000-04-01 11:09:21 +1000720 * 'channel_pre*' are called just before select() to add any bits relevant to
721 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100722 */
Damien Millerb38eff82000-04-01 11:09:21 +1000723/*
724 * 'channel_post*': perform any appropriate operations for channels which
725 * have events pending.
726 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100727typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000728chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
729chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
730
Ben Lindstrombba81212001-06-25 05:01:22 +0000731static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100732channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000733{
734 FD_SET(c->sock, readset);
735}
736
Ben Lindstrombba81212001-06-25 05:01:22 +0000737static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100738channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000739{
740 debug3("channel %d: waiting for connection", c->self);
741 FD_SET(c->sock, writeset);
742}
743
Ben Lindstrombba81212001-06-25 05:01:22 +0000744static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100745channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000746{
747 if (buffer_len(&c->input) < packet_get_maxsize())
748 FD_SET(c->sock, readset);
749 if (buffer_len(&c->output) > 0)
750 FD_SET(c->sock, writeset);
751}
752
Ben Lindstrombba81212001-06-25 05:01:22 +0000753static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100754channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000755{
Damien Millerde6987c2002-01-22 23:20:40 +1100756 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000757
Damien Miller33b13562000-04-04 14:38:59 +1000758 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100759 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000760 buffer_len(&c->input) < limit &&
761 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000762 FD_SET(c->rfd, readset);
763 if (c->ostate == CHAN_OUTPUT_OPEN ||
764 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
765 if (buffer_len(&c->output) > 0) {
766 FD_SET(c->wfd, writeset);
767 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000768 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000769 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
770 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000771 else
772 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000773 }
774 }
775 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100776 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000777 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
778 buffer_len(&c->extended) > 0)
779 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000780 else if (!(c->flags & CHAN_EOF_SENT) &&
781 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000782 buffer_len(&c->extended) < c->remote_window)
783 FD_SET(c->efd, readset);
784 }
Damien Miller0e220db2004-06-15 10:34:08 +1000785 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000786 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000787 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
788 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000789}
790
Ben Lindstrombba81212001-06-25 05:01:22 +0000791static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100792channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000793{
794 if (buffer_len(&c->input) == 0) {
795 packet_start(SSH_MSG_CHANNEL_CLOSE);
796 packet_put_int(c->remote_id);
797 packet_send();
798 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000799 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000800 }
801}
802
Ben Lindstrombba81212001-06-25 05:01:22 +0000803static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100804channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000805{
806 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000807 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000808 else
Damien Millerb38eff82000-04-01 11:09:21 +1000809 FD_SET(c->sock, writeset);
810}
811
812/*
813 * This is a special state for X11 authentication spoofing. An opened X11
814 * connection (when authentication spoofing is being done) remains in this
815 * state until the first packet has been completely read. The authentication
816 * data in that packet is then substituted by the real data if it matches the
817 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000818 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000819 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000820 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000821static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000822x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000823{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000824 u_char *ucp;
825 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000826
827 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000828 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000829 return 0;
830
831 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100832 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000833 if (ucp[0] == 0x42) { /* Byte order MSB first. */
834 proto_len = 256 * ucp[6] + ucp[7];
835 data_len = 256 * ucp[8] + ucp[9];
836 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
837 proto_len = ucp[6] + 256 * ucp[7];
838 data_len = ucp[8] + 256 * ucp[9];
839 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000840 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100841 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000842 return -1;
843 }
844
845 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000846 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000847 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
848 return 0;
849
850 /* Check if authentication protocol matches. */
851 if (proto_len != strlen(x11_saved_proto) ||
852 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000853 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000854 return -1;
855 }
856 /* Check if authentication data matches our fake data. */
857 if (data_len != x11_fake_data_len ||
858 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
859 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000860 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000861 return -1;
862 }
863 /* Check fake data length */
864 if (x11_fake_data_len != x11_saved_data_len) {
865 error("X11 fake_data_len %d != saved_data_len %d",
866 x11_fake_data_len, x11_saved_data_len);
867 return -1;
868 }
869 /*
870 * Received authentication protocol and data match
871 * our fake data. Substitute the fake data with real
872 * data.
873 */
874 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
875 x11_saved_data, x11_saved_data_len);
876 return 1;
877}
878
Ben Lindstrombba81212001-06-25 05:01:22 +0000879static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100880channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000881{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000883
Damien Millerb38eff82000-04-01 11:09:21 +1000884 if (ret == 1) {
885 /* Start normal processing for the channel. */
886 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000887 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000888 } else if (ret == -1) {
889 /*
890 * We have received an X11 connection that has bad
891 * authentication information.
892 */
Damien Miller996acd22003-04-09 20:59:48 +1000893 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000894 buffer_clear(&c->input);
895 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000896 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000897 c->sock = -1;
898 c->type = SSH_CHANNEL_CLOSED;
899 packet_start(SSH_MSG_CHANNEL_CLOSE);
900 packet_put_int(c->remote_id);
901 packet_send();
902 }
903}
904
Ben Lindstrombba81212001-06-25 05:01:22 +0000905static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100906channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000907{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000908 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000909
910 /* c->force_drain = 1; */
911
Damien Millerb38eff82000-04-01 11:09:21 +1000912 if (ret == 1) {
913 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100914 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000915 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000916 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000917 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100918 chan_read_failed(c);
919 buffer_clear(&c->input);
920 chan_ibuf_empty(c);
921 buffer_clear(&c->output);
922 /* for proto v1, the peer will send an IEOF */
923 if (compat20)
924 chan_write_failed(c);
925 else
926 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000927 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000928 }
929}
930
Ben Lindstromb3921512001-04-11 15:57:50 +0000931/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000932static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100933channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000934{
Damien Millera10f5612002-09-12 09:49:15 +1000935 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000936 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100937 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 struct {
939 u_int8_t version;
940 u_int8_t command;
941 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000942 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000943 } s4_req, s4_rsp;
944
Ben Lindstromb3921512001-04-11 15:57:50 +0000945 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000946
947 have = buffer_len(&c->input);
948 len = sizeof(s4_req);
949 if (have < len)
950 return 0;
951 p = buffer_ptr(&c->input);
952 for (found = 0, i = len; i < have; i++) {
953 if (p[i] == '\0') {
954 found = 1;
955 break;
956 }
957 if (i > 1024) {
958 /* the peer is probably sending garbage */
959 debug("channel %d: decode socks4: too long",
960 c->self);
961 return -1;
962 }
963 }
964 if (!found)
965 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000966 buffer_get(&c->input, (char *)&s4_req.version, 1);
967 buffer_get(&c->input, (char *)&s4_req.command, 1);
968 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000969 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000970 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000971 p = buffer_ptr(&c->input);
972 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000973 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000974 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000975 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000976 c->self, len, have);
977 strlcpy(username, p, sizeof(username));
978 buffer_consume(&c->input, len);
979 buffer_consume(&c->input, 1); /* trailing '\0' */
980
Ben Lindstromb3921512001-04-11 15:57:50 +0000981 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000982 strlcpy(c->path, host, sizeof(c->path));
983 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100984
Damien Millerfbdeece2003-09-02 22:52:31 +1000985 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000986 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000987
Ben Lindstromb3921512001-04-11 15:57:50 +0000988 if (s4_req.command != 1) {
989 debug("channel %d: cannot handle: socks4 cn %d",
990 c->self, s4_req.command);
991 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000992 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000993 s4_rsp.version = 0; /* vn: 0 for reply */
994 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000995 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000996 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +1100997 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000998 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000999}
1000
Darren Tucker46471c92003-07-03 13:55:19 +10001001/* try to decode a socks5 header */
1002#define SSH_SOCKS5_AUTHDONE 0x1000
1003#define SSH_SOCKS5_NOAUTH 0x00
1004#define SSH_SOCKS5_IPV4 0x01
1005#define SSH_SOCKS5_DOMAIN 0x03
1006#define SSH_SOCKS5_IPV6 0x04
1007#define SSH_SOCKS5_CONNECT 0x01
1008#define SSH_SOCKS5_SUCCESS 0x00
1009
1010static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001011channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001012{
1013 struct {
1014 u_int8_t version;
1015 u_int8_t command;
1016 u_int8_t reserved;
1017 u_int8_t atyp;
1018 } s5_req, s5_rsp;
1019 u_int16_t dest_port;
1020 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001021 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001022
1023 debug2("channel %d: decode socks5", c->self);
1024 p = buffer_ptr(&c->input);
1025 if (p[0] != 0x05)
1026 return -1;
1027 have = buffer_len(&c->input);
1028 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1029 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001030 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001031 return 0;
1032 nmethods = p[1];
1033 if (have < nmethods + 2)
1034 return 0;
1035 /* look for method: "NO AUTHENTICATION REQUIRED" */
1036 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1037 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1038 found = 1;
1039 break;
1040 }
1041 }
1042 if (!found) {
1043 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1044 c->self);
1045 return -1;
1046 }
1047 buffer_consume(&c->input, nmethods + 2);
1048 buffer_put_char(&c->output, 0x05); /* version */
1049 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1050 FD_SET(c->sock, writeset);
1051 c->flags |= SSH_SOCKS5_AUTHDONE;
1052 debug2("channel %d: socks5 auth done", c->self);
1053 return 0; /* need more */
1054 }
1055 debug2("channel %d: socks5 post auth", c->self);
1056 if (have < sizeof(s5_req)+1)
1057 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001058 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001059 if (s5_req.version != 0x05 ||
1060 s5_req.command != SSH_SOCKS5_CONNECT ||
1061 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001062 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001063 return -1;
1064 }
Darren Tucker47eede72005-03-14 23:08:12 +11001065 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001066 case SSH_SOCKS5_IPV4:
1067 addrlen = 4;
1068 af = AF_INET;
1069 break;
1070 case SSH_SOCKS5_DOMAIN:
1071 addrlen = p[sizeof(s5_req)];
1072 af = -1;
1073 break;
1074 case SSH_SOCKS5_IPV6:
1075 addrlen = 16;
1076 af = AF_INET6;
1077 break;
1078 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001079 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001080 return -1;
1081 }
Damien Miller0f077072006-07-10 22:21:02 +10001082 need = sizeof(s5_req) + addrlen + 2;
1083 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1084 need++;
1085 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001086 return 0;
1087 buffer_consume(&c->input, sizeof(s5_req));
1088 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1089 buffer_consume(&c->input, 1); /* host string length */
1090 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1091 buffer_get(&c->input, (char *)&dest_port, 2);
1092 dest_addr[addrlen] = '\0';
1093 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001094 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001095 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1096 return -1;
1097 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001098
Damien Millerfbdeece2003-09-02 22:52:31 +10001099 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001100 c->self, c->path, c->host_port, s5_req.command);
1101
1102 s5_rsp.version = 0x05;
1103 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1104 s5_rsp.reserved = 0; /* ignored */
1105 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1106 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1107 dest_port = 0; /* ignored */
1108
Damien Millera0fdce92006-03-26 14:28:50 +11001109 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1110 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1111 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001112 return 1;
1113}
1114
Ben Lindstromb3921512001-04-11 15:57:50 +00001115/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001116static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001117channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001118{
1119 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001120 u_int have;
1121 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001122
1123 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001124 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001125 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001126 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001127 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001128 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001129 /* need more */
1130 FD_SET(c->sock, readset);
1131 return;
1132 }
1133 /* try to guess the protocol */
1134 p = buffer_ptr(&c->input);
1135 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001136 case 0x04:
1137 ret = channel_decode_socks4(c, readset, writeset);
1138 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001139 case 0x05:
1140 ret = channel_decode_socks5(c, readset, writeset);
1141 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001142 default:
1143 ret = -1;
1144 break;
1145 }
1146 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001148 } else if (ret == 0) {
1149 debug2("channel %d: pre_dynamic: need more", c->self);
1150 /* need more */
1151 FD_SET(c->sock, readset);
1152 } else {
1153 /* switch to the next state */
1154 c->type = SSH_CHANNEL_OPENING;
1155 port_open_helper(c, "direct-tcpip");
1156 }
1157}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001158
Damien Millerb38eff82000-04-01 11:09:21 +10001159/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001160static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001161channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001162{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001163 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001164 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001165 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001166 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001167 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001168 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001169
1170 if (FD_ISSET(c->sock, readset)) {
1171 debug("X11 connection requested.");
1172 addrlen = sizeof(addr);
1173 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001174 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001175 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001176 channel_close_fd(&c->sock);
1177 chan_mark_dead(c);
1178 }
Damien Millerb38eff82000-04-01 11:09:21 +10001179 if (newsock < 0) {
1180 error("accept: %.100s", strerror(errno));
1181 return;
1182 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001183 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001184 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001185 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001186 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001187 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001188
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001189 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001190 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001191 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001192 if (compat20) {
1193 packet_start(SSH2_MSG_CHANNEL_OPEN);
1194 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001195 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001196 packet_put_int(nc->local_window_max);
1197 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001198 /* originator ipaddr and port */
1199 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001200 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001201 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001202 } else {
1203 packet_put_int(remote_port);
1204 }
Damien Millerbd483e72000-04-30 10:00:53 +10001205 packet_send();
1206 } else {
1207 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001208 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001209 if (packet_get_protocol_flags() &
1210 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001211 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001212 packet_send();
1213 }
Damien Millerd83ff352001-01-30 09:19:34 +11001214 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001215 }
1216}
1217
Ben Lindstrombba81212001-06-25 05:01:22 +00001218static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001219port_open_helper(Channel *c, char *rtype)
1220{
1221 int direct;
1222 char buf[1024];
1223 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001224 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001225
1226 direct = (strcmp(rtype, "direct-tcpip") == 0);
1227
1228 snprintf(buf, sizeof buf,
1229 "%s: listening port %d for %.100s port %d, "
1230 "connect from %.200s port %d",
1231 rtype, c->listening_port, c->path, c->host_port,
1232 remote_ipaddr, remote_port);
1233
1234 xfree(c->remote_name);
1235 c->remote_name = xstrdup(buf);
1236
1237 if (compat20) {
1238 packet_start(SSH2_MSG_CHANNEL_OPEN);
1239 packet_put_cstring(rtype);
1240 packet_put_int(c->self);
1241 packet_put_int(c->local_window_max);
1242 packet_put_int(c->local_maxpacket);
1243 if (direct) {
1244 /* target host, port */
1245 packet_put_cstring(c->path);
1246 packet_put_int(c->host_port);
1247 } else {
1248 /* listen address, port */
1249 packet_put_cstring(c->path);
1250 packet_put_int(c->listening_port);
1251 }
1252 /* originator host and port */
1253 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001254 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001255 packet_send();
1256 } else {
1257 packet_start(SSH_MSG_PORT_OPEN);
1258 packet_put_int(c->self);
1259 packet_put_cstring(c->path);
1260 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001261 if (packet_get_protocol_flags() &
1262 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001263 packet_put_cstring(c->remote_name);
1264 packet_send();
1265 }
1266 xfree(remote_ipaddr);
1267}
1268
Damien Miller5e7fd072005-11-05 14:53:39 +11001269static void
1270channel_set_reuseaddr(int fd)
1271{
1272 int on = 1;
1273
1274 /*
1275 * Set socket options.
1276 * Allow local port reuse in TIME_WAIT.
1277 */
1278 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1279 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1280}
1281
Damien Millerb38eff82000-04-01 11:09:21 +10001282/*
1283 * This socket is listening for connections to a forwarded TCP/IP port.
1284 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001285static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001286channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001287{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001288 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001289 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001290 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001291 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001292 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001293
Damien Millerb38eff82000-04-01 11:09:21 +10001294 if (FD_ISSET(c->sock, readset)) {
1295 debug("Connection to port %d forwarding "
1296 "to %.100s port %d requested.",
1297 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001298
Damien Miller4623a752001-10-10 15:03:58 +10001299 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1300 nextstate = SSH_CHANNEL_OPENING;
1301 rtype = "forwarded-tcpip";
1302 } else {
1303 if (c->host_port == 0) {
1304 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001305 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001306 } else {
1307 nextstate = SSH_CHANNEL_OPENING;
1308 rtype = "direct-tcpip";
1309 }
1310 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001311
Damien Millerb38eff82000-04-01 11:09:21 +10001312 addrlen = sizeof(addr);
1313 newsock = accept(c->sock, &addr, &addrlen);
1314 if (newsock < 0) {
1315 error("accept: %.100s", strerror(errno));
1316 return;
1317 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001318 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001319 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1320 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001321 nc->listening_port = c->listening_port;
1322 nc->host_port = c->host_port;
1323 strlcpy(nc->path, c->path, sizeof(nc->path));
1324
Damien Miller4623a752001-10-10 15:03:58 +10001325 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1326 /*
1327 * do not call the channel_post handler until
1328 * this flag has been reset by a pre-handler.
1329 * otherwise the FD_ISSET calls might overflow
1330 */
1331 nc->delayed = 1;
1332 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001333 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001334 }
Damien Millerb38eff82000-04-01 11:09:21 +10001335 }
1336}
1337
1338/*
1339 * This is the authentication agent socket listening for connections from
1340 * clients.
1341 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001342static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001343channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001344{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001345 Channel *nc;
1346 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001347 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001348 socklen_t addrlen;
1349
1350 if (FD_ISSET(c->sock, readset)) {
1351 addrlen = sizeof(addr);
1352 newsock = accept(c->sock, &addr, &addrlen);
1353 if (newsock < 0) {
1354 error("accept from auth socket: %.100s", strerror(errno));
1355 return;
1356 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001357 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001358 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1359 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001360 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001361 if (compat20) {
1362 packet_start(SSH2_MSG_CHANNEL_OPEN);
1363 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001364 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001365 packet_put_int(c->local_window_max);
1366 packet_put_int(c->local_maxpacket);
1367 } else {
1368 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001369 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001370 }
Damien Millerb38eff82000-04-01 11:09:21 +10001371 packet_send();
1372 }
1373}
1374
Ben Lindstrombba81212001-06-25 05:01:22 +00001375static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001376channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001377{
Ben Lindstrom69128662001-05-08 20:07:39 +00001378 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001379 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001380
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001381 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001382 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001383 err = errno;
1384 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001385 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001386 if (err == 0) {
1387 debug("channel %d: connected", c->self);
1388 c->type = SSH_CHANNEL_OPEN;
1389 if (compat20) {
1390 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1391 packet_put_int(c->remote_id);
1392 packet_put_int(c->self);
1393 packet_put_int(c->local_window);
1394 packet_put_int(c->local_maxpacket);
1395 } else {
1396 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1397 packet_put_int(c->remote_id);
1398 packet_put_int(c->self);
1399 }
1400 } else {
1401 debug("channel %d: not connected: %s",
1402 c->self, strerror(err));
1403 if (compat20) {
1404 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1405 packet_put_int(c->remote_id);
1406 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1407 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1408 packet_put_cstring(strerror(err));
1409 packet_put_cstring("");
1410 }
1411 } else {
1412 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1413 packet_put_int(c->remote_id);
1414 }
1415 chan_mark_dead(c);
1416 }
1417 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001418 }
1419}
1420
Ben Lindstrombba81212001-06-25 05:01:22 +00001421static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001422channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001423{
Darren Tucker11327cc2005-03-14 23:22:25 +11001424 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001425 int len;
1426
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001427 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001428 FD_ISSET(c->rfd, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001429 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001430 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001431 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1432 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001433#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001434 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001435#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001436 if ((!c->isatty && len <= 0) ||
1437 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001438#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001439 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001440 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001441 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001442 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001443 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001444 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001445 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001446 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001447 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001448 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001449 } else {
1450 chan_read_failed(c);
1451 }
1452 return -1;
1453 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001454 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001455 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001456 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001457 chan_read_failed(c);
1458 }
Damien Millerd27b9472005-12-13 19:29:02 +11001459 } else if (c->datagram) {
1460 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001461 } else {
1462 buffer_append(&c->input, buf, len);
1463 }
Damien Millerb38eff82000-04-01 11:09:21 +10001464 }
1465 return 1;
1466}
Damien Miller4f7becb2006-03-26 14:10:14 +11001467
Ben Lindstrombba81212001-06-25 05:01:22 +00001468static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001469channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001470{
Ben Lindstrome229b252001-03-05 06:28:06 +00001471 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001472 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001473 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001474 int len;
1475
1476 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001477 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001478 FD_ISSET(c->wfd, writeset) &&
1479 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001480 if (c->output_filter != NULL) {
1481 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1482 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001483 if (c->type != SSH_CHANNEL_OPEN)
1484 chan_mark_dead(c);
1485 else
1486 chan_write_failed(c);
1487 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001488 }
1489 } else if (c->datagram) {
1490 buf = data = buffer_get_string(&c->output, &dlen);
1491 } else {
1492 buf = data = buffer_ptr(&c->output);
1493 dlen = buffer_len(&c->output);
1494 }
1495
Damien Millerd27b9472005-12-13 19:29:02 +11001496 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001497 /* ignore truncated writes, datagrams might get lost */
1498 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001499 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001500 xfree(data);
1501 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1502 return 1;
1503 if (len <= 0) {
1504 if (c->type != SSH_CHANNEL_OPEN)
1505 chan_mark_dead(c);
1506 else
1507 chan_write_failed(c);
1508 return -1;
1509 }
1510 return 1;
1511 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001512#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001513 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001514 if (compat20 && c->wfd_isatty)
1515 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001516#endif
Damien Miller077b2382005-12-31 16:22:32 +11001517
1518 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001519 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1520 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001521 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001522 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001523 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001525 return -1;
1526 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001527 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001528 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001529 c->type = SSH_CHANNEL_INPUT_DRAINING;
1530 } else {
1531 chan_write_failed(c);
1532 }
1533 return -1;
1534 }
Damien Miller077b2382005-12-31 16:22:32 +11001535 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001536 if (tcgetattr(c->wfd, &tio) == 0 &&
1537 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1538 /*
1539 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001540 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001541 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001542 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001543 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001544 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001545 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001546 }
1547 }
Damien Millerb38eff82000-04-01 11:09:21 +10001548 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001549 if (compat20 && len > 0) {
1550 c->local_consumed += len;
1551 }
1552 }
1553 return 1;
1554}
Damien Miller4f7becb2006-03-26 14:10:14 +11001555
Ben Lindstrombba81212001-06-25 05:01:22 +00001556static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001557channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001558{
Darren Tucker11327cc2005-03-14 23:22:25 +11001559 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001560 int len;
1561
Damien Miller1383bd82000-04-06 12:32:37 +10001562/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001563 if (c->efd != -1) {
1564 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1565 FD_ISSET(c->efd, writeset) &&
1566 buffer_len(&c->extended) > 0) {
1567 len = write(c->efd, buffer_ptr(&c->extended),
1568 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001569 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001570 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001571 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1572 return 1;
1573 if (len <= 0) {
1574 debug2("channel %d: closing write-efd %d",
1575 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001576 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001577 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001578 buffer_consume(&c->extended, len);
1579 c->local_consumed += len;
1580 }
1581 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1582 FD_ISSET(c->efd, readset)) {
1583 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001584 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001585 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001586 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1587 return 1;
1588 if (len <= 0) {
1589 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001590 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001591 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001592 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001593 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001594 }
Damien Miller33b13562000-04-04 14:38:59 +10001595 }
1596 }
1597 return 1;
1598}
Damien Miller4f7becb2006-03-26 14:10:14 +11001599
Ben Lindstrombba81212001-06-25 05:01:22 +00001600static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001601channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001602{
1603 char buf[16];
1604 int len;
1605
1606 /* Monitor control fd to detect if the slave client exits */
1607 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1608 len = read(c->ctl_fd, buf, sizeof(buf));
1609 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1610 return 1;
1611 if (len <= 0) {
1612 debug2("channel %d: ctl read<=0", c->self);
1613 if (c->type != SSH_CHANNEL_OPEN) {
1614 debug2("channel %d: not open", c->self);
1615 chan_mark_dead(c);
1616 return -1;
1617 } else {
1618 chan_read_failed(c);
1619 chan_write_failed(c);
1620 }
1621 return -1;
1622 } else
1623 fatal("%s: unexpected data on ctl fd", __func__);
1624 }
1625 return 1;
1626}
Damien Miller4f7becb2006-03-26 14:10:14 +11001627
Damien Miller0e220db2004-06-15 10:34:08 +10001628static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001629channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001630{
Ben Lindstromb3921512001-04-11 15:57:50 +00001631 if (c->type == SSH_CHANNEL_OPEN &&
1632 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001633 c->local_window < c->local_window_max/2 &&
1634 c->local_consumed > 0) {
1635 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1636 packet_put_int(c->remote_id);
1637 packet_put_int(c->local_consumed);
1638 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001639 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001640 c->self, c->local_window,
1641 c->local_consumed);
1642 c->local_window += c->local_consumed;
1643 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001644 }
1645 return 1;
1646}
1647
Ben Lindstrombba81212001-06-25 05:01:22 +00001648static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001649channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001650{
Damien Miller4623a752001-10-10 15:03:58 +10001651 if (c->delayed)
1652 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001653 channel_handle_rfd(c, readset, writeset);
1654 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001655 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001656 return;
Damien Miller33b13562000-04-04 14:38:59 +10001657 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001658 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001659 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001660}
1661
Ben Lindstrombba81212001-06-25 05:01:22 +00001662static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001663channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001664{
1665 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001666
Damien Millerb38eff82000-04-01 11:09:21 +10001667 /* Send buffered output data to the socket. */
1668 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1669 len = write(c->sock, buffer_ptr(&c->output),
1670 buffer_len(&c->output));
1671 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001672 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001673 else
1674 buffer_consume(&c->output, len);
1675 }
1676}
1677
Ben Lindstrombba81212001-06-25 05:01:22 +00001678static void
Damien Miller33b13562000-04-04 14:38:59 +10001679channel_handler_init_20(void)
1680{
Damien Millerde6987c2002-01-22 23:20:40 +11001681 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001682 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001683 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001684 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001685 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001686 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001687 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001688 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001689
Damien Millerde6987c2002-01-22 23:20:40 +11001690 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001691 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001692 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001693 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001694 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001695 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001696 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001697}
1698
Ben Lindstrombba81212001-06-25 05:01:22 +00001699static void
Damien Millerb38eff82000-04-01 11:09:21 +10001700channel_handler_init_13(void)
1701{
1702 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1703 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1704 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1705 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1706 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1707 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1708 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001709 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001710 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001711
Damien Millerde6987c2002-01-22 23:20:40 +11001712 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001713 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1714 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1715 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1716 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001717 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001718 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001719}
1720
Ben Lindstrombba81212001-06-25 05:01:22 +00001721static void
Damien Millerb38eff82000-04-01 11:09:21 +10001722channel_handler_init_15(void)
1723{
Damien Millerde6987c2002-01-22 23:20:40 +11001724 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001725 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001726 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1727 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1728 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001729 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001730 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001731
1732 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1733 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1734 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001735 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001736 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001737 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001738}
1739
Ben Lindstrombba81212001-06-25 05:01:22 +00001740static void
Damien Millerb38eff82000-04-01 11:09:21 +10001741channel_handler_init(void)
1742{
1743 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001744
Damien Miller9f0f5c62001-12-21 14:45:46 +11001745 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001746 channel_pre[i] = NULL;
1747 channel_post[i] = NULL;
1748 }
Damien Miller33b13562000-04-04 14:38:59 +10001749 if (compat20)
1750 channel_handler_init_20();
1751 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001752 channel_handler_init_13();
1753 else
1754 channel_handler_init_15();
1755}
1756
Damien Miller3ec27592001-10-12 11:35:04 +10001757/* gc dead channels */
1758static void
1759channel_garbage_collect(Channel *c)
1760{
1761 if (c == NULL)
1762 return;
1763 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001764 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001765 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001766 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001767 c->detach_user(c->self, NULL);
1768 /* if we still have a callback */
1769 if (c->detach_user != NULL)
1770 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001771 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001772 }
1773 if (!chan_is_dead(c, 1))
1774 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001775 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001776 channel_free(c);
1777}
1778
Ben Lindstrombba81212001-06-25 05:01:22 +00001779static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001780channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001781{
1782 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001783 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001784 Channel *c;
1785
1786 if (!did_init) {
1787 channel_handler_init();
1788 did_init = 1;
1789 }
1790 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001791 c = channels[i];
1792 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001793 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001794 if (ftab[c->type] != NULL)
1795 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001796 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001797 }
1798}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001799
Ben Lindstrome9c99912001-06-09 00:41:05 +00001800/*
1801 * Allocate/update select bitmasks and add any bits relevant to channels in
1802 * select bitmasks.
1803 */
Damien Miller4af51302000-04-16 11:18:38 +10001804void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001805channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001806 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001807{
Damien Miller36812092006-03-26 14:22:47 +11001808 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001809
1810 n = MAX(*maxfdp, channel_max_fd);
1811
Damien Miller36812092006-03-26 14:22:47 +11001812 nfdset = howmany(n+1, NFDBITS);
1813 /* Explicitly test here, because xrealloc isn't always called */
1814 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1815 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1816 sz = nfdset * sizeof(fd_mask);
1817
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001818 /* perhaps check sz < nalloc/2 and shrink? */
1819 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001820 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1821 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001822 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001823 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001824 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001825 memset(*readsetp, 0, sz);
1826 memset(*writesetp, 0, sz);
1827
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001828 if (!rekeying)
1829 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001830}
1831
Ben Lindstrome9c99912001-06-09 00:41:05 +00001832/*
1833 * After select, perform any appropriate operations for channels which have
1834 * events pending.
1835 */
Damien Miller4af51302000-04-16 11:18:38 +10001836void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001837channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001838{
Damien Millerb38eff82000-04-01 11:09:21 +10001839 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840}
1841
Ben Lindstrome9c99912001-06-09 00:41:05 +00001842
Damien Miller5e953212001-01-30 09:14:00 +11001843/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001844void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001845channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001846{
Damien Millerb38eff82000-04-01 11:09:21 +10001847 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001848 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001849
Damien Miller95def091999-11-25 00:26:21 +11001850 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001851 c = channels[i];
1852 if (c == NULL)
1853 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001854
Ben Lindstrome9c99912001-06-09 00:41:05 +00001855 /*
1856 * We are only interested in channels that can have buffered
1857 * incoming data.
1858 */
Damien Miller34132e52000-01-14 15:45:46 +11001859 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001860 if (c->type != SSH_CHANNEL_OPEN &&
1861 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001862 continue;
1863 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001864 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001865 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001866 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001867 if (compat20 &&
1868 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001869 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001870 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001871 continue;
1872 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001873
Damien Miller95def091999-11-25 00:26:21 +11001874 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001875 if ((c->istate == CHAN_INPUT_OPEN ||
1876 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1877 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001878 if (c->datagram) {
1879 if (len > 0) {
1880 u_char *data;
1881 u_int dlen;
1882
1883 data = buffer_get_string(&c->input,
1884 &dlen);
1885 packet_start(SSH2_MSG_CHANNEL_DATA);
1886 packet_put_int(c->remote_id);
1887 packet_put_string(data, dlen);
1888 packet_send();
1889 c->remote_window -= dlen + 4;
1890 xfree(data);
1891 }
1892 continue;
1893 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001894 /*
1895 * Send some data for the other side over the secure
1896 * connection.
1897 */
Damien Miller33b13562000-04-04 14:38:59 +10001898 if (compat20) {
1899 if (len > c->remote_window)
1900 len = c->remote_window;
1901 if (len > c->remote_maxpacket)
1902 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001903 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001904 if (packet_is_interactive()) {
1905 if (len > 1024)
1906 len = 512;
1907 } else {
1908 /* Keep the packets at reasonable size. */
1909 if (len > packet_get_maxsize()/2)
1910 len = packet_get_maxsize()/2;
1911 }
Damien Miller95def091999-11-25 00:26:21 +11001912 }
Damien Millerb38eff82000-04-01 11:09:21 +10001913 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001914 packet_start(compat20 ?
1915 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001916 packet_put_int(c->remote_id);
1917 packet_put_string(buffer_ptr(&c->input), len);
1918 packet_send();
1919 buffer_consume(&c->input, len);
1920 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001921 }
1922 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001923 if (compat13)
1924 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001925 /*
1926 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001927 * tell peer, that we will not send more data: send IEOF.
1928 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001929 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001930 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001931 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1932 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001933 else
1934 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001935 }
Damien Miller33b13562000-04-04 14:38:59 +10001936 /* Send extended data, i.e. stderr */
1937 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001938 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001939 c->remote_window > 0 &&
1940 (len = buffer_len(&c->extended)) > 0 &&
1941 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001942 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001943 c->self, c->remote_window, buffer_len(&c->extended),
1944 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001945 if (len > c->remote_window)
1946 len = c->remote_window;
1947 if (len > c->remote_maxpacket)
1948 len = c->remote_maxpacket;
1949 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1950 packet_put_int(c->remote_id);
1951 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1952 packet_put_string(buffer_ptr(&c->extended), len);
1953 packet_send();
1954 buffer_consume(&c->extended, len);
1955 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001956 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001957 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001958 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001959}
1960
Ben Lindstrome9c99912001-06-09 00:41:05 +00001961
1962/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001963
1964/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001965void
Damien Miller630d6f42002-01-22 23:17:30 +11001966channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001967{
Damien Miller34132e52000-01-14 15:45:46 +11001968 int id;
Damien Miller95def091999-11-25 00:26:21 +11001969 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001970 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001971 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001972
Damien Miller95def091999-11-25 00:26:21 +11001973 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001974 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001975 c = channel_lookup(id);
1976 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001977 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001978
Damien Miller95def091999-11-25 00:26:21 +11001979 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001980 if (c->type != SSH_CHANNEL_OPEN &&
1981 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001982 return;
1983
Damien Miller95def091999-11-25 00:26:21 +11001984 /* Get the data. */
1985 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001986
Damien Millera04ad492004-01-21 11:02:09 +11001987 /*
1988 * Ignore data for protocol > 1.3 if output end is no longer open.
1989 * For protocol 2 the sending side is reducing its window as it sends
1990 * data, so we must 'fake' consumption of the data in order to ensure
1991 * that window updates are sent back. Otherwise the connection might
1992 * deadlock.
1993 */
1994 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1995 if (compat20) {
1996 c->local_window -= data_len;
1997 c->local_consumed += data_len;
1998 }
1999 xfree(data);
2000 return;
2001 }
2002
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002003 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002004 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002005 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002006 c->self, data_len, c->local_maxpacket);
2007 }
2008 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002009 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002010 c->self, data_len, c->local_window);
2011 xfree(data);
2012 return;
2013 }
2014 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002015 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002016 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002017 if (c->datagram)
2018 buffer_put_string(&c->output, data, data_len);
2019 else
2020 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002021 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002022}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002023
Damien Millerd79b4242006-03-31 23:11:44 +11002024/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002025void
Damien Miller630d6f42002-01-22 23:17:30 +11002026channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002027{
2028 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002029 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002030 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002031 Channel *c;
2032
2033 /* Get the channel number and verify it. */
2034 id = packet_get_int();
2035 c = channel_lookup(id);
2036
2037 if (c == NULL)
2038 packet_disconnect("Received extended_data for bad channel %d.", id);
2039 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002040 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002041 return;
2042 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002043 if (c->flags & CHAN_EOF_RCVD) {
2044 if (datafellows & SSH_BUG_EXTEOF)
2045 debug("channel %d: accepting ext data after eof", id);
2046 else
2047 packet_disconnect("Received extended_data after EOF "
2048 "on channel %d.", id);
2049 }
Damien Miller33b13562000-04-04 14:38:59 +10002050 tcode = packet_get_int();
2051 if (c->efd == -1 ||
2052 c->extended_usage != CHAN_EXTENDED_WRITE ||
2053 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002054 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002055 return;
2056 }
2057 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002058 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002059 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002060 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002061 c->self, data_len, c->local_window);
2062 xfree(data);
2063 return;
2064 }
Damien Millerd3444942000-09-30 14:20:03 +11002065 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002066 c->local_window -= data_len;
2067 buffer_append(&c->extended, data, data_len);
2068 xfree(data);
2069}
2070
Damien Millerd79b4242006-03-31 23:11:44 +11002071/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002072void
Damien Miller630d6f42002-01-22 23:17:30 +11002073channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002074{
2075 int id;
2076 Channel *c;
2077
Damien Millerb38eff82000-04-01 11:09:21 +10002078 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002079 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002080 c = channel_lookup(id);
2081 if (c == NULL)
2082 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2083 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002084
2085 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002086 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002087 debug("channel %d: FORCE input drain", c->self);
2088 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002089 if (buffer_len(&c->input) == 0)
2090 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002091 }
2092
Damien Millerb38eff82000-04-01 11:09:21 +10002093}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002094
Damien Millerd79b4242006-03-31 23:11:44 +11002095/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002096void
Damien Miller630d6f42002-01-22 23:17:30 +11002097channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002098{
Damien Millerb38eff82000-04-01 11:09:21 +10002099 int id;
2100 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002101
Damien Millerb38eff82000-04-01 11:09:21 +10002102 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002103 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002104 c = channel_lookup(id);
2105 if (c == NULL)
2106 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002107
2108 /*
2109 * Send a confirmation that we have closed the channel and no more
2110 * data is coming for it.
2111 */
Damien Miller95def091999-11-25 00:26:21 +11002112 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002113 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002114 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002115
Damien Miller5428f641999-11-25 11:54:57 +11002116 /*
2117 * If the channel is in closed state, we have sent a close request,
2118 * and the other side will eventually respond with a confirmation.
2119 * Thus, we cannot free the channel here, because then there would be
2120 * no-one to receive the confirmation. The channel gets freed when
2121 * the confirmation arrives.
2122 */
Damien Millerb38eff82000-04-01 11:09:21 +10002123 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002124 /*
2125 * Not a closed channel - mark it as draining, which will
2126 * cause it to be freed later.
2127 */
Damien Miller76765c02002-01-22 23:21:15 +11002128 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002129 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002130 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131}
2132
Damien Millerb38eff82000-04-01 11:09:21 +10002133/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002134/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002135void
Damien Miller630d6f42002-01-22 23:17:30 +11002136channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002137{
Damien Millerb38eff82000-04-01 11:09:21 +10002138 int id = packet_get_int();
2139 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002140
Damien Miller48b03fc2002-01-22 23:11:40 +11002141 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002142 if (c == NULL)
2143 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2144 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002145}
2146
Damien Millerd79b4242006-03-31 23:11:44 +11002147/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002148void
Damien Miller630d6f42002-01-22 23:17:30 +11002149channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002150{
2151 int id = packet_get_int();
2152 Channel *c = channel_lookup(id);
2153
Damien Miller48b03fc2002-01-22 23:11:40 +11002154 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002155 if (c == NULL)
2156 packet_disconnect("Received close confirmation for "
2157 "out-of-range channel %d.", id);
2158 if (c->type != SSH_CHANNEL_CLOSED)
2159 packet_disconnect("Received close confirmation for "
2160 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002161 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002162}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
Damien Millerd79b4242006-03-31 23:11:44 +11002164/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002165void
Damien Miller630d6f42002-01-22 23:17:30 +11002166channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167{
Damien Millerb38eff82000-04-01 11:09:21 +10002168 int id, remote_id;
2169 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170
Damien Millerb38eff82000-04-01 11:09:21 +10002171 id = packet_get_int();
2172 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173
Damien Millerb38eff82000-04-01 11:09:21 +10002174 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2175 packet_disconnect("Received open confirmation for "
2176 "non-opening channel %d.", id);
2177 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002178 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002179 c->remote_id = remote_id;
2180 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002181
2182 if (compat20) {
2183 c->remote_window = packet_get_int();
2184 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002185 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002186 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002187 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002188 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002189 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002190 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002191 c->remote_window, c->remote_maxpacket);
2192 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002193 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002194}
2195
Ben Lindstrombba81212001-06-25 05:01:22 +00002196static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002197reason2txt(int reason)
2198{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002199 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002200 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2201 return "administratively prohibited";
2202 case SSH2_OPEN_CONNECT_FAILED:
2203 return "connect failed";
2204 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2205 return "unknown channel type";
2206 case SSH2_OPEN_RESOURCE_SHORTAGE:
2207 return "resource shortage";
2208 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002209 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002210}
2211
Damien Millerd79b4242006-03-31 23:11:44 +11002212/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002213void
Damien Miller630d6f42002-01-22 23:17:30 +11002214channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002215{
Kevin Steves12057502001-02-05 14:54:34 +00002216 int id, reason;
2217 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002218 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002219
Damien Millerb38eff82000-04-01 11:09:21 +10002220 id = packet_get_int();
2221 c = channel_lookup(id);
2222
2223 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2224 packet_disconnect("Received open failure for "
2225 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002226 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002227 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002228 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002229 msg = packet_get_string(NULL);
2230 lang = packet_get_string(NULL);
2231 }
Damien Miller996acd22003-04-09 20:59:48 +10002232 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002233 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002234 if (msg != NULL)
2235 xfree(msg);
2236 if (lang != NULL)
2237 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002238 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002239 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002240 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002241 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242}
2243
Damien Millerd79b4242006-03-31 23:11:44 +11002244/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002245void
Damien Miller630d6f42002-01-22 23:17:30 +11002246channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002247{
2248 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002249 int id;
2250 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002251
2252 if (!compat20)
2253 return;
2254
2255 /* Get the channel number and verify it. */
2256 id = packet_get_int();
2257 c = channel_lookup(id);
2258
Damien Millerd47c62a2005-12-13 19:33:57 +11002259 if (c == NULL) {
2260 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002261 return;
2262 }
2263 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002264 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002265 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002266 c->remote_window += adjust;
2267}
2268
Damien Millerd79b4242006-03-31 23:11:44 +11002269/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002270void
Damien Miller630d6f42002-01-22 23:17:30 +11002271channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002272{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002273 Channel *c = NULL;
2274 u_short host_port;
2275 char *host, *originator_string;
2276 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002277
Ben Lindstrome9c99912001-06-09 00:41:05 +00002278 remote_id = packet_get_int();
2279 host = packet_get_string(NULL);
2280 host_port = packet_get_int();
2281
2282 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2283 originator_string = packet_get_string(NULL);
2284 } else {
2285 originator_string = xstrdup("unknown (remote did not supply name)");
2286 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002287 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002288 sock = channel_connect_to(host, host_port);
2289 if (sock != -1) {
2290 c = channel_new("connected socket",
2291 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2292 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002293 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002294 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002295 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002296 if (c == NULL) {
2297 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2298 packet_put_int(remote_id);
2299 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002300 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002301 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002302}
2303
2304
Ben Lindstrome9c99912001-06-09 00:41:05 +00002305/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002306
Ben Lindstrom908afed2001-10-03 17:34:59 +00002307void
2308channel_set_af(int af)
2309{
2310 IPv4or6 = af;
2311}
2312
Damien Millerb16461c2002-01-22 23:29:22 +11002313static int
2314channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2315 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002316{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002317 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002318 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002319 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002320 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002321 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002322
Damien Millerb16461c2002-01-22 23:29:22 +11002323 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2324 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002325 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002326
Damien Millerb16461c2002-01-22 23:29:22 +11002327 if (host == NULL) {
2328 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002329 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002330 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002331 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002332 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002333 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002334 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002335
Damien Miller5428f641999-11-25 11:54:57 +11002336 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002337 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002338 * specified address or wildcard. On the client, a specified bind
2339 * address will always override gateway_ports. On the server, a
2340 * gateway_ports of 1 (``yes'') will override the client's
2341 * specification and force a wildcard bind, whereas a value of 2
2342 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002343 * asked for.
2344 *
2345 * Special-case listen_addrs are:
2346 *
2347 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2348 * "" (empty string), "*" -> wildcard v4/v6
2349 * "localhost" -> loopback v4/v6
2350 */
2351 addr = NULL;
2352 if (listen_addr == NULL) {
2353 /* No address specified: default to gateway_ports setting */
2354 if (gateway_ports)
2355 wildcard = 1;
2356 } else if (gateway_ports || is_client) {
2357 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2358 strcmp(listen_addr, "0.0.0.0") == 0) ||
2359 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2360 (!is_client && gateway_ports == 1))
2361 wildcard = 1;
2362 else if (strcmp(listen_addr, "localhost") != 0)
2363 addr = listen_addr;
2364 }
2365
2366 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2367 type, wildcard, (addr == NULL) ? "NULL" : addr);
2368
2369 /*
Damien Miller34132e52000-01-14 15:45:46 +11002370 * getaddrinfo returns a loopback address if the hostname is
2371 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002372 */
Damien Miller34132e52000-01-14 15:45:46 +11002373 memset(&hints, 0, sizeof(hints));
2374 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002375 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002376 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002377 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002378 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2379 if (addr == NULL) {
2380 /* This really shouldn't happen */
2381 packet_disconnect("getaddrinfo: fatal error: %s",
2382 gai_strerror(r));
2383 } else {
Damien Millera7270302005-07-06 09:36:05 +10002384 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002385 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2386 }
Damien Millera7270302005-07-06 09:36:05 +10002387 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002388 }
Damien Miller5428f641999-11-25 11:54:57 +11002389
Damien Miller34132e52000-01-14 15:45:46 +11002390 for (ai = aitop; ai; ai = ai->ai_next) {
2391 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2392 continue;
2393 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2394 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002395 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002396 continue;
2397 }
2398 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002399 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002400 if (sock < 0) {
2401 /* this is no error since kernel may not support ipv6 */
2402 verbose("socket: %.100s", strerror(errno));
2403 continue;
2404 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002405
2406 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002407
Damien Miller34132e52000-01-14 15:45:46 +11002408 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002409
Damien Miller34132e52000-01-14 15:45:46 +11002410 /* Bind the socket to the address. */
2411 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2412 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002413 if (!ai->ai_next)
2414 error("bind: %.100s", strerror(errno));
2415 else
2416 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002417
Damien Miller34132e52000-01-14 15:45:46 +11002418 close(sock);
2419 continue;
2420 }
2421 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002422 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002423 error("listen: %.100s", strerror(errno));
2424 close(sock);
2425 continue;
2426 }
2427 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002428 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002429 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002430 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002431 strlcpy(c->path, host, sizeof(c->path));
2432 c->host_port = port_to_connect;
2433 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002434 success = 1;
2435 }
2436 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002437 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002438 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002439 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002440 return success;
Damien Miller95def091999-11-25 00:26:21 +11002441}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002442
Darren Tuckere7066df2004-05-24 10:18:05 +10002443int
2444channel_cancel_rport_listener(const char *host, u_short port)
2445{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002446 u_int i;
2447 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002448
Darren Tucker47eede72005-03-14 23:08:12 +11002449 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002450 Channel *c = channels[i];
2451
2452 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2453 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002454 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002455 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002456 channel_free(c);
2457 found = 1;
2458 }
2459 }
2460
2461 return (found);
2462}
2463
Damien Millerb16461c2002-01-22 23:29:22 +11002464/* protocol local port fwd, used by ssh (and sshd in v1) */
2465int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002466channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002467 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2468{
2469 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002470 listen_host, listen_port, host_to_connect, port_to_connect,
2471 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002472}
2473
2474/* protocol v2 remote port fwd, used by sshd */
2475int
2476channel_setup_remote_fwd_listener(const char *listen_address,
2477 u_short listen_port, int gateway_ports)
2478{
2479 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2480 listen_address, listen_port, NULL, 0, gateway_ports);
2481}
2482
Damien Miller5428f641999-11-25 11:54:57 +11002483/*
2484 * Initiate forwarding of connections to port "port" on remote host through
2485 * the secure channel to host:port from local side.
2486 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002487
Darren Tuckere7d4b192006-07-12 22:17:10 +10002488int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002489channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002490 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491{
Damien Millerdff50992002-01-22 23:16:32 +11002492 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002493
Damien Miller95def091999-11-25 00:26:21 +11002494 /* Record locally that connection to this host/port is permitted. */
2495 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2496 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002497
Damien Miller95def091999-11-25 00:26:21 +11002498 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002499 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002500 const char *address_to_bind;
2501 if (listen_host == NULL)
2502 address_to_bind = "localhost";
2503 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2504 address_to_bind = "";
2505 else
2506 address_to_bind = listen_host;
2507
Damien Miller33b13562000-04-04 14:38:59 +10002508 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2509 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002510 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002511 packet_put_cstring(address_to_bind);
2512 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002513 packet_send();
2514 packet_write_wait();
2515 /* Assume that server accepts the request */
2516 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002517 } else {
2518 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002519 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002520 packet_put_cstring(host_to_connect);
2521 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002522 packet_send();
2523 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002524
2525 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002526 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002527 switch (type) {
2528 case SSH_SMSG_SUCCESS:
2529 success = 1;
2530 break;
2531 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002532 break;
2533 default:
2534 /* Unknown packet */
2535 packet_disconnect("Protocol error for port forward request:"
2536 "received packet type %d.", type);
2537 }
2538 }
2539 if (success) {
2540 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2541 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2542 permitted_opens[num_permitted_opens].listen_port = listen_port;
2543 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002544 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002545 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002546}
2547
Damien Miller5428f641999-11-25 11:54:57 +11002548/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002549 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002550 * local side.
2551 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002552void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002553channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002554{
2555 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002556
2557 if (!compat20)
2558 return;
2559
2560 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002561 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002562 permitted_opens[i].listen_port == port)
2563 break;
2564 }
2565 if (i >= num_permitted_opens) {
2566 debug("%s: requested forward not found", __func__);
2567 return;
2568 }
2569 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2570 packet_put_cstring("cancel-tcpip-forward");
2571 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002572 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002573 packet_put_int(port);
2574 packet_send();
2575
2576 permitted_opens[i].listen_port = 0;
2577 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002578 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002579 permitted_opens[i].host_to_connect = NULL;
2580}
2581
2582/*
Damien Miller5428f641999-11-25 11:54:57 +11002583 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2584 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002585 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002586 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002587int
Damien Millere247cc42000-05-07 12:03:14 +10002588channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002589{
Damien Milleraae6c611999-12-06 11:47:28 +11002590 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002591 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002592 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002593
Damien Miller95def091999-11-25 00:26:21 +11002594 /* Get arguments from the packet. */
2595 port = packet_get_int();
2596 hostname = packet_get_string(NULL);
2597 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002598
Damien Millerbac2d8a2000-09-05 16:13:06 +11002599#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002600 /*
2601 * Check that an unprivileged user is not trying to forward a
2602 * privileged port.
2603 */
Damien Miller95def091999-11-25 00:26:21 +11002604 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002605 packet_disconnect(
2606 "Requested forwarding of port %d but user is not root.",
2607 port);
2608 if (host_port == 0)
2609 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002610#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002611
Damien Miller0bc1bd82000-11-13 22:57:25 +11002612 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002613 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002614 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002615
2616 /* Free the argument string. */
2617 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002618
2619 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002620}
2621
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002622/*
2623 * Permits opening to any host/port if permitted_opens[] is empty. This is
2624 * usually called by the server, because the user could connect to any port
2625 * anyway, and the server has no way to know but to trust the client anyway.
2626 */
2627void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002628channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002629{
2630 if (num_permitted_opens == 0)
2631 all_opens_permitted = 1;
2632}
2633
Ben Lindstroma3700052001-04-05 23:26:32 +00002634void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002635channel_add_permitted_opens(char *host, int port)
2636{
2637 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002638 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002639 debug("allow port forwarding to host %s port %d", host, port);
2640
2641 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2642 permitted_opens[num_permitted_opens].port_to_connect = port;
2643 num_permitted_opens++;
2644
2645 all_opens_permitted = 0;
2646}
2647
Ben Lindstroma3700052001-04-05 23:26:32 +00002648void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002649channel_clear_permitted_opens(void)
2650{
2651 int i;
2652
2653 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002654 if (permitted_opens[i].host_to_connect != NULL)
2655 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002656 num_permitted_opens = 0;
2657
2658}
2659
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002660/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002661static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002662connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002663{
Damien Miller34132e52000-01-14 15:45:46 +11002664 struct addrinfo hints, *ai, *aitop;
2665 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2666 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002667 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002668
Damien Miller34132e52000-01-14 15:45:46 +11002669 memset(&hints, 0, sizeof(hints));
2670 hints.ai_family = IPv4or6;
2671 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002672 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002673 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002674 error("connect_to %.100s: unknown host (%s)", host,
2675 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002676 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002677 }
Damien Miller34132e52000-01-14 15:45:46 +11002678 for (ai = aitop; ai; ai = ai->ai_next) {
2679 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2680 continue;
2681 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2682 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002683 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002684 continue;
2685 }
Damien Miller2372ace2003-05-14 13:42:23 +10002686 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002687 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002688 if (ai->ai_next == NULL)
2689 error("socket: %.100s", strerror(errno));
2690 else
2691 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002692 continue;
2693 }
Damien Miller232711f2004-06-15 10:35:30 +10002694 if (set_nonblock(sock) == -1)
2695 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002696 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2697 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002698 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002699 strerror(errno));
2700 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002701 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002702 }
2703 break; /* success */
2704
2705 }
2706 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002707 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002708 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002709 return -1;
2710 }
2711 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002712 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002713 return sock;
2714}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002715
Damien Miller0bc1bd82000-11-13 22:57:25 +11002716int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002717channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002718{
2719 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002720
Damien Miller0bc1bd82000-11-13 22:57:25 +11002721 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002722 if (permitted_opens[i].host_to_connect != NULL &&
2723 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002724 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002725 permitted_opens[i].host_to_connect,
2726 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002727 error("WARNING: Server requests forwarding for unknown listen_port %d",
2728 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002729 return -1;
2730}
Damien Millerb38eff82000-04-01 11:09:21 +10002731
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002732/* Check if connecting to that port is permitted and connect. */
2733int
2734channel_connect_to(const char *host, u_short port)
2735{
2736 int i, permit;
2737
2738 permit = all_opens_permitted;
2739 if (!permit) {
2740 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002741 if (permitted_opens[i].host_to_connect != NULL &&
2742 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002743 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2744 permit = 1;
2745
2746 }
2747 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002748 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002749 "but the request was denied.", host, port);
2750 return -1;
2751 }
2752 return connect_to(host, port);
2753}
2754
Damien Miller0e220db2004-06-15 10:34:08 +10002755void
2756channel_send_window_changes(void)
2757{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002758 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002759 struct winsize ws;
2760
2761 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002762 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002763 channels[i]->type != SSH_CHANNEL_OPEN)
2764 continue;
2765 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2766 continue;
2767 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002768 packet_put_int((u_int)ws.ws_col);
2769 packet_put_int((u_int)ws.ws_row);
2770 packet_put_int((u_int)ws.ws_xpixel);
2771 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002772 packet_send();
2773 }
2774}
2775
Ben Lindstrome9c99912001-06-09 00:41:05 +00002776/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002777
Damien Miller5428f641999-11-25 11:54:57 +11002778/*
2779 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002780 * Returns 0 and a suitable display number for the DISPLAY variable
2781 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002782 */
Kevin Steves366298c2001-12-19 17:58:01 +00002783int
Damien Miller95c249f2002-02-05 12:11:34 +11002784x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002785 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002786{
Damien Millere7378562001-12-21 14:58:35 +11002787 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002788 int display_number, sock;
2789 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002790 struct addrinfo hints, *ai, *aitop;
2791 char strport[NI_MAXSERV];
2792 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002794 if (chanids == NULL)
2795 return -1;
2796
Damien Millera34a28b1999-12-14 10:47:15 +11002797 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002798 display_number < MAX_DISPLAYS;
2799 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002800 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002801 memset(&hints, 0, sizeof(hints));
2802 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002803 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002804 hints.ai_socktype = SOCK_STREAM;
2805 snprintf(strport, sizeof strport, "%d", port);
2806 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2807 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002808 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002809 }
Damien Miller34132e52000-01-14 15:45:46 +11002810 for (ai = aitop; ai; ai = ai->ai_next) {
2811 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2812 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002813 sock = socket(ai->ai_family, ai->ai_socktype,
2814 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002815 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002816 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002817 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002818 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002819 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002820 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002821 debug("x11_create_display_inet: Socket family %d not supported",
2822 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002823 continue;
2824 }
Damien Miller34132e52000-01-14 15:45:46 +11002825 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002826#ifdef IPV6_V6ONLY
2827 if (ai->ai_family == AF_INET6) {
2828 int on = 1;
2829 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2830 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2831 }
2832#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002833 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002834 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002835 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002836 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002837
2838 if (ai->ai_next)
2839 continue;
2840
Damien Miller34132e52000-01-14 15:45:46 +11002841 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002842 close(socks[n]);
2843 }
2844 num_socks = 0;
2845 break;
2846 }
2847 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002848#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002849 if (num_socks == NUM_SOCKS)
2850 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002851#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002852 if (x11_use_localhost) {
2853 if (num_socks == NUM_SOCKS)
2854 break;
2855 } else {
2856 break;
2857 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002858#endif
Damien Miller95def091999-11-25 00:26:21 +11002859 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002860 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002861 if (num_socks > 0)
2862 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002863 }
Damien Miller95def091999-11-25 00:26:21 +11002864 if (display_number >= MAX_DISPLAYS) {
2865 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002866 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002867 }
Damien Miller95def091999-11-25 00:26:21 +11002868 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002869 for (n = 0; n < num_socks; n++) {
2870 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002871 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002872 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002873 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002874 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002875 }
Damien Miller95def091999-11-25 00:26:21 +11002876 }
Damien Miller34132e52000-01-14 15:45:46 +11002877
Damien Miller34132e52000-01-14 15:45:46 +11002878 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002879 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002880 for (n = 0; n < num_socks; n++) {
2881 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002882 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002883 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2884 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002885 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002886 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002887 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002888 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002889 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002890
Kevin Steves366298c2001-12-19 17:58:01 +00002891 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002892 *display_numberp = display_number;
2893 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002894}
2895
Ben Lindstrombba81212001-06-25 05:01:22 +00002896static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002897connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002898{
Damien Miller95def091999-11-25 00:26:21 +11002899 int sock;
2900 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002901
Damien Miller3afe3752001-12-21 12:39:51 +11002902 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2903 if (sock < 0)
2904 error("socket: %.100s", strerror(errno));
2905 memset(&addr, 0, sizeof(addr));
2906 addr.sun_family = AF_UNIX;
2907 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002908 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002909 return sock;
2910 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002911 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2912 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002913}
2914
Damien Millerbd483e72000-04-30 10:00:53 +10002915int
2916x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002917{
Damien Miller57c4e872006-03-31 23:11:07 +11002918 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002919 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002920 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002921 struct addrinfo hints, *ai, *aitop;
2922 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002923 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002924
Damien Miller95def091999-11-25 00:26:21 +11002925 /* Try to open a socket for the local X server. */
2926 display = getenv("DISPLAY");
2927 if (!display) {
2928 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002929 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002930 }
Damien Miller5428f641999-11-25 11:54:57 +11002931 /*
2932 * Now we decode the value of the DISPLAY variable and make a
2933 * connection to the real X server.
2934 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002935
Damien Miller5428f641999-11-25 11:54:57 +11002936 /*
2937 * Check if it is a unix domain socket. Unix domain displays are in
2938 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2939 */
Damien Miller95def091999-11-25 00:26:21 +11002940 if (strncmp(display, "unix:", 5) == 0 ||
2941 display[0] == ':') {
2942 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11002943 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002944 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002945 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002946 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002947 }
2948 /* Create a socket. */
2949 sock = connect_local_xsocket(display_number);
2950 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002951 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002952
2953 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002954 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002955 }
Damien Miller5428f641999-11-25 11:54:57 +11002956 /*
2957 * Connect to an inet socket. The DISPLAY value is supposedly
2958 * hostname:d[.s], where hostname may also be numeric IP address.
2959 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002960 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002961 cp = strchr(buf, ':');
2962 if (!cp) {
2963 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002964 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002965 }
Damien Miller95def091999-11-25 00:26:21 +11002966 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002967 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11002968 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002969 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002970 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002971 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002972 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002973
Damien Miller34132e52000-01-14 15:45:46 +11002974 /* Look up the host address */
2975 memset(&hints, 0, sizeof(hints));
2976 hints.ai_family = IPv4or6;
2977 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11002978 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11002979 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2980 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002981 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002982 }
Damien Miller34132e52000-01-14 15:45:46 +11002983 for (ai = aitop; ai; ai = ai->ai_next) {
2984 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002985 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002986 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002987 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002988 continue;
2989 }
2990 /* Connect it to the display. */
2991 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11002992 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002993 6000 + display_number, strerror(errno));
2994 close(sock);
2995 continue;
2996 }
2997 /* Success */
2998 break;
Damien Miller34132e52000-01-14 15:45:46 +11002999 }
Damien Miller34132e52000-01-14 15:45:46 +11003000 freeaddrinfo(aitop);
3001 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003002 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003003 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003004 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003005 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003006 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003007 return sock;
3008}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003009
Damien Millerbd483e72000-04-30 10:00:53 +10003010/*
3011 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3012 * the remote channel number. We should do whatever we want, and respond
3013 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003015
Damien Millerbd483e72000-04-30 10:00:53 +10003016void
Damien Miller630d6f42002-01-22 23:17:30 +11003017x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003018{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003019 Channel *c = NULL;
3020 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003021 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003022
3023 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003024
3025 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003026
3027 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003028 remote_host = packet_get_string(NULL);
3029 } else {
3030 remote_host = xstrdup("unknown (remote did not supply name)");
3031 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003032 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003033
3034 /* Obtain a connection to the real X display. */
3035 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003036 if (sock != -1) {
3037 /* Allocate a channel for this connection. */
3038 c = channel_new("connected x11 socket",
3039 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3040 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003041 c->remote_id = remote_id;
3042 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003043 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003044 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003045 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003046 /* Send refusal to the remote host. */
3047 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003048 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003049 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003050 /* Send a confirmation to the remote host. */
3051 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003052 packet_put_int(remote_id);
3053 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003054 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003055 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003056}
3057
Damien Miller69b69aa2000-10-28 14:19:58 +11003058/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3059void
Damien Miller630d6f42002-01-22 23:17:30 +11003060deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003061{
3062 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003063
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003064 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003065 case SSH_SMSG_AGENT_OPEN:
3066 error("Warning: ssh server tried agent forwarding.");
3067 break;
3068 case SSH_SMSG_X11_OPEN:
3069 error("Warning: ssh server tried X11 forwarding.");
3070 break;
3071 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003072 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003073 break;
3074 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003075 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003076 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3077 packet_put_int(rchan);
3078 packet_send();
3079}
3080
Damien Miller5428f641999-11-25 11:54:57 +11003081/*
3082 * Requests forwarding of X11 connections, generates fake authentication
3083 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003084 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003085 */
Damien Miller4af51302000-04-16 11:18:38 +10003086void
Damien Miller17e7ed02005-06-17 12:54:33 +10003087x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003088 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003089{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003090 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003091 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003092 char *new_data;
3093 int screen_number;
3094 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003095 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003096
Damien Millerf92c0792005-07-06 09:45:26 +10003097 if (x11_saved_display == NULL)
3098 x11_saved_display = xstrdup(disp);
3099 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003100 error("x11_request_forwarding_with_spoofing: different "
3101 "$DISPLAY already forwarded");
3102 return;
3103 }
3104
Damien Miller17e7ed02005-06-17 12:54:33 +10003105 cp = disp;
3106 if (disp)
3107 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003108 if (cp)
3109 cp = strchr(cp, '.');
3110 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003111 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003112 else
3113 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003114
Damien Miller13390022005-07-06 09:44:19 +10003115 if (x11_saved_proto == NULL) {
3116 /* Save protocol name. */
3117 x11_saved_proto = xstrdup(proto);
3118 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003119 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003120 * of the same length.
3121 */
3122 x11_saved_data = xmalloc(data_len);
3123 x11_fake_data = xmalloc(data_len);
3124 for (i = 0; i < data_len; i++) {
3125 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3126 fatal("x11_request_forwarding: bad "
3127 "authentication data: %.100s", data);
3128 if (i % 4 == 0)
3129 rnd = arc4random();
3130 x11_saved_data[i] = value;
3131 x11_fake_data[i] = rnd & 0xff;
3132 rnd >>= 8;
3133 }
3134 x11_saved_data_len = data_len;
3135 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003136 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003137
Damien Miller95def091999-11-25 00:26:21 +11003138 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003139 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003140
Damien Miller95def091999-11-25 00:26:21 +11003141 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003142 if (compat20) {
3143 channel_request_start(client_session_id, "x11-req", 0);
3144 packet_put_char(0); /* XXX bool single connection */
3145 } else {
3146 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3147 }
3148 packet_put_cstring(proto);
3149 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003150 packet_put_int(screen_number);
3151 packet_send();
3152 packet_write_wait();
3153 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003154}
3155
Ben Lindstrome9c99912001-06-09 00:41:05 +00003156
3157/* -- agent forwarding */
3158
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003159/* Sends a message to the server to request authentication fd forwarding. */
3160
Damien Miller4af51302000-04-16 11:18:38 +10003161void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003162auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003163{
Damien Miller95def091999-11-25 00:26:21 +11003164 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3165 packet_send();
3166 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003167}