blob: b4fd89f96c2215fc807708f72c9e3ea0334a3fce [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 Millerd27b9472005-12-13 19:29:02 +110042RCSID("$OpenBSD: channels.c,v 1.228 2005/12/06 22:38:27 reyk 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
Damien Miller13390022005-07-06 09:44:19 +1000114/* Saved X11 local (client) display. */
115static char *x11_saved_display = NULL;
116
Ben Lindstrome9c99912001-06-09 00:41:05 +0000117/* Saved X11 authentication protocol name. */
118static char *x11_saved_proto = NULL;
119
120/* Saved X11 authentication data. This is the real data. */
121static char *x11_saved_data = NULL;
122static u_int x11_saved_data_len = 0;
123
124/*
125 * Fake X11 authentication data. This is what the server will be sending us;
126 * we should replace any occurrences of this by the real data.
127 */
128static char *x11_fake_data = NULL;
129static u_int x11_fake_data_len;
130
131
132/* -- agent forwarding */
133
134#define NUM_SOCKS 10
135
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000136/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000137static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000138
Ben Lindstrome9c99912001-06-09 00:41:05 +0000139/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000141
Ben Lindstrome9c99912001-06-09 00:41:05 +0000142/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000143
144Channel *
145channel_lookup(int id)
146{
147 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000149 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Miller996acd22003-04-09 20:59:48 +1000150 logit("channel_lookup: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000151 return NULL;
152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000153 c = channels[id];
154 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000155 logit("channel_lookup: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000156 return NULL;
157 }
158 return c;
159}
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Damien Millere247cc42000-05-07 12:03:14 +1000162 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000163 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100167channel_register_fds(Channel *c, int rfd, int wfd, int efd,
168 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169{
Damien Miller95def091999-11-25 00:26:21 +1100170 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100171 channel_max_fd = MAX(channel_max_fd, rfd);
172 channel_max_fd = MAX(channel_max_fd, wfd);
173 channel_max_fd = MAX(channel_max_fd, efd);
174
Damien Miller5428f641999-11-25 11:54:57 +1100175 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000176
Damien Miller6f83b8e2000-05-02 09:23:45 +1000177 c->rfd = rfd;
178 c->wfd = wfd;
179 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000180 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000181 c->efd = efd;
182 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100183
Damien Miller79438cc2001-02-16 12:34:57 +1100184 /* XXX ugly hack: nonblock is only set by the server */
185 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000186 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100187 c->isatty = 1;
188 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000189 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100190 c->self, c->wfd);
191 }
192 } else {
193 c->isatty = 0;
194 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000195 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100196
Damien Miller69b69aa2000-10-28 14:19:58 +1100197 /* enable nonblocking mode */
198 if (nonblock) {
199 if (rfd != -1)
200 set_nonblock(rfd);
201 if (wfd != -1)
202 set_nonblock(wfd);
203 if (efd != -1)
204 set_nonblock(efd);
205 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000206}
207
208/*
209 * Allocate a new channel object and set its type and socket. This will cause
210 * remote_name to be freed.
211 */
212
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000213Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000214channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000215 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000216{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000217 int found;
218 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000219 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
Damien Miller95def091999-11-25 00:26:21 +1100221 /* Do initial allocation if this is the first call. */
222 if (channels_alloc == 0) {
223 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000224 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100225 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000226 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100227 }
228 /* Try to find a free slot where to put the new channel. */
229 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000230 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100231 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000232 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100233 break;
234 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000235 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100236 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100237 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000238 if (channels_alloc > 10000)
239 fatal("channel_new: internal error: channels_alloc %d "
240 "too big.", channels_alloc);
Damien Miller5efcecc2003-09-17 07:31:14 +1000241 channels = xrealloc(channels,
242 (channels_alloc + 10) * sizeof(Channel *));
243 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100244 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100245 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000246 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100247 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000248 /* Initialize and return new channel. */
249 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000250 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100251 buffer_init(&c->input);
252 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000253 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100254 c->ostate = CHAN_OUTPUT_OPEN;
255 c->istate = CHAN_INPUT_OPEN;
256 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100257 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100258 c->self = found;
259 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000260 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000261 c->local_window = window;
262 c->local_window_max = window;
263 c->local_consumed = 0;
264 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100265 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000266 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000267 c->remote_window = 0;
268 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000269 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100270 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000271 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100272 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100273 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000274 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000275 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100276 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000277 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000279
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000280static int
281channel_find_maxfd(void)
282{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000283 u_int i;
284 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000285 Channel *c;
286
287 for (i = 0; i < channels_alloc; i++) {
288 c = channels[i];
289 if (c != NULL) {
290 max = MAX(max, c->rfd);
291 max = MAX(max, c->wfd);
292 max = MAX(max, c->efd);
293 }
294 }
295 return max;
296}
297
298int
299channel_close_fd(int *fdp)
300{
301 int ret = 0, fd = *fdp;
302
303 if (fd != -1) {
304 ret = close(fd);
305 *fdp = -1;
306 if (fd == channel_max_fd)
307 channel_max_fd = channel_find_maxfd();
308 }
309 return ret;
310}
311
Damien Miller6f83b8e2000-05-02 09:23:45 +1000312/* Close all channel fd/socket. */
313
Ben Lindstrombba81212001-06-25 05:01:22 +0000314static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000315channel_close_fds(Channel *c)
316{
Damien Miller0e220db2004-06-15 10:34:08 +1000317 debug3("channel %d: close_fds r %d w %d e %d c %d",
318 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000319
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000320 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000321 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000322 channel_close_fd(&c->rfd);
323 channel_close_fd(&c->wfd);
324 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000325}
326
327/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328
Damien Miller4af51302000-04-16 11:18:38 +1000329void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000330channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000332 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000333 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000334
335 for (n = 0, i = 0; i < channels_alloc; i++)
336 if (channels[i])
337 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000338 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000339 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000340
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000341 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000342 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000343 xfree(s);
344
Damien Miller6f83b8e2000-05-02 09:23:45 +1000345 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000346 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000347 if (c->ctl_fd != -1)
348 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000349 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000350 buffer_free(&c->input);
351 buffer_free(&c->output);
352 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000353 if (c->remote_name) {
354 xfree(c->remote_name);
355 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100356 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000357 channels[c->self] = NULL;
358 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000359}
360
Ben Lindstrome9c99912001-06-09 00:41:05 +0000361void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000362channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000363{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000364 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000365
Ben Lindstrom601e4362001-06-21 03:19:23 +0000366 for (i = 0; i < channels_alloc; i++)
367 if (channels[i] != NULL)
368 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000369}
370
371/*
372 * Closes the sockets/fds of all channels. This is used to close extra file
373 * descriptors after a fork.
374 */
375
376void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000377channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000378{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000379 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000380
381 for (i = 0; i < channels_alloc; i++)
382 if (channels[i] != NULL)
383 channel_close_fds(channels[i]);
384}
385
386/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000387 * Stop listening to channels.
388 */
389
390void
391channel_stop_listening(void)
392{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000393 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000394 Channel *c;
395
396 for (i = 0; i < channels_alloc; i++) {
397 c = channels[i];
398 if (c != NULL) {
399 switch (c->type) {
400 case SSH_CHANNEL_AUTH_SOCKET:
401 case SSH_CHANNEL_PORT_LISTENER:
402 case SSH_CHANNEL_RPORT_LISTENER:
403 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000404 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000405 channel_free(c);
406 break;
407 }
408 }
409 }
410}
411
412/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000413 * Returns true if no channel has too much buffered data, and false if one or
414 * more channel is overfull.
415 */
416
417int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000418channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000419{
420 u_int i;
421 Channel *c;
422
423 for (i = 0; i < channels_alloc; i++) {
424 c = channels[i];
425 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000426#if 0
427 if (!compat20 &&
428 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100429 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000430 c->self, buffer_len(&c->input));
431 return 0;
432 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000433#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000435 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000436 c->self, buffer_len(&c->output),
437 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000438 return 0;
439 }
440 }
441 }
442 return 1;
443}
444
445/* Returns true if any channel is still open. */
446
447int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000448channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000450 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451 Channel *c;
452
453 for (i = 0; i < channels_alloc; i++) {
454 c = channels[i];
455 if (c == NULL)
456 continue;
457 switch (c->type) {
458 case SSH_CHANNEL_X11_LISTENER:
459 case SSH_CHANNEL_PORT_LISTENER:
460 case SSH_CHANNEL_RPORT_LISTENER:
461 case SSH_CHANNEL_CLOSED:
462 case SSH_CHANNEL_AUTH_SOCKET:
463 case SSH_CHANNEL_DYNAMIC:
464 case SSH_CHANNEL_CONNECTING:
465 case SSH_CHANNEL_ZOMBIE:
466 continue;
467 case SSH_CHANNEL_LARVAL:
468 if (!compat20)
469 fatal("cannot happen: SSH_CHANNEL_LARVAL");
470 continue;
471 case SSH_CHANNEL_OPENING:
472 case SSH_CHANNEL_OPEN:
473 case SSH_CHANNEL_X11_OPEN:
474 return 1;
475 case SSH_CHANNEL_INPUT_DRAINING:
476 case SSH_CHANNEL_OUTPUT_DRAINING:
477 if (!compat13)
478 fatal("cannot happen: OUT_DRAIN");
479 return 1;
480 default:
481 fatal("channel_still_open: bad channel type %d", c->type);
482 /* NOTREACHED */
483 }
484 }
485 return 0;
486}
487
488/* Returns the id of an open channel suitable for keepaliving */
489
490int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000491channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000492{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000493 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000494 Channel *c;
495
496 for (i = 0; i < channels_alloc; i++) {
497 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000498 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000499 continue;
500 switch (c->type) {
501 case SSH_CHANNEL_CLOSED:
502 case SSH_CHANNEL_DYNAMIC:
503 case SSH_CHANNEL_X11_LISTENER:
504 case SSH_CHANNEL_PORT_LISTENER:
505 case SSH_CHANNEL_RPORT_LISTENER:
506 case SSH_CHANNEL_OPENING:
507 case SSH_CHANNEL_CONNECTING:
508 case SSH_CHANNEL_ZOMBIE:
509 continue;
510 case SSH_CHANNEL_LARVAL:
511 case SSH_CHANNEL_AUTH_SOCKET:
512 case SSH_CHANNEL_OPEN:
513 case SSH_CHANNEL_X11_OPEN:
514 return i;
515 case SSH_CHANNEL_INPUT_DRAINING:
516 case SSH_CHANNEL_OUTPUT_DRAINING:
517 if (!compat13)
518 fatal("cannot happen: OUT_DRAIN");
519 return i;
520 default:
521 fatal("channel_find_open: bad channel type %d", c->type);
522 /* NOTREACHED */
523 }
524 }
525 return -1;
526}
527
528
529/*
530 * Returns a message describing the currently open forwarded connections,
531 * suitable for sending to the client. The message contains crlf pairs for
532 * newlines.
533 */
534
535char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000536channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000537{
538 Buffer buffer;
539 Channel *c;
540 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000541 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000542
543 buffer_init(&buffer);
544 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
545 buffer_append(&buffer, buf, strlen(buf));
546 for (i = 0; i < channels_alloc; i++) {
547 c = channels[i];
548 if (c == NULL)
549 continue;
550 switch (c->type) {
551 case SSH_CHANNEL_X11_LISTENER:
552 case SSH_CHANNEL_PORT_LISTENER:
553 case SSH_CHANNEL_RPORT_LISTENER:
554 case SSH_CHANNEL_CLOSED:
555 case SSH_CHANNEL_AUTH_SOCKET:
556 case SSH_CHANNEL_ZOMBIE:
557 continue;
558 case SSH_CHANNEL_LARVAL:
559 case SSH_CHANNEL_OPENING:
560 case SSH_CHANNEL_CONNECTING:
561 case SSH_CHANNEL_DYNAMIC:
562 case SSH_CHANNEL_OPEN:
563 case SSH_CHANNEL_X11_OPEN:
564 case SSH_CHANNEL_INPUT_DRAINING:
565 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000566 snprintf(buf, sizeof buf,
567 " #%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 +0000568 c->self, c->remote_name,
569 c->type, c->remote_id,
570 c->istate, buffer_len(&c->input),
571 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000572 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000573 buffer_append(&buffer, buf, strlen(buf));
574 continue;
575 default:
576 fatal("channel_open_message: bad channel type %d", c->type);
577 /* NOTREACHED */
578 }
579 }
580 buffer_append(&buffer, "\0", 1);
581 cp = xstrdup(buffer_ptr(&buffer));
582 buffer_free(&buffer);
583 return cp;
584}
585
586void
587channel_send_open(int id)
588{
589 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000590
Ben Lindstrome9c99912001-06-09 00:41:05 +0000591 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000592 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000593 return;
594 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000595 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000596 packet_start(SSH2_MSG_CHANNEL_OPEN);
597 packet_put_cstring(c->ctype);
598 packet_put_int(c->self);
599 packet_put_int(c->local_window);
600 packet_put_int(c->local_maxpacket);
601 packet_send();
602}
603
604void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000605channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000607 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000608
Ben Lindstrome9c99912001-06-09 00:41:05 +0000609 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000610 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611 return;
612 }
Damien Miller0e220db2004-06-15 10:34:08 +1000613 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000614 packet_start(SSH2_MSG_CHANNEL_REQUEST);
615 packet_put_int(c->remote_id);
616 packet_put_cstring(service);
617 packet_put_char(wantconfirm);
618}
619void
Damien Miller0e220db2004-06-15 10:34:08 +1000620channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000621{
622 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000623
Ben Lindstrome9c99912001-06-09 00:41:05 +0000624 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000625 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000626 return;
627 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100628 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000629 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000630}
631void
Damien Miller39eda6e2005-11-05 14:52:50 +1100632channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633{
634 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000635
Ben Lindstrome9c99912001-06-09 00:41:05 +0000636 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000637 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638 return;
639 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000640 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100641 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642}
643void
644channel_cancel_cleanup(int id)
645{
646 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000647
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000649 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000650 return;
651 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000652 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100653 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654}
655void
656channel_register_filter(int id, channel_filter_fn *fn)
657{
658 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000659
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000661 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 return;
663 }
664 c->input_filter = fn;
665}
666
667void
668channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100669 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670{
671 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000672
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
674 fatal("channel_activate for non-larval channel %d.", id);
675 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
676 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100677 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
679 packet_put_int(c->remote_id);
680 packet_put_int(c->local_window);
681 packet_send();
682}
683
Damien Miller5428f641999-11-25 11:54:57 +1100684/*
Damien Millerb38eff82000-04-01 11:09:21 +1000685 * 'channel_pre*' are called just before select() to add any bits relevant to
686 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100687 */
Damien Millerb38eff82000-04-01 11:09:21 +1000688/*
689 * 'channel_post*': perform any appropriate operations for channels which
690 * have events pending.
691 */
692typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
693chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
694chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
695
Ben Lindstrombba81212001-06-25 05:01:22 +0000696static void
Damien Millerb38eff82000-04-01 11:09:21 +1000697channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
698{
699 FD_SET(c->sock, readset);
700}
701
Ben Lindstrombba81212001-06-25 05:01:22 +0000702static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000703channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
704{
705 debug3("channel %d: waiting for connection", c->self);
706 FD_SET(c->sock, writeset);
707}
708
Ben Lindstrombba81212001-06-25 05:01:22 +0000709static void
Damien Millerb38eff82000-04-01 11:09:21 +1000710channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
711{
712 if (buffer_len(&c->input) < packet_get_maxsize())
713 FD_SET(c->sock, readset);
714 if (buffer_len(&c->output) > 0)
715 FD_SET(c->sock, writeset);
716}
717
Ben Lindstrombba81212001-06-25 05:01:22 +0000718static void
Damien Millerde6987c2002-01-22 23:20:40 +1100719channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000720{
Damien Millerde6987c2002-01-22 23:20:40 +1100721 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000722
Darren Tucker11327cc2005-03-14 23:22:25 +1100723 /* check buffer limits */
724 limit = MIN(limit, (BUFFER_MAX_LEN - BUFFER_MAX_CHUNK - CHAN_RBUF));
725
Damien Miller33b13562000-04-04 14:38:59 +1000726 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100727 limit > 0 &&
728 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000729 FD_SET(c->rfd, readset);
730 if (c->ostate == CHAN_OUTPUT_OPEN ||
731 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
732 if (buffer_len(&c->output) > 0) {
733 FD_SET(c->wfd, writeset);
734 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000735 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000736 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
737 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000738 else
739 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000740 }
741 }
742 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100743 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000744 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
745 buffer_len(&c->extended) > 0)
746 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000747 else if (!(c->flags & CHAN_EOF_SENT) &&
748 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000749 buffer_len(&c->extended) < c->remote_window)
750 FD_SET(c->efd, readset);
751 }
Damien Miller0e220db2004-06-15 10:34:08 +1000752 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000753 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000754 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
755 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000756}
757
Ben Lindstrombba81212001-06-25 05:01:22 +0000758static void
Damien Millerb38eff82000-04-01 11:09:21 +1000759channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
760{
761 if (buffer_len(&c->input) == 0) {
762 packet_start(SSH_MSG_CHANNEL_CLOSE);
763 packet_put_int(c->remote_id);
764 packet_send();
765 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000766 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000767 }
768}
769
Ben Lindstrombba81212001-06-25 05:01:22 +0000770static void
Damien Millerb38eff82000-04-01 11:09:21 +1000771channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
772{
773 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000774 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000775 else
Damien Millerb38eff82000-04-01 11:09:21 +1000776 FD_SET(c->sock, writeset);
777}
778
779/*
780 * This is a special state for X11 authentication spoofing. An opened X11
781 * connection (when authentication spoofing is being done) remains in this
782 * state until the first packet has been completely read. The authentication
783 * data in that packet is then substituted by the real data if it matches the
784 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000785 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000786 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000787 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000790{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000791 u_char *ucp;
792 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000793
794 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000795 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000796 return 0;
797
798 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100799 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000800 if (ucp[0] == 0x42) { /* Byte order MSB first. */
801 proto_len = 256 * ucp[6] + ucp[7];
802 data_len = 256 * ucp[8] + ucp[9];
803 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
804 proto_len = ucp[6] + 256 * ucp[7];
805 data_len = ucp[8] + 256 * ucp[9];
806 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000807 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100808 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000809 return -1;
810 }
811
812 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000813 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000814 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
815 return 0;
816
817 /* Check if authentication protocol matches. */
818 if (proto_len != strlen(x11_saved_proto) ||
819 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000820 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000821 return -1;
822 }
823 /* Check if authentication data matches our fake data. */
824 if (data_len != x11_fake_data_len ||
825 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
826 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000827 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000828 return -1;
829 }
830 /* Check fake data length */
831 if (x11_fake_data_len != x11_saved_data_len) {
832 error("X11 fake_data_len %d != saved_data_len %d",
833 x11_fake_data_len, x11_saved_data_len);
834 return -1;
835 }
836 /*
837 * Received authentication protocol and data match
838 * our fake data. Substitute the fake data with real
839 * data.
840 */
841 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
842 x11_saved_data, x11_saved_data_len);
843 return 1;
844}
845
Ben Lindstrombba81212001-06-25 05:01:22 +0000846static void
Damien Millerb38eff82000-04-01 11:09:21 +1000847channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
848{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000849 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000850
Damien Millerb38eff82000-04-01 11:09:21 +1000851 if (ret == 1) {
852 /* Start normal processing for the channel. */
853 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000854 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000855 } else if (ret == -1) {
856 /*
857 * We have received an X11 connection that has bad
858 * authentication information.
859 */
Damien Miller996acd22003-04-09 20:59:48 +1000860 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000861 buffer_clear(&c->input);
862 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000863 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000864 c->sock = -1;
865 c->type = SSH_CHANNEL_CLOSED;
866 packet_start(SSH_MSG_CHANNEL_CLOSE);
867 packet_put_int(c->remote_id);
868 packet_send();
869 }
870}
871
Ben Lindstrombba81212001-06-25 05:01:22 +0000872static void
Damien Millerbd483e72000-04-30 10:00:53 +1000873channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000874{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000875 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000876
877 /* c->force_drain = 1; */
878
Damien Millerb38eff82000-04-01 11:09:21 +1000879 if (ret == 1) {
880 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100881 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000882 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000883 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000884 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100885 chan_read_failed(c);
886 buffer_clear(&c->input);
887 chan_ibuf_empty(c);
888 buffer_clear(&c->output);
889 /* for proto v1, the peer will send an IEOF */
890 if (compat20)
891 chan_write_failed(c);
892 else
893 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000894 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000895 }
896}
897
Ben Lindstromb3921512001-04-11 15:57:50 +0000898/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000899static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000900channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000901{
Damien Millera10f5612002-09-12 09:49:15 +1000902 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000903 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100904 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000905 struct {
906 u_int8_t version;
907 u_int8_t command;
908 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000909 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000910 } s4_req, s4_rsp;
911
Ben Lindstromb3921512001-04-11 15:57:50 +0000912 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000913
914 have = buffer_len(&c->input);
915 len = sizeof(s4_req);
916 if (have < len)
917 return 0;
918 p = buffer_ptr(&c->input);
919 for (found = 0, i = len; i < have; i++) {
920 if (p[i] == '\0') {
921 found = 1;
922 break;
923 }
924 if (i > 1024) {
925 /* the peer is probably sending garbage */
926 debug("channel %d: decode socks4: too long",
927 c->self);
928 return -1;
929 }
930 }
931 if (!found)
932 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000933 buffer_get(&c->input, (char *)&s4_req.version, 1);
934 buffer_get(&c->input, (char *)&s4_req.command, 1);
935 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000936 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000937 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 p = buffer_ptr(&c->input);
939 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000940 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000941 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000942 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000943 c->self, len, have);
944 strlcpy(username, p, sizeof(username));
945 buffer_consume(&c->input, len);
946 buffer_consume(&c->input, 1); /* trailing '\0' */
947
Ben Lindstromb3921512001-04-11 15:57:50 +0000948 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000949 strlcpy(c->path, host, sizeof(c->path));
950 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100951
Damien Millerfbdeece2003-09-02 22:52:31 +1000952 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000953 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000954
Ben Lindstromb3921512001-04-11 15:57:50 +0000955 if (s4_req.command != 1) {
956 debug("channel %d: cannot handle: socks4 cn %d",
957 c->self, s4_req.command);
958 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000959 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000960 s4_rsp.version = 0; /* vn: 0 for reply */
961 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000962 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000963 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000964 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000965 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000966}
967
Darren Tucker46471c92003-07-03 13:55:19 +1000968/* try to decode a socks5 header */
969#define SSH_SOCKS5_AUTHDONE 0x1000
970#define SSH_SOCKS5_NOAUTH 0x00
971#define SSH_SOCKS5_IPV4 0x01
972#define SSH_SOCKS5_DOMAIN 0x03
973#define SSH_SOCKS5_IPV6 0x04
974#define SSH_SOCKS5_CONNECT 0x01
975#define SSH_SOCKS5_SUCCESS 0x00
976
977static int
978channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset)
979{
980 struct {
981 u_int8_t version;
982 u_int8_t command;
983 u_int8_t reserved;
984 u_int8_t atyp;
985 } s5_req, s5_rsp;
986 u_int16_t dest_port;
987 u_char *p, dest_addr[255+1];
Damien Millereccb9de2005-06-17 12:59:34 +1000988 u_int have, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +1000989
990 debug2("channel %d: decode socks5", c->self);
991 p = buffer_ptr(&c->input);
992 if (p[0] != 0x05)
993 return -1;
994 have = buffer_len(&c->input);
995 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
996 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +1100997 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +1000998 return 0;
999 nmethods = p[1];
1000 if (have < nmethods + 2)
1001 return 0;
1002 /* look for method: "NO AUTHENTICATION REQUIRED" */
1003 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1004 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1005 found = 1;
1006 break;
1007 }
1008 }
1009 if (!found) {
1010 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1011 c->self);
1012 return -1;
1013 }
1014 buffer_consume(&c->input, nmethods + 2);
1015 buffer_put_char(&c->output, 0x05); /* version */
1016 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1017 FD_SET(c->sock, writeset);
1018 c->flags |= SSH_SOCKS5_AUTHDONE;
1019 debug2("channel %d: socks5 auth done", c->self);
1020 return 0; /* need more */
1021 }
1022 debug2("channel %d: socks5 post auth", c->self);
1023 if (have < sizeof(s5_req)+1)
1024 return 0; /* need more */
1025 memcpy((char *)&s5_req, p, sizeof(s5_req));
1026 if (s5_req.version != 0x05 ||
1027 s5_req.command != SSH_SOCKS5_CONNECT ||
1028 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001029 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001030 return -1;
1031 }
Darren Tucker47eede72005-03-14 23:08:12 +11001032 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001033 case SSH_SOCKS5_IPV4:
1034 addrlen = 4;
1035 af = AF_INET;
1036 break;
1037 case SSH_SOCKS5_DOMAIN:
1038 addrlen = p[sizeof(s5_req)];
1039 af = -1;
1040 break;
1041 case SSH_SOCKS5_IPV6:
1042 addrlen = 16;
1043 af = AF_INET6;
1044 break;
1045 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001046 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001047 return -1;
1048 }
1049 if (have < 4 + addrlen + 2)
1050 return 0;
1051 buffer_consume(&c->input, sizeof(s5_req));
1052 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1053 buffer_consume(&c->input, 1); /* host string length */
1054 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1055 buffer_get(&c->input, (char *)&dest_port, 2);
1056 dest_addr[addrlen] = '\0';
1057 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001058 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001059 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1060 return -1;
1061 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001062
Damien Millerfbdeece2003-09-02 22:52:31 +10001063 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001064 c->self, c->path, c->host_port, s5_req.command);
1065
1066 s5_rsp.version = 0x05;
1067 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1068 s5_rsp.reserved = 0; /* ignored */
1069 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1070 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1071 dest_port = 0; /* ignored */
1072
1073 buffer_append(&c->output, (char *)&s5_rsp, sizeof(s5_rsp));
1074 buffer_append(&c->output, (char *)&dest_addr, sizeof(struct in_addr));
1075 buffer_append(&c->output, (char *)&dest_port, sizeof(dest_port));
1076 return 1;
1077}
1078
Ben Lindstromb3921512001-04-11 15:57:50 +00001079/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001080static void
Ben Lindstromb3921512001-04-11 15:57:50 +00001081channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
1082{
1083 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001084 u_int have;
1085 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001086
1087 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001088 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001089 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001090 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001091 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001092 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001093 /* need more */
1094 FD_SET(c->sock, readset);
1095 return;
1096 }
1097 /* try to guess the protocol */
1098 p = buffer_ptr(&c->input);
1099 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001100 case 0x04:
1101 ret = channel_decode_socks4(c, readset, writeset);
1102 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001103 case 0x05:
1104 ret = channel_decode_socks5(c, readset, writeset);
1105 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001106 default:
1107 ret = -1;
1108 break;
1109 }
1110 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001111 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 } else if (ret == 0) {
1113 debug2("channel %d: pre_dynamic: need more", c->self);
1114 /* need more */
1115 FD_SET(c->sock, readset);
1116 } else {
1117 /* switch to the next state */
1118 c->type = SSH_CHANNEL_OPENING;
1119 port_open_helper(c, "direct-tcpip");
1120 }
1121}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001122
Damien Millerb38eff82000-04-01 11:09:21 +10001123/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001124static void
Damien Millerb38eff82000-04-01 11:09:21 +10001125channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
1126{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001127 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001128 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001129 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001130 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001131 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001132 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001133
1134 if (FD_ISSET(c->sock, readset)) {
1135 debug("X11 connection requested.");
1136 addrlen = sizeof(addr);
1137 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001138 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001139 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001140 channel_close_fd(&c->sock);
1141 chan_mark_dead(c);
1142 }
Damien Millerb38eff82000-04-01 11:09:21 +10001143 if (newsock < 0) {
1144 error("accept: %.100s", strerror(errno));
1145 return;
1146 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001147 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001148 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001149 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001150 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001151 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001152
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001153 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001154 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001155 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001156 if (compat20) {
1157 packet_start(SSH2_MSG_CHANNEL_OPEN);
1158 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001159 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001160 packet_put_int(nc->local_window_max);
1161 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001162 /* originator ipaddr and port */
1163 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001164 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001165 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001166 } else {
1167 packet_put_int(remote_port);
1168 }
Damien Millerbd483e72000-04-30 10:00:53 +10001169 packet_send();
1170 } else {
1171 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001172 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001173 if (packet_get_protocol_flags() &
1174 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001175 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001176 packet_send();
1177 }
Damien Millerd83ff352001-01-30 09:19:34 +11001178 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001179 }
1180}
1181
Ben Lindstrombba81212001-06-25 05:01:22 +00001182static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001183port_open_helper(Channel *c, char *rtype)
1184{
1185 int direct;
1186 char buf[1024];
1187 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001188 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001189
1190 direct = (strcmp(rtype, "direct-tcpip") == 0);
1191
1192 snprintf(buf, sizeof buf,
1193 "%s: listening port %d for %.100s port %d, "
1194 "connect from %.200s port %d",
1195 rtype, c->listening_port, c->path, c->host_port,
1196 remote_ipaddr, remote_port);
1197
1198 xfree(c->remote_name);
1199 c->remote_name = xstrdup(buf);
1200
1201 if (compat20) {
1202 packet_start(SSH2_MSG_CHANNEL_OPEN);
1203 packet_put_cstring(rtype);
1204 packet_put_int(c->self);
1205 packet_put_int(c->local_window_max);
1206 packet_put_int(c->local_maxpacket);
1207 if (direct) {
1208 /* target host, port */
1209 packet_put_cstring(c->path);
1210 packet_put_int(c->host_port);
1211 } else {
1212 /* listen address, port */
1213 packet_put_cstring(c->path);
1214 packet_put_int(c->listening_port);
1215 }
1216 /* originator host and port */
1217 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001218 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001219 packet_send();
1220 } else {
1221 packet_start(SSH_MSG_PORT_OPEN);
1222 packet_put_int(c->self);
1223 packet_put_cstring(c->path);
1224 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001225 if (packet_get_protocol_flags() &
1226 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001227 packet_put_cstring(c->remote_name);
1228 packet_send();
1229 }
1230 xfree(remote_ipaddr);
1231}
1232
Damien Miller5e7fd072005-11-05 14:53:39 +11001233static void
1234channel_set_reuseaddr(int fd)
1235{
1236 int on = 1;
1237
1238 /*
1239 * Set socket options.
1240 * Allow local port reuse in TIME_WAIT.
1241 */
1242 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1243 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1244}
1245
Damien Millerb38eff82000-04-01 11:09:21 +10001246/*
1247 * This socket is listening for connections to a forwarded TCP/IP port.
1248 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001249static void
Damien Millerb38eff82000-04-01 11:09:21 +10001250channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1251{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001252 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001253 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001254 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001255 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001256 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001257
Damien Millerb38eff82000-04-01 11:09:21 +10001258 if (FD_ISSET(c->sock, readset)) {
1259 debug("Connection to port %d forwarding "
1260 "to %.100s port %d requested.",
1261 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001262
Damien Miller4623a752001-10-10 15:03:58 +10001263 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1264 nextstate = SSH_CHANNEL_OPENING;
1265 rtype = "forwarded-tcpip";
1266 } else {
1267 if (c->host_port == 0) {
1268 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001269 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001270 } else {
1271 nextstate = SSH_CHANNEL_OPENING;
1272 rtype = "direct-tcpip";
1273 }
1274 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001275
Damien Millerb38eff82000-04-01 11:09:21 +10001276 addrlen = sizeof(addr);
1277 newsock = accept(c->sock, &addr, &addrlen);
1278 if (newsock < 0) {
1279 error("accept: %.100s", strerror(errno));
1280 return;
1281 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001282 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001283 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1284 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001285 nc->listening_port = c->listening_port;
1286 nc->host_port = c->host_port;
1287 strlcpy(nc->path, c->path, sizeof(nc->path));
1288
Damien Miller4623a752001-10-10 15:03:58 +10001289 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1290 /*
1291 * do not call the channel_post handler until
1292 * this flag has been reset by a pre-handler.
1293 * otherwise the FD_ISSET calls might overflow
1294 */
1295 nc->delayed = 1;
1296 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001297 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001298 }
Damien Millerb38eff82000-04-01 11:09:21 +10001299 }
1300}
1301
1302/*
1303 * This is the authentication agent socket listening for connections from
1304 * clients.
1305 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001306static void
Damien Millerb38eff82000-04-01 11:09:21 +10001307channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1308{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001309 Channel *nc;
1310 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001311 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001312 socklen_t addrlen;
1313
1314 if (FD_ISSET(c->sock, readset)) {
1315 addrlen = sizeof(addr);
1316 newsock = accept(c->sock, &addr, &addrlen);
1317 if (newsock < 0) {
1318 error("accept from auth socket: %.100s", strerror(errno));
1319 return;
1320 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001321 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001322 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1323 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001324 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001325 if (compat20) {
1326 packet_start(SSH2_MSG_CHANNEL_OPEN);
1327 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001328 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001329 packet_put_int(c->local_window_max);
1330 packet_put_int(c->local_maxpacket);
1331 } else {
1332 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001333 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001334 }
Damien Millerb38eff82000-04-01 11:09:21 +10001335 packet_send();
1336 }
1337}
1338
Ben Lindstrombba81212001-06-25 05:01:22 +00001339static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001340channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1341{
Ben Lindstrom69128662001-05-08 20:07:39 +00001342 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001343 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001344
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001345 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001346 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001347 err = errno;
1348 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001349 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001350 if (err == 0) {
1351 debug("channel %d: connected", c->self);
1352 c->type = SSH_CHANNEL_OPEN;
1353 if (compat20) {
1354 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1355 packet_put_int(c->remote_id);
1356 packet_put_int(c->self);
1357 packet_put_int(c->local_window);
1358 packet_put_int(c->local_maxpacket);
1359 } else {
1360 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1361 packet_put_int(c->remote_id);
1362 packet_put_int(c->self);
1363 }
1364 } else {
1365 debug("channel %d: not connected: %s",
1366 c->self, strerror(err));
1367 if (compat20) {
1368 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1369 packet_put_int(c->remote_id);
1370 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1371 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1372 packet_put_cstring(strerror(err));
1373 packet_put_cstring("");
1374 }
1375 } else {
1376 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1377 packet_put_int(c->remote_id);
1378 }
1379 chan_mark_dead(c);
1380 }
1381 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001382 }
1383}
1384
Ben Lindstrombba81212001-06-25 05:01:22 +00001385static int
Damien Millerb38eff82000-04-01 11:09:21 +10001386channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1387{
Darren Tucker11327cc2005-03-14 23:22:25 +11001388 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001389 int len;
1390
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001391 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001392 FD_ISSET(c->rfd, readset)) {
1393 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001394 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1395 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001396 if (len <= 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001397 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001398 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001399 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001400 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001401 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001402 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001403 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001404 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001405 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001406 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001407 } else {
1408 chan_read_failed(c);
1409 }
1410 return -1;
1411 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001412 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001413 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001414 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001415 chan_read_failed(c);
1416 }
Damien Millerd27b9472005-12-13 19:29:02 +11001417 } else if (c->datagram) {
1418 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001419 } else {
1420 buffer_append(&c->input, buf, len);
1421 }
Damien Millerb38eff82000-04-01 11:09:21 +10001422 }
1423 return 1;
1424}
Ben Lindstrombba81212001-06-25 05:01:22 +00001425static int
Damien Millerb38eff82000-04-01 11:09:21 +10001426channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1427{
Ben Lindstrome229b252001-03-05 06:28:06 +00001428 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001429 u_char *data;
1430 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001431 int len;
1432
1433 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001434 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001435 FD_ISSET(c->wfd, writeset) &&
1436 buffer_len(&c->output) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001437 if (c->datagram) {
1438 data = buffer_get_string(&c->output, &dlen);
1439 /* ignore truncated writes, datagrams might get lost */
1440 c->local_consumed += dlen + 4;
1441 len = write(c->wfd, data, dlen);
1442 xfree(data);
1443 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1444 return 1;
1445 if (len <= 0) {
1446 if (c->type != SSH_CHANNEL_OPEN)
1447 chan_mark_dead(c);
1448 else
1449 chan_write_failed(c);
1450 return -1;
1451 }
1452 return 1;
1453 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001454 data = buffer_ptr(&c->output);
1455 dlen = buffer_len(&c->output);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001456#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001457 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001458 if (compat20 && c->wfd_isatty)
1459 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001460#endif
Ben Lindstrombeb5f332002-07-22 15:28:53 +00001461 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001462 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1463 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001464 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001465 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001466 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001467 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001468 return -1;
1469 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001470 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001471 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001472 c->type = SSH_CHANNEL_INPUT_DRAINING;
1473 } else {
1474 chan_write_failed(c);
1475 }
1476 return -1;
1477 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001478 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001479 if (tcgetattr(c->wfd, &tio) == 0 &&
1480 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1481 /*
1482 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001483 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001484 * size of a SSH2_MSG_CHANNEL_DATA message
1485 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001486 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001487 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001488 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001489 }
1490 }
Damien Millerb38eff82000-04-01 11:09:21 +10001491 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001492 if (compat20 && len > 0) {
1493 c->local_consumed += len;
1494 }
1495 }
1496 return 1;
1497}
Ben Lindstrombba81212001-06-25 05:01:22 +00001498static int
Damien Miller33b13562000-04-04 14:38:59 +10001499channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1500{
Darren Tucker11327cc2005-03-14 23:22:25 +11001501 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001502 int len;
1503
Damien Miller1383bd82000-04-06 12:32:37 +10001504/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001505 if (c->efd != -1) {
1506 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1507 FD_ISSET(c->efd, writeset) &&
1508 buffer_len(&c->extended) > 0) {
1509 len = write(c->efd, buffer_ptr(&c->extended),
1510 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001511 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001512 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001513 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1514 return 1;
1515 if (len <= 0) {
1516 debug2("channel %d: closing write-efd %d",
1517 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001518 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001519 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001520 buffer_consume(&c->extended, len);
1521 c->local_consumed += len;
1522 }
1523 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1524 FD_ISSET(c->efd, readset)) {
1525 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001526 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001527 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001528 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1529 return 1;
1530 if (len <= 0) {
1531 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001532 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001533 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001534 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001535 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001536 }
Damien Miller33b13562000-04-04 14:38:59 +10001537 }
1538 }
1539 return 1;
1540}
Ben Lindstrombba81212001-06-25 05:01:22 +00001541static int
Damien Miller0e220db2004-06-15 10:34:08 +10001542channel_handle_ctl(Channel *c, fd_set * readset, fd_set * writeset)
1543{
1544 char buf[16];
1545 int len;
1546
1547 /* Monitor control fd to detect if the slave client exits */
1548 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1549 len = read(c->ctl_fd, buf, sizeof(buf));
1550 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1551 return 1;
1552 if (len <= 0) {
1553 debug2("channel %d: ctl read<=0", c->self);
1554 if (c->type != SSH_CHANNEL_OPEN) {
1555 debug2("channel %d: not open", c->self);
1556 chan_mark_dead(c);
1557 return -1;
1558 } else {
1559 chan_read_failed(c);
1560 chan_write_failed(c);
1561 }
1562 return -1;
1563 } else
1564 fatal("%s: unexpected data on ctl fd", __func__);
1565 }
1566 return 1;
1567}
1568static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001569channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001570{
Ben Lindstromb3921512001-04-11 15:57:50 +00001571 if (c->type == SSH_CHANNEL_OPEN &&
1572 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001573 c->local_window < c->local_window_max/2 &&
1574 c->local_consumed > 0) {
1575 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1576 packet_put_int(c->remote_id);
1577 packet_put_int(c->local_consumed);
1578 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001579 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001580 c->self, c->local_window,
1581 c->local_consumed);
1582 c->local_window += c->local_consumed;
1583 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001584 }
1585 return 1;
1586}
1587
Ben Lindstrombba81212001-06-25 05:01:22 +00001588static void
Damien Millerde6987c2002-01-22 23:20:40 +11001589channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001590{
Damien Miller4623a752001-10-10 15:03:58 +10001591 if (c->delayed)
1592 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001593 channel_handle_rfd(c, readset, writeset);
1594 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001595 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001596 return;
Damien Miller33b13562000-04-04 14:38:59 +10001597 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001598 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001599 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001600}
1601
Ben Lindstrombba81212001-06-25 05:01:22 +00001602static void
Damien Millerb38eff82000-04-01 11:09:21 +10001603channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1604{
1605 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001606
Damien Millerb38eff82000-04-01 11:09:21 +10001607 /* Send buffered output data to the socket. */
1608 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1609 len = write(c->sock, buffer_ptr(&c->output),
1610 buffer_len(&c->output));
1611 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001612 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001613 else
1614 buffer_consume(&c->output, len);
1615 }
1616}
1617
Ben Lindstrombba81212001-06-25 05:01:22 +00001618static void
Damien Miller33b13562000-04-04 14:38:59 +10001619channel_handler_init_20(void)
1620{
Damien Millerde6987c2002-01-22 23:20:40 +11001621 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001622 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001623 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001624 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001625 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001626 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001627 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001628 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001629
Damien Millerde6987c2002-01-22 23:20:40 +11001630 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001631 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001632 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001633 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001634 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001635 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001636 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001637}
1638
Ben Lindstrombba81212001-06-25 05:01:22 +00001639static void
Damien Millerb38eff82000-04-01 11:09:21 +10001640channel_handler_init_13(void)
1641{
1642 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1643 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1644 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1645 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1646 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1647 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1648 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001649 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001650 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001651
Damien Millerde6987c2002-01-22 23:20:40 +11001652 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001653 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1654 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1655 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1656 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001657 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001658 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001659}
1660
Ben Lindstrombba81212001-06-25 05:01:22 +00001661static void
Damien Millerb38eff82000-04-01 11:09:21 +10001662channel_handler_init_15(void)
1663{
Damien Millerde6987c2002-01-22 23:20:40 +11001664 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001665 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001666 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1667 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1668 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001669 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001670 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001671
1672 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1673 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1674 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001675 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001676 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001677 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001678}
1679
Ben Lindstrombba81212001-06-25 05:01:22 +00001680static void
Damien Millerb38eff82000-04-01 11:09:21 +10001681channel_handler_init(void)
1682{
1683 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001684
Damien Miller9f0f5c62001-12-21 14:45:46 +11001685 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001686 channel_pre[i] = NULL;
1687 channel_post[i] = NULL;
1688 }
Damien Miller33b13562000-04-04 14:38:59 +10001689 if (compat20)
1690 channel_handler_init_20();
1691 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001692 channel_handler_init_13();
1693 else
1694 channel_handler_init_15();
1695}
1696
Damien Miller3ec27592001-10-12 11:35:04 +10001697/* gc dead channels */
1698static void
1699channel_garbage_collect(Channel *c)
1700{
1701 if (c == NULL)
1702 return;
1703 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001704 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001705 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001706 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001707 c->detach_user(c->self, NULL);
1708 /* if we still have a callback */
1709 if (c->detach_user != NULL)
1710 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001711 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001712 }
1713 if (!chan_is_dead(c, 1))
1714 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001715 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001716 channel_free(c);
1717}
1718
Ben Lindstrombba81212001-06-25 05:01:22 +00001719static void
Damien Millerb38eff82000-04-01 11:09:21 +10001720channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1721{
1722 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001723 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001724 Channel *c;
1725
1726 if (!did_init) {
1727 channel_handler_init();
1728 did_init = 1;
1729 }
1730 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001731 c = channels[i];
1732 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001733 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001734 if (ftab[c->type] != NULL)
1735 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001736 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001737 }
1738}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001739
Ben Lindstrome9c99912001-06-09 00:41:05 +00001740/*
1741 * Allocate/update select bitmasks and add any bits relevant to channels in
1742 * select bitmasks.
1743 */
Damien Miller4af51302000-04-16 11:18:38 +10001744void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001745channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001746 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001748 u_int n, sz;
Damien Miller5e953212001-01-30 09:14:00 +11001749
1750 n = MAX(*maxfdp, channel_max_fd);
1751
1752 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001753 /* perhaps check sz < nalloc/2 and shrink? */
1754 if (*readsetp == NULL || sz > *nallocp) {
1755 *readsetp = xrealloc(*readsetp, sz);
1756 *writesetp = xrealloc(*writesetp, sz);
1757 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001758 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001759 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001760 memset(*readsetp, 0, sz);
1761 memset(*writesetp, 0, sz);
1762
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001763 if (!rekeying)
1764 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001765}
1766
Ben Lindstrome9c99912001-06-09 00:41:05 +00001767/*
1768 * After select, perform any appropriate operations for channels which have
1769 * events pending.
1770 */
Damien Miller4af51302000-04-16 11:18:38 +10001771void
Damien Miller95def091999-11-25 00:26:21 +11001772channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001773{
Damien Millerb38eff82000-04-01 11:09:21 +10001774 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001775}
1776
Ben Lindstrome9c99912001-06-09 00:41:05 +00001777
Damien Miller5e953212001-01-30 09:14:00 +11001778/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001779
Damien Miller4af51302000-04-16 11:18:38 +10001780void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001781channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001782{
Damien Millerb38eff82000-04-01 11:09:21 +10001783 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001784 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001785
Damien Miller95def091999-11-25 00:26:21 +11001786 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001787 c = channels[i];
1788 if (c == NULL)
1789 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001790
Ben Lindstrome9c99912001-06-09 00:41:05 +00001791 /*
1792 * We are only interested in channels that can have buffered
1793 * incoming data.
1794 */
Damien Miller34132e52000-01-14 15:45:46 +11001795 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001796 if (c->type != SSH_CHANNEL_OPEN &&
1797 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001798 continue;
1799 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001800 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001801 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001802 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001803 if (compat20 &&
1804 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001805 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001806 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001807 continue;
1808 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001809
Damien Miller95def091999-11-25 00:26:21 +11001810 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001811 if ((c->istate == CHAN_INPUT_OPEN ||
1812 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1813 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001814 if (c->datagram) {
1815 if (len > 0) {
1816 u_char *data;
1817 u_int dlen;
1818
1819 data = buffer_get_string(&c->input,
1820 &dlen);
1821 packet_start(SSH2_MSG_CHANNEL_DATA);
1822 packet_put_int(c->remote_id);
1823 packet_put_string(data, dlen);
1824 packet_send();
1825 c->remote_window -= dlen + 4;
1826 xfree(data);
1827 }
1828 continue;
1829 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001830 /*
1831 * Send some data for the other side over the secure
1832 * connection.
1833 */
Damien Miller33b13562000-04-04 14:38:59 +10001834 if (compat20) {
1835 if (len > c->remote_window)
1836 len = c->remote_window;
1837 if (len > c->remote_maxpacket)
1838 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001839 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001840 if (packet_is_interactive()) {
1841 if (len > 1024)
1842 len = 512;
1843 } else {
1844 /* Keep the packets at reasonable size. */
1845 if (len > packet_get_maxsize()/2)
1846 len = packet_get_maxsize()/2;
1847 }
Damien Miller95def091999-11-25 00:26:21 +11001848 }
Damien Millerb38eff82000-04-01 11:09:21 +10001849 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001850 packet_start(compat20 ?
1851 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001852 packet_put_int(c->remote_id);
1853 packet_put_string(buffer_ptr(&c->input), len);
1854 packet_send();
1855 buffer_consume(&c->input, len);
1856 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001857 }
1858 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001859 if (compat13)
1860 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001861 /*
1862 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001863 * tell peer, that we will not send more data: send IEOF.
1864 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001865 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001866 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001867 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1868 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001869 else
1870 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001871 }
Damien Miller33b13562000-04-04 14:38:59 +10001872 /* Send extended data, i.e. stderr */
1873 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001874 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001875 c->remote_window > 0 &&
1876 (len = buffer_len(&c->extended)) > 0 &&
1877 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001878 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001879 c->self, c->remote_window, buffer_len(&c->extended),
1880 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001881 if (len > c->remote_window)
1882 len = c->remote_window;
1883 if (len > c->remote_maxpacket)
1884 len = c->remote_maxpacket;
1885 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1886 packet_put_int(c->remote_id);
1887 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1888 packet_put_string(buffer_ptr(&c->extended), len);
1889 packet_send();
1890 buffer_consume(&c->extended, len);
1891 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001892 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001893 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001894 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001895}
1896
Ben Lindstrome9c99912001-06-09 00:41:05 +00001897
1898/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001899
Damien Miller4af51302000-04-16 11:18:38 +10001900void
Damien Miller630d6f42002-01-22 23:17:30 +11001901channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001902{
Damien Miller34132e52000-01-14 15:45:46 +11001903 int id;
Damien Miller95def091999-11-25 00:26:21 +11001904 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001905 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001906 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001907
Damien Miller95def091999-11-25 00:26:21 +11001908 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001909 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001910 c = channel_lookup(id);
1911 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001912 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001913
Damien Miller95def091999-11-25 00:26:21 +11001914 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001915 if (c->type != SSH_CHANNEL_OPEN &&
1916 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001917 return;
1918
Damien Miller95def091999-11-25 00:26:21 +11001919 /* Get the data. */
1920 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001921
Damien Millera04ad492004-01-21 11:02:09 +11001922 /*
1923 * Ignore data for protocol > 1.3 if output end is no longer open.
1924 * For protocol 2 the sending side is reducing its window as it sends
1925 * data, so we must 'fake' consumption of the data in order to ensure
1926 * that window updates are sent back. Otherwise the connection might
1927 * deadlock.
1928 */
1929 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1930 if (compat20) {
1931 c->local_window -= data_len;
1932 c->local_consumed += data_len;
1933 }
1934 xfree(data);
1935 return;
1936 }
1937
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001938 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001939 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001940 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001941 c->self, data_len, c->local_maxpacket);
1942 }
1943 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001944 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001945 c->self, data_len, c->local_window);
1946 xfree(data);
1947 return;
1948 }
1949 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001950 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001951 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11001952 if (c->datagram)
1953 buffer_put_string(&c->output, data, data_len);
1954 else
1955 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001956 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001957}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001958
Damien Miller4af51302000-04-16 11:18:38 +10001959void
Damien Miller630d6f42002-01-22 23:17:30 +11001960channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001961{
1962 int id;
Damien Miller33b13562000-04-04 14:38:59 +10001963 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00001964 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10001965 Channel *c;
1966
1967 /* Get the channel number and verify it. */
1968 id = packet_get_int();
1969 c = channel_lookup(id);
1970
1971 if (c == NULL)
1972 packet_disconnect("Received extended_data for bad channel %d.", id);
1973 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10001974 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10001975 return;
1976 }
Ben Lindstromcf159442002-03-26 03:26:24 +00001977 if (c->flags & CHAN_EOF_RCVD) {
1978 if (datafellows & SSH_BUG_EXTEOF)
1979 debug("channel %d: accepting ext data after eof", id);
1980 else
1981 packet_disconnect("Received extended_data after EOF "
1982 "on channel %d.", id);
1983 }
Damien Miller33b13562000-04-04 14:38:59 +10001984 tcode = packet_get_int();
1985 if (c->efd == -1 ||
1986 c->extended_usage != CHAN_EXTENDED_WRITE ||
1987 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10001988 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001989 return;
1990 }
1991 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001992 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001993 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001994 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001995 c->self, data_len, c->local_window);
1996 xfree(data);
1997 return;
1998 }
Damien Millerd3444942000-09-30 14:20:03 +11001999 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002000 c->local_window -= data_len;
2001 buffer_append(&c->extended, data, data_len);
2002 xfree(data);
2003}
2004
Damien Miller4af51302000-04-16 11:18:38 +10002005void
Damien Miller630d6f42002-01-22 23:17:30 +11002006channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002007{
2008 int id;
2009 Channel *c;
2010
Damien Millerb38eff82000-04-01 11:09:21 +10002011 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002012 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002013 c = channel_lookup(id);
2014 if (c == NULL)
2015 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2016 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002017
2018 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002019 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002020 debug("channel %d: FORCE input drain", c->self);
2021 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002022 if (buffer_len(&c->input) == 0)
2023 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002024 }
2025
Damien Millerb38eff82000-04-01 11:09:21 +10002026}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002027
Damien Miller4af51302000-04-16 11:18:38 +10002028void
Damien Miller630d6f42002-01-22 23:17:30 +11002029channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002030{
Damien Millerb38eff82000-04-01 11:09:21 +10002031 int id;
2032 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002033
Damien Millerb38eff82000-04-01 11:09:21 +10002034 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002035 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002036 c = channel_lookup(id);
2037 if (c == NULL)
2038 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002039
2040 /*
2041 * Send a confirmation that we have closed the channel and no more
2042 * data is coming for it.
2043 */
Damien Miller95def091999-11-25 00:26:21 +11002044 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002045 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002046 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002047
Damien Miller5428f641999-11-25 11:54:57 +11002048 /*
2049 * If the channel is in closed state, we have sent a close request,
2050 * and the other side will eventually respond with a confirmation.
2051 * Thus, we cannot free the channel here, because then there would be
2052 * no-one to receive the confirmation. The channel gets freed when
2053 * the confirmation arrives.
2054 */
Damien Millerb38eff82000-04-01 11:09:21 +10002055 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002056 /*
2057 * Not a closed channel - mark it as draining, which will
2058 * cause it to be freed later.
2059 */
Damien Miller76765c02002-01-22 23:21:15 +11002060 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002061 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002062 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002063}
2064
Damien Millerb38eff82000-04-01 11:09:21 +10002065/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10002066void
Damien Miller630d6f42002-01-22 23:17:30 +11002067channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002068{
Damien Millerb38eff82000-04-01 11:09:21 +10002069 int id = packet_get_int();
2070 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002071
Damien Miller48b03fc2002-01-22 23:11:40 +11002072 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002073 if (c == NULL)
2074 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2075 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002076}
2077
Damien Miller4af51302000-04-16 11:18:38 +10002078void
Damien Miller630d6f42002-01-22 23:17:30 +11002079channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002080{
2081 int id = packet_get_int();
2082 Channel *c = channel_lookup(id);
2083
Damien Miller48b03fc2002-01-22 23:11:40 +11002084 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002085 if (c == NULL)
2086 packet_disconnect("Received close confirmation for "
2087 "out-of-range channel %d.", id);
2088 if (c->type != SSH_CHANNEL_CLOSED)
2089 packet_disconnect("Received close confirmation for "
2090 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002091 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002092}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002093
Damien Miller4af51302000-04-16 11:18:38 +10002094void
Damien Miller630d6f42002-01-22 23:17:30 +11002095channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002096{
Damien Millerb38eff82000-04-01 11:09:21 +10002097 int id, remote_id;
2098 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002099
Damien Millerb38eff82000-04-01 11:09:21 +10002100 id = packet_get_int();
2101 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002102
Damien Millerb38eff82000-04-01 11:09:21 +10002103 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2104 packet_disconnect("Received open confirmation for "
2105 "non-opening channel %d.", id);
2106 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002107 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002108 c->remote_id = remote_id;
2109 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002110
2111 if (compat20) {
2112 c->remote_window = packet_get_int();
2113 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002114 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002115 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002116 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002117 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002118 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002119 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002120 c->remote_window, c->remote_maxpacket);
2121 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002122 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002123}
2124
Ben Lindstrombba81212001-06-25 05:01:22 +00002125static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002126reason2txt(int reason)
2127{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002128 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002129 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2130 return "administratively prohibited";
2131 case SSH2_OPEN_CONNECT_FAILED:
2132 return "connect failed";
2133 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2134 return "unknown channel type";
2135 case SSH2_OPEN_RESOURCE_SHORTAGE:
2136 return "resource shortage";
2137 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002138 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002139}
2140
Damien Miller4af51302000-04-16 11:18:38 +10002141void
Damien Miller630d6f42002-01-22 23:17:30 +11002142channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002143{
Kevin Steves12057502001-02-05 14:54:34 +00002144 int id, reason;
2145 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002146 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002147
Damien Millerb38eff82000-04-01 11:09:21 +10002148 id = packet_get_int();
2149 c = channel_lookup(id);
2150
2151 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2152 packet_disconnect("Received open failure for "
2153 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002154 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002155 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002156 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002157 msg = packet_get_string(NULL);
2158 lang = packet_get_string(NULL);
2159 }
Damien Miller996acd22003-04-09 20:59:48 +10002160 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002161 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002162 if (msg != NULL)
2163 xfree(msg);
2164 if (lang != NULL)
2165 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002166 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002167 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002168 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002169 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170}
2171
Damien Miller33b13562000-04-04 14:38:59 +10002172void
Damien Miller630d6f42002-01-22 23:17:30 +11002173channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002174{
2175 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002176 int id;
2177 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002178
2179 if (!compat20)
2180 return;
2181
2182 /* Get the channel number and verify it. */
2183 id = packet_get_int();
2184 c = channel_lookup(id);
2185
2186 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002187 logit("Received window adjust for "
Damien Miller33b13562000-04-04 14:38:59 +10002188 "non-open channel %d.", id);
2189 return;
2190 }
2191 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002192 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002193 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002194 c->remote_window += adjust;
2195}
2196
Damien Miller4af51302000-04-16 11:18:38 +10002197void
Damien Miller630d6f42002-01-22 23:17:30 +11002198channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002199{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002200 Channel *c = NULL;
2201 u_short host_port;
2202 char *host, *originator_string;
2203 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002204
Ben Lindstrome9c99912001-06-09 00:41:05 +00002205 remote_id = packet_get_int();
2206 host = packet_get_string(NULL);
2207 host_port = packet_get_int();
2208
2209 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2210 originator_string = packet_get_string(NULL);
2211 } else {
2212 originator_string = xstrdup("unknown (remote did not supply name)");
2213 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002214 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002215 sock = channel_connect_to(host, host_port);
2216 if (sock != -1) {
2217 c = channel_new("connected socket",
2218 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2219 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002220 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002221 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002222 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002223 if (c == NULL) {
2224 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2225 packet_put_int(remote_id);
2226 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002227 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002228 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002229}
2230
2231
Ben Lindstrome9c99912001-06-09 00:41:05 +00002232/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233
Ben Lindstrom908afed2001-10-03 17:34:59 +00002234void
2235channel_set_af(int af)
2236{
2237 IPv4or6 = af;
2238}
2239
Damien Millerb16461c2002-01-22 23:29:22 +11002240static int
2241channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2242 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002243{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002244 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002245 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002246 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002247 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002248 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002249
Damien Millerb16461c2002-01-22 23:29:22 +11002250 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2251 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002252 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002253
Damien Millerb16461c2002-01-22 23:29:22 +11002254 if (host == NULL) {
2255 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002256 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002257 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002258 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002259 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002260 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002261 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002262
Damien Miller5428f641999-11-25 11:54:57 +11002263 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002264 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002265 * specified address or wildcard. On the client, a specified bind
2266 * address will always override gateway_ports. On the server, a
2267 * gateway_ports of 1 (``yes'') will override the client's
2268 * specification and force a wildcard bind, whereas a value of 2
2269 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002270 * asked for.
2271 *
2272 * Special-case listen_addrs are:
2273 *
2274 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2275 * "" (empty string), "*" -> wildcard v4/v6
2276 * "localhost" -> loopback v4/v6
2277 */
2278 addr = NULL;
2279 if (listen_addr == NULL) {
2280 /* No address specified: default to gateway_ports setting */
2281 if (gateway_ports)
2282 wildcard = 1;
2283 } else if (gateway_ports || is_client) {
2284 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2285 strcmp(listen_addr, "0.0.0.0") == 0) ||
2286 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2287 (!is_client && gateway_ports == 1))
2288 wildcard = 1;
2289 else if (strcmp(listen_addr, "localhost") != 0)
2290 addr = listen_addr;
2291 }
2292
2293 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2294 type, wildcard, (addr == NULL) ? "NULL" : addr);
2295
2296 /*
Damien Miller34132e52000-01-14 15:45:46 +11002297 * getaddrinfo returns a loopback address if the hostname is
2298 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002299 */
Damien Miller34132e52000-01-14 15:45:46 +11002300 memset(&hints, 0, sizeof(hints));
2301 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002302 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002303 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002304 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002305 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2306 if (addr == NULL) {
2307 /* This really shouldn't happen */
2308 packet_disconnect("getaddrinfo: fatal error: %s",
2309 gai_strerror(r));
2310 } else {
Damien Millera7270302005-07-06 09:36:05 +10002311 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002312 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2313 }
Damien Millera7270302005-07-06 09:36:05 +10002314 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002315 }
Damien Miller5428f641999-11-25 11:54:57 +11002316
Damien Miller34132e52000-01-14 15:45:46 +11002317 for (ai = aitop; ai; ai = ai->ai_next) {
2318 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2319 continue;
2320 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2321 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002322 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002323 continue;
2324 }
2325 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002326 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002327 if (sock < 0) {
2328 /* this is no error since kernel may not support ipv6 */
2329 verbose("socket: %.100s", strerror(errno));
2330 continue;
2331 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002332
2333 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002334
Damien Miller34132e52000-01-14 15:45:46 +11002335 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002336
Damien Miller34132e52000-01-14 15:45:46 +11002337 /* Bind the socket to the address. */
2338 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2339 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002340 if (!ai->ai_next)
2341 error("bind: %.100s", strerror(errno));
2342 else
2343 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002344
Damien Miller34132e52000-01-14 15:45:46 +11002345 close(sock);
2346 continue;
2347 }
2348 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002349 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002350 error("listen: %.100s", strerror(errno));
2351 close(sock);
2352 continue;
2353 }
2354 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002355 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002356 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002357 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002358 strlcpy(c->path, host, sizeof(c->path));
2359 c->host_port = port_to_connect;
2360 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002361 success = 1;
2362 }
2363 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002364 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002365 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002366 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002367 return success;
Damien Miller95def091999-11-25 00:26:21 +11002368}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002369
Darren Tuckere7066df2004-05-24 10:18:05 +10002370int
2371channel_cancel_rport_listener(const char *host, u_short port)
2372{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002373 u_int i;
2374 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002375
Darren Tucker47eede72005-03-14 23:08:12 +11002376 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002377 Channel *c = channels[i];
2378
2379 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2380 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002381 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002382 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002383 channel_free(c);
2384 found = 1;
2385 }
2386 }
2387
2388 return (found);
2389}
2390
Damien Millerb16461c2002-01-22 23:29:22 +11002391/* protocol local port fwd, used by ssh (and sshd in v1) */
2392int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002393channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002394 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2395{
2396 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002397 listen_host, listen_port, host_to_connect, port_to_connect,
2398 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002399}
2400
2401/* protocol v2 remote port fwd, used by sshd */
2402int
2403channel_setup_remote_fwd_listener(const char *listen_address,
2404 u_short listen_port, int gateway_ports)
2405{
2406 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2407 listen_address, listen_port, NULL, 0, gateway_ports);
2408}
2409
Damien Miller5428f641999-11-25 11:54:57 +11002410/*
2411 * Initiate forwarding of connections to port "port" on remote host through
2412 * the secure channel to host:port from local side.
2413 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002414
Damien Miller4af51302000-04-16 11:18:38 +10002415void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002416channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002417 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002418{
Damien Millerdff50992002-01-22 23:16:32 +11002419 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002420
Damien Miller95def091999-11-25 00:26:21 +11002421 /* Record locally that connection to this host/port is permitted. */
2422 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2423 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002424
Damien Miller95def091999-11-25 00:26:21 +11002425 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002426 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002427 const char *address_to_bind;
2428 if (listen_host == NULL)
2429 address_to_bind = "localhost";
2430 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2431 address_to_bind = "";
2432 else
2433 address_to_bind = listen_host;
2434
Damien Miller33b13562000-04-04 14:38:59 +10002435 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2436 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002437 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002438 packet_put_cstring(address_to_bind);
2439 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002440 packet_send();
2441 packet_write_wait();
2442 /* Assume that server accepts the request */
2443 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002444 } else {
2445 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002446 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002447 packet_put_cstring(host_to_connect);
2448 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002449 packet_send();
2450 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002451
2452 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002453 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002454 switch (type) {
2455 case SSH_SMSG_SUCCESS:
2456 success = 1;
2457 break;
2458 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002459 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002460 break;
2461 default:
2462 /* Unknown packet */
2463 packet_disconnect("Protocol error for port forward request:"
2464 "received packet type %d.", type);
2465 }
2466 }
2467 if (success) {
2468 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2469 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2470 permitted_opens[num_permitted_opens].listen_port = listen_port;
2471 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002473}
2474
Damien Miller5428f641999-11-25 11:54:57 +11002475/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002476 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002477 * local side.
2478 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002479void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002480channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002481{
2482 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002483
2484 if (!compat20)
2485 return;
2486
2487 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002488 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002489 permitted_opens[i].listen_port == port)
2490 break;
2491 }
2492 if (i >= num_permitted_opens) {
2493 debug("%s: requested forward not found", __func__);
2494 return;
2495 }
2496 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2497 packet_put_cstring("cancel-tcpip-forward");
2498 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002499 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002500 packet_put_int(port);
2501 packet_send();
2502
2503 permitted_opens[i].listen_port = 0;
2504 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002505 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002506 permitted_opens[i].host_to_connect = NULL;
2507}
2508
2509/*
Damien Miller5428f641999-11-25 11:54:57 +11002510 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2511 * listening for the port, and sends back a success reply (or disconnect
2512 * message if there was an error). This never returns if there was an error.
2513 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514
Damien Miller4af51302000-04-16 11:18:38 +10002515void
Damien Millere247cc42000-05-07 12:03:14 +10002516channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517{
Damien Milleraae6c611999-12-06 11:47:28 +11002518 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002519 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002520
Damien Miller95def091999-11-25 00:26:21 +11002521 /* Get arguments from the packet. */
2522 port = packet_get_int();
2523 hostname = packet_get_string(NULL);
2524 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002525
Damien Millerbac2d8a2000-09-05 16:13:06 +11002526#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002527 /*
2528 * Check that an unprivileged user is not trying to forward a
2529 * privileged port.
2530 */
Damien Miller95def091999-11-25 00:26:21 +11002531 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002532 packet_disconnect(
2533 "Requested forwarding of port %d but user is not root.",
2534 port);
2535 if (host_port == 0)
2536 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002537#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002538
Damien Miller0bc1bd82000-11-13 22:57:25 +11002539 /* Initiate forwarding */
Damien Millerf91ee4c2005-03-01 21:24:33 +11002540 channel_setup_local_fwd_listener(NULL, port, hostname,
2541 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002542
2543 /* Free the argument string. */
2544 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002545}
2546
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002547/*
2548 * Permits opening to any host/port if permitted_opens[] is empty. This is
2549 * usually called by the server, because the user could connect to any port
2550 * anyway, and the server has no way to know but to trust the client anyway.
2551 */
2552void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002553channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002554{
2555 if (num_permitted_opens == 0)
2556 all_opens_permitted = 1;
2557}
2558
Ben Lindstroma3700052001-04-05 23:26:32 +00002559void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002560channel_add_permitted_opens(char *host, int port)
2561{
2562 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2563 fatal("channel_request_remote_forwarding: too many forwards");
2564 debug("allow port forwarding to host %s port %d", host, port);
2565
2566 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2567 permitted_opens[num_permitted_opens].port_to_connect = port;
2568 num_permitted_opens++;
2569
2570 all_opens_permitted = 0;
2571}
2572
Ben Lindstroma3700052001-04-05 23:26:32 +00002573void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002574channel_clear_permitted_opens(void)
2575{
2576 int i;
2577
2578 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002579 if (permitted_opens[i].host_to_connect != NULL)
2580 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002581 num_permitted_opens = 0;
2582
2583}
2584
2585
2586/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002587static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002588connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002589{
Damien Miller34132e52000-01-14 15:45:46 +11002590 struct addrinfo hints, *ai, *aitop;
2591 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2592 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002593 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002594
Damien Miller34132e52000-01-14 15:45:46 +11002595 memset(&hints, 0, sizeof(hints));
2596 hints.ai_family = IPv4or6;
2597 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002598 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002599 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002600 error("connect_to %.100s: unknown host (%s)", host,
2601 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002602 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002603 }
Damien Miller34132e52000-01-14 15:45:46 +11002604 for (ai = aitop; ai; ai = ai->ai_next) {
2605 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2606 continue;
2607 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2608 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002609 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002610 continue;
2611 }
Damien Miller2372ace2003-05-14 13:42:23 +10002612 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002613 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002614 if (ai->ai_next == NULL)
2615 error("socket: %.100s", strerror(errno));
2616 else
2617 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002618 continue;
2619 }
Damien Miller232711f2004-06-15 10:35:30 +10002620 if (set_nonblock(sock) == -1)
2621 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002622 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2623 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002624 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002625 strerror(errno));
2626 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002627 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002628 }
2629 break; /* success */
2630
2631 }
2632 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002633 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002634 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002635 return -1;
2636 }
2637 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002638 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002639 return sock;
2640}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002641
Damien Miller0bc1bd82000-11-13 22:57:25 +11002642int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002643channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002644{
2645 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002646
Damien Miller0bc1bd82000-11-13 22:57:25 +11002647 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002648 if (permitted_opens[i].host_to_connect != NULL &&
2649 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002650 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002651 permitted_opens[i].host_to_connect,
2652 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002653 error("WARNING: Server requests forwarding for unknown listen_port %d",
2654 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002655 return -1;
2656}
Damien Millerb38eff82000-04-01 11:09:21 +10002657
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002658/* Check if connecting to that port is permitted and connect. */
2659int
2660channel_connect_to(const char *host, u_short port)
2661{
2662 int i, permit;
2663
2664 permit = all_opens_permitted;
2665 if (!permit) {
2666 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002667 if (permitted_opens[i].host_to_connect != NULL &&
2668 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002669 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2670 permit = 1;
2671
2672 }
2673 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002674 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002675 "but the request was denied.", host, port);
2676 return -1;
2677 }
2678 return connect_to(host, port);
2679}
2680
Damien Miller0e220db2004-06-15 10:34:08 +10002681void
2682channel_send_window_changes(void)
2683{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002684 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002685 struct winsize ws;
2686
2687 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002688 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002689 channels[i]->type != SSH_CHANNEL_OPEN)
2690 continue;
2691 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2692 continue;
2693 channel_request_start(i, "window-change", 0);
2694 packet_put_int(ws.ws_col);
2695 packet_put_int(ws.ws_row);
2696 packet_put_int(ws.ws_xpixel);
2697 packet_put_int(ws.ws_ypixel);
2698 packet_send();
2699 }
2700}
2701
Ben Lindstrome9c99912001-06-09 00:41:05 +00002702/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002703
Damien Miller5428f641999-11-25 11:54:57 +11002704/*
2705 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002706 * Returns 0 and a suitable display number for the DISPLAY variable
2707 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002708 */
Kevin Steves366298c2001-12-19 17:58:01 +00002709int
Damien Miller95c249f2002-02-05 12:11:34 +11002710x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002711 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002712{
Damien Millere7378562001-12-21 14:58:35 +11002713 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002714 int display_number, sock;
2715 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002716 struct addrinfo hints, *ai, *aitop;
2717 char strport[NI_MAXSERV];
2718 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002719
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002720 if (chanids == NULL)
2721 return -1;
2722
Damien Millera34a28b1999-12-14 10:47:15 +11002723 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002724 display_number < MAX_DISPLAYS;
2725 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002726 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002727 memset(&hints, 0, sizeof(hints));
2728 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002729 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002730 hints.ai_socktype = SOCK_STREAM;
2731 snprintf(strport, sizeof strport, "%d", port);
2732 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2733 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002734 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002735 }
Damien Miller34132e52000-01-14 15:45:46 +11002736 for (ai = aitop; ai; ai = ai->ai_next) {
2737 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2738 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002739 sock = socket(ai->ai_family, ai->ai_socktype,
2740 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002741 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002742 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002743 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002744 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002745 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002746 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002747 debug("x11_create_display_inet: Socket family %d not supported",
2748 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002749 continue;
2750 }
Damien Miller34132e52000-01-14 15:45:46 +11002751 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002752#ifdef IPV6_V6ONLY
2753 if (ai->ai_family == AF_INET6) {
2754 int on = 1;
2755 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2756 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2757 }
2758#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002759 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002760 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002761 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002762 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002763
2764 if (ai->ai_next)
2765 continue;
2766
Damien Miller34132e52000-01-14 15:45:46 +11002767 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002768 close(socks[n]);
2769 }
2770 num_socks = 0;
2771 break;
2772 }
2773 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002774#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002775 if (num_socks == NUM_SOCKS)
2776 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002777#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002778 if (x11_use_localhost) {
2779 if (num_socks == NUM_SOCKS)
2780 break;
2781 } else {
2782 break;
2783 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002784#endif
Damien Miller95def091999-11-25 00:26:21 +11002785 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002786 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002787 if (num_socks > 0)
2788 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002789 }
Damien Miller95def091999-11-25 00:26:21 +11002790 if (display_number >= MAX_DISPLAYS) {
2791 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002792 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002793 }
Damien Miller95def091999-11-25 00:26:21 +11002794 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002795 for (n = 0; n < num_socks; n++) {
2796 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002797 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002798 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002799 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002800 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002801 }
Damien Miller95def091999-11-25 00:26:21 +11002802 }
Damien Miller34132e52000-01-14 15:45:46 +11002803
Damien Miller34132e52000-01-14 15:45:46 +11002804 /* Allocate a channel for each socket. */
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002805 *chanids = xmalloc(sizeof(**chanids) * (num_socks + 1));
Damien Miller34132e52000-01-14 15:45:46 +11002806 for (n = 0; n < num_socks; n++) {
2807 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002808 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002809 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2810 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002811 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002812 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002813 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002814 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002815 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002816
Kevin Steves366298c2001-12-19 17:58:01 +00002817 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002818 *display_numberp = display_number;
2819 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002820}
2821
Ben Lindstrombba81212001-06-25 05:01:22 +00002822static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002823connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002824{
Damien Miller95def091999-11-25 00:26:21 +11002825 int sock;
2826 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002827
Damien Miller3afe3752001-12-21 12:39:51 +11002828 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2829 if (sock < 0)
2830 error("socket: %.100s", strerror(errno));
2831 memset(&addr, 0, sizeof(addr));
2832 addr.sun_family = AF_UNIX;
2833 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2834 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2835 return sock;
2836 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002837 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2838 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002839}
2840
Damien Millerbd483e72000-04-30 10:00:53 +10002841int
2842x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002843{
Damien Miller398e1cf2002-02-05 11:52:13 +11002844 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002845 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002846 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002847 struct addrinfo hints, *ai, *aitop;
2848 char strport[NI_MAXSERV];
2849 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002850
Damien Miller95def091999-11-25 00:26:21 +11002851 /* Try to open a socket for the local X server. */
2852 display = getenv("DISPLAY");
2853 if (!display) {
2854 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002855 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002856 }
Damien Miller5428f641999-11-25 11:54:57 +11002857 /*
2858 * Now we decode the value of the DISPLAY variable and make a
2859 * connection to the real X server.
2860 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002861
Damien Miller5428f641999-11-25 11:54:57 +11002862 /*
2863 * Check if it is a unix domain socket. Unix domain displays are in
2864 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2865 */
Damien Miller95def091999-11-25 00:26:21 +11002866 if (strncmp(display, "unix:", 5) == 0 ||
2867 display[0] == ':') {
2868 /* Connect to the unix domain socket. */
2869 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2870 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002871 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002872 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002873 }
2874 /* Create a socket. */
2875 sock = connect_local_xsocket(display_number);
2876 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002877 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002878
2879 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002880 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002881 }
Damien Miller5428f641999-11-25 11:54:57 +11002882 /*
2883 * Connect to an inet socket. The DISPLAY value is supposedly
2884 * hostname:d[.s], where hostname may also be numeric IP address.
2885 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002886 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002887 cp = strchr(buf, ':');
2888 if (!cp) {
2889 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002890 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002891 }
Damien Miller95def091999-11-25 00:26:21 +11002892 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002893 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002894 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2895 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002896 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002897 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002898 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002899
Damien Miller34132e52000-01-14 15:45:46 +11002900 /* Look up the host address */
2901 memset(&hints, 0, sizeof(hints));
2902 hints.ai_family = IPv4or6;
2903 hints.ai_socktype = SOCK_STREAM;
2904 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2905 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2906 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002907 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002908 }
Damien Miller34132e52000-01-14 15:45:46 +11002909 for (ai = aitop; ai; ai = ai->ai_next) {
2910 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002911 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002912 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002913 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002914 continue;
2915 }
2916 /* Connect it to the display. */
2917 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002918 debug2("connect %.100s port %d: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002919 6000 + display_number, strerror(errno));
2920 close(sock);
2921 continue;
2922 }
2923 /* Success */
2924 break;
Damien Miller34132e52000-01-14 15:45:46 +11002925 }
Damien Miller34132e52000-01-14 15:45:46 +11002926 freeaddrinfo(aitop);
2927 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002928 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002929 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002930 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002931 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002932 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002933 return sock;
2934}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002935
Damien Millerbd483e72000-04-30 10:00:53 +10002936/*
2937 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2938 * the remote channel number. We should do whatever we want, and respond
2939 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2940 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002941
Damien Millerbd483e72000-04-30 10:00:53 +10002942void
Damien Miller630d6f42002-01-22 23:17:30 +11002943x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002944{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002945 Channel *c = NULL;
2946 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002947 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002948
2949 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002950
2951 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002952
2953 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002954 remote_host = packet_get_string(NULL);
2955 } else {
2956 remote_host = xstrdup("unknown (remote did not supply name)");
2957 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002958 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002959
2960 /* Obtain a connection to the real X display. */
2961 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002962 if (sock != -1) {
2963 /* Allocate a channel for this connection. */
2964 c = channel_new("connected x11 socket",
2965 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2966 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002967 c->remote_id = remote_id;
2968 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002969 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002970 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002971 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002972 /* Send refusal to the remote host. */
2973 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002974 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002975 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002976 /* Send a confirmation to the remote host. */
2977 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002978 packet_put_int(remote_id);
2979 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002980 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002981 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002982}
2983
Damien Miller69b69aa2000-10-28 14:19:58 +11002984/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2985void
Damien Miller630d6f42002-01-22 23:17:30 +11002986deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002987{
2988 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002989
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002990 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002991 case SSH_SMSG_AGENT_OPEN:
2992 error("Warning: ssh server tried agent forwarding.");
2993 break;
2994 case SSH_SMSG_X11_OPEN:
2995 error("Warning: ssh server tried X11 forwarding.");
2996 break;
2997 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002998 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002999 break;
3000 }
3001 error("Warning: this is probably a break in attempt by a malicious server.");
3002 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3003 packet_put_int(rchan);
3004 packet_send();
3005}
3006
Damien Miller5428f641999-11-25 11:54:57 +11003007/*
3008 * Requests forwarding of X11 connections, generates fake authentication
3009 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003010 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003011 */
Damien Miller4af51302000-04-16 11:18:38 +10003012void
Damien Miller17e7ed02005-06-17 12:54:33 +10003013x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003014 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003015{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003016 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003017 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003018 char *new_data;
3019 int screen_number;
3020 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003021 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003022
Damien Millerf92c0792005-07-06 09:45:26 +10003023 if (x11_saved_display == NULL)
3024 x11_saved_display = xstrdup(disp);
3025 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003026 error("x11_request_forwarding_with_spoofing: different "
3027 "$DISPLAY already forwarded");
3028 return;
3029 }
3030
Damien Miller17e7ed02005-06-17 12:54:33 +10003031 cp = disp;
3032 if (disp)
3033 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003034 if (cp)
3035 cp = strchr(cp, '.');
3036 if (cp)
3037 screen_number = atoi(cp + 1);
3038 else
3039 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003040
Damien Miller13390022005-07-06 09:44:19 +10003041 if (x11_saved_proto == NULL) {
3042 /* Save protocol name. */
3043 x11_saved_proto = xstrdup(proto);
3044 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003045 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003046 * of the same length.
3047 */
3048 x11_saved_data = xmalloc(data_len);
3049 x11_fake_data = xmalloc(data_len);
3050 for (i = 0; i < data_len; i++) {
3051 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3052 fatal("x11_request_forwarding: bad "
3053 "authentication data: %.100s", data);
3054 if (i % 4 == 0)
3055 rnd = arc4random();
3056 x11_saved_data[i] = value;
3057 x11_fake_data[i] = rnd & 0xff;
3058 rnd >>= 8;
3059 }
3060 x11_saved_data_len = data_len;
3061 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003062 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003063
Damien Miller95def091999-11-25 00:26:21 +11003064 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003065 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003066
Damien Miller95def091999-11-25 00:26:21 +11003067 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003068 if (compat20) {
3069 channel_request_start(client_session_id, "x11-req", 0);
3070 packet_put_char(0); /* XXX bool single connection */
3071 } else {
3072 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3073 }
3074 packet_put_cstring(proto);
3075 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003076 packet_put_int(screen_number);
3077 packet_send();
3078 packet_write_wait();
3079 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003080}
3081
Ben Lindstrome9c99912001-06-09 00:41:05 +00003082
3083/* -- agent forwarding */
3084
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003085/* Sends a message to the server to request authentication fd forwarding. */
3086
Damien Miller4af51302000-04-16 11:18:38 +10003087void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003088auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003089{
Damien Miller95def091999-11-25 00:26:21 +11003090 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3091 packet_send();
3092 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003093}