blob: 55506725550ac4a0c1514d71860163eec137d272 [file] [log] [blame]
Darren Tucker39972492006-07-12 22:22:46 +10001/* $OpenBSD: channels.c,v 1.254 2006/07/11 20:07:25 stevesk Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
44#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110045#include <sys/types.h>
46#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
48
49#include <netinet/in.h>
50#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110051
Darren Tucker39972492006-07-12 22:22:46 +100052#include <errno.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110053#include <termios.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
55#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "ssh1.h"
57#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "packet.h"
59#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "log.h"
61#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000064#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100065#include "key.h"
66#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110067#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100068#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Ben Lindstrome9c99912001-06-09 00:41:05 +000070/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller5428f641999-11-25 11:54:57 +110072/*
73 * Pointer to an array containing all allocated channels. The array is
74 * dynamically extended as needed.
75 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000076static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Miller5428f641999-11-25 11:54:57 +110078/*
79 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000080 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110081 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100082static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller5428f641999-11-25 11:54:57 +110084/*
85 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000086 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110087 */
Damien Miller5e953212001-01-30 09:14:00 +110088static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Ben Lindstrome9c99912001-06-09 00:41:05 +000091/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Data structure for storing which hosts are permitted for forward requests.
95 * The local sides of any remote forwards are stored in this array to prevent
96 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
97 * network (which might be behind a firewall).
98 */
Damien Miller95def091999-11-25 00:26:21 +110099typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000100 char *host_to_connect; /* Connect to 'host'. */
101 u_short port_to_connect; /* Connect to 'port'. */
102 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103} ForwardPermission;
104
105/* List of all permitted host/port pairs to connect. */
106static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000107
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108/* Number of permitted host/port pairs in the array. */
109static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * If this is true, all opens are permitted. This is the case on the server
112 * on which we have to trust the client anyway, and the user could do
113 * anything after logging in anyway.
114 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115static int all_opens_permitted = 0;
116
Ben Lindstrome9c99912001-06-09 00:41:05 +0000117
118/* -- X11 forwarding */
119
120/* Maximum number of fake X11 displays to try. */
121#define MAX_DISPLAYS 1000
122
Damien Miller13390022005-07-06 09:44:19 +1000123/* Saved X11 local (client) display. */
124static char *x11_saved_display = NULL;
125
Ben Lindstrome9c99912001-06-09 00:41:05 +0000126/* Saved X11 authentication protocol name. */
127static char *x11_saved_proto = NULL;
128
129/* Saved X11 authentication data. This is the real data. */
130static char *x11_saved_data = NULL;
131static u_int x11_saved_data_len = 0;
132
133/*
134 * Fake X11 authentication data. This is what the server will be sending us;
135 * we should replace any occurrences of this by the real data.
136 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100137static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000138static u_int x11_fake_data_len;
139
140
141/* -- agent forwarding */
142
143#define NUM_SOCKS 10
144
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000145/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000146static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000147
Ben Lindstrome9c99912001-06-09 00:41:05 +0000148/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000149static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000150
Ben Lindstrome9c99912001-06-09 00:41:05 +0000151/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000152
153Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100154channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000155{
156 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000157
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000158 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100159 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000160 return NULL;
161 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000162 c = channels[id];
163 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100164 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000165 return NULL;
166 }
167 return c;
168}
169
Damien Miller5428f641999-11-25 11:54:57 +1100170/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100171 * Returns the channel if it is allowed to receive protocol messages.
172 * Private channels, like listening sockets, may not receive messages.
173 */
174Channel *
175channel_lookup(int id)
176{
177 Channel *c;
178
179 if ((c = channel_by_id(id)) == NULL)
180 return (NULL);
181
Damien Millerd62f2ca2006-03-26 13:57:41 +1100182 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100183 case SSH_CHANNEL_X11_OPEN:
184 case SSH_CHANNEL_LARVAL:
185 case SSH_CHANNEL_CONNECTING:
186 case SSH_CHANNEL_DYNAMIC:
187 case SSH_CHANNEL_OPENING:
188 case SSH_CHANNEL_OPEN:
189 case SSH_CHANNEL_INPUT_DRAINING:
190 case SSH_CHANNEL_OUTPUT_DRAINING:
191 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100192 }
193 logit("Non-public channel %d, type %d.", id, c->type);
194 return (NULL);
195}
196
197/*
Damien Millere247cc42000-05-07 12:03:14 +1000198 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000199 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100200 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100202channel_register_fds(Channel *c, int rfd, int wfd, int efd,
203 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller95def091999-11-25 00:26:21 +1100205 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100206 channel_max_fd = MAX(channel_max_fd, rfd);
207 channel_max_fd = MAX(channel_max_fd, wfd);
208 channel_max_fd = MAX(channel_max_fd, efd);
209
Damien Miller5428f641999-11-25 11:54:57 +1100210 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000211
Damien Miller6f83b8e2000-05-02 09:23:45 +1000212 c->rfd = rfd;
213 c->wfd = wfd;
214 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000215 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000216 c->efd = efd;
217 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100218
Damien Miller79438cc2001-02-16 12:34:57 +1100219 /* XXX ugly hack: nonblock is only set by the server */
220 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000221 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100222 c->isatty = 1;
223 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000224 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100225 c->self, c->wfd);
226 }
227 } else {
228 c->isatty = 0;
229 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000230 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100231
Damien Miller69b69aa2000-10-28 14:19:58 +1100232 /* enable nonblocking mode */
233 if (nonblock) {
234 if (rfd != -1)
235 set_nonblock(rfd);
236 if (wfd != -1)
237 set_nonblock(wfd);
238 if (efd != -1)
239 set_nonblock(efd);
240 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000241}
242
243/*
244 * Allocate a new channel object and set its type and socket. This will cause
245 * remote_name to be freed.
246 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000247Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000248channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000249 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000250{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000251 int found;
252 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254
Damien Miller95def091999-11-25 00:26:21 +1100255 /* Do initial allocation if this is the first call. */
256 if (channels_alloc == 0) {
257 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100258 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100259 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000260 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100261 }
262 /* Try to find a free slot where to put the new channel. */
263 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000264 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100265 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000266 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100267 break;
268 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000269 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100270 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100271 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000272 if (channels_alloc > 10000)
273 fatal("channel_new: internal error: channels_alloc %d "
274 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100275 channels = xrealloc(channels, channels_alloc + 10,
276 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000277 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100278 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100279 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000280 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100281 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000282 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100283 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100284 buffer_init(&c->input);
285 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000286 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100287 c->ostate = CHAN_OUTPUT_OPEN;
288 c->istate = CHAN_INPUT_OPEN;
289 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100290 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100291 c->self = found;
292 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000293 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000294 c->local_window = window;
295 c->local_window_max = window;
296 c->local_consumed = 0;
297 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100298 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000299 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000300 c->remote_window = 0;
301 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000302 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100303 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000304 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100305 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100306 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000307 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000308 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100309 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100310 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000311 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000313
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000314static int
315channel_find_maxfd(void)
316{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000317 u_int i;
318 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000319 Channel *c;
320
321 for (i = 0; i < channels_alloc; i++) {
322 c = channels[i];
323 if (c != NULL) {
324 max = MAX(max, c->rfd);
325 max = MAX(max, c->wfd);
326 max = MAX(max, c->efd);
327 }
328 }
329 return max;
330}
331
332int
333channel_close_fd(int *fdp)
334{
335 int ret = 0, fd = *fdp;
336
337 if (fd != -1) {
338 ret = close(fd);
339 *fdp = -1;
340 if (fd == channel_max_fd)
341 channel_max_fd = channel_find_maxfd();
342 }
343 return ret;
344}
345
Damien Miller6f83b8e2000-05-02 09:23:45 +1000346/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000347static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000348channel_close_fds(Channel *c)
349{
Damien Miller0e220db2004-06-15 10:34:08 +1000350 debug3("channel %d: close_fds r %d w %d e %d c %d",
351 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000352
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000353 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000354 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000355 channel_close_fd(&c->rfd);
356 channel_close_fd(&c->wfd);
357 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000358}
359
360/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000361void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000362channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000364 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000365 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000366
367 for (n = 0, i = 0; i < channels_alloc; i++)
368 if (channels[i])
369 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000370 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000371 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000372
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000373 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000374 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000375 xfree(s);
376
Damien Miller6f83b8e2000-05-02 09:23:45 +1000377 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000378 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000379 if (c->ctl_fd != -1)
380 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000381 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000382 buffer_free(&c->input);
383 buffer_free(&c->output);
384 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000385 if (c->remote_name) {
386 xfree(c->remote_name);
387 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100388 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 channels[c->self] = NULL;
390 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391}
392
Ben Lindstrome9c99912001-06-09 00:41:05 +0000393void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000394channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000395{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000396 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000397
Ben Lindstrom601e4362001-06-21 03:19:23 +0000398 for (i = 0; i < channels_alloc; i++)
399 if (channels[i] != NULL)
400 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000401}
402
403/*
404 * Closes the sockets/fds of all channels. This is used to close extra file
405 * descriptors after a fork.
406 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000408channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000410 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000411
412 for (i = 0; i < channels_alloc; i++)
413 if (channels[i] != NULL)
414 channel_close_fds(channels[i]);
415}
416
417/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000418 * Stop listening to channels.
419 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000420void
421channel_stop_listening(void)
422{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000423 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000424 Channel *c;
425
426 for (i = 0; i < channels_alloc; i++) {
427 c = channels[i];
428 if (c != NULL) {
429 switch (c->type) {
430 case SSH_CHANNEL_AUTH_SOCKET:
431 case SSH_CHANNEL_PORT_LISTENER:
432 case SSH_CHANNEL_RPORT_LISTENER:
433 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000434 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000435 channel_free(c);
436 break;
437 }
438 }
439 }
440}
441
442/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443 * Returns true if no channel has too much buffered data, and false if one or
444 * more channel is overfull.
445 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000447channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448{
449 u_int i;
450 Channel *c;
451
452 for (i = 0; i < channels_alloc; i++) {
453 c = channels[i];
454 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000455#if 0
456 if (!compat20 &&
457 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100458 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000459 c->self, buffer_len(&c->input));
460 return 0;
461 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000462#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000463 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000464 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000465 c->self, buffer_len(&c->output),
466 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000467 return 0;
468 }
469 }
470 }
471 return 1;
472}
473
474/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000475int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000476channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000477{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000478 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000479 Channel *c;
480
481 for (i = 0; i < channels_alloc; i++) {
482 c = channels[i];
483 if (c == NULL)
484 continue;
485 switch (c->type) {
486 case SSH_CHANNEL_X11_LISTENER:
487 case SSH_CHANNEL_PORT_LISTENER:
488 case SSH_CHANNEL_RPORT_LISTENER:
489 case SSH_CHANNEL_CLOSED:
490 case SSH_CHANNEL_AUTH_SOCKET:
491 case SSH_CHANNEL_DYNAMIC:
492 case SSH_CHANNEL_CONNECTING:
493 case SSH_CHANNEL_ZOMBIE:
494 continue;
495 case SSH_CHANNEL_LARVAL:
496 if (!compat20)
497 fatal("cannot happen: SSH_CHANNEL_LARVAL");
498 continue;
499 case SSH_CHANNEL_OPENING:
500 case SSH_CHANNEL_OPEN:
501 case SSH_CHANNEL_X11_OPEN:
502 return 1;
503 case SSH_CHANNEL_INPUT_DRAINING:
504 case SSH_CHANNEL_OUTPUT_DRAINING:
505 if (!compat13)
506 fatal("cannot happen: OUT_DRAIN");
507 return 1;
508 default:
509 fatal("channel_still_open: bad channel type %d", c->type);
510 /* NOTREACHED */
511 }
512 }
513 return 0;
514}
515
516/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000518channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000519{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000520 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521 Channel *c;
522
523 for (i = 0; i < channels_alloc; i++) {
524 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000525 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526 continue;
527 switch (c->type) {
528 case SSH_CHANNEL_CLOSED:
529 case SSH_CHANNEL_DYNAMIC:
530 case SSH_CHANNEL_X11_LISTENER:
531 case SSH_CHANNEL_PORT_LISTENER:
532 case SSH_CHANNEL_RPORT_LISTENER:
533 case SSH_CHANNEL_OPENING:
534 case SSH_CHANNEL_CONNECTING:
535 case SSH_CHANNEL_ZOMBIE:
536 continue;
537 case SSH_CHANNEL_LARVAL:
538 case SSH_CHANNEL_AUTH_SOCKET:
539 case SSH_CHANNEL_OPEN:
540 case SSH_CHANNEL_X11_OPEN:
541 return i;
542 case SSH_CHANNEL_INPUT_DRAINING:
543 case SSH_CHANNEL_OUTPUT_DRAINING:
544 if (!compat13)
545 fatal("cannot happen: OUT_DRAIN");
546 return i;
547 default:
548 fatal("channel_find_open: bad channel type %d", c->type);
549 /* NOTREACHED */
550 }
551 }
552 return -1;
553}
554
555
556/*
557 * Returns a message describing the currently open forwarded connections,
558 * suitable for sending to the client. The message contains crlf pairs for
559 * newlines.
560 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000562channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563{
564 Buffer buffer;
565 Channel *c;
566 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000567 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000568
569 buffer_init(&buffer);
570 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
571 buffer_append(&buffer, buf, strlen(buf));
572 for (i = 0; i < channels_alloc; i++) {
573 c = channels[i];
574 if (c == NULL)
575 continue;
576 switch (c->type) {
577 case SSH_CHANNEL_X11_LISTENER:
578 case SSH_CHANNEL_PORT_LISTENER:
579 case SSH_CHANNEL_RPORT_LISTENER:
580 case SSH_CHANNEL_CLOSED:
581 case SSH_CHANNEL_AUTH_SOCKET:
582 case SSH_CHANNEL_ZOMBIE:
583 continue;
584 case SSH_CHANNEL_LARVAL:
585 case SSH_CHANNEL_OPENING:
586 case SSH_CHANNEL_CONNECTING:
587 case SSH_CHANNEL_DYNAMIC:
588 case SSH_CHANNEL_OPEN:
589 case SSH_CHANNEL_X11_OPEN:
590 case SSH_CHANNEL_INPUT_DRAINING:
591 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000592 snprintf(buf, sizeof buf,
593 " #%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 +0000594 c->self, c->remote_name,
595 c->type, c->remote_id,
596 c->istate, buffer_len(&c->input),
597 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000598 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000599 buffer_append(&buffer, buf, strlen(buf));
600 continue;
601 default:
602 fatal("channel_open_message: bad channel type %d", c->type);
603 /* NOTREACHED */
604 }
605 }
606 buffer_append(&buffer, "\0", 1);
607 cp = xstrdup(buffer_ptr(&buffer));
608 buffer_free(&buffer);
609 return cp;
610}
611
612void
613channel_send_open(int id)
614{
615 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000616
Ben Lindstrome9c99912001-06-09 00:41:05 +0000617 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000618 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000619 return;
620 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000621 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000622 packet_start(SSH2_MSG_CHANNEL_OPEN);
623 packet_put_cstring(c->ctype);
624 packet_put_int(c->self);
625 packet_put_int(c->local_window);
626 packet_put_int(c->local_maxpacket);
627 packet_send();
628}
629
630void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000631channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000633 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000634
Ben Lindstrome9c99912001-06-09 00:41:05 +0000635 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000636 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000637 return;
638 }
Damien Miller0e220db2004-06-15 10:34:08 +1000639 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000640 packet_start(SSH2_MSG_CHANNEL_REQUEST);
641 packet_put_int(c->remote_id);
642 packet_put_cstring(service);
643 packet_put_char(wantconfirm);
644}
Damien Miller4f7becb2006-03-26 14:10:14 +1100645
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646void
Damien Miller0e220db2004-06-15 10:34:08 +1000647channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000648{
649 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000650
Ben Lindstrome9c99912001-06-09 00:41:05 +0000651 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000652 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653 return;
654 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100655 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000656 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657}
Damien Miller4f7becb2006-03-26 14:10:14 +1100658
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659void
Damien Miller39eda6e2005-11-05 14:52:50 +1100660channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661{
Damien Millerd47c62a2005-12-13 19:33:57 +1100662 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000663
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000665 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000666 return;
667 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000668 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100669 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670}
Damien Miller4f7becb2006-03-26 14:10:14 +1100671
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672void
673channel_cancel_cleanup(int id)
674{
Damien Millerd47c62a2005-12-13 19:33:57 +1100675 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000676
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000678 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 return;
680 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000681 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100682 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683}
Damien Miller4f7becb2006-03-26 14:10:14 +1100684
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685void
Damien Miller077b2382005-12-31 16:22:32 +1100686channel_register_filter(int id, channel_infilter_fn *ifn,
687 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688{
689 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000690
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000692 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 return;
694 }
Damien Miller077b2382005-12-31 16:22:32 +1100695 c->input_filter = ifn;
696 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697}
698
699void
700channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100701 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000702{
703 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000704
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
706 fatal("channel_activate for non-larval channel %d.", id);
707 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
708 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100709 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000710 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
711 packet_put_int(c->remote_id);
712 packet_put_int(c->local_window);
713 packet_send();
714}
715
Damien Miller5428f641999-11-25 11:54:57 +1100716/*
Damien Millerb38eff82000-04-01 11:09:21 +1000717 * 'channel_pre*' are called just before select() to add any bits relevant to
718 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100719 */
Damien Millerb38eff82000-04-01 11:09:21 +1000720/*
721 * 'channel_post*': perform any appropriate operations for channels which
722 * have events pending.
723 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100724typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000725chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
726chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
727
Ben Lindstrombba81212001-06-25 05:01:22 +0000728static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100729channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000730{
731 FD_SET(c->sock, readset);
732}
733
Ben Lindstrombba81212001-06-25 05:01:22 +0000734static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100735channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000736{
737 debug3("channel %d: waiting for connection", c->self);
738 FD_SET(c->sock, writeset);
739}
740
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100742channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000743{
744 if (buffer_len(&c->input) < packet_get_maxsize())
745 FD_SET(c->sock, readset);
746 if (buffer_len(&c->output) > 0)
747 FD_SET(c->sock, writeset);
748}
749
Ben Lindstrombba81212001-06-25 05:01:22 +0000750static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100751channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000752{
Damien Millerde6987c2002-01-22 23:20:40 +1100753 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000754
Damien Miller33b13562000-04-04 14:38:59 +1000755 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100756 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000757 buffer_len(&c->input) < limit &&
758 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000759 FD_SET(c->rfd, readset);
760 if (c->ostate == CHAN_OUTPUT_OPEN ||
761 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
762 if (buffer_len(&c->output) > 0) {
763 FD_SET(c->wfd, writeset);
764 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000765 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000766 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
767 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000768 else
769 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000770 }
771 }
772 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100773 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000774 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
775 buffer_len(&c->extended) > 0)
776 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000777 else if (!(c->flags & CHAN_EOF_SENT) &&
778 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000779 buffer_len(&c->extended) < c->remote_window)
780 FD_SET(c->efd, readset);
781 }
Damien Miller0e220db2004-06-15 10:34:08 +1000782 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000783 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000784 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
785 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000786}
787
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100789channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000790{
791 if (buffer_len(&c->input) == 0) {
792 packet_start(SSH_MSG_CHANNEL_CLOSE);
793 packet_put_int(c->remote_id);
794 packet_send();
795 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000796 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000797 }
798}
799
Ben Lindstrombba81212001-06-25 05:01:22 +0000800static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100801channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000802{
803 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000804 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000805 else
Damien Millerb38eff82000-04-01 11:09:21 +1000806 FD_SET(c->sock, writeset);
807}
808
809/*
810 * This is a special state for X11 authentication spoofing. An opened X11
811 * connection (when authentication spoofing is being done) remains in this
812 * state until the first packet has been completely read. The authentication
813 * data in that packet is then substituted by the real data if it matches the
814 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000815 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000816 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000817 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000818static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000819x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000820{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000821 u_char *ucp;
822 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000823
824 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000825 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000826 return 0;
827
828 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100829 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000830 if (ucp[0] == 0x42) { /* Byte order MSB first. */
831 proto_len = 256 * ucp[6] + ucp[7];
832 data_len = 256 * ucp[8] + ucp[9];
833 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
834 proto_len = ucp[6] + 256 * ucp[7];
835 data_len = ucp[8] + 256 * ucp[9];
836 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000837 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100838 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000839 return -1;
840 }
841
842 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000844 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
845 return 0;
846
847 /* Check if authentication protocol matches. */
848 if (proto_len != strlen(x11_saved_proto) ||
849 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000850 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000851 return -1;
852 }
853 /* Check if authentication data matches our fake data. */
854 if (data_len != x11_fake_data_len ||
855 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
856 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000857 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000858 return -1;
859 }
860 /* Check fake data length */
861 if (x11_fake_data_len != x11_saved_data_len) {
862 error("X11 fake_data_len %d != saved_data_len %d",
863 x11_fake_data_len, x11_saved_data_len);
864 return -1;
865 }
866 /*
867 * Received authentication protocol and data match
868 * our fake data. Substitute the fake data with real
869 * data.
870 */
871 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
872 x11_saved_data, x11_saved_data_len);
873 return 1;
874}
875
Ben Lindstrombba81212001-06-25 05:01:22 +0000876static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100877channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000878{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000879 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000880
Damien Millerb38eff82000-04-01 11:09:21 +1000881 if (ret == 1) {
882 /* Start normal processing for the channel. */
883 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000884 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000885 } else if (ret == -1) {
886 /*
887 * We have received an X11 connection that has bad
888 * authentication information.
889 */
Damien Miller996acd22003-04-09 20:59:48 +1000890 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000891 buffer_clear(&c->input);
892 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000893 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000894 c->sock = -1;
895 c->type = SSH_CHANNEL_CLOSED;
896 packet_start(SSH_MSG_CHANNEL_CLOSE);
897 packet_put_int(c->remote_id);
898 packet_send();
899 }
900}
901
Ben Lindstrombba81212001-06-25 05:01:22 +0000902static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100903channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000904{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000905 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000906
907 /* c->force_drain = 1; */
908
Damien Millerb38eff82000-04-01 11:09:21 +1000909 if (ret == 1) {
910 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100911 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000912 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000913 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000914 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100915 chan_read_failed(c);
916 buffer_clear(&c->input);
917 chan_ibuf_empty(c);
918 buffer_clear(&c->output);
919 /* for proto v1, the peer will send an IEOF */
920 if (compat20)
921 chan_write_failed(c);
922 else
923 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000924 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000925 }
926}
927
Ben Lindstromb3921512001-04-11 15:57:50 +0000928/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000929static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100930channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000931{
Damien Millera10f5612002-09-12 09:49:15 +1000932 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000933 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100934 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935 struct {
936 u_int8_t version;
937 u_int8_t command;
938 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000940 } s4_req, s4_rsp;
941
Ben Lindstromb3921512001-04-11 15:57:50 +0000942 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000943
944 have = buffer_len(&c->input);
945 len = sizeof(s4_req);
946 if (have < len)
947 return 0;
948 p = buffer_ptr(&c->input);
949 for (found = 0, i = len; i < have; i++) {
950 if (p[i] == '\0') {
951 found = 1;
952 break;
953 }
954 if (i > 1024) {
955 /* the peer is probably sending garbage */
956 debug("channel %d: decode socks4: too long",
957 c->self);
958 return -1;
959 }
960 }
961 if (!found)
962 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000963 buffer_get(&c->input, (char *)&s4_req.version, 1);
964 buffer_get(&c->input, (char *)&s4_req.command, 1);
965 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000966 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000967 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000968 p = buffer_ptr(&c->input);
969 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000970 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000971 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000972 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000973 c->self, len, have);
974 strlcpy(username, p, sizeof(username));
975 buffer_consume(&c->input, len);
976 buffer_consume(&c->input, 1); /* trailing '\0' */
977
Ben Lindstromb3921512001-04-11 15:57:50 +0000978 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000979 strlcpy(c->path, host, sizeof(c->path));
980 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100981
Damien Millerfbdeece2003-09-02 22:52:31 +1000982 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000983 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000984
Ben Lindstromb3921512001-04-11 15:57:50 +0000985 if (s4_req.command != 1) {
986 debug("channel %d: cannot handle: socks4 cn %d",
987 c->self, s4_req.command);
988 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000989 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000990 s4_rsp.version = 0; /* vn: 0 for reply */
991 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000992 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000993 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +1100994 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000995 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000996}
997
Darren Tucker46471c92003-07-03 13:55:19 +1000998/* try to decode a socks5 header */
999#define SSH_SOCKS5_AUTHDONE 0x1000
1000#define SSH_SOCKS5_NOAUTH 0x00
1001#define SSH_SOCKS5_IPV4 0x01
1002#define SSH_SOCKS5_DOMAIN 0x03
1003#define SSH_SOCKS5_IPV6 0x04
1004#define SSH_SOCKS5_CONNECT 0x01
1005#define SSH_SOCKS5_SUCCESS 0x00
1006
1007static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001008channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001009{
1010 struct {
1011 u_int8_t version;
1012 u_int8_t command;
1013 u_int8_t reserved;
1014 u_int8_t atyp;
1015 } s5_req, s5_rsp;
1016 u_int16_t dest_port;
1017 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001018 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001019
1020 debug2("channel %d: decode socks5", c->self);
1021 p = buffer_ptr(&c->input);
1022 if (p[0] != 0x05)
1023 return -1;
1024 have = buffer_len(&c->input);
1025 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1026 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001027 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001028 return 0;
1029 nmethods = p[1];
1030 if (have < nmethods + 2)
1031 return 0;
1032 /* look for method: "NO AUTHENTICATION REQUIRED" */
1033 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1034 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1035 found = 1;
1036 break;
1037 }
1038 }
1039 if (!found) {
1040 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1041 c->self);
1042 return -1;
1043 }
1044 buffer_consume(&c->input, nmethods + 2);
1045 buffer_put_char(&c->output, 0x05); /* version */
1046 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1047 FD_SET(c->sock, writeset);
1048 c->flags |= SSH_SOCKS5_AUTHDONE;
1049 debug2("channel %d: socks5 auth done", c->self);
1050 return 0; /* need more */
1051 }
1052 debug2("channel %d: socks5 post auth", c->self);
1053 if (have < sizeof(s5_req)+1)
1054 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001055 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001056 if (s5_req.version != 0x05 ||
1057 s5_req.command != SSH_SOCKS5_CONNECT ||
1058 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001059 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001060 return -1;
1061 }
Darren Tucker47eede72005-03-14 23:08:12 +11001062 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001063 case SSH_SOCKS5_IPV4:
1064 addrlen = 4;
1065 af = AF_INET;
1066 break;
1067 case SSH_SOCKS5_DOMAIN:
1068 addrlen = p[sizeof(s5_req)];
1069 af = -1;
1070 break;
1071 case SSH_SOCKS5_IPV6:
1072 addrlen = 16;
1073 af = AF_INET6;
1074 break;
1075 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001076 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001077 return -1;
1078 }
Damien Miller0f077072006-07-10 22:21:02 +10001079 need = sizeof(s5_req) + addrlen + 2;
1080 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1081 need++;
1082 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001083 return 0;
1084 buffer_consume(&c->input, sizeof(s5_req));
1085 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1086 buffer_consume(&c->input, 1); /* host string length */
1087 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1088 buffer_get(&c->input, (char *)&dest_port, 2);
1089 dest_addr[addrlen] = '\0';
1090 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001091 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001092 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1093 return -1;
1094 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001095
Damien Millerfbdeece2003-09-02 22:52:31 +10001096 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001097 c->self, c->path, c->host_port, s5_req.command);
1098
1099 s5_rsp.version = 0x05;
1100 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1101 s5_rsp.reserved = 0; /* ignored */
1102 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1103 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1104 dest_port = 0; /* ignored */
1105
Damien Millera0fdce92006-03-26 14:28:50 +11001106 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1107 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1108 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001109 return 1;
1110}
1111
Ben Lindstromb3921512001-04-11 15:57:50 +00001112/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001113static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001114channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001115{
1116 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001117 u_int have;
1118 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001119
1120 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001121 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001122 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001123 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001124 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001125 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001126 /* need more */
1127 FD_SET(c->sock, readset);
1128 return;
1129 }
1130 /* try to guess the protocol */
1131 p = buffer_ptr(&c->input);
1132 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001133 case 0x04:
1134 ret = channel_decode_socks4(c, readset, writeset);
1135 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001136 case 0x05:
1137 ret = channel_decode_socks5(c, readset, writeset);
1138 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001139 default:
1140 ret = -1;
1141 break;
1142 }
1143 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001144 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001145 } else if (ret == 0) {
1146 debug2("channel %d: pre_dynamic: need more", c->self);
1147 /* need more */
1148 FD_SET(c->sock, readset);
1149 } else {
1150 /* switch to the next state */
1151 c->type = SSH_CHANNEL_OPENING;
1152 port_open_helper(c, "direct-tcpip");
1153 }
1154}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001155
Damien Millerb38eff82000-04-01 11:09:21 +10001156/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +00001157static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001158channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001159{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001160 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001161 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001162 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001163 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001164 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001165 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001166
1167 if (FD_ISSET(c->sock, readset)) {
1168 debug("X11 connection requested.");
1169 addrlen = sizeof(addr);
1170 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001171 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001172 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001173 channel_close_fd(&c->sock);
1174 chan_mark_dead(c);
1175 }
Damien Millerb38eff82000-04-01 11:09:21 +10001176 if (newsock < 0) {
1177 error("accept: %.100s", strerror(errno));
1178 return;
1179 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001180 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001181 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001182 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001183 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001184 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001185
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001186 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001187 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001188 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001189 if (compat20) {
1190 packet_start(SSH2_MSG_CHANNEL_OPEN);
1191 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001192 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001193 packet_put_int(nc->local_window_max);
1194 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001195 /* originator ipaddr and port */
1196 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001197 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001198 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001199 } else {
1200 packet_put_int(remote_port);
1201 }
Damien Millerbd483e72000-04-30 10:00:53 +10001202 packet_send();
1203 } else {
1204 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001205 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001206 if (packet_get_protocol_flags() &
1207 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001208 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001209 packet_send();
1210 }
Damien Millerd83ff352001-01-30 09:19:34 +11001211 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001212 }
1213}
1214
Ben Lindstrombba81212001-06-25 05:01:22 +00001215static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001216port_open_helper(Channel *c, char *rtype)
1217{
1218 int direct;
1219 char buf[1024];
1220 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001221 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001222
1223 direct = (strcmp(rtype, "direct-tcpip") == 0);
1224
1225 snprintf(buf, sizeof buf,
1226 "%s: listening port %d for %.100s port %d, "
1227 "connect from %.200s port %d",
1228 rtype, c->listening_port, c->path, c->host_port,
1229 remote_ipaddr, remote_port);
1230
1231 xfree(c->remote_name);
1232 c->remote_name = xstrdup(buf);
1233
1234 if (compat20) {
1235 packet_start(SSH2_MSG_CHANNEL_OPEN);
1236 packet_put_cstring(rtype);
1237 packet_put_int(c->self);
1238 packet_put_int(c->local_window_max);
1239 packet_put_int(c->local_maxpacket);
1240 if (direct) {
1241 /* target host, port */
1242 packet_put_cstring(c->path);
1243 packet_put_int(c->host_port);
1244 } else {
1245 /* listen address, port */
1246 packet_put_cstring(c->path);
1247 packet_put_int(c->listening_port);
1248 }
1249 /* originator host and port */
1250 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001251 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001252 packet_send();
1253 } else {
1254 packet_start(SSH_MSG_PORT_OPEN);
1255 packet_put_int(c->self);
1256 packet_put_cstring(c->path);
1257 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001258 if (packet_get_protocol_flags() &
1259 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001260 packet_put_cstring(c->remote_name);
1261 packet_send();
1262 }
1263 xfree(remote_ipaddr);
1264}
1265
Damien Miller5e7fd072005-11-05 14:53:39 +11001266static void
1267channel_set_reuseaddr(int fd)
1268{
1269 int on = 1;
1270
1271 /*
1272 * Set socket options.
1273 * Allow local port reuse in TIME_WAIT.
1274 */
1275 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1276 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1277}
1278
Damien Millerb38eff82000-04-01 11:09:21 +10001279/*
1280 * This socket is listening for connections to a forwarded TCP/IP port.
1281 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001282static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001283channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001284{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001285 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001286 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001287 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001288 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001289 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001290
Damien Millerb38eff82000-04-01 11:09:21 +10001291 if (FD_ISSET(c->sock, readset)) {
1292 debug("Connection to port %d forwarding "
1293 "to %.100s port %d requested.",
1294 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001295
Damien Miller4623a752001-10-10 15:03:58 +10001296 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1297 nextstate = SSH_CHANNEL_OPENING;
1298 rtype = "forwarded-tcpip";
1299 } else {
1300 if (c->host_port == 0) {
1301 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001302 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001303 } else {
1304 nextstate = SSH_CHANNEL_OPENING;
1305 rtype = "direct-tcpip";
1306 }
1307 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001308
Damien Millerb38eff82000-04-01 11:09:21 +10001309 addrlen = sizeof(addr);
1310 newsock = accept(c->sock, &addr, &addrlen);
1311 if (newsock < 0) {
1312 error("accept: %.100s", strerror(errno));
1313 return;
1314 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001315 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001316 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1317 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001318 nc->listening_port = c->listening_port;
1319 nc->host_port = c->host_port;
1320 strlcpy(nc->path, c->path, sizeof(nc->path));
1321
Damien Miller4623a752001-10-10 15:03:58 +10001322 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1323 /*
1324 * do not call the channel_post handler until
1325 * this flag has been reset by a pre-handler.
1326 * otherwise the FD_ISSET calls might overflow
1327 */
1328 nc->delayed = 1;
1329 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001330 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001331 }
Damien Millerb38eff82000-04-01 11:09:21 +10001332 }
1333}
1334
1335/*
1336 * This is the authentication agent socket listening for connections from
1337 * clients.
1338 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001339static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001340channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001341{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001342 Channel *nc;
1343 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001344 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001345 socklen_t addrlen;
1346
1347 if (FD_ISSET(c->sock, readset)) {
1348 addrlen = sizeof(addr);
1349 newsock = accept(c->sock, &addr, &addrlen);
1350 if (newsock < 0) {
1351 error("accept from auth socket: %.100s", strerror(errno));
1352 return;
1353 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001354 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001355 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1356 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001357 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001358 if (compat20) {
1359 packet_start(SSH2_MSG_CHANNEL_OPEN);
1360 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001361 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001362 packet_put_int(c->local_window_max);
1363 packet_put_int(c->local_maxpacket);
1364 } else {
1365 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001366 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001367 }
Damien Millerb38eff82000-04-01 11:09:21 +10001368 packet_send();
1369 }
1370}
1371
Ben Lindstrombba81212001-06-25 05:01:22 +00001372static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001373channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001374{
Ben Lindstrom69128662001-05-08 20:07:39 +00001375 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001376 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001377
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001378 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001379 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001380 err = errno;
1381 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001382 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001383 if (err == 0) {
1384 debug("channel %d: connected", c->self);
1385 c->type = SSH_CHANNEL_OPEN;
1386 if (compat20) {
1387 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1388 packet_put_int(c->remote_id);
1389 packet_put_int(c->self);
1390 packet_put_int(c->local_window);
1391 packet_put_int(c->local_maxpacket);
1392 } else {
1393 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1394 packet_put_int(c->remote_id);
1395 packet_put_int(c->self);
1396 }
1397 } else {
1398 debug("channel %d: not connected: %s",
1399 c->self, strerror(err));
1400 if (compat20) {
1401 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1402 packet_put_int(c->remote_id);
1403 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1404 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1405 packet_put_cstring(strerror(err));
1406 packet_put_cstring("");
1407 }
1408 } else {
1409 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1410 packet_put_int(c->remote_id);
1411 }
1412 chan_mark_dead(c);
1413 }
1414 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001415 }
1416}
1417
Ben Lindstrombba81212001-06-25 05:01:22 +00001418static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001419channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001420{
Darren Tucker11327cc2005-03-14 23:22:25 +11001421 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001422 int len;
1423
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001424 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001425 FD_ISSET(c->rfd, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001426 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001427 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001428 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1429 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001430#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001431 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001432#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001433 if ((!c->isatty && len <= 0) ||
1434 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001435#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001436 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001437 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001438 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001439 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001440 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001441 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001442 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001443 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001444 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001445 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001446 } else {
1447 chan_read_failed(c);
1448 }
1449 return -1;
1450 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001451 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001452 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001453 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001454 chan_read_failed(c);
1455 }
Damien Millerd27b9472005-12-13 19:29:02 +11001456 } else if (c->datagram) {
1457 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001458 } else {
1459 buffer_append(&c->input, buf, len);
1460 }
Damien Millerb38eff82000-04-01 11:09:21 +10001461 }
1462 return 1;
1463}
Damien Miller4f7becb2006-03-26 14:10:14 +11001464
Ben Lindstrombba81212001-06-25 05:01:22 +00001465static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001466channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001467{
Ben Lindstrome229b252001-03-05 06:28:06 +00001468 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001469 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001470 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001471 int len;
1472
1473 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001474 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001475 FD_ISSET(c->wfd, writeset) &&
1476 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001477 if (c->output_filter != NULL) {
1478 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1479 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001480 if (c->type != SSH_CHANNEL_OPEN)
1481 chan_mark_dead(c);
1482 else
1483 chan_write_failed(c);
1484 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001485 }
1486 } else if (c->datagram) {
1487 buf = data = buffer_get_string(&c->output, &dlen);
1488 } else {
1489 buf = data = buffer_ptr(&c->output);
1490 dlen = buffer_len(&c->output);
1491 }
1492
Damien Millerd27b9472005-12-13 19:29:02 +11001493 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001494 /* ignore truncated writes, datagrams might get lost */
1495 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001496 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001497 xfree(data);
1498 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1499 return 1;
1500 if (len <= 0) {
1501 if (c->type != SSH_CHANNEL_OPEN)
1502 chan_mark_dead(c);
1503 else
1504 chan_write_failed(c);
1505 return -1;
1506 }
1507 return 1;
1508 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001509#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001510 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001511 if (compat20 && c->wfd_isatty)
1512 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001513#endif
Damien Miller077b2382005-12-31 16:22:32 +11001514
1515 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001516 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1517 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001518 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001519 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001520 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001521 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001522 return -1;
1523 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001524 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001525 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001526 c->type = SSH_CHANNEL_INPUT_DRAINING;
1527 } else {
1528 chan_write_failed(c);
1529 }
1530 return -1;
1531 }
Damien Miller077b2382005-12-31 16:22:32 +11001532 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001533 if (tcgetattr(c->wfd, &tio) == 0 &&
1534 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1535 /*
1536 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001537 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001538 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001539 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001540 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001541 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001542 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001543 }
1544 }
Damien Millerb38eff82000-04-01 11:09:21 +10001545 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001546 if (compat20 && len > 0) {
1547 c->local_consumed += len;
1548 }
1549 }
1550 return 1;
1551}
Damien Miller4f7becb2006-03-26 14:10:14 +11001552
Ben Lindstrombba81212001-06-25 05:01:22 +00001553static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001554channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001555{
Darren Tucker11327cc2005-03-14 23:22:25 +11001556 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001557 int len;
1558
Damien Miller1383bd82000-04-06 12:32:37 +10001559/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001560 if (c->efd != -1) {
1561 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1562 FD_ISSET(c->efd, writeset) &&
1563 buffer_len(&c->extended) > 0) {
1564 len = write(c->efd, buffer_ptr(&c->extended),
1565 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001566 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001567 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001568 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1569 return 1;
1570 if (len <= 0) {
1571 debug2("channel %d: closing write-efd %d",
1572 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001573 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001574 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001575 buffer_consume(&c->extended, len);
1576 c->local_consumed += len;
1577 }
1578 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1579 FD_ISSET(c->efd, readset)) {
1580 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001581 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001582 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001583 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1584 return 1;
1585 if (len <= 0) {
1586 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001587 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001588 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001589 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001590 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001591 }
Damien Miller33b13562000-04-04 14:38:59 +10001592 }
1593 }
1594 return 1;
1595}
Damien Miller4f7becb2006-03-26 14:10:14 +11001596
Ben Lindstrombba81212001-06-25 05:01:22 +00001597static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001598channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001599{
1600 char buf[16];
1601 int len;
1602
1603 /* Monitor control fd to detect if the slave client exits */
1604 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1605 len = read(c->ctl_fd, buf, sizeof(buf));
1606 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1607 return 1;
1608 if (len <= 0) {
1609 debug2("channel %d: ctl read<=0", c->self);
1610 if (c->type != SSH_CHANNEL_OPEN) {
1611 debug2("channel %d: not open", c->self);
1612 chan_mark_dead(c);
1613 return -1;
1614 } else {
1615 chan_read_failed(c);
1616 chan_write_failed(c);
1617 }
1618 return -1;
1619 } else
1620 fatal("%s: unexpected data on ctl fd", __func__);
1621 }
1622 return 1;
1623}
Damien Miller4f7becb2006-03-26 14:10:14 +11001624
Damien Miller0e220db2004-06-15 10:34:08 +10001625static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001626channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001627{
Ben Lindstromb3921512001-04-11 15:57:50 +00001628 if (c->type == SSH_CHANNEL_OPEN &&
1629 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001630 c->local_window < c->local_window_max/2 &&
1631 c->local_consumed > 0) {
1632 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1633 packet_put_int(c->remote_id);
1634 packet_put_int(c->local_consumed);
1635 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001636 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001637 c->self, c->local_window,
1638 c->local_consumed);
1639 c->local_window += c->local_consumed;
1640 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001641 }
1642 return 1;
1643}
1644
Ben Lindstrombba81212001-06-25 05:01:22 +00001645static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001646channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001647{
Damien Miller4623a752001-10-10 15:03:58 +10001648 if (c->delayed)
1649 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001650 channel_handle_rfd(c, readset, writeset);
1651 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001652 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001653 return;
Damien Miller33b13562000-04-04 14:38:59 +10001654 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001655 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001656 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001657}
1658
Ben Lindstrombba81212001-06-25 05:01:22 +00001659static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001660channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001661{
1662 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001663
Damien Millerb38eff82000-04-01 11:09:21 +10001664 /* Send buffered output data to the socket. */
1665 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1666 len = write(c->sock, buffer_ptr(&c->output),
1667 buffer_len(&c->output));
1668 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001669 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001670 else
1671 buffer_consume(&c->output, len);
1672 }
1673}
1674
Ben Lindstrombba81212001-06-25 05:01:22 +00001675static void
Damien Miller33b13562000-04-04 14:38:59 +10001676channel_handler_init_20(void)
1677{
Damien Millerde6987c2002-01-22 23:20:40 +11001678 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001679 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001680 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001682 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001683 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001684 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001685 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001686
Damien Millerde6987c2002-01-22 23:20:40 +11001687 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001688 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001689 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001690 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001692 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001693 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001694}
1695
Ben Lindstrombba81212001-06-25 05:01:22 +00001696static void
Damien Millerb38eff82000-04-01 11:09:21 +10001697channel_handler_init_13(void)
1698{
1699 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1700 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1701 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1702 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1703 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1704 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1705 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001706 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001707 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001708
Damien Millerde6987c2002-01-22 23:20:40 +11001709 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001710 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1711 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1712 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1713 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001714 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001715 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001716}
1717
Ben Lindstrombba81212001-06-25 05:01:22 +00001718static void
Damien Millerb38eff82000-04-01 11:09:21 +10001719channel_handler_init_15(void)
1720{
Damien Millerde6987c2002-01-22 23:20:40 +11001721 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001722 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001723 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1724 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1725 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001726 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001727 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001728
1729 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1730 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1731 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001732 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001733 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001734 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001735}
1736
Ben Lindstrombba81212001-06-25 05:01:22 +00001737static void
Damien Millerb38eff82000-04-01 11:09:21 +10001738channel_handler_init(void)
1739{
1740 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001741
Damien Miller9f0f5c62001-12-21 14:45:46 +11001742 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001743 channel_pre[i] = NULL;
1744 channel_post[i] = NULL;
1745 }
Damien Miller33b13562000-04-04 14:38:59 +10001746 if (compat20)
1747 channel_handler_init_20();
1748 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001749 channel_handler_init_13();
1750 else
1751 channel_handler_init_15();
1752}
1753
Damien Miller3ec27592001-10-12 11:35:04 +10001754/* gc dead channels */
1755static void
1756channel_garbage_collect(Channel *c)
1757{
1758 if (c == NULL)
1759 return;
1760 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001761 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001762 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001763 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001764 c->detach_user(c->self, NULL);
1765 /* if we still have a callback */
1766 if (c->detach_user != NULL)
1767 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001768 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001769 }
1770 if (!chan_is_dead(c, 1))
1771 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001772 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001773 channel_free(c);
1774}
1775
Ben Lindstrombba81212001-06-25 05:01:22 +00001776static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001777channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001778{
1779 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001780 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001781 Channel *c;
1782
1783 if (!did_init) {
1784 channel_handler_init();
1785 did_init = 1;
1786 }
1787 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001788 c = channels[i];
1789 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001790 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001791 if (ftab[c->type] != NULL)
1792 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001793 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001794 }
1795}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001796
Ben Lindstrome9c99912001-06-09 00:41:05 +00001797/*
1798 * Allocate/update select bitmasks and add any bits relevant to channels in
1799 * select bitmasks.
1800 */
Damien Miller4af51302000-04-16 11:18:38 +10001801void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001802channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001803 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001804{
Damien Miller36812092006-03-26 14:22:47 +11001805 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001806
1807 n = MAX(*maxfdp, channel_max_fd);
1808
Damien Miller36812092006-03-26 14:22:47 +11001809 nfdset = howmany(n+1, NFDBITS);
1810 /* Explicitly test here, because xrealloc isn't always called */
1811 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1812 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1813 sz = nfdset * sizeof(fd_mask);
1814
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001815 /* perhaps check sz < nalloc/2 and shrink? */
1816 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001817 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1818 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001819 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001820 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001821 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001822 memset(*readsetp, 0, sz);
1823 memset(*writesetp, 0, sz);
1824
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001825 if (!rekeying)
1826 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001827}
1828
Ben Lindstrome9c99912001-06-09 00:41:05 +00001829/*
1830 * After select, perform any appropriate operations for channels which have
1831 * events pending.
1832 */
Damien Miller4af51302000-04-16 11:18:38 +10001833void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001834channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001835{
Damien Millerb38eff82000-04-01 11:09:21 +10001836 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001837}
1838
Ben Lindstrome9c99912001-06-09 00:41:05 +00001839
Damien Miller5e953212001-01-30 09:14:00 +11001840/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001841void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001842channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001843{
Damien Millerb38eff82000-04-01 11:09:21 +10001844 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001845 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001846
Damien Miller95def091999-11-25 00:26:21 +11001847 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001848 c = channels[i];
1849 if (c == NULL)
1850 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001851
Ben Lindstrome9c99912001-06-09 00:41:05 +00001852 /*
1853 * We are only interested in channels that can have buffered
1854 * incoming data.
1855 */
Damien Miller34132e52000-01-14 15:45:46 +11001856 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001857 if (c->type != SSH_CHANNEL_OPEN &&
1858 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001859 continue;
1860 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001861 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001862 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001863 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001864 if (compat20 &&
1865 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001866 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001867 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001868 continue;
1869 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001870
Damien Miller95def091999-11-25 00:26:21 +11001871 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001872 if ((c->istate == CHAN_INPUT_OPEN ||
1873 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1874 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001875 if (c->datagram) {
1876 if (len > 0) {
1877 u_char *data;
1878 u_int dlen;
1879
1880 data = buffer_get_string(&c->input,
1881 &dlen);
1882 packet_start(SSH2_MSG_CHANNEL_DATA);
1883 packet_put_int(c->remote_id);
1884 packet_put_string(data, dlen);
1885 packet_send();
1886 c->remote_window -= dlen + 4;
1887 xfree(data);
1888 }
1889 continue;
1890 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001891 /*
1892 * Send some data for the other side over the secure
1893 * connection.
1894 */
Damien Miller33b13562000-04-04 14:38:59 +10001895 if (compat20) {
1896 if (len > c->remote_window)
1897 len = c->remote_window;
1898 if (len > c->remote_maxpacket)
1899 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001900 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001901 if (packet_is_interactive()) {
1902 if (len > 1024)
1903 len = 512;
1904 } else {
1905 /* Keep the packets at reasonable size. */
1906 if (len > packet_get_maxsize()/2)
1907 len = packet_get_maxsize()/2;
1908 }
Damien Miller95def091999-11-25 00:26:21 +11001909 }
Damien Millerb38eff82000-04-01 11:09:21 +10001910 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001911 packet_start(compat20 ?
1912 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001913 packet_put_int(c->remote_id);
1914 packet_put_string(buffer_ptr(&c->input), len);
1915 packet_send();
1916 buffer_consume(&c->input, len);
1917 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001918 }
1919 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001920 if (compat13)
1921 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001922 /*
1923 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001924 * tell peer, that we will not send more data: send IEOF.
1925 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001926 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001927 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001928 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1929 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001930 else
1931 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001932 }
Damien Miller33b13562000-04-04 14:38:59 +10001933 /* Send extended data, i.e. stderr */
1934 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001935 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001936 c->remote_window > 0 &&
1937 (len = buffer_len(&c->extended)) > 0 &&
1938 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001939 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001940 c->self, c->remote_window, buffer_len(&c->extended),
1941 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001942 if (len > c->remote_window)
1943 len = c->remote_window;
1944 if (len > c->remote_maxpacket)
1945 len = c->remote_maxpacket;
1946 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1947 packet_put_int(c->remote_id);
1948 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1949 packet_put_string(buffer_ptr(&c->extended), len);
1950 packet_send();
1951 buffer_consume(&c->extended, len);
1952 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001953 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001954 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001955 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001956}
1957
Ben Lindstrome9c99912001-06-09 00:41:05 +00001958
1959/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001960
1961/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001962void
Damien Miller630d6f42002-01-22 23:17:30 +11001963channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001964{
Damien Miller34132e52000-01-14 15:45:46 +11001965 int id;
Damien Miller95def091999-11-25 00:26:21 +11001966 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001967 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001968 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001969
Damien Miller95def091999-11-25 00:26:21 +11001970 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001971 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001972 c = channel_lookup(id);
1973 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001974 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001975
Damien Miller95def091999-11-25 00:26:21 +11001976 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001977 if (c->type != SSH_CHANNEL_OPEN &&
1978 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001979 return;
1980
Damien Miller95def091999-11-25 00:26:21 +11001981 /* Get the data. */
1982 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001983
Damien Millera04ad492004-01-21 11:02:09 +11001984 /*
1985 * Ignore data for protocol > 1.3 if output end is no longer open.
1986 * For protocol 2 the sending side is reducing its window as it sends
1987 * data, so we must 'fake' consumption of the data in order to ensure
1988 * that window updates are sent back. Otherwise the connection might
1989 * deadlock.
1990 */
1991 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
1992 if (compat20) {
1993 c->local_window -= data_len;
1994 c->local_consumed += data_len;
1995 }
1996 xfree(data);
1997 return;
1998 }
1999
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002000 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002001 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002002 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002003 c->self, data_len, c->local_maxpacket);
2004 }
2005 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002006 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002007 c->self, data_len, c->local_window);
2008 xfree(data);
2009 return;
2010 }
2011 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002012 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002013 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002014 if (c->datagram)
2015 buffer_put_string(&c->output, data, data_len);
2016 else
2017 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002018 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002019}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002020
Damien Millerd79b4242006-03-31 23:11:44 +11002021/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002022void
Damien Miller630d6f42002-01-22 23:17:30 +11002023channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002024{
2025 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002026 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002027 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002028 Channel *c;
2029
2030 /* Get the channel number and verify it. */
2031 id = packet_get_int();
2032 c = channel_lookup(id);
2033
2034 if (c == NULL)
2035 packet_disconnect("Received extended_data for bad channel %d.", id);
2036 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002037 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002038 return;
2039 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002040 if (c->flags & CHAN_EOF_RCVD) {
2041 if (datafellows & SSH_BUG_EXTEOF)
2042 debug("channel %d: accepting ext data after eof", id);
2043 else
2044 packet_disconnect("Received extended_data after EOF "
2045 "on channel %d.", id);
2046 }
Damien Miller33b13562000-04-04 14:38:59 +10002047 tcode = packet_get_int();
2048 if (c->efd == -1 ||
2049 c->extended_usage != CHAN_EXTENDED_WRITE ||
2050 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002051 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002052 return;
2053 }
2054 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002055 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002056 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002057 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002058 c->self, data_len, c->local_window);
2059 xfree(data);
2060 return;
2061 }
Damien Millerd3444942000-09-30 14:20:03 +11002062 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002063 c->local_window -= data_len;
2064 buffer_append(&c->extended, data, data_len);
2065 xfree(data);
2066}
2067
Damien Millerd79b4242006-03-31 23:11:44 +11002068/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002069void
Damien Miller630d6f42002-01-22 23:17:30 +11002070channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002071{
2072 int id;
2073 Channel *c;
2074
Damien Millerb38eff82000-04-01 11:09:21 +10002075 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002076 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002077 c = channel_lookup(id);
2078 if (c == NULL)
2079 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2080 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002081
2082 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002083 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002084 debug("channel %d: FORCE input drain", c->self);
2085 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002086 if (buffer_len(&c->input) == 0)
2087 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002088 }
2089
Damien Millerb38eff82000-04-01 11:09:21 +10002090}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002091
Damien Millerd79b4242006-03-31 23:11:44 +11002092/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002093void
Damien Miller630d6f42002-01-22 23:17:30 +11002094channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002095{
Damien Millerb38eff82000-04-01 11:09:21 +10002096 int id;
2097 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002098
Damien Millerb38eff82000-04-01 11:09:21 +10002099 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002100 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002101 c = channel_lookup(id);
2102 if (c == NULL)
2103 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002104
2105 /*
2106 * Send a confirmation that we have closed the channel and no more
2107 * data is coming for it.
2108 */
Damien Miller95def091999-11-25 00:26:21 +11002109 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002110 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002111 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002112
Damien Miller5428f641999-11-25 11:54:57 +11002113 /*
2114 * If the channel is in closed state, we have sent a close request,
2115 * and the other side will eventually respond with a confirmation.
2116 * Thus, we cannot free the channel here, because then there would be
2117 * no-one to receive the confirmation. The channel gets freed when
2118 * the confirmation arrives.
2119 */
Damien Millerb38eff82000-04-01 11:09:21 +10002120 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002121 /*
2122 * Not a closed channel - mark it as draining, which will
2123 * cause it to be freed later.
2124 */
Damien Miller76765c02002-01-22 23:21:15 +11002125 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002126 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002127 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002128}
2129
Damien Millerb38eff82000-04-01 11:09:21 +10002130/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002131/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002132void
Damien Miller630d6f42002-01-22 23:17:30 +11002133channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002134{
Damien Millerb38eff82000-04-01 11:09:21 +10002135 int id = packet_get_int();
2136 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002137
Damien Miller48b03fc2002-01-22 23:11:40 +11002138 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002139 if (c == NULL)
2140 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2141 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002142}
2143
Damien Millerd79b4242006-03-31 23:11:44 +11002144/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002145void
Damien Miller630d6f42002-01-22 23:17:30 +11002146channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002147{
2148 int id = packet_get_int();
2149 Channel *c = channel_lookup(id);
2150
Damien Miller48b03fc2002-01-22 23:11:40 +11002151 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002152 if (c == NULL)
2153 packet_disconnect("Received close confirmation for "
2154 "out-of-range channel %d.", id);
2155 if (c->type != SSH_CHANNEL_CLOSED)
2156 packet_disconnect("Received close confirmation for "
2157 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002158 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002159}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002160
Damien Millerd79b4242006-03-31 23:11:44 +11002161/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002162void
Damien Miller630d6f42002-01-22 23:17:30 +11002163channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002164{
Damien Millerb38eff82000-04-01 11:09:21 +10002165 int id, remote_id;
2166 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167
Damien Millerb38eff82000-04-01 11:09:21 +10002168 id = packet_get_int();
2169 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170
Damien Millerb38eff82000-04-01 11:09:21 +10002171 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2172 packet_disconnect("Received open confirmation for "
2173 "non-opening channel %d.", id);
2174 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002175 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002176 c->remote_id = remote_id;
2177 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002178
2179 if (compat20) {
2180 c->remote_window = packet_get_int();
2181 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002182 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002183 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002184 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002185 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002186 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002187 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002188 c->remote_window, c->remote_maxpacket);
2189 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002190 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002191}
2192
Ben Lindstrombba81212001-06-25 05:01:22 +00002193static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002194reason2txt(int reason)
2195{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002196 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002197 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2198 return "administratively prohibited";
2199 case SSH2_OPEN_CONNECT_FAILED:
2200 return "connect failed";
2201 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2202 return "unknown channel type";
2203 case SSH2_OPEN_RESOURCE_SHORTAGE:
2204 return "resource shortage";
2205 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002206 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002207}
2208
Damien Millerd79b4242006-03-31 23:11:44 +11002209/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002210void
Damien Miller630d6f42002-01-22 23:17:30 +11002211channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002212{
Kevin Steves12057502001-02-05 14:54:34 +00002213 int id, reason;
2214 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002215 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002216
Damien Millerb38eff82000-04-01 11:09:21 +10002217 id = packet_get_int();
2218 c = channel_lookup(id);
2219
2220 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2221 packet_disconnect("Received open failure for "
2222 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002223 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002224 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002225 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002226 msg = packet_get_string(NULL);
2227 lang = packet_get_string(NULL);
2228 }
Damien Miller996acd22003-04-09 20:59:48 +10002229 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002230 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002231 if (msg != NULL)
2232 xfree(msg);
2233 if (lang != NULL)
2234 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002235 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002236 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002237 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002238 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002239}
2240
Damien Millerd79b4242006-03-31 23:11:44 +11002241/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002242void
Damien Miller630d6f42002-01-22 23:17:30 +11002243channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002244{
2245 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002246 int id;
2247 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002248
2249 if (!compat20)
2250 return;
2251
2252 /* Get the channel number and verify it. */
2253 id = packet_get_int();
2254 c = channel_lookup(id);
2255
Damien Millerd47c62a2005-12-13 19:33:57 +11002256 if (c == NULL) {
2257 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002258 return;
2259 }
2260 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002261 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002262 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002263 c->remote_window += adjust;
2264}
2265
Damien Millerd79b4242006-03-31 23:11:44 +11002266/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002267void
Damien Miller630d6f42002-01-22 23:17:30 +11002268channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002269{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002270 Channel *c = NULL;
2271 u_short host_port;
2272 char *host, *originator_string;
2273 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002274
Ben Lindstrome9c99912001-06-09 00:41:05 +00002275 remote_id = packet_get_int();
2276 host = packet_get_string(NULL);
2277 host_port = packet_get_int();
2278
2279 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2280 originator_string = packet_get_string(NULL);
2281 } else {
2282 originator_string = xstrdup("unknown (remote did not supply name)");
2283 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002284 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002285 sock = channel_connect_to(host, host_port);
2286 if (sock != -1) {
2287 c = channel_new("connected socket",
2288 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2289 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002290 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002291 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002292 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002293 if (c == NULL) {
2294 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2295 packet_put_int(remote_id);
2296 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002297 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002298 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002299}
2300
2301
Ben Lindstrome9c99912001-06-09 00:41:05 +00002302/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303
Ben Lindstrom908afed2001-10-03 17:34:59 +00002304void
2305channel_set_af(int af)
2306{
2307 IPv4or6 = af;
2308}
2309
Damien Millerb16461c2002-01-22 23:29:22 +11002310static int
2311channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2312 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002313{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002314 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002315 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002316 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002317 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002318 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002319
Damien Millerb16461c2002-01-22 23:29:22 +11002320 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2321 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002322 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002323
Damien Millerb16461c2002-01-22 23:29:22 +11002324 if (host == NULL) {
2325 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002326 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002327 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002328 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002329 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002330 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002331 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002332
Damien Miller5428f641999-11-25 11:54:57 +11002333 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002334 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002335 * specified address or wildcard. On the client, a specified bind
2336 * address will always override gateway_ports. On the server, a
2337 * gateway_ports of 1 (``yes'') will override the client's
2338 * specification and force a wildcard bind, whereas a value of 2
2339 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002340 * asked for.
2341 *
2342 * Special-case listen_addrs are:
2343 *
2344 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2345 * "" (empty string), "*" -> wildcard v4/v6
2346 * "localhost" -> loopback v4/v6
2347 */
2348 addr = NULL;
2349 if (listen_addr == NULL) {
2350 /* No address specified: default to gateway_ports setting */
2351 if (gateway_ports)
2352 wildcard = 1;
2353 } else if (gateway_ports || is_client) {
2354 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2355 strcmp(listen_addr, "0.0.0.0") == 0) ||
2356 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2357 (!is_client && gateway_ports == 1))
2358 wildcard = 1;
2359 else if (strcmp(listen_addr, "localhost") != 0)
2360 addr = listen_addr;
2361 }
2362
2363 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2364 type, wildcard, (addr == NULL) ? "NULL" : addr);
2365
2366 /*
Damien Miller34132e52000-01-14 15:45:46 +11002367 * getaddrinfo returns a loopback address if the hostname is
2368 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002369 */
Damien Miller34132e52000-01-14 15:45:46 +11002370 memset(&hints, 0, sizeof(hints));
2371 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002372 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002373 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002374 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002375 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2376 if (addr == NULL) {
2377 /* This really shouldn't happen */
2378 packet_disconnect("getaddrinfo: fatal error: %s",
2379 gai_strerror(r));
2380 } else {
Damien Millera7270302005-07-06 09:36:05 +10002381 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002382 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2383 }
Damien Millera7270302005-07-06 09:36:05 +10002384 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002385 }
Damien Miller5428f641999-11-25 11:54:57 +11002386
Damien Miller34132e52000-01-14 15:45:46 +11002387 for (ai = aitop; ai; ai = ai->ai_next) {
2388 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2389 continue;
2390 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2391 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002392 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002393 continue;
2394 }
2395 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002396 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002397 if (sock < 0) {
2398 /* this is no error since kernel may not support ipv6 */
2399 verbose("socket: %.100s", strerror(errno));
2400 continue;
2401 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002402
2403 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002404
Damien Miller34132e52000-01-14 15:45:46 +11002405 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002406
Damien Miller34132e52000-01-14 15:45:46 +11002407 /* Bind the socket to the address. */
2408 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2409 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002410 if (!ai->ai_next)
2411 error("bind: %.100s", strerror(errno));
2412 else
2413 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002414
Damien Miller34132e52000-01-14 15:45:46 +11002415 close(sock);
2416 continue;
2417 }
2418 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002419 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002420 error("listen: %.100s", strerror(errno));
2421 close(sock);
2422 continue;
2423 }
2424 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002425 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002426 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002427 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002428 strlcpy(c->path, host, sizeof(c->path));
2429 c->host_port = port_to_connect;
2430 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002431 success = 1;
2432 }
2433 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002434 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002435 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002436 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002437 return success;
Damien Miller95def091999-11-25 00:26:21 +11002438}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002439
Darren Tuckere7066df2004-05-24 10:18:05 +10002440int
2441channel_cancel_rport_listener(const char *host, u_short port)
2442{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002443 u_int i;
2444 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002445
Darren Tucker47eede72005-03-14 23:08:12 +11002446 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002447 Channel *c = channels[i];
2448
2449 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2450 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002451 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002452 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002453 channel_free(c);
2454 found = 1;
2455 }
2456 }
2457
2458 return (found);
2459}
2460
Damien Millerb16461c2002-01-22 23:29:22 +11002461/* protocol local port fwd, used by ssh (and sshd in v1) */
2462int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002463channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002464 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2465{
2466 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002467 listen_host, listen_port, host_to_connect, port_to_connect,
2468 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002469}
2470
2471/* protocol v2 remote port fwd, used by sshd */
2472int
2473channel_setup_remote_fwd_listener(const char *listen_address,
2474 u_short listen_port, int gateway_ports)
2475{
2476 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2477 listen_address, listen_port, NULL, 0, gateway_ports);
2478}
2479
Damien Miller5428f641999-11-25 11:54:57 +11002480/*
2481 * Initiate forwarding of connections to port "port" on remote host through
2482 * the secure channel to host:port from local side.
2483 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002484
Darren Tuckere7d4b192006-07-12 22:17:10 +10002485int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002486channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002487 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002488{
Damien Millerdff50992002-01-22 23:16:32 +11002489 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002490
Damien Miller95def091999-11-25 00:26:21 +11002491 /* Record locally that connection to this host/port is permitted. */
2492 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2493 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002494
Damien Miller95def091999-11-25 00:26:21 +11002495 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002496 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002497 const char *address_to_bind;
2498 if (listen_host == NULL)
2499 address_to_bind = "localhost";
2500 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2501 address_to_bind = "";
2502 else
2503 address_to_bind = listen_host;
2504
Damien Miller33b13562000-04-04 14:38:59 +10002505 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2506 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002507 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002508 packet_put_cstring(address_to_bind);
2509 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002510 packet_send();
2511 packet_write_wait();
2512 /* Assume that server accepts the request */
2513 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002514 } else {
2515 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002516 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002517 packet_put_cstring(host_to_connect);
2518 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002519 packet_send();
2520 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002521
2522 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002523 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002524 switch (type) {
2525 case SSH_SMSG_SUCCESS:
2526 success = 1;
2527 break;
2528 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002529 break;
2530 default:
2531 /* Unknown packet */
2532 packet_disconnect("Protocol error for port forward request:"
2533 "received packet type %d.", type);
2534 }
2535 }
2536 if (success) {
2537 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2538 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2539 permitted_opens[num_permitted_opens].listen_port = listen_port;
2540 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002541 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002542 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002543}
2544
Damien Miller5428f641999-11-25 11:54:57 +11002545/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002546 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002547 * local side.
2548 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002549void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002550channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002551{
2552 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002553
2554 if (!compat20)
2555 return;
2556
2557 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002558 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002559 permitted_opens[i].listen_port == port)
2560 break;
2561 }
2562 if (i >= num_permitted_opens) {
2563 debug("%s: requested forward not found", __func__);
2564 return;
2565 }
2566 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2567 packet_put_cstring("cancel-tcpip-forward");
2568 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002569 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002570 packet_put_int(port);
2571 packet_send();
2572
2573 permitted_opens[i].listen_port = 0;
2574 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002575 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002576 permitted_opens[i].host_to_connect = NULL;
2577}
2578
2579/*
Damien Miller5428f641999-11-25 11:54:57 +11002580 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2581 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002582 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002583 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002584int
Damien Millere247cc42000-05-07 12:03:14 +10002585channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002586{
Damien Milleraae6c611999-12-06 11:47:28 +11002587 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002588 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002589 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002590
Damien Miller95def091999-11-25 00:26:21 +11002591 /* Get arguments from the packet. */
2592 port = packet_get_int();
2593 hostname = packet_get_string(NULL);
2594 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002595
Damien Millerbac2d8a2000-09-05 16:13:06 +11002596#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002597 /*
2598 * Check that an unprivileged user is not trying to forward a
2599 * privileged port.
2600 */
Damien Miller95def091999-11-25 00:26:21 +11002601 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002602 packet_disconnect(
2603 "Requested forwarding of port %d but user is not root.",
2604 port);
2605 if (host_port == 0)
2606 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002607#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002608
Damien Miller0bc1bd82000-11-13 22:57:25 +11002609 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002610 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002611 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002612
2613 /* Free the argument string. */
2614 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002615
2616 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002617}
2618
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002619/*
2620 * Permits opening to any host/port if permitted_opens[] is empty. This is
2621 * usually called by the server, because the user could connect to any port
2622 * anyway, and the server has no way to know but to trust the client anyway.
2623 */
2624void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002625channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002626{
2627 if (num_permitted_opens == 0)
2628 all_opens_permitted = 1;
2629}
2630
Ben Lindstroma3700052001-04-05 23:26:32 +00002631void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002632channel_add_permitted_opens(char *host, int port)
2633{
2634 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002635 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002636 debug("allow port forwarding to host %s port %d", host, port);
2637
2638 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2639 permitted_opens[num_permitted_opens].port_to_connect = port;
2640 num_permitted_opens++;
2641
2642 all_opens_permitted = 0;
2643}
2644
Ben Lindstroma3700052001-04-05 23:26:32 +00002645void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002646channel_clear_permitted_opens(void)
2647{
2648 int i;
2649
2650 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002651 if (permitted_opens[i].host_to_connect != NULL)
2652 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002653 num_permitted_opens = 0;
2654
2655}
2656
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002657/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002658static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002659connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002660{
Damien Miller34132e52000-01-14 15:45:46 +11002661 struct addrinfo hints, *ai, *aitop;
2662 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2663 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002664 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002665
Damien Miller34132e52000-01-14 15:45:46 +11002666 memset(&hints, 0, sizeof(hints));
2667 hints.ai_family = IPv4or6;
2668 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002669 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002670 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002671 error("connect_to %.100s: unknown host (%s)", host,
2672 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002673 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002674 }
Damien Miller34132e52000-01-14 15:45:46 +11002675 for (ai = aitop; ai; ai = ai->ai_next) {
2676 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2677 continue;
2678 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2679 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002680 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002681 continue;
2682 }
Damien Miller2372ace2003-05-14 13:42:23 +10002683 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002684 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002685 if (ai->ai_next == NULL)
2686 error("socket: %.100s", strerror(errno));
2687 else
2688 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002689 continue;
2690 }
Damien Miller232711f2004-06-15 10:35:30 +10002691 if (set_nonblock(sock) == -1)
2692 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002693 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2694 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002695 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002696 strerror(errno));
2697 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002698 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002699 }
2700 break; /* success */
2701
2702 }
2703 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002704 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002705 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002706 return -1;
2707 }
2708 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002709 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002710 return sock;
2711}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002712
Damien Miller0bc1bd82000-11-13 22:57:25 +11002713int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002714channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002715{
2716 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002717
Damien Miller0bc1bd82000-11-13 22:57:25 +11002718 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002719 if (permitted_opens[i].host_to_connect != NULL &&
2720 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002721 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002722 permitted_opens[i].host_to_connect,
2723 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002724 error("WARNING: Server requests forwarding for unknown listen_port %d",
2725 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002726 return -1;
2727}
Damien Millerb38eff82000-04-01 11:09:21 +10002728
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002729/* Check if connecting to that port is permitted and connect. */
2730int
2731channel_connect_to(const char *host, u_short port)
2732{
2733 int i, permit;
2734
2735 permit = all_opens_permitted;
2736 if (!permit) {
2737 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002738 if (permitted_opens[i].host_to_connect != NULL &&
2739 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002740 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2741 permit = 1;
2742
2743 }
2744 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002745 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002746 "but the request was denied.", host, port);
2747 return -1;
2748 }
2749 return connect_to(host, port);
2750}
2751
Damien Miller0e220db2004-06-15 10:34:08 +10002752void
2753channel_send_window_changes(void)
2754{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002755 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002756 struct winsize ws;
2757
2758 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002759 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002760 channels[i]->type != SSH_CHANNEL_OPEN)
2761 continue;
2762 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2763 continue;
2764 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002765 packet_put_int((u_int)ws.ws_col);
2766 packet_put_int((u_int)ws.ws_row);
2767 packet_put_int((u_int)ws.ws_xpixel);
2768 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002769 packet_send();
2770 }
2771}
2772
Ben Lindstrome9c99912001-06-09 00:41:05 +00002773/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002774
Damien Miller5428f641999-11-25 11:54:57 +11002775/*
2776 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002777 * Returns 0 and a suitable display number for the DISPLAY variable
2778 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002779 */
Kevin Steves366298c2001-12-19 17:58:01 +00002780int
Damien Miller95c249f2002-02-05 12:11:34 +11002781x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002782 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002783{
Damien Millere7378562001-12-21 14:58:35 +11002784 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002785 int display_number, sock;
2786 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002787 struct addrinfo hints, *ai, *aitop;
2788 char strport[NI_MAXSERV];
2789 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002790
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002791 if (chanids == NULL)
2792 return -1;
2793
Damien Millera34a28b1999-12-14 10:47:15 +11002794 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002795 display_number < MAX_DISPLAYS;
2796 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002797 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002798 memset(&hints, 0, sizeof(hints));
2799 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002800 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002801 hints.ai_socktype = SOCK_STREAM;
2802 snprintf(strport, sizeof strport, "%d", port);
2803 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2804 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002805 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002806 }
Damien Miller34132e52000-01-14 15:45:46 +11002807 for (ai = aitop; ai; ai = ai->ai_next) {
2808 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2809 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002810 sock = socket(ai->ai_family, ai->ai_socktype,
2811 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002812 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002813 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002814 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002815 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002816 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002817 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002818 debug("x11_create_display_inet: Socket family %d not supported",
2819 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002820 continue;
2821 }
Damien Miller34132e52000-01-14 15:45:46 +11002822 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002823#ifdef IPV6_V6ONLY
2824 if (ai->ai_family == AF_INET6) {
2825 int on = 1;
2826 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2827 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2828 }
2829#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002830 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002831 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002832 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002833 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002834
2835 if (ai->ai_next)
2836 continue;
2837
Damien Miller34132e52000-01-14 15:45:46 +11002838 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002839 close(socks[n]);
2840 }
2841 num_socks = 0;
2842 break;
2843 }
2844 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002845#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002846 if (num_socks == NUM_SOCKS)
2847 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002848#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002849 if (x11_use_localhost) {
2850 if (num_socks == NUM_SOCKS)
2851 break;
2852 } else {
2853 break;
2854 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002855#endif
Damien Miller95def091999-11-25 00:26:21 +11002856 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002857 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002858 if (num_socks > 0)
2859 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002860 }
Damien Miller95def091999-11-25 00:26:21 +11002861 if (display_number >= MAX_DISPLAYS) {
2862 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002863 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002864 }
Damien Miller95def091999-11-25 00:26:21 +11002865 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002866 for (n = 0; n < num_socks; n++) {
2867 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002868 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002869 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002870 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002871 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002872 }
Damien Miller95def091999-11-25 00:26:21 +11002873 }
Damien Miller34132e52000-01-14 15:45:46 +11002874
Damien Miller34132e52000-01-14 15:45:46 +11002875 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002876 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002877 for (n = 0; n < num_socks; n++) {
2878 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002879 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002880 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2881 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002882 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002883 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002884 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002885 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002886 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002887
Kevin Steves366298c2001-12-19 17:58:01 +00002888 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002889 *display_numberp = display_number;
2890 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002891}
2892
Ben Lindstrombba81212001-06-25 05:01:22 +00002893static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002894connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002895{
Damien Miller95def091999-11-25 00:26:21 +11002896 int sock;
2897 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002898
Damien Miller3afe3752001-12-21 12:39:51 +11002899 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2900 if (sock < 0)
2901 error("socket: %.100s", strerror(errno));
2902 memset(&addr, 0, sizeof(addr));
2903 addr.sun_family = AF_UNIX;
2904 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002905 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002906 return sock;
2907 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002908 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2909 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002910}
2911
Damien Millerbd483e72000-04-30 10:00:53 +10002912int
2913x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002914{
Damien Miller57c4e872006-03-31 23:11:07 +11002915 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002916 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002917 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002918 struct addrinfo hints, *ai, *aitop;
2919 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002920 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002921
Damien Miller95def091999-11-25 00:26:21 +11002922 /* Try to open a socket for the local X server. */
2923 display = getenv("DISPLAY");
2924 if (!display) {
2925 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002926 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002927 }
Damien Miller5428f641999-11-25 11:54:57 +11002928 /*
2929 * Now we decode the value of the DISPLAY variable and make a
2930 * connection to the real X server.
2931 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002932
Damien Miller5428f641999-11-25 11:54:57 +11002933 /*
2934 * Check if it is a unix domain socket. Unix domain displays are in
2935 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2936 */
Damien Miller95def091999-11-25 00:26:21 +11002937 if (strncmp(display, "unix:", 5) == 0 ||
2938 display[0] == ':') {
2939 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11002940 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002941 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002942 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002943 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002944 }
2945 /* Create a socket. */
2946 sock = connect_local_xsocket(display_number);
2947 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002948 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002949
2950 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002951 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002952 }
Damien Miller5428f641999-11-25 11:54:57 +11002953 /*
2954 * Connect to an inet socket. The DISPLAY value is supposedly
2955 * hostname:d[.s], where hostname may also be numeric IP address.
2956 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002957 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002958 cp = strchr(buf, ':');
2959 if (!cp) {
2960 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002961 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002962 }
Damien Miller95def091999-11-25 00:26:21 +11002963 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002964 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11002965 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11002966 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002967 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002968 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002969 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002970
Damien Miller34132e52000-01-14 15:45:46 +11002971 /* Look up the host address */
2972 memset(&hints, 0, sizeof(hints));
2973 hints.ai_family = IPv4or6;
2974 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11002975 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11002976 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2977 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002978 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002979 }
Damien Miller34132e52000-01-14 15:45:46 +11002980 for (ai = aitop; ai; ai = ai->ai_next) {
2981 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002982 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002983 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002984 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002985 continue;
2986 }
2987 /* Connect it to the display. */
2988 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11002989 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10002990 6000 + display_number, strerror(errno));
2991 close(sock);
2992 continue;
2993 }
2994 /* Success */
2995 break;
Damien Miller34132e52000-01-14 15:45:46 +11002996 }
Damien Miller34132e52000-01-14 15:45:46 +11002997 freeaddrinfo(aitop);
2998 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11002999 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003000 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003001 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003002 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003003 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003004 return sock;
3005}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003006
Damien Millerbd483e72000-04-30 10:00:53 +10003007/*
3008 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3009 * the remote channel number. We should do whatever we want, and respond
3010 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3011 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003012
Damien Millerbd483e72000-04-30 10:00:53 +10003013void
Damien Miller630d6f42002-01-22 23:17:30 +11003014x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003015{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003016 Channel *c = NULL;
3017 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003018 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003019
3020 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003021
3022 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003023
3024 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003025 remote_host = packet_get_string(NULL);
3026 } else {
3027 remote_host = xstrdup("unknown (remote did not supply name)");
3028 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003029 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003030
3031 /* Obtain a connection to the real X display. */
3032 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003033 if (sock != -1) {
3034 /* Allocate a channel for this connection. */
3035 c = channel_new("connected x11 socket",
3036 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3037 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003038 c->remote_id = remote_id;
3039 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003040 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003041 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003042 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003043 /* Send refusal to the remote host. */
3044 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003045 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003046 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003047 /* Send a confirmation to the remote host. */
3048 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003049 packet_put_int(remote_id);
3050 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003051 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003052 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003053}
3054
Damien Miller69b69aa2000-10-28 14:19:58 +11003055/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3056void
Damien Miller630d6f42002-01-22 23:17:30 +11003057deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003058{
3059 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003060
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003061 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003062 case SSH_SMSG_AGENT_OPEN:
3063 error("Warning: ssh server tried agent forwarding.");
3064 break;
3065 case SSH_SMSG_X11_OPEN:
3066 error("Warning: ssh server tried X11 forwarding.");
3067 break;
3068 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003069 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003070 break;
3071 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003072 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003073 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3074 packet_put_int(rchan);
3075 packet_send();
3076}
3077
Damien Miller5428f641999-11-25 11:54:57 +11003078/*
3079 * Requests forwarding of X11 connections, generates fake authentication
3080 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003081 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003082 */
Damien Miller4af51302000-04-16 11:18:38 +10003083void
Damien Miller17e7ed02005-06-17 12:54:33 +10003084x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003085 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003086{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003087 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003088 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003089 char *new_data;
3090 int screen_number;
3091 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003092 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003093
Damien Millerf92c0792005-07-06 09:45:26 +10003094 if (x11_saved_display == NULL)
3095 x11_saved_display = xstrdup(disp);
3096 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003097 error("x11_request_forwarding_with_spoofing: different "
3098 "$DISPLAY already forwarded");
3099 return;
3100 }
3101
Damien Miller17e7ed02005-06-17 12:54:33 +10003102 cp = disp;
3103 if (disp)
3104 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003105 if (cp)
3106 cp = strchr(cp, '.');
3107 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003108 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003109 else
3110 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003111
Damien Miller13390022005-07-06 09:44:19 +10003112 if (x11_saved_proto == NULL) {
3113 /* Save protocol name. */
3114 x11_saved_proto = xstrdup(proto);
3115 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003116 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003117 * of the same length.
3118 */
3119 x11_saved_data = xmalloc(data_len);
3120 x11_fake_data = xmalloc(data_len);
3121 for (i = 0; i < data_len; i++) {
3122 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3123 fatal("x11_request_forwarding: bad "
3124 "authentication data: %.100s", data);
3125 if (i % 4 == 0)
3126 rnd = arc4random();
3127 x11_saved_data[i] = value;
3128 x11_fake_data[i] = rnd & 0xff;
3129 rnd >>= 8;
3130 }
3131 x11_saved_data_len = data_len;
3132 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003133 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003134
Damien Miller95def091999-11-25 00:26:21 +11003135 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003136 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003137
Damien Miller95def091999-11-25 00:26:21 +11003138 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003139 if (compat20) {
3140 channel_request_start(client_session_id, "x11-req", 0);
3141 packet_put_char(0); /* XXX bool single connection */
3142 } else {
3143 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3144 }
3145 packet_put_cstring(proto);
3146 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003147 packet_put_int(screen_number);
3148 packet_send();
3149 packet_write_wait();
3150 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003151}
3152
Ben Lindstrome9c99912001-06-09 00:41:05 +00003153
3154/* -- agent forwarding */
3155
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003156/* Sends a message to the server to request authentication fd forwarding. */
3157
Damien Miller4af51302000-04-16 11:18:38 +10003158void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003159auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003160{
Damien Miller95def091999-11-25 00:26:21 +11003161 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3162 packet_send();
3163 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003164}