blob: 7ca1c53ba3cc713cd685e55e6737015900ba5fa3 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110016 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Millereccb9de2005-06-17 12:59:34 +100042RCSID("$OpenBSD: channels.c,v 1.217 2005/06/17 02:44:32 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh1.h"
46#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "packet.h"
48#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "log.h"
50#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100054#include "key.h"
55#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110056#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100057#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrome9c99912001-06-09 00:41:05 +000059/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Darren Tucker11327cc2005-03-14 23:22:25 +110061#define CHAN_RBUF 16*1024
62
Damien Miller5428f641999-11-25 11:54:57 +110063/*
64 * Pointer to an array containing all allocated channels. The array is
65 * dynamically extended as needed.
66 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000067static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller5428f641999-11-25 11:54:57 +110069/*
70 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000071 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110072 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100073static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075/*
76 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000077 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110078 */
Damien Miller5e953212001-01-30 09:14:00 +110079static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Ben Lindstrome9c99912001-06-09 00:41:05 +000082/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller5428f641999-11-25 11:54:57 +110084/*
85 * Data structure for storing which hosts are permitted for forward requests.
86 * The local sides of any remote forwards are stored in this array to prevent
87 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
88 * network (which might be behind a firewall).
89 */
Damien Miller95def091999-11-25 00:26:21 +110090typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100091 char *host_to_connect; /* Connect to 'host'. */
92 u_short port_to_connect; /* Connect to 'port'. */
93 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094} ForwardPermission;
95
96/* List of all permitted host/port pairs to connect. */
97static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000098
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099/* Number of permitted host/port pairs in the array. */
100static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100101/*
102 * If this is true, all opens are permitted. This is the case on the server
103 * on which we have to trust the client anyway, and the user could do
104 * anything after logging in anyway.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106static int all_opens_permitted = 0;
107
Ben Lindstrome9c99912001-06-09 00:41:05 +0000108
109/* -- X11 forwarding */
110
111/* Maximum number of fake X11 displays to try. */
112#define MAX_DISPLAYS 1000
113
114/* Saved X11 authentication protocol name. */
115static char *x11_saved_proto = NULL;
116
117/* Saved X11 authentication data. This is the real data. */
118static char *x11_saved_data = NULL;
119static u_int x11_saved_data_len = 0;
120
121/*
122 * Fake X11 authentication data. This is what the server will be sending us;
123 * we should replace any occurrences of this by the real data.
124 */
125static char *x11_fake_data = NULL;
126static u_int x11_fake_data_len;
127
128
129/* -- agent forwarding */
130
131#define NUM_SOCKS 10
132
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000133/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000134static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000135
Ben Lindstrome9c99912001-06-09 00:41:05 +0000136/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000137static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000138
Ben Lindstrome9c99912001-06-09 00:41:05 +0000139/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000140
141Channel *
142channel_lookup(int id)
143{
144 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000145
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000146 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Miller996acd22003-04-09 20:59:48 +1000147 logit("channel_lookup: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000148 return NULL;
149 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000150 c = channels[id];
151 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000152 logit("channel_lookup: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000153 return NULL;
154 }
155 return c;
156}
157
Damien Miller5428f641999-11-25 11:54:57 +1100158/*
Damien Millere247cc42000-05-07 12:03:14 +1000159 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000160 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100161 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162
Ben Lindstrombba81212001-06-25 05:01:22 +0000163static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100164channel_register_fds(Channel *c, int rfd, int wfd, int efd,
165 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166{
Damien Miller95def091999-11-25 00:26:21 +1100167 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100168 channel_max_fd = MAX(channel_max_fd, rfd);
169 channel_max_fd = MAX(channel_max_fd, wfd);
170 channel_max_fd = MAX(channel_max_fd, efd);
171
Damien Miller5428f641999-11-25 11:54:57 +1100172 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000173
Damien Miller6f83b8e2000-05-02 09:23:45 +1000174 c->rfd = rfd;
175 c->wfd = wfd;
176 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000177 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000178 c->efd = efd;
179 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100180
Damien Miller79438cc2001-02-16 12:34:57 +1100181 /* XXX ugly hack: nonblock is only set by the server */
182 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000183 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100184 c->isatty = 1;
185 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000186 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100187 c->self, c->wfd);
188 }
189 } else {
190 c->isatty = 0;
191 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000192 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100193
Damien Miller69b69aa2000-10-28 14:19:58 +1100194 /* enable nonblocking mode */
195 if (nonblock) {
196 if (rfd != -1)
197 set_nonblock(rfd);
198 if (wfd != -1)
199 set_nonblock(wfd);
200 if (efd != -1)
201 set_nonblock(efd);
202 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000203}
204
205/*
206 * Allocate a new channel object and set its type and socket. This will cause
207 * remote_name to be freed.
208 */
209
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000210Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000211channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000212 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000213{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000214 int found;
215 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000216 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Do initial allocation if this is the first call. */
219 if (channels_alloc == 0) {
220 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000221 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100222 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000223 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100224 }
225 /* Try to find a free slot where to put the new channel. */
226 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000227 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100228 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000229 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100230 break;
231 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000232 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100233 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100234 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000235 if (channels_alloc > 10000)
236 fatal("channel_new: internal error: channels_alloc %d "
237 "too big.", channels_alloc);
Damien Miller5efcecc2003-09-17 07:31:14 +1000238 channels = xrealloc(channels,
239 (channels_alloc + 10) * sizeof(Channel *));
240 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100241 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100242 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000243 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100244 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000245 /* Initialize and return new channel. */
246 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000247 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100248 buffer_init(&c->input);
249 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000250 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100251 c->ostate = CHAN_OUTPUT_OPEN;
252 c->istate = CHAN_INPUT_OPEN;
253 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100254 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100255 c->self = found;
256 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000257 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000258 c->local_window = window;
259 c->local_window_max = window;
260 c->local_consumed = 0;
261 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100262 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000263 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000264 c->remote_window = 0;
265 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000266 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100267 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000268 c->detach_user = NULL;
Damien Miller67f0bc02002-02-05 12:23:08 +1100269 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000270 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000271 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100272 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000273 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000275
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000276static int
277channel_find_maxfd(void)
278{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000279 u_int i;
280 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000281 Channel *c;
282
283 for (i = 0; i < channels_alloc; i++) {
284 c = channels[i];
285 if (c != NULL) {
286 max = MAX(max, c->rfd);
287 max = MAX(max, c->wfd);
288 max = MAX(max, c->efd);
289 }
290 }
291 return max;
292}
293
294int
295channel_close_fd(int *fdp)
296{
297 int ret = 0, fd = *fdp;
298
299 if (fd != -1) {
300 ret = close(fd);
301 *fdp = -1;
302 if (fd == channel_max_fd)
303 channel_max_fd = channel_find_maxfd();
304 }
305 return ret;
306}
307
Damien Miller6f83b8e2000-05-02 09:23:45 +1000308/* Close all channel fd/socket. */
309
Ben Lindstrombba81212001-06-25 05:01:22 +0000310static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000311channel_close_fds(Channel *c)
312{
Damien Miller0e220db2004-06-15 10:34:08 +1000313 debug3("channel %d: close_fds r %d w %d e %d c %d",
314 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000315
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000316 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000317 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000318 channel_close_fd(&c->rfd);
319 channel_close_fd(&c->wfd);
320 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000321}
322
323/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
Damien Miller4af51302000-04-16 11:18:38 +1000325void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000326channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000328 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000329 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000330
331 for (n = 0, i = 0; i < channels_alloc; i++)
332 if (channels[i])
333 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000334 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000335 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000336
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000337 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000338 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000339 xfree(s);
340
Damien Miller6f83b8e2000-05-02 09:23:45 +1000341 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000342 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000343 if (c->ctl_fd != -1)
344 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000345 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000346 buffer_free(&c->input);
347 buffer_free(&c->output);
348 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000349 if (c->remote_name) {
350 xfree(c->remote_name);
351 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100352 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000353 channels[c->self] = NULL;
354 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355}
356
Ben Lindstrome9c99912001-06-09 00:41:05 +0000357void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000358channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000359{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000360 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000361
Ben Lindstrom601e4362001-06-21 03:19:23 +0000362 for (i = 0; i < channels_alloc; i++)
363 if (channels[i] != NULL)
364 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000365}
366
367/*
368 * Closes the sockets/fds of all channels. This is used to close extra file
369 * descriptors after a fork.
370 */
371
372void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000373channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000374{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000375 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000376
377 for (i = 0; i < channels_alloc; i++)
378 if (channels[i] != NULL)
379 channel_close_fds(channels[i]);
380}
381
382/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000383 * Stop listening to channels.
384 */
385
386void
387channel_stop_listening(void)
388{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000389 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000390 Channel *c;
391
392 for (i = 0; i < channels_alloc; i++) {
393 c = channels[i];
394 if (c != NULL) {
395 switch (c->type) {
396 case SSH_CHANNEL_AUTH_SOCKET:
397 case SSH_CHANNEL_PORT_LISTENER:
398 case SSH_CHANNEL_RPORT_LISTENER:
399 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000400 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000401 channel_free(c);
402 break;
403 }
404 }
405 }
406}
407
408/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409 * Returns true if no channel has too much buffered data, and false if one or
410 * more channel is overfull.
411 */
412
413int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000414channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000415{
416 u_int i;
417 Channel *c;
418
419 for (i = 0; i < channels_alloc; i++) {
420 c = channels[i];
421 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000422#if 0
423 if (!compat20 &&
424 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100425 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426 c->self, buffer_len(&c->input));
427 return 0;
428 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000429#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000430 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000431 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000432 c->self, buffer_len(&c->output),
433 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434 return 0;
435 }
436 }
437 }
438 return 1;
439}
440
441/* Returns true if any channel is still open. */
442
443int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000444channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000446 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447 Channel *c;
448
449 for (i = 0; i < channels_alloc; i++) {
450 c = channels[i];
451 if (c == NULL)
452 continue;
453 switch (c->type) {
454 case SSH_CHANNEL_X11_LISTENER:
455 case SSH_CHANNEL_PORT_LISTENER:
456 case SSH_CHANNEL_RPORT_LISTENER:
457 case SSH_CHANNEL_CLOSED:
458 case SSH_CHANNEL_AUTH_SOCKET:
459 case SSH_CHANNEL_DYNAMIC:
460 case SSH_CHANNEL_CONNECTING:
461 case SSH_CHANNEL_ZOMBIE:
462 continue;
463 case SSH_CHANNEL_LARVAL:
464 if (!compat20)
465 fatal("cannot happen: SSH_CHANNEL_LARVAL");
466 continue;
467 case SSH_CHANNEL_OPENING:
468 case SSH_CHANNEL_OPEN:
469 case SSH_CHANNEL_X11_OPEN:
470 return 1;
471 case SSH_CHANNEL_INPUT_DRAINING:
472 case SSH_CHANNEL_OUTPUT_DRAINING:
473 if (!compat13)
474 fatal("cannot happen: OUT_DRAIN");
475 return 1;
476 default:
477 fatal("channel_still_open: bad channel type %d", c->type);
478 /* NOTREACHED */
479 }
480 }
481 return 0;
482}
483
484/* Returns the id of an open channel suitable for keepaliving */
485
486int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000487channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000489 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000490 Channel *c;
491
492 for (i = 0; i < channels_alloc; i++) {
493 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000494 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000495 continue;
496 switch (c->type) {
497 case SSH_CHANNEL_CLOSED:
498 case SSH_CHANNEL_DYNAMIC:
499 case SSH_CHANNEL_X11_LISTENER:
500 case SSH_CHANNEL_PORT_LISTENER:
501 case SSH_CHANNEL_RPORT_LISTENER:
502 case SSH_CHANNEL_OPENING:
503 case SSH_CHANNEL_CONNECTING:
504 case SSH_CHANNEL_ZOMBIE:
505 continue;
506 case SSH_CHANNEL_LARVAL:
507 case SSH_CHANNEL_AUTH_SOCKET:
508 case SSH_CHANNEL_OPEN:
509 case SSH_CHANNEL_X11_OPEN:
510 return i;
511 case SSH_CHANNEL_INPUT_DRAINING:
512 case SSH_CHANNEL_OUTPUT_DRAINING:
513 if (!compat13)
514 fatal("cannot happen: OUT_DRAIN");
515 return i;
516 default:
517 fatal("channel_find_open: bad channel type %d", c->type);
518 /* NOTREACHED */
519 }
520 }
521 return -1;
522}
523
524
525/*
526 * Returns a message describing the currently open forwarded connections,
527 * suitable for sending to the client. The message contains crlf pairs for
528 * newlines.
529 */
530
531char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000532channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000533{
534 Buffer buffer;
535 Channel *c;
536 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000537 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000538
539 buffer_init(&buffer);
540 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
541 buffer_append(&buffer, buf, strlen(buf));
542 for (i = 0; i < channels_alloc; i++) {
543 c = channels[i];
544 if (c == NULL)
545 continue;
546 switch (c->type) {
547 case SSH_CHANNEL_X11_LISTENER:
548 case SSH_CHANNEL_PORT_LISTENER:
549 case SSH_CHANNEL_RPORT_LISTENER:
550 case SSH_CHANNEL_CLOSED:
551 case SSH_CHANNEL_AUTH_SOCKET:
552 case SSH_CHANNEL_ZOMBIE:
553 continue;
554 case SSH_CHANNEL_LARVAL:
555 case SSH_CHANNEL_OPENING:
556 case SSH_CHANNEL_CONNECTING:
557 case SSH_CHANNEL_DYNAMIC:
558 case SSH_CHANNEL_OPEN:
559 case SSH_CHANNEL_X11_OPEN:
560 case SSH_CHANNEL_INPUT_DRAINING:
561 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000562 snprintf(buf, sizeof buf,
563 " #%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 +0000564 c->self, c->remote_name,
565 c->type, c->remote_id,
566 c->istate, buffer_len(&c->input),
567 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000568 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000569 buffer_append(&buffer, buf, strlen(buf));
570 continue;
571 default:
572 fatal("channel_open_message: bad channel type %d", c->type);
573 /* NOTREACHED */
574 }
575 }
576 buffer_append(&buffer, "\0", 1);
577 cp = xstrdup(buffer_ptr(&buffer));
578 buffer_free(&buffer);
579 return cp;
580}
581
582void
583channel_send_open(int id)
584{
585 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000586
Ben Lindstrome9c99912001-06-09 00:41:05 +0000587 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000588 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000589 return;
590 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000591 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592 packet_start(SSH2_MSG_CHANNEL_OPEN);
593 packet_put_cstring(c->ctype);
594 packet_put_int(c->self);
595 packet_put_int(c->local_window);
596 packet_put_int(c->local_maxpacket);
597 packet_send();
598}
599
600void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000601channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000603 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000604
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000606 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000607 return;
608 }
Damien Miller0e220db2004-06-15 10:34:08 +1000609 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000610 packet_start(SSH2_MSG_CHANNEL_REQUEST);
611 packet_put_int(c->remote_id);
612 packet_put_cstring(service);
613 packet_put_char(wantconfirm);
614}
615void
Damien Miller0e220db2004-06-15 10:34:08 +1000616channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000617{
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_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000622 return;
623 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100624 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000625 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000626}
627void
628channel_register_cleanup(int id, channel_callback_fn *fn)
629{
630 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000631
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000633 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000634 return;
635 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000636 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000637}
638void
639channel_cancel_cleanup(int id)
640{
641 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000642
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000644 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645 return;
646 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000647 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648}
649void
650channel_register_filter(int id, channel_filter_fn *fn)
651{
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_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 return;
657 }
658 c->input_filter = fn;
659}
660
661void
662channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100663 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664{
665 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000666
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
668 fatal("channel_activate for non-larval channel %d.", id);
669 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
670 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100671 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
673 packet_put_int(c->remote_id);
674 packet_put_int(c->local_window);
675 packet_send();
676}
677
Damien Miller5428f641999-11-25 11:54:57 +1100678/*
Damien Millerb38eff82000-04-01 11:09:21 +1000679 * 'channel_pre*' are called just before select() to add any bits relevant to
680 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100681 */
Damien Millerb38eff82000-04-01 11:09:21 +1000682/*
683 * 'channel_post*': perform any appropriate operations for channels which
684 * have events pending.
685 */
686typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
687chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
688chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
689
Ben Lindstrombba81212001-06-25 05:01:22 +0000690static void
Damien Millerb38eff82000-04-01 11:09:21 +1000691channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
692{
693 FD_SET(c->sock, readset);
694}
695
Ben Lindstrombba81212001-06-25 05:01:22 +0000696static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000697channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
698{
699 debug3("channel %d: waiting for connection", c->self);
700 FD_SET(c->sock, writeset);
701}
702
Ben Lindstrombba81212001-06-25 05:01:22 +0000703static void
Damien Millerb38eff82000-04-01 11:09:21 +1000704channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
705{
706 if (buffer_len(&c->input) < packet_get_maxsize())
707 FD_SET(c->sock, readset);
708 if (buffer_len(&c->output) > 0)
709 FD_SET(c->sock, writeset);
710}
711
Ben Lindstrombba81212001-06-25 05:01:22 +0000712static void
Damien Millerde6987c2002-01-22 23:20:40 +1100713channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000714{
Damien Millerde6987c2002-01-22 23:20:40 +1100715 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000716
Darren Tucker11327cc2005-03-14 23:22:25 +1100717 /* check buffer limits */
718 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
719
Damien Miller33b13562000-04-04 14:38:59 +1000720 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100721 limit > 0 &&
722 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000723 FD_SET(c->rfd, readset);
724 if (c->ostate == CHAN_OUTPUT_OPEN ||
725 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
726 if (buffer_len(&c->output) > 0) {
727 FD_SET(c->wfd, writeset);
728 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000729 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000730 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
731 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000732 else
733 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000734 }
735 }
736 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100737 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000738 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
739 buffer_len(&c->extended) > 0)
740 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000741 else if (!(c->flags & CHAN_EOF_SENT) &&
742 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000743 buffer_len(&c->extended) < c->remote_window)
744 FD_SET(c->efd, readset);
745 }
Damien Miller0e220db2004-06-15 10:34:08 +1000746 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000747 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000748 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
749 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000750}
751
Ben Lindstrombba81212001-06-25 05:01:22 +0000752static void
Damien Millerb38eff82000-04-01 11:09:21 +1000753channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
754{
755 if (buffer_len(&c->input) == 0) {
756 packet_start(SSH_MSG_CHANNEL_CLOSE);
757 packet_put_int(c->remote_id);
758 packet_send();
759 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000760 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000761 }
762}
763
Ben Lindstrombba81212001-06-25 05:01:22 +0000764static void
Damien Millerb38eff82000-04-01 11:09:21 +1000765channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
766{
767 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000768 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000769 else
Damien Millerb38eff82000-04-01 11:09:21 +1000770 FD_SET(c->sock, writeset);
771}
772
773/*
774 * This is a special state for X11 authentication spoofing. An opened X11
775 * connection (when authentication spoofing is being done) remains in this
776 * state until the first packet has been completely read. The authentication
777 * data in that packet is then substituted by the real data if it matches the
778 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000779 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000780 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000781 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000782static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000783x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000784{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000785 u_char *ucp;
786 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000787
788 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000790 return 0;
791
792 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100793 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000794 if (ucp[0] == 0x42) { /* Byte order MSB first. */
795 proto_len = 256 * ucp[6] + ucp[7];
796 data_len = 256 * ucp[8] + ucp[9];
797 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
798 proto_len = ucp[6] + 256 * ucp[7];
799 data_len = ucp[8] + 256 * ucp[9];
800 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000801 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100802 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000803 return -1;
804 }
805
806 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000807 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000808 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
809 return 0;
810
811 /* Check if authentication protocol matches. */
812 if (proto_len != strlen(x11_saved_proto) ||
813 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000814 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000815 return -1;
816 }
817 /* Check if authentication data matches our fake data. */
818 if (data_len != x11_fake_data_len ||
819 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
820 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000821 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000822 return -1;
823 }
824 /* Check fake data length */
825 if (x11_fake_data_len != x11_saved_data_len) {
826 error("X11 fake_data_len %d != saved_data_len %d",
827 x11_fake_data_len, x11_saved_data_len);
828 return -1;
829 }
830 /*
831 * Received authentication protocol and data match
832 * our fake data. Substitute the fake data with real
833 * data.
834 */
835 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
836 x11_saved_data, x11_saved_data_len);
837 return 1;
838}
839
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static void
Damien Millerb38eff82000-04-01 11:09:21 +1000841channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
842{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000844
Damien Millerb38eff82000-04-01 11:09:21 +1000845 if (ret == 1) {
846 /* Start normal processing for the channel. */
847 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000848 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000849 } else if (ret == -1) {
850 /*
851 * We have received an X11 connection that has bad
852 * authentication information.
853 */
Damien Miller996acd22003-04-09 20:59:48 +1000854 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000855 buffer_clear(&c->input);
856 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000857 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000858 c->sock = -1;
859 c->type = SSH_CHANNEL_CLOSED;
860 packet_start(SSH_MSG_CHANNEL_CLOSE);
861 packet_put_int(c->remote_id);
862 packet_send();
863 }
864}
865
Ben Lindstrombba81212001-06-25 05:01:22 +0000866static void
Damien Millerbd483e72000-04-30 10:00:53 +1000867channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000868{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000869 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000870
871 /* c->force_drain = 1; */
872
Damien Millerb38eff82000-04-01 11:09:21 +1000873 if (ret == 1) {
874 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100875 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000876 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000877 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000878 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100879 chan_read_failed(c);
880 buffer_clear(&c->input);
881 chan_ibuf_empty(c);
882 buffer_clear(&c->output);
883 /* for proto v1, the peer will send an IEOF */
884 if (compat20)
885 chan_write_failed(c);
886 else
887 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000888 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000889 }
890}
891
Ben Lindstromb3921512001-04-11 15:57:50 +0000892/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000893static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000894channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000895{
Damien Millera10f5612002-09-12 09:49:15 +1000896 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000897 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100898 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000899 struct {
900 u_int8_t version;
901 u_int8_t command;
902 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000903 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000904 } s4_req, s4_rsp;
905
Ben Lindstromb3921512001-04-11 15:57:50 +0000906 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000907
908 have = buffer_len(&c->input);
909 len = sizeof(s4_req);
910 if (have < len)
911 return 0;
912 p = buffer_ptr(&c->input);
913 for (found = 0, i = len; i < have; i++) {
914 if (p[i] == '\0') {
915 found = 1;
916 break;
917 }
918 if (i > 1024) {
919 /* the peer is probably sending garbage */
920 debug("channel %d: decode socks4: too long",
921 c->self);
922 return -1;
923 }
924 }
925 if (!found)
926 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000927 buffer_get(&c->input, (char *)&s4_req.version, 1);
928 buffer_get(&c->input, (char *)&s4_req.command, 1);
929 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000930 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000931 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000932 p = buffer_ptr(&c->input);
933 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000934 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000936 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000937 c->self, len, have);
938 strlcpy(username, p, sizeof(username));
939 buffer_consume(&c->input, len);
940 buffer_consume(&c->input, 1); /* trailing '\0' */
941
Ben Lindstromb3921512001-04-11 15:57:50 +0000942 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000943 strlcpy(c->path, host, sizeof(c->path));
944 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100945
Damien Millerfbdeece2003-09-02 22:52:31 +1000946 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000947 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000948
Ben Lindstromb3921512001-04-11 15:57:50 +0000949 if (s4_req.command != 1) {
950 debug("channel %d: cannot handle: socks4 cn %d",
951 c->self, s4_req.command);
952 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000953 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000954 s4_rsp.version = 0; /* vn: 0 for reply */
955 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000956 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000957 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000958 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000959 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000960}
961
Darren Tucker46471c92003-07-03 13:55:19 +1000962/* try to decode a socks5 header */
963#define SSH_SOCKS5_AUTHDONE 0x1000
964#define SSH_SOCKS5_NOAUTH 0x00
965#define SSH_SOCKS5_IPV4 0x01
966#define SSH_SOCKS5_DOMAIN 0x03
967#define SSH_SOCKS5_IPV6 0x04
968#define SSH_SOCKS5_CONNECT 0x01
969#define SSH_SOCKS5_SUCCESS 0x00
970
971static int
972channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset)
973{
974 struct {
975 u_int8_t version;
976 u_int8_t command;
977 u_int8_t reserved;
978 u_int8_t atyp;
979 } s5_req, s5_rsp;
980 u_int16_t dest_port;
981 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +1000982 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +1000983
984 debug2("channel %d: decode socks5", c->self);
985 p = buffer_ptr(&c->input);
986 if (p[0] != 0x05)
987 return -1;
988 have = buffer_len(&c->input);
989 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
990 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +1100991 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +1000992 return 0;
993 nmethods = p[1];
994 if (have < nmethods + 2)
995 return 0;
996 /* look for method: "NO AUTHENTICATION REQUIRED" */
997 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
998 if (p[i] == SSH_SOCKS5_NOAUTH ) {
999 found = 1;
1000 break;
1001 }
1002 }
1003 if (!found) {
1004 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1005 c->self);
1006 return -1;
1007 }
1008 buffer_consume(&c->input, nmethods + 2);
1009 buffer_put_char(&c->output, 0x05); /* version */
1010 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1011 FD_SET(c->sock, writeset);
1012 c->flags |= SSH_SOCKS5_AUTHDONE;
1013 debug2("channel %d: socks5 auth done", c->self);
1014 return 0; /* need more */
1015 }
1016 debug2("channel %d: socks5 post auth", c->self);
1017 if (have < sizeof(s5_req)+1)
1018 return 0; /* need more */
1019 memcpy((char *)&s5_req, p, sizeof(s5_req));
1020 if (s5_req.version != 0x05 ||
1021 s5_req.command != SSH_SOCKS5_CONNECT ||
1022 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001023 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001024 return -1;
1025 }
Darren Tucker47eede72005-03-14 23:08:12 +11001026 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001027 case SSH_SOCKS5_IPV4:
1028 addrlen = 4;
1029 af = AF_INET;
1030 break;
1031 case SSH_SOCKS5_DOMAIN:
1032 addrlen = p[sizeof(s5_req)];
1033 af = -1;
1034 break;
1035 case SSH_SOCKS5_IPV6:
1036 addrlen = 16;
1037 af = AF_INET6;
1038 break;
1039 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001040 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001041 return -1;
1042 }
1043 if (have < 4 + addrlen + 2)
1044 return 0;
1045 buffer_consume(&c->input, sizeof(s5_req));
1046 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1047 buffer_consume(&c->input, 1); /* host string length */
1048 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1049 buffer_get(&c->input, (char *)&dest_port, 2);
1050 dest_addr[addrlen] = '\0';
1051 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001052 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001053 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1054 return -1;
1055 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001056
Damien Millerfbdeece2003-09-02 22:52:31 +10001057 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001058 c->self, c->path, c->host_port, s5_req.command);
1059
1060 s5_rsp.version = 0x05;
1061 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1062 s5_rsp.reserved = 0; /* ignored */
1063 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1064 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1065 dest_port = 0; /* ignored */
1066
1067 buffer_append(&c->output, (char *)&s5_rsp, sizeof(s5_rsp));
1068 buffer_append(&c->output, (char *)&dest_addr, sizeof(struct in_addr));
1069 buffer_append(&c->output, (char *)&dest_port, sizeof(dest_port));
1070 return 1;
1071}
1072
Ben Lindstromb3921512001-04-11 15:57:50 +00001073/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001074static void
Ben Lindstromb3921512001-04-11 15:57:50 +00001075channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
1076{
1077 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001078 u_int have;
1079 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001080
1081 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001082 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001083 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001084 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001085 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001086 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001087 /* need more */
1088 FD_SET(c->sock, readset);
1089 return;
1090 }
1091 /* try to guess the protocol */
1092 p = buffer_ptr(&c->input);
1093 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001094 case 0x04:
1095 ret = channel_decode_socks4(c, readset, writeset);
1096 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001097 case 0x05:
1098 ret = channel_decode_socks5(c, readset, writeset);
1099 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001100 default:
1101 ret = -1;
1102 break;
1103 }
1104 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001105 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001106 } else if (ret == 0) {
1107 debug2("channel %d: pre_dynamic: need more", c->self);
1108 /* need more */
1109 FD_SET(c->sock, readset);
1110 } else {
1111 /* switch to the next state */
1112 c->type = SSH_CHANNEL_OPENING;
1113 port_open_helper(c, "direct-tcpip");
1114 }
1115}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116
Damien Millerb38eff82000-04-01 11:09:21 +10001117/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001118static void
Damien Millerb38eff82000-04-01 11:09:21 +10001119channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
1120{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001121 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001122 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001123 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001124 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001125 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001126 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001127
1128 if (FD_ISSET(c->sock, readset)) {
1129 debug("X11 connection requested.");
1130 addrlen = sizeof(addr);
1131 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001132 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001133 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001134 channel_close_fd(&c->sock);
1135 chan_mark_dead(c);
1136 }
Damien Millerb38eff82000-04-01 11:09:21 +10001137 if (newsock < 0) {
1138 error("accept: %.100s", strerror(errno));
1139 return;
1140 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001141 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001142 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001143 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001144 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001145 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001146
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001148 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001149 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001150 if (compat20) {
1151 packet_start(SSH2_MSG_CHANNEL_OPEN);
1152 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001153 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001154 packet_put_int(nc->local_window_max);
1155 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001156 /* originator ipaddr and port */
1157 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001158 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001159 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001160 } else {
1161 packet_put_int(remote_port);
1162 }
Damien Millerbd483e72000-04-30 10:00:53 +10001163 packet_send();
1164 } else {
1165 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001166 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001167 if (packet_get_protocol_flags() &
1168 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001169 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001170 packet_send();
1171 }
Damien Millerd83ff352001-01-30 09:19:34 +11001172 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001173 }
1174}
1175
Ben Lindstrombba81212001-06-25 05:01:22 +00001176static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001177port_open_helper(Channel *c, char *rtype)
1178{
1179 int direct;
1180 char buf[1024];
1181 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001182 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001183
1184 direct = (strcmp(rtype, "direct-tcpip") == 0);
1185
1186 snprintf(buf, sizeof buf,
1187 "%s: listening port %d for %.100s port %d, "
1188 "connect from %.200s port %d",
1189 rtype, c->listening_port, c->path, c->host_port,
1190 remote_ipaddr, remote_port);
1191
1192 xfree(c->remote_name);
1193 c->remote_name = xstrdup(buf);
1194
1195 if (compat20) {
1196 packet_start(SSH2_MSG_CHANNEL_OPEN);
1197 packet_put_cstring(rtype);
1198 packet_put_int(c->self);
1199 packet_put_int(c->local_window_max);
1200 packet_put_int(c->local_maxpacket);
1201 if (direct) {
1202 /* target host, port */
1203 packet_put_cstring(c->path);
1204 packet_put_int(c->host_port);
1205 } else {
1206 /* listen address, port */
1207 packet_put_cstring(c->path);
1208 packet_put_int(c->listening_port);
1209 }
1210 /* originator host and port */
1211 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001212 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001213 packet_send();
1214 } else {
1215 packet_start(SSH_MSG_PORT_OPEN);
1216 packet_put_int(c->self);
1217 packet_put_cstring(c->path);
1218 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001219 if (packet_get_protocol_flags() &
1220 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001221 packet_put_cstring(c->remote_name);
1222 packet_send();
1223 }
1224 xfree(remote_ipaddr);
1225}
1226
Damien Millerb38eff82000-04-01 11:09:21 +10001227/*
1228 * This socket is listening for connections to a forwarded TCP/IP port.
1229 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001230static void
Damien Millerb38eff82000-04-01 11:09:21 +10001231channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1232{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001233 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001234 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001235 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001236 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001237 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001238
Damien Millerb38eff82000-04-01 11:09:21 +10001239 if (FD_ISSET(c->sock, readset)) {
1240 debug("Connection to port %d forwarding "
1241 "to %.100s port %d requested.",
1242 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001243
Damien Miller4623a752001-10-10 15:03:58 +10001244 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1245 nextstate = SSH_CHANNEL_OPENING;
1246 rtype = "forwarded-tcpip";
1247 } else {
1248 if (c->host_port == 0) {
1249 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001250 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001251 } else {
1252 nextstate = SSH_CHANNEL_OPENING;
1253 rtype = "direct-tcpip";
1254 }
1255 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001256
Damien Millerb38eff82000-04-01 11:09:21 +10001257 addrlen = sizeof(addr);
1258 newsock = accept(c->sock, &addr, &addrlen);
1259 if (newsock < 0) {
1260 error("accept: %.100s", strerror(errno));
1261 return;
1262 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001263 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001264 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1265 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001266 nc->listening_port = c->listening_port;
1267 nc->host_port = c->host_port;
1268 strlcpy(nc->path, c->path, sizeof(nc->path));
1269
Damien Miller4623a752001-10-10 15:03:58 +10001270 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1271 /*
1272 * do not call the channel_post handler until
1273 * this flag has been reset by a pre-handler.
1274 * otherwise the FD_ISSET calls might overflow
1275 */
1276 nc->delayed = 1;
1277 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001278 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001279 }
Damien Millerb38eff82000-04-01 11:09:21 +10001280 }
1281}
1282
1283/*
1284 * This is the authentication agent socket listening for connections from
1285 * clients.
1286 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001287static void
Damien Millerb38eff82000-04-01 11:09:21 +10001288channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1289{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001290 Channel *nc;
1291 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001292 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001293 socklen_t addrlen;
1294
1295 if (FD_ISSET(c->sock, readset)) {
1296 addrlen = sizeof(addr);
1297 newsock = accept(c->sock, &addr, &addrlen);
1298 if (newsock < 0) {
1299 error("accept from auth socket: %.100s", strerror(errno));
1300 return;
1301 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001302 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001303 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1304 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001305 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001306 if (compat20) {
1307 packet_start(SSH2_MSG_CHANNEL_OPEN);
1308 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001309 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001310 packet_put_int(c->local_window_max);
1311 packet_put_int(c->local_maxpacket);
1312 } else {
1313 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001314 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001315 }
Damien Millerb38eff82000-04-01 11:09:21 +10001316 packet_send();
1317 }
1318}
1319
Ben Lindstrombba81212001-06-25 05:01:22 +00001320static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001321channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1322{
Ben Lindstrom69128662001-05-08 20:07:39 +00001323 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001324 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001325
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001326 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001327 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001328 err = errno;
1329 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001330 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001331 if (err == 0) {
1332 debug("channel %d: connected", c->self);
1333 c->type = SSH_CHANNEL_OPEN;
1334 if (compat20) {
1335 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1336 packet_put_int(c->remote_id);
1337 packet_put_int(c->self);
1338 packet_put_int(c->local_window);
1339 packet_put_int(c->local_maxpacket);
1340 } else {
1341 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1342 packet_put_int(c->remote_id);
1343 packet_put_int(c->self);
1344 }
1345 } else {
1346 debug("channel %d: not connected: %s",
1347 c->self, strerror(err));
1348 if (compat20) {
1349 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1350 packet_put_int(c->remote_id);
1351 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1352 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1353 packet_put_cstring(strerror(err));
1354 packet_put_cstring("");
1355 }
1356 } else {
1357 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1358 packet_put_int(c->remote_id);
1359 }
1360 chan_mark_dead(c);
1361 }
1362 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001363 }
1364}
1365
Ben Lindstrombba81212001-06-25 05:01:22 +00001366static int
Damien Millerb38eff82000-04-01 11:09:21 +10001367channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1368{
Darren Tucker11327cc2005-03-14 23:22:25 +11001369 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001370 int len;
1371
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001372 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001373 FD_ISSET(c->rfd, readset)) {
1374 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001375 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1376 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001377 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001378 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001379 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001380 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001381 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001382 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001383 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001384 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001385 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001386 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001387 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001388 } else {
1389 chan_read_failed(c);
1390 }
1391 return -1;
1392 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001393 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001394 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001395 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001396 chan_read_failed(c);
1397 }
1398 } else {
1399 buffer_append(&c->input, buf, len);
1400 }
Damien Millerb38eff82000-04-01 11:09:21 +10001401 }
1402 return 1;
1403}
Ben Lindstrombba81212001-06-25 05:01:22 +00001404static int
Damien Millerb38eff82000-04-01 11:09:21 +10001405channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1406{
Ben Lindstrome229b252001-03-05 06:28:06 +00001407 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001408 u_char *data;
1409 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001410 int len;
1411
1412 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001413 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001414 FD_ISSET(c->wfd, writeset) &&
1415 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001416 data = buffer_ptr(&c->output);
1417 dlen = buffer_len(&c->output);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001418#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001419 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001420 if (compat20 && c->wfd_isatty)
1421 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001422#endif
Ben Lindstrombeb5f332002-07-22 15:28:53 +00001423 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001424 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1425 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001426 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001427 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001428 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001429 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001430 return -1;
1431 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001432 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001433 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001434 c->type = SSH_CHANNEL_INPUT_DRAINING;
1435 } else {
1436 chan_write_failed(c);
1437 }
1438 return -1;
1439 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001440 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001441 if (tcgetattr(c->wfd, &tio) == 0 &&
1442 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1443 /*
1444 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001445 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001446 * size of a SSH2_MSG_CHANNEL_DATA message
1447 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001448 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001449 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001450 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001451 }
1452 }
Damien Millerb38eff82000-04-01 11:09:21 +10001453 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001454 if (compat20 && len > 0) {
1455 c->local_consumed += len;
1456 }
1457 }
1458 return 1;
1459}
Ben Lindstrombba81212001-06-25 05:01:22 +00001460static int
Damien Miller33b13562000-04-04 14:38:59 +10001461channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1462{
Darren Tucker11327cc2005-03-14 23:22:25 +11001463 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001464 int len;
1465
Damien Miller1383bd82000-04-06 12:32:37 +10001466/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001467 if (c->efd != -1) {
1468 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1469 FD_ISSET(c->efd, writeset) &&
1470 buffer_len(&c->extended) > 0) {
1471 len = write(c->efd, buffer_ptr(&c->extended),
1472 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001473 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001474 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001475 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1476 return 1;
1477 if (len <= 0) {
1478 debug2("channel %d: closing write-efd %d",
1479 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001480 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001481 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001482 buffer_consume(&c->extended, len);
1483 c->local_consumed += len;
1484 }
1485 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1486 FD_ISSET(c->efd, readset)) {
1487 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001488 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001489 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001490 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1491 return 1;
1492 if (len <= 0) {
1493 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001494 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001495 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001496 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001497 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001498 }
Damien Miller33b13562000-04-04 14:38:59 +10001499 }
1500 }
1501 return 1;
1502}
Ben Lindstrombba81212001-06-25 05:01:22 +00001503static int
Damien Miller0e220db2004-06-15 10:34:08 +10001504channel_handle_ctl(Channel *c, fd_set * readset, fd_set * writeset)
1505{
1506 char buf[16];
1507 int len;
1508
1509 /* Monitor control fd to detect if the slave client exits */
1510 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1511 len = read(c->ctl_fd, buf, sizeof(buf));
1512 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1513 return 1;
1514 if (len <= 0) {
1515 debug2("channel %d: ctl read<=0", c->self);
1516 if (c->type != SSH_CHANNEL_OPEN) {
1517 debug2("channel %d: not open", c->self);
1518 chan_mark_dead(c);
1519 return -1;
1520 } else {
1521 chan_read_failed(c);
1522 chan_write_failed(c);
1523 }
1524 return -1;
1525 } else
1526 fatal("%s: unexpected data on ctl fd", __func__);
1527 }
1528 return 1;
1529}
1530static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001531channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001532{
Ben Lindstromb3921512001-04-11 15:57:50 +00001533 if (c->type == SSH_CHANNEL_OPEN &&
1534 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001535 c->local_window < c->local_window_max/2 &&
1536 c->local_consumed > 0) {
1537 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1538 packet_put_int(c->remote_id);
1539 packet_put_int(c->local_consumed);
1540 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001541 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001542 c->self, c->local_window,
1543 c->local_consumed);
1544 c->local_window += c->local_consumed;
1545 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001546 }
1547 return 1;
1548}
1549
Ben Lindstrombba81212001-06-25 05:01:22 +00001550static void
Damien Millerde6987c2002-01-22 23:20:40 +11001551channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001552{
Damien Miller4623a752001-10-10 15:03:58 +10001553 if (c->delayed)
1554 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001555 channel_handle_rfd(c, readset, writeset);
1556 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001557 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001558 return;
Damien Miller33b13562000-04-04 14:38:59 +10001559 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001560 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001561 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001562}
1563
Ben Lindstrombba81212001-06-25 05:01:22 +00001564static void
Damien Millerb38eff82000-04-01 11:09:21 +10001565channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1566{
1567 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001568
Damien Millerb38eff82000-04-01 11:09:21 +10001569 /* Send buffered output data to the socket. */
1570 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1571 len = write(c->sock, buffer_ptr(&c->output),
1572 buffer_len(&c->output));
1573 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001574 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001575 else
1576 buffer_consume(&c->output, len);
1577 }
1578}
1579
Ben Lindstrombba81212001-06-25 05:01:22 +00001580static void
Damien Miller33b13562000-04-04 14:38:59 +10001581channel_handler_init_20(void)
1582{
Damien Millerde6987c2002-01-22 23:20:40 +11001583 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001584 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001585 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001586 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001587 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001588 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001589 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001590 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001591
Damien Millerde6987c2002-01-22 23:20:40 +11001592 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001593 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001594 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001595 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001596 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001597 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001598 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001599}
1600
Ben Lindstrombba81212001-06-25 05:01:22 +00001601static void
Damien Millerb38eff82000-04-01 11:09:21 +10001602channel_handler_init_13(void)
1603{
1604 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1605 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1606 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1607 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1608 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1609 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1610 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001611 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001612 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001613
Damien Millerde6987c2002-01-22 23:20:40 +11001614 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001615 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1616 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1617 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1618 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001619 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001620 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001621}
1622
Ben Lindstrombba81212001-06-25 05:01:22 +00001623static void
Damien Millerb38eff82000-04-01 11:09:21 +10001624channel_handler_init_15(void)
1625{
Damien Millerde6987c2002-01-22 23:20:40 +11001626 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001627 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001628 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1629 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1630 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001631 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001632 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001633
1634 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1635 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1636 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001637 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001638 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001639 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001640}
1641
Ben Lindstrombba81212001-06-25 05:01:22 +00001642static void
Damien Millerb38eff82000-04-01 11:09:21 +10001643channel_handler_init(void)
1644{
1645 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001646
Damien Miller9f0f5c62001-12-21 14:45:46 +11001647 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001648 channel_pre[i] = NULL;
1649 channel_post[i] = NULL;
1650 }
Damien Miller33b13562000-04-04 14:38:59 +10001651 if (compat20)
1652 channel_handler_init_20();
1653 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001654 channel_handler_init_13();
1655 else
1656 channel_handler_init_15();
1657}
1658
Damien Miller3ec27592001-10-12 11:35:04 +10001659/* gc dead channels */
1660static void
1661channel_garbage_collect(Channel *c)
1662{
1663 if (c == NULL)
1664 return;
1665 if (c->detach_user != NULL) {
1666 if (!chan_is_dead(c, 0))
1667 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001668 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001669 c->detach_user(c->self, NULL);
1670 /* if we still have a callback */
1671 if (c->detach_user != NULL)
1672 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001673 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001674 }
1675 if (!chan_is_dead(c, 1))
1676 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001677 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001678 channel_free(c);
1679}
1680
Ben Lindstrombba81212001-06-25 05:01:22 +00001681static void
Damien Millerb38eff82000-04-01 11:09:21 +10001682channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1683{
1684 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001685 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001686 Channel *c;
1687
1688 if (!did_init) {
1689 channel_handler_init();
1690 did_init = 1;
1691 }
1692 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001693 c = channels[i];
1694 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001695 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001696 if (ftab[c->type] != NULL)
1697 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001698 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001699 }
1700}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001701
Ben Lindstrome9c99912001-06-09 00:41:05 +00001702/*
1703 * Allocate/update select bitmasks and add any bits relevant to channels in
1704 * select bitmasks.
1705 */
Damien Miller4af51302000-04-16 11:18:38 +10001706void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001707channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001708 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001709{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001710 u_int n, sz;
Damien Miller5e953212001-01-30 09:14:00 +11001711
1712 n = MAX(*maxfdp, channel_max_fd);
1713
1714 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001715 /* perhaps check sz < nalloc/2 and shrink? */
1716 if (*readsetp == NULL || sz > *nallocp) {
1717 *readsetp = xrealloc(*readsetp, sz);
1718 *writesetp = xrealloc(*writesetp, sz);
1719 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001720 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001721 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001722 memset(*readsetp, 0, sz);
1723 memset(*writesetp, 0, sz);
1724
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001725 if (!rekeying)
1726 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001727}
1728
Ben Lindstrome9c99912001-06-09 00:41:05 +00001729/*
1730 * After select, perform any appropriate operations for channels which have
1731 * events pending.
1732 */
Damien Miller4af51302000-04-16 11:18:38 +10001733void
Damien Miller95def091999-11-25 00:26:21 +11001734channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001735{
Damien Millerb38eff82000-04-01 11:09:21 +10001736 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001737}
1738
Ben Lindstrome9c99912001-06-09 00:41:05 +00001739
Damien Miller5e953212001-01-30 09:14:00 +11001740/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001741
Damien Miller4af51302000-04-16 11:18:38 +10001742void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001743channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001744{
Damien Millerb38eff82000-04-01 11:09:21 +10001745 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001746 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747
Damien Miller95def091999-11-25 00:26:21 +11001748 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001749 c = channels[i];
1750 if (c == NULL)
1751 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001752
Ben Lindstrome9c99912001-06-09 00:41:05 +00001753 /*
1754 * We are only interested in channels that can have buffered
1755 * incoming data.
1756 */
Damien Miller34132e52000-01-14 15:45:46 +11001757 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001758 if (c->type != SSH_CHANNEL_OPEN &&
1759 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001760 continue;
1761 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001762 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001763 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001764 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001765 if (compat20 &&
1766 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001767 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001768 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001769 continue;
1770 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001771
Damien Miller95def091999-11-25 00:26:21 +11001772 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001773 if ((c->istate == CHAN_INPUT_OPEN ||
1774 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1775 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001776 /*
1777 * Send some data for the other side over the secure
1778 * connection.
1779 */
Damien Miller33b13562000-04-04 14:38:59 +10001780 if (compat20) {
1781 if (len > c->remote_window)
1782 len = c->remote_window;
1783 if (len > c->remote_maxpacket)
1784 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001785 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001786 if (packet_is_interactive()) {
1787 if (len > 1024)
1788 len = 512;
1789 } else {
1790 /* Keep the packets at reasonable size. */
1791 if (len > packet_get_maxsize()/2)
1792 len = packet_get_maxsize()/2;
1793 }
Damien Miller95def091999-11-25 00:26:21 +11001794 }
Damien Millerb38eff82000-04-01 11:09:21 +10001795 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001796 packet_start(compat20 ?
1797 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001798 packet_put_int(c->remote_id);
1799 packet_put_string(buffer_ptr(&c->input), len);
1800 packet_send();
1801 buffer_consume(&c->input, len);
1802 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001803 }
1804 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001805 if (compat13)
1806 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001807 /*
1808 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001809 * tell peer, that we will not send more data: send IEOF.
1810 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001811 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001812 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001813 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1814 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001815 else
1816 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001817 }
Damien Miller33b13562000-04-04 14:38:59 +10001818 /* Send extended data, i.e. stderr */
1819 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001820 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001821 c->remote_window > 0 &&
1822 (len = buffer_len(&c->extended)) > 0 &&
1823 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001824 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001825 c->self, c->remote_window, buffer_len(&c->extended),
1826 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001827 if (len > c->remote_window)
1828 len = c->remote_window;
1829 if (len > c->remote_maxpacket)
1830 len = c->remote_maxpacket;
1831 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1832 packet_put_int(c->remote_id);
1833 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1834 packet_put_string(buffer_ptr(&c->extended), len);
1835 packet_send();
1836 buffer_consume(&c->extended, len);
1837 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001838 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001839 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001841}
1842
Ben Lindstrome9c99912001-06-09 00:41:05 +00001843
1844/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845
Damien Miller4af51302000-04-16 11:18:38 +10001846void
Damien Miller630d6f42002-01-22 23:17:30 +11001847channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848{
Damien Miller34132e52000-01-14 15:45:46 +11001849 int id;
Damien Miller95def091999-11-25 00:26:21 +11001850 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001851 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001852 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001853
Damien Miller95def091999-11-25 00:26:21 +11001854 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001855 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001856 c = channel_lookup(id);
1857 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001858 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001859
Damien Miller95def091999-11-25 00:26:21 +11001860 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001861 if (c->type != SSH_CHANNEL_OPEN &&
1862 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001863 return;
1864
Damien Miller95def091999-11-25 00:26:21 +11001865 /* Get the data. */
1866 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001867
Damien Millera04ad492004-01-21 11:02:09 +11001868 /*
1869 * Ignore data for protocol > 1.3 if output end is no longer open.
1870 * For protocol 2 the sending side is reducing its window as it sends
1871 * data, so we must 'fake' consumption of the data in order to ensure
1872 * that window updates are sent back. Otherwise the connection might
1873 * deadlock.
1874 */
1875 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1876 if (compat20) {
1877 c->local_window -= data_len;
1878 c->local_consumed += data_len;
1879 }
1880 xfree(data);
1881 return;
1882 }
1883
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001884 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001885 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001886 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001887 c->self, data_len, c->local_maxpacket);
1888 }
1889 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001890 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001891 c->self, data_len, c->local_window);
1892 xfree(data);
1893 return;
1894 }
1895 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001896 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001897 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001898 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001899 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001900}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001901
Damien Miller4af51302000-04-16 11:18:38 +10001902void
Damien Miller630d6f42002-01-22 23:17:30 +11001903channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001904{
1905 int id;
Damien Miller33b13562000-04-04 14:38:59 +10001906 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00001907 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10001908 Channel *c;
1909
1910 /* Get the channel number and verify it. */
1911 id = packet_get_int();
1912 c = channel_lookup(id);
1913
1914 if (c == NULL)
1915 packet_disconnect("Received extended_data for bad channel %d.", id);
1916 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10001917 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10001918 return;
1919 }
Ben Lindstromcf159442002-03-26 03:26:24 +00001920 if (c->flags & CHAN_EOF_RCVD) {
1921 if (datafellows & SSH_BUG_EXTEOF)
1922 debug("channel %d: accepting ext data after eof", id);
1923 else
1924 packet_disconnect("Received extended_data after EOF "
1925 "on channel %d.", id);
1926 }
Damien Miller33b13562000-04-04 14:38:59 +10001927 tcode = packet_get_int();
1928 if (c->efd == -1 ||
1929 c->extended_usage != CHAN_EXTENDED_WRITE ||
1930 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10001931 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001932 return;
1933 }
1934 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001935 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001936 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001937 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001938 c->self, data_len, c->local_window);
1939 xfree(data);
1940 return;
1941 }
Damien Millerd3444942000-09-30 14:20:03 +11001942 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001943 c->local_window -= data_len;
1944 buffer_append(&c->extended, data, data_len);
1945 xfree(data);
1946}
1947
Damien Miller4af51302000-04-16 11:18:38 +10001948void
Damien Miller630d6f42002-01-22 23:17:30 +11001949channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001950{
1951 int id;
1952 Channel *c;
1953
Damien Millerb38eff82000-04-01 11:09:21 +10001954 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001955 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001956 c = channel_lookup(id);
1957 if (c == NULL)
1958 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1959 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001960
1961 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001962 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001963 debug("channel %d: FORCE input drain", c->self);
1964 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11001965 if (buffer_len(&c->input) == 0)
1966 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001967 }
1968
Damien Millerb38eff82000-04-01 11:09:21 +10001969}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001970
Damien Miller4af51302000-04-16 11:18:38 +10001971void
Damien Miller630d6f42002-01-22 23:17:30 +11001972channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001973{
Damien Millerb38eff82000-04-01 11:09:21 +10001974 int id;
1975 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001976
Damien Millerb38eff82000-04-01 11:09:21 +10001977 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001978 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001979 c = channel_lookup(id);
1980 if (c == NULL)
1981 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001982
1983 /*
1984 * Send a confirmation that we have closed the channel and no more
1985 * data is coming for it.
1986 */
Damien Miller95def091999-11-25 00:26:21 +11001987 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001988 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001989 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001990
Damien Miller5428f641999-11-25 11:54:57 +11001991 /*
1992 * If the channel is in closed state, we have sent a close request,
1993 * and the other side will eventually respond with a confirmation.
1994 * Thus, we cannot free the channel here, because then there would be
1995 * no-one to receive the confirmation. The channel gets freed when
1996 * the confirmation arrives.
1997 */
Damien Millerb38eff82000-04-01 11:09:21 +10001998 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001999 /*
2000 * Not a closed channel - mark it as draining, which will
2001 * cause it to be freed later.
2002 */
Damien Miller76765c02002-01-22 23:21:15 +11002003 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002004 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002005 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002006}
2007
Damien Millerb38eff82000-04-01 11:09:21 +10002008/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10002009void
Damien Miller630d6f42002-01-22 23:17:30 +11002010channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002011{
Damien Millerb38eff82000-04-01 11:09:21 +10002012 int id = packet_get_int();
2013 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002014
Damien Miller48b03fc2002-01-22 23:11:40 +11002015 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002016 if (c == NULL)
2017 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2018 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002019}
2020
Damien Miller4af51302000-04-16 11:18:38 +10002021void
Damien Miller630d6f42002-01-22 23:17:30 +11002022channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002023{
2024 int id = packet_get_int();
2025 Channel *c = channel_lookup(id);
2026
Damien Miller48b03fc2002-01-22 23:11:40 +11002027 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002028 if (c == NULL)
2029 packet_disconnect("Received close confirmation for "
2030 "out-of-range channel %d.", id);
2031 if (c->type != SSH_CHANNEL_CLOSED)
2032 packet_disconnect("Received close confirmation for "
2033 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002034 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002035}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002036
Damien Miller4af51302000-04-16 11:18:38 +10002037void
Damien Miller630d6f42002-01-22 23:17:30 +11002038channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002039{
Damien Millerb38eff82000-04-01 11:09:21 +10002040 int id, remote_id;
2041 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002042
Damien Millerb38eff82000-04-01 11:09:21 +10002043 id = packet_get_int();
2044 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002045
Damien Millerb38eff82000-04-01 11:09:21 +10002046 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2047 packet_disconnect("Received open confirmation for "
2048 "non-opening channel %d.", id);
2049 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002050 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002051 c->remote_id = remote_id;
2052 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002053
2054 if (compat20) {
2055 c->remote_window = packet_get_int();
2056 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002057 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002058 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002059 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002060 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002061 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002062 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002063 c->remote_window, c->remote_maxpacket);
2064 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002065 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002066}
2067
Ben Lindstrombba81212001-06-25 05:01:22 +00002068static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002069reason2txt(int reason)
2070{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002071 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002072 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2073 return "administratively prohibited";
2074 case SSH2_OPEN_CONNECT_FAILED:
2075 return "connect failed";
2076 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2077 return "unknown channel type";
2078 case SSH2_OPEN_RESOURCE_SHORTAGE:
2079 return "resource shortage";
2080 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002081 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002082}
2083
Damien Miller4af51302000-04-16 11:18:38 +10002084void
Damien Miller630d6f42002-01-22 23:17:30 +11002085channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002086{
Kevin Steves12057502001-02-05 14:54:34 +00002087 int id, reason;
2088 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002089 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002090
Damien Millerb38eff82000-04-01 11:09:21 +10002091 id = packet_get_int();
2092 c = channel_lookup(id);
2093
2094 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2095 packet_disconnect("Received open failure for "
2096 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002097 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002098 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002099 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002100 msg = packet_get_string(NULL);
2101 lang = packet_get_string(NULL);
2102 }
Damien Miller996acd22003-04-09 20:59:48 +10002103 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002104 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002105 if (msg != NULL)
2106 xfree(msg);
2107 if (lang != NULL)
2108 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002109 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002110 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002111 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002112 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002113}
2114
Damien Miller33b13562000-04-04 14:38:59 +10002115void
Damien Miller630d6f42002-01-22 23:17:30 +11002116channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002117{
2118 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002119 int id;
2120 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002121
2122 if (!compat20)
2123 return;
2124
2125 /* Get the channel number and verify it. */
2126 id = packet_get_int();
2127 c = channel_lookup(id);
2128
2129 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002130 logit("Received window adjust for "
Damien Miller33b13562000-04-04 14:38:59 +10002131 "non-open channel %d.", id);
2132 return;
2133 }
2134 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002135 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002136 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002137 c->remote_window += adjust;
2138}
2139
Damien Miller4af51302000-04-16 11:18:38 +10002140void
Damien Miller630d6f42002-01-22 23:17:30 +11002141channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002142{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002143 Channel *c = NULL;
2144 u_short host_port;
2145 char *host, *originator_string;
2146 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002147
Ben Lindstrome9c99912001-06-09 00:41:05 +00002148 remote_id = packet_get_int();
2149 host = packet_get_string(NULL);
2150 host_port = packet_get_int();
2151
2152 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2153 originator_string = packet_get_string(NULL);
2154 } else {
2155 originator_string = xstrdup("unknown (remote did not supply name)");
2156 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002157 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002158 sock = channel_connect_to(host, host_port);
2159 if (sock != -1) {
2160 c = channel_new("connected socket",
2161 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2162 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002163 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002164 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002165 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002166 if (c == NULL) {
2167 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2168 packet_put_int(remote_id);
2169 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002170 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002171 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002172}
2173
2174
Ben Lindstrome9c99912001-06-09 00:41:05 +00002175/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002176
Ben Lindstrom908afed2001-10-03 17:34:59 +00002177void
2178channel_set_af(int af)
2179{
2180 IPv4or6 = af;
2181}
2182
Damien Millerb16461c2002-01-22 23:29:22 +11002183static int
2184channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2185 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002186{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002187 Channel *c;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002188 int sock, r, success = 0, on = 1, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002189 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002190 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002191 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002192
Damien Millerb16461c2002-01-22 23:29:22 +11002193 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2194 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002195 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002196
Damien Millerb16461c2002-01-22 23:29:22 +11002197 if (host == NULL) {
2198 error("No forward host name.");
2199 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002200 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002201 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002202 error("Forward host name too long.");
2203 return success;
2204 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002205
Damien Miller5428f641999-11-25 11:54:57 +11002206 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002207 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002208 * specified address or wildcard. On the client, a specified bind
2209 * address will always override gateway_ports. On the server, a
2210 * gateway_ports of 1 (``yes'') will override the client's
2211 * specification and force a wildcard bind, whereas a value of 2
2212 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002213 * asked for.
2214 *
2215 * Special-case listen_addrs are:
2216 *
2217 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2218 * "" (empty string), "*" -> wildcard v4/v6
2219 * "localhost" -> loopback v4/v6
2220 */
2221 addr = NULL;
2222 if (listen_addr == NULL) {
2223 /* No address specified: default to gateway_ports setting */
2224 if (gateway_ports)
2225 wildcard = 1;
2226 } else if (gateway_ports || is_client) {
2227 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2228 strcmp(listen_addr, "0.0.0.0") == 0) ||
2229 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2230 (!is_client && gateway_ports == 1))
2231 wildcard = 1;
2232 else if (strcmp(listen_addr, "localhost") != 0)
2233 addr = listen_addr;
2234 }
2235
2236 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2237 type, wildcard, (addr == NULL) ? "NULL" : addr);
2238
2239 /*
Damien Miller34132e52000-01-14 15:45:46 +11002240 * getaddrinfo returns a loopback address if the hostname is
2241 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002242 */
Damien Miller34132e52000-01-14 15:45:46 +11002243 memset(&hints, 0, sizeof(hints));
2244 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002245 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002246 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002247 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002248 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2249 if (addr == NULL) {
2250 /* This really shouldn't happen */
2251 packet_disconnect("getaddrinfo: fatal error: %s",
2252 gai_strerror(r));
2253 } else {
2254 verbose("channel_setup_fwd_listener: "
2255 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2256 packet_send_debug("channel_setup_fwd_listener: "
2257 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2258 }
2259 aitop = NULL;
2260 }
Damien Miller5428f641999-11-25 11:54:57 +11002261
Damien Miller34132e52000-01-14 15:45:46 +11002262 for (ai = aitop; ai; ai = ai->ai_next) {
2263 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2264 continue;
2265 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2266 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002267 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002268 continue;
2269 }
2270 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002271 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002272 if (sock < 0) {
2273 /* this is no error since kernel may not support ipv6 */
2274 verbose("socket: %.100s", strerror(errno));
2275 continue;
2276 }
2277 /*
Damien Millere1383ce2002-09-19 11:49:37 +10002278 * Set socket options.
2279 * Allow local port reuse in TIME_WAIT.
Damien Miller34132e52000-01-14 15:45:46 +11002280 */
Damien Millere1383ce2002-09-19 11:49:37 +10002281 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &on,
2282 sizeof(on)) == -1)
2283 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
2284
Damien Miller34132e52000-01-14 15:45:46 +11002285 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002286
Damien Miller34132e52000-01-14 15:45:46 +11002287 /* Bind the socket to the address. */
2288 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2289 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002290 if (!ai->ai_next)
2291 error("bind: %.100s", strerror(errno));
2292 else
2293 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002294
Damien Miller34132e52000-01-14 15:45:46 +11002295 close(sock);
2296 continue;
2297 }
2298 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002299 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002300 error("listen: %.100s", strerror(errno));
2301 close(sock);
2302 continue;
2303 }
2304 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002305 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002306 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002307 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002308 strlcpy(c->path, host, sizeof(c->path));
2309 c->host_port = port_to_connect;
2310 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002311 success = 1;
2312 }
2313 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002314 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002315 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002316 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002317 return success;
Damien Miller95def091999-11-25 00:26:21 +11002318}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002319
Darren Tuckere7066df2004-05-24 10:18:05 +10002320int
2321channel_cancel_rport_listener(const char *host, u_short port)
2322{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002323 u_int i;
2324 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002325
Darren Tucker47eede72005-03-14 23:08:12 +11002326 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002327 Channel *c = channels[i];
2328
2329 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2330 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002331 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002332 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002333 channel_free(c);
2334 found = 1;
2335 }
2336 }
2337
2338 return (found);
2339}
2340
Damien Millerb16461c2002-01-22 23:29:22 +11002341/* protocol local port fwd, used by ssh (and sshd in v1) */
2342int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002343channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002344 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2345{
2346 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002347 listen_host, listen_port, host_to_connect, port_to_connect,
2348 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002349}
2350
2351/* protocol v2 remote port fwd, used by sshd */
2352int
2353channel_setup_remote_fwd_listener(const char *listen_address,
2354 u_short listen_port, int gateway_ports)
2355{
2356 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2357 listen_address, listen_port, NULL, 0, gateway_ports);
2358}
2359
Damien Miller5428f641999-11-25 11:54:57 +11002360/*
2361 * Initiate forwarding of connections to port "port" on remote host through
2362 * the secure channel to host:port from local side.
2363 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002364
Damien Miller4af51302000-04-16 11:18:38 +10002365void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002366channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002367 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002368{
Damien Millerdff50992002-01-22 23:16:32 +11002369 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002370
Damien Miller95def091999-11-25 00:26:21 +11002371 /* Record locally that connection to this host/port is permitted. */
2372 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2373 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002374
Damien Miller95def091999-11-25 00:26:21 +11002375 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002376 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002377 const char *address_to_bind;
2378 if (listen_host == NULL)
2379 address_to_bind = "localhost";
2380 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2381 address_to_bind = "";
2382 else
2383 address_to_bind = listen_host;
2384
Damien Miller33b13562000-04-04 14:38:59 +10002385 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2386 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002387 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002388 packet_put_cstring(address_to_bind);
2389 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002390 packet_send();
2391 packet_write_wait();
2392 /* Assume that server accepts the request */
2393 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002394 } else {
2395 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002396 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002397 packet_put_cstring(host_to_connect);
2398 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002399 packet_send();
2400 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002401
2402 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002403 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002404 switch (type) {
2405 case SSH_SMSG_SUCCESS:
2406 success = 1;
2407 break;
2408 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002409 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002410 break;
2411 default:
2412 /* Unknown packet */
2413 packet_disconnect("Protocol error for port forward request:"
2414 "received packet type %d.", type);
2415 }
2416 }
2417 if (success) {
2418 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2419 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2420 permitted_opens[num_permitted_opens].listen_port = listen_port;
2421 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002422 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002423}
2424
Damien Miller5428f641999-11-25 11:54:57 +11002425/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002426 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002427 * local side.
2428 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002429void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002430channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002431{
2432 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002433
2434 if (!compat20)
2435 return;
2436
2437 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002438 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002439 permitted_opens[i].listen_port == port)
2440 break;
2441 }
2442 if (i >= num_permitted_opens) {
2443 debug("%s: requested forward not found", __func__);
2444 return;
2445 }
2446 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2447 packet_put_cstring("cancel-tcpip-forward");
2448 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002449 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002450 packet_put_int(port);
2451 packet_send();
2452
2453 permitted_opens[i].listen_port = 0;
2454 permitted_opens[i].port_to_connect = 0;
2455 free(permitted_opens[i].host_to_connect);
2456 permitted_opens[i].host_to_connect = NULL;
2457}
2458
2459/*
Damien Miller5428f641999-11-25 11:54:57 +11002460 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2461 * listening for the port, and sends back a success reply (or disconnect
2462 * message if there was an error). This never returns if there was an error.
2463 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002464
Damien Miller4af51302000-04-16 11:18:38 +10002465void
Damien Millere247cc42000-05-07 12:03:14 +10002466channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002467{
Damien Milleraae6c611999-12-06 11:47:28 +11002468 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002469 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002470
Damien Miller95def091999-11-25 00:26:21 +11002471 /* Get arguments from the packet. */
2472 port = packet_get_int();
2473 hostname = packet_get_string(NULL);
2474 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002475
Damien Millerbac2d8a2000-09-05 16:13:06 +11002476#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002477 /*
2478 * Check that an unprivileged user is not trying to forward a
2479 * privileged port.
2480 */
Damien Miller95def091999-11-25 00:26:21 +11002481 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002482 packet_disconnect(
2483 "Requested forwarding of port %d but user is not root.",
2484 port);
2485 if (host_port == 0)
2486 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002487#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002488
Damien Miller0bc1bd82000-11-13 22:57:25 +11002489 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002490 channel_setup_local_fwd_listener(NULL, port, hostname,
2491 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002492
2493 /* Free the argument string. */
2494 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002495}
2496
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002497/*
2498 * Permits opening to any host/port if permitted_opens[] is empty. This is
2499 * usually called by the server, because the user could connect to any port
2500 * anyway, and the server has no way to know but to trust the client anyway.
2501 */
2502void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002503channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002504{
2505 if (num_permitted_opens == 0)
2506 all_opens_permitted = 1;
2507}
2508
Ben Lindstroma3700052001-04-05 23:26:32 +00002509void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002510channel_add_permitted_opens(char *host, int port)
2511{
2512 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2513 fatal("channel_request_remote_forwarding: too many forwards");
2514 debug("allow port forwarding to host %s port %d", host, port);
2515
2516 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2517 permitted_opens[num_permitted_opens].port_to_connect = port;
2518 num_permitted_opens++;
2519
2520 all_opens_permitted = 0;
2521}
2522
Ben Lindstroma3700052001-04-05 23:26:32 +00002523void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002524channel_clear_permitted_opens(void)
2525{
2526 int i;
2527
2528 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002529 if (permitted_opens[i].host_to_connect != NULL)
2530 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002531 num_permitted_opens = 0;
2532
2533}
2534
2535
2536/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002537static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002538connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002539{
Damien Miller34132e52000-01-14 15:45:46 +11002540 struct addrinfo hints, *ai, *aitop;
2541 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2542 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002543 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002544
Damien Miller34132e52000-01-14 15:45:46 +11002545 memset(&hints, 0, sizeof(hints));
2546 hints.ai_family = IPv4or6;
2547 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002548 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002549 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002550 error("connect_to %.100s: unknown host (%s)", host,
2551 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002552 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002553 }
Damien Miller34132e52000-01-14 15:45:46 +11002554 for (ai = aitop; ai; ai = ai->ai_next) {
2555 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2556 continue;
2557 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2558 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002559 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002560 continue;
2561 }
Damien Miller2372ace2003-05-14 13:42:23 +10002562 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002563 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002564 if (ai->ai_next == NULL)
2565 error("socket: %.100s", strerror(errno));
2566 else
2567 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002568 continue;
2569 }
Damien Miller232711f2004-06-15 10:35:30 +10002570 if (set_nonblock(sock) == -1)
2571 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002572 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2573 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002574 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002575 strerror(errno));
2576 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002577 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002578 }
2579 break; /* success */
2580
2581 }
2582 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002583 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002584 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002585 return -1;
2586 }
2587 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002588 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002589 return sock;
2590}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002591
Damien Miller0bc1bd82000-11-13 22:57:25 +11002592int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002593channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002594{
2595 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002596
Damien Miller0bc1bd82000-11-13 22:57:25 +11002597 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002598 if (permitted_opens[i].host_to_connect != NULL &&
2599 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002600 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002601 permitted_opens[i].host_to_connect,
2602 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002603 error("WARNING: Server requests forwarding for unknown listen_port %d",
2604 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002605 return -1;
2606}
Damien Millerb38eff82000-04-01 11:09:21 +10002607
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002608/* Check if connecting to that port is permitted and connect. */
2609int
2610channel_connect_to(const char *host, u_short port)
2611{
2612 int i, permit;
2613
2614 permit = all_opens_permitted;
2615 if (!permit) {
2616 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002617 if (permitted_opens[i].host_to_connect != NULL &&
2618 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002619 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2620 permit = 1;
2621
2622 }
2623 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002624 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002625 "but the request was denied.", host, port);
2626 return -1;
2627 }
2628 return connect_to(host, port);
2629}
2630
Damien Miller0e220db2004-06-15 10:34:08 +10002631void
2632channel_send_window_changes(void)
2633{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002634 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002635 struct winsize ws;
2636
2637 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002638 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002639 channels[i]->type != SSH_CHANNEL_OPEN)
2640 continue;
2641 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2642 continue;
2643 channel_request_start(i, "window-change", 0);
2644 packet_put_int(ws.ws_col);
2645 packet_put_int(ws.ws_row);
2646 packet_put_int(ws.ws_xpixel);
2647 packet_put_int(ws.ws_ypixel);
2648 packet_send();
2649 }
2650}
2651
Ben Lindstrome9c99912001-06-09 00:41:05 +00002652/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002653
Damien Miller5428f641999-11-25 11:54:57 +11002654/*
2655 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002656 * Returns 0 and a suitable display number for the DISPLAY variable
2657 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002658 */
Kevin Steves366298c2001-12-19 17:58:01 +00002659int
Damien Miller95c249f2002-02-05 12:11:34 +11002660x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002661 int single_connection, u_int *display_numberp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002662{
Damien Millere7378562001-12-21 14:58:35 +11002663 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002664 int display_number, sock;
2665 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002666 struct addrinfo hints, *ai, *aitop;
2667 char strport[NI_MAXSERV];
2668 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002669
Damien Millera34a28b1999-12-14 10:47:15 +11002670 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002671 display_number < MAX_DISPLAYS;
2672 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002673 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002674 memset(&hints, 0, sizeof(hints));
2675 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002676 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002677 hints.ai_socktype = SOCK_STREAM;
2678 snprintf(strport, sizeof strport, "%d", port);
2679 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2680 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002681 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002682 }
Damien Miller34132e52000-01-14 15:45:46 +11002683 for (ai = aitop; ai; ai = ai->ai_next) {
2684 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2685 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002686 sock = socket(ai->ai_family, ai->ai_socktype,
2687 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002688 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002689 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002690 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002691 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002692 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002693 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002694 debug("x11_create_display_inet: Socket family %d not supported",
2695 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002696 continue;
2697 }
Damien Miller34132e52000-01-14 15:45:46 +11002698 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002699#ifdef IPV6_V6ONLY
2700 if (ai->ai_family == AF_INET6) {
2701 int on = 1;
2702 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2703 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2704 }
2705#endif
Damien Miller34132e52000-01-14 15:45:46 +11002706 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002707 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002708 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002709
2710 if (ai->ai_next)
2711 continue;
2712
Damien Miller34132e52000-01-14 15:45:46 +11002713 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002714 close(socks[n]);
2715 }
2716 num_socks = 0;
2717 break;
2718 }
2719 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002720#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002721 if (num_socks == NUM_SOCKS)
2722 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002723#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002724 if (x11_use_localhost) {
2725 if (num_socks == NUM_SOCKS)
2726 break;
2727 } else {
2728 break;
2729 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002730#endif
Damien Miller95def091999-11-25 00:26:21 +11002731 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002732 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002733 if (num_socks > 0)
2734 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002735 }
Damien Miller95def091999-11-25 00:26:21 +11002736 if (display_number >= MAX_DISPLAYS) {
2737 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002738 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002739 }
Damien Miller95def091999-11-25 00:26:21 +11002740 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002741 for (n = 0; n < num_socks; n++) {
2742 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002743 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002744 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002745 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002746 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002747 }
Damien Miller95def091999-11-25 00:26:21 +11002748 }
Damien Miller34132e52000-01-14 15:45:46 +11002749
Damien Miller34132e52000-01-14 15:45:46 +11002750 /* Allocate a channel for each socket. */
2751 for (n = 0; n < num_socks; n++) {
2752 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002753 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002754 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2755 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002756 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002757 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002758 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002759
Kevin Steves366298c2001-12-19 17:58:01 +00002760 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002761 *display_numberp = display_number;
2762 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002763}
2764
Ben Lindstrombba81212001-06-25 05:01:22 +00002765static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002766connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002767{
Damien Miller95def091999-11-25 00:26:21 +11002768 int sock;
2769 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002770
Damien Miller3afe3752001-12-21 12:39:51 +11002771 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2772 if (sock < 0)
2773 error("socket: %.100s", strerror(errno));
2774 memset(&addr, 0, sizeof(addr));
2775 addr.sun_family = AF_UNIX;
2776 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2777 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2778 return sock;
2779 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002780 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2781 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002782}
2783
Damien Millerbd483e72000-04-30 10:00:53 +10002784int
2785x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002786{
Damien Miller398e1cf2002-02-05 11:52:13 +11002787 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002788 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002789 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002790 struct addrinfo hints, *ai, *aitop;
2791 char strport[NI_MAXSERV];
2792 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793
Damien Miller95def091999-11-25 00:26:21 +11002794 /* Try to open a socket for the local X server. */
2795 display = getenv("DISPLAY");
2796 if (!display) {
2797 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002798 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002799 }
Damien Miller5428f641999-11-25 11:54:57 +11002800 /*
2801 * Now we decode the value of the DISPLAY variable and make a
2802 * connection to the real X server.
2803 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002804
Damien Miller5428f641999-11-25 11:54:57 +11002805 /*
2806 * Check if it is a unix domain socket. Unix domain displays are in
2807 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2808 */
Damien Miller95def091999-11-25 00:26:21 +11002809 if (strncmp(display, "unix:", 5) == 0 ||
2810 display[0] == ':') {
2811 /* Connect to the unix domain socket. */
2812 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2813 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002814 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002815 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002816 }
2817 /* Create a socket. */
2818 sock = connect_local_xsocket(display_number);
2819 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002820 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002821
2822 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002823 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002824 }
Damien Miller5428f641999-11-25 11:54:57 +11002825 /*
2826 * Connect to an inet socket. The DISPLAY value is supposedly
2827 * hostname:d[.s], where hostname may also be numeric IP address.
2828 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002829 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002830 cp = strchr(buf, ':');
2831 if (!cp) {
2832 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002833 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002834 }
Damien Miller95def091999-11-25 00:26:21 +11002835 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002836 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002837 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2838 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002839 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002840 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002841 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002842
Damien Miller34132e52000-01-14 15:45:46 +11002843 /* Look up the host address */
2844 memset(&hints, 0, sizeof(hints));
2845 hints.ai_family = IPv4or6;
2846 hints.ai_socktype = SOCK_STREAM;
2847 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2848 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2849 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002850 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002851 }
Damien Miller34132e52000-01-14 15:45:46 +11002852 for (ai = aitop; ai; ai = ai->ai_next) {
2853 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002854 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002855 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002856 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002857 continue;
2858 }
2859 /* Connect it to the display. */
2860 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002861 debug2("connect %.100s port %d: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002862 6000 + display_number, strerror(errno));
2863 close(sock);
2864 continue;
2865 }
2866 /* Success */
2867 break;
Damien Miller34132e52000-01-14 15:45:46 +11002868 }
Damien Miller34132e52000-01-14 15:45:46 +11002869 freeaddrinfo(aitop);
2870 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002871 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002872 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002873 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002874 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002875 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002876 return sock;
2877}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002878
Damien Millerbd483e72000-04-30 10:00:53 +10002879/*
2880 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2881 * the remote channel number. We should do whatever we want, and respond
2882 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2883 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002884
Damien Millerbd483e72000-04-30 10:00:53 +10002885void
Damien Miller630d6f42002-01-22 23:17:30 +11002886x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002887{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002888 Channel *c = NULL;
2889 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002890 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002891
2892 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002893
2894 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002895
2896 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002897 remote_host = packet_get_string(NULL);
2898 } else {
2899 remote_host = xstrdup("unknown (remote did not supply name)");
2900 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002901 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002902
2903 /* Obtain a connection to the real X display. */
2904 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002905 if (sock != -1) {
2906 /* Allocate a channel for this connection. */
2907 c = channel_new("connected x11 socket",
2908 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2909 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002910 c->remote_id = remote_id;
2911 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002912 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002913 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002914 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002915 /* Send refusal to the remote host. */
2916 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002917 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002918 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002919 /* Send a confirmation to the remote host. */
2920 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002921 packet_put_int(remote_id);
2922 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002923 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002924 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002925}
2926
Damien Miller69b69aa2000-10-28 14:19:58 +11002927/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2928void
Damien Miller630d6f42002-01-22 23:17:30 +11002929deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002930{
2931 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002932
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002933 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002934 case SSH_SMSG_AGENT_OPEN:
2935 error("Warning: ssh server tried agent forwarding.");
2936 break;
2937 case SSH_SMSG_X11_OPEN:
2938 error("Warning: ssh server tried X11 forwarding.");
2939 break;
2940 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002941 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002942 break;
2943 }
2944 error("Warning: this is probably a break in attempt by a malicious server.");
2945 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2946 packet_put_int(rchan);
2947 packet_send();
2948}
2949
Damien Miller5428f641999-11-25 11:54:57 +11002950/*
2951 * Requests forwarding of X11 connections, generates fake authentication
2952 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002953 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002954 */
Damien Miller4af51302000-04-16 11:18:38 +10002955void
Damien Miller17e7ed02005-06-17 12:54:33 +10002956x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10002957 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002958{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002959 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002960 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002961 char *new_data;
2962 int screen_number;
2963 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002964 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002965
Damien Miller17e7ed02005-06-17 12:54:33 +10002966 cp = disp;
2967 if (disp)
2968 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11002969 if (cp)
2970 cp = strchr(cp, '.');
2971 if (cp)
2972 screen_number = atoi(cp + 1);
2973 else
2974 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002975
Damien Miller95def091999-11-25 00:26:21 +11002976 /* Save protocol name. */
2977 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002978
Damien Miller5428f641999-11-25 11:54:57 +11002979 /*
2980 * Extract real authentication data and generate fake data of the
2981 * same length.
2982 */
Damien Miller95def091999-11-25 00:26:21 +11002983 x11_saved_data = xmalloc(data_len);
2984 x11_fake_data = xmalloc(data_len);
2985 for (i = 0; i < data_len; i++) {
2986 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2987 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2988 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002989 rnd = arc4random();
Damien Miller95def091999-11-25 00:26:21 +11002990 x11_saved_data[i] = value;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002991 x11_fake_data[i] = rnd & 0xff;
2992 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +11002993 }
2994 x11_saved_data_len = data_len;
2995 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002996
Damien Miller95def091999-11-25 00:26:21 +11002997 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002998 len = 2 * data_len + 1;
2999 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11003000 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00003001 snprintf(new_data + 2 * i, len - 2 * i,
3002 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003003
Damien Miller95def091999-11-25 00:26:21 +11003004 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003005 if (compat20) {
3006 channel_request_start(client_session_id, "x11-req", 0);
3007 packet_put_char(0); /* XXX bool single connection */
3008 } else {
3009 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3010 }
3011 packet_put_cstring(proto);
3012 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003013 packet_put_int(screen_number);
3014 packet_send();
3015 packet_write_wait();
3016 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003017}
3018
Ben Lindstrome9c99912001-06-09 00:41:05 +00003019
3020/* -- agent forwarding */
3021
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003022/* Sends a message to the server to request authentication fd forwarding. */
3023
Damien Miller4af51302000-04-16 11:18:38 +10003024void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003025auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003026{
Damien Miller95def091999-11-25 00:26:21 +11003027 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3028 packet_send();
3029 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003030}