blob: eb0c61d8b3be969ee81e787c9aa03443f3cc4b4d [file] [log] [blame]
Darren Tucker6e7fe1c2010-01-08 17:07:22 +11001/* $OpenBSD: channels.c,v 1.298 2009/11/10 04:30:44 dtucker 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
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110061#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100062#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100063#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerb84886b2008-05-19 15:05:07 +100065#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "log.h"
72#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100077#include "key.h"
78#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110079#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
86 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100093static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000097 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110098 */
Damien Miller5e953212001-01-30 09:14:00 +110099static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
109 */
Damien Miller95def091999-11-25 00:26:21 +1100110typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000111 char *host_to_connect; /* Connect to 'host'. */
112 u_short port_to_connect; /* Connect to 'port'. */
113 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114} ForwardPermission;
115
Damien Miller9b439df2006-07-24 14:04:00 +1000116/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000118
Damien Miller9b439df2006-07-24 14:04:00 +1000119/* List of all permitted host/port pairs to connect by the admin. */
120static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
121
122/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000124
125/* Number of permitted host/port pair in the array permitted by the admin. */
126static int num_adm_permitted_opens = 0;
127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * If this is true, all opens are permitted. This is the case on the server
130 * on which we have to trust the client anyway, and the user could do
131 * anything after logging in anyway.
132 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133static int all_opens_permitted = 0;
134
Ben Lindstrome9c99912001-06-09 00:41:05 +0000135
136/* -- X11 forwarding */
137
138/* Maximum number of fake X11 displays to try. */
139#define MAX_DISPLAYS 1000
140
Damien Miller13390022005-07-06 09:44:19 +1000141/* Saved X11 local (client) display. */
142static char *x11_saved_display = NULL;
143
Ben Lindstrome9c99912001-06-09 00:41:05 +0000144/* Saved X11 authentication protocol name. */
145static char *x11_saved_proto = NULL;
146
147/* Saved X11 authentication data. This is the real data. */
148static char *x11_saved_data = NULL;
149static u_int x11_saved_data_len = 0;
150
151/*
152 * Fake X11 authentication data. This is what the server will be sending us;
153 * we should replace any occurrences of this by the real data.
154 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100155static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000156static u_int x11_fake_data_len;
157
158
159/* -- agent forwarding */
160
161#define NUM_SOCKS 10
162
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000163/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000164static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000165
Darren Tucker34e314d2010-01-08 17:03:46 +1100166/* Set the routing domain a.k.a. VRF */
167static int channel_rdomain = -1;
168
Ben Lindstrome9c99912001-06-09 00:41:05 +0000169/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000171
Damien Millerbd740252008-05-19 15:37:09 +1000172/* non-blocking connect helpers */
173static int connect_next(struct channel_connect *);
174static void channel_connect_ctx_free(struct channel_connect *);
175
Ben Lindstrome9c99912001-06-09 00:41:05 +0000176/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000177
178Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100179channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000180{
181 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000182
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000183 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100184 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000185 return NULL;
186 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000187 c = channels[id];
188 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100189 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000190 return NULL;
191 }
192 return c;
193}
194
Damien Miller5428f641999-11-25 11:54:57 +1100195/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100196 * Returns the channel if it is allowed to receive protocol messages.
197 * Private channels, like listening sockets, may not receive messages.
198 */
199Channel *
200channel_lookup(int id)
201{
202 Channel *c;
203
204 if ((c = channel_by_id(id)) == NULL)
205 return (NULL);
206
Damien Millerd62f2ca2006-03-26 13:57:41 +1100207 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100208 case SSH_CHANNEL_X11_OPEN:
209 case SSH_CHANNEL_LARVAL:
210 case SSH_CHANNEL_CONNECTING:
211 case SSH_CHANNEL_DYNAMIC:
212 case SSH_CHANNEL_OPENING:
213 case SSH_CHANNEL_OPEN:
214 case SSH_CHANNEL_INPUT_DRAINING:
215 case SSH_CHANNEL_OUTPUT_DRAINING:
216 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100217 }
218 logit("Non-public channel %d, type %d.", id, c->type);
219 return (NULL);
220}
221
222/*
Damien Millere247cc42000-05-07 12:03:14 +1000223 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000224 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100225 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000226static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100227channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000228 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229{
Damien Miller95def091999-11-25 00:26:21 +1100230 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100231 channel_max_fd = MAX(channel_max_fd, rfd);
232 channel_max_fd = MAX(channel_max_fd, wfd);
233 channel_max_fd = MAX(channel_max_fd, efd);
234
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100235 if (rfd != -1)
236 fcntl(rfd, F_SETFD, FD_CLOEXEC);
237 if (wfd != -1 && wfd != rfd)
238 fcntl(wfd, F_SETFD, FD_CLOEXEC);
239 if (efd != -1 && efd != rfd && efd != wfd)
240 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000241
Damien Miller6f83b8e2000-05-02 09:23:45 +1000242 c->rfd = rfd;
243 c->wfd = wfd;
244 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000245 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000246 c->efd = efd;
247 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100248
Darren Tuckered3cdc02008-06-16 23:29:18 +1000249 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000250 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000251 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100252
Damien Miller69b69aa2000-10-28 14:19:58 +1100253 /* enable nonblocking mode */
254 if (nonblock) {
255 if (rfd != -1)
256 set_nonblock(rfd);
257 if (wfd != -1)
258 set_nonblock(wfd);
259 if (efd != -1)
260 set_nonblock(efd);
261 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262}
263
264/*
265 * Allocate a new channel object and set its type and socket. This will cause
266 * remote_name to be freed.
267 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000268Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000269channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000270 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000272 int found;
273 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000274 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Miller95def091999-11-25 00:26:21 +1100276 /* Do initial allocation if this is the first call. */
277 if (channels_alloc == 0) {
278 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100279 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100280 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000281 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100282 }
283 /* Try to find a free slot where to put the new channel. */
284 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000285 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000287 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100288 break;
289 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000290 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100291 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100292 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000293 if (channels_alloc > 10000)
294 fatal("channel_new: internal error: channels_alloc %d "
295 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100296 channels = xrealloc(channels, channels_alloc + 10,
297 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000298 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100299 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100300 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000301 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100302 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000303 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100304 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100305 buffer_init(&c->input);
306 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000307 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100308 c->path = NULL;
Damien Miller5144df92002-01-22 23:28:45 +1100309 c->ostate = CHAN_OUTPUT_OPEN;
310 c->istate = CHAN_INPUT_OPEN;
311 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000312 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100313 c->self = found;
314 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000315 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000316 c->local_window = window;
317 c->local_window_max = window;
318 c->local_consumed = 0;
319 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100320 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000321 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000322 c->remote_window = 0;
323 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000324 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100325 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000326 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100327 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000328 c->open_confirm = NULL;
329 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000330 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100331 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000332 c->filter_ctx = NULL;
333 c->filter_cleanup = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000334 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100335 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000336 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000338
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000339static int
340channel_find_maxfd(void)
341{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000342 u_int i;
343 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000344 Channel *c;
345
346 for (i = 0; i < channels_alloc; i++) {
347 c = channels[i];
348 if (c != NULL) {
349 max = MAX(max, c->rfd);
350 max = MAX(max, c->wfd);
351 max = MAX(max, c->efd);
352 }
353 }
354 return max;
355}
356
357int
358channel_close_fd(int *fdp)
359{
360 int ret = 0, fd = *fdp;
361
362 if (fd != -1) {
363 ret = close(fd);
364 *fdp = -1;
365 if (fd == channel_max_fd)
366 channel_max_fd = channel_find_maxfd();
367 }
368 return ret;
369}
370
Damien Miller6f83b8e2000-05-02 09:23:45 +1000371/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000372static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000373channel_close_fds(Channel *c)
374{
Damien Miller0e220db2004-06-15 10:34:08 +1000375 debug3("channel %d: close_fds r %d w %d e %d c %d",
376 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000377
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000378 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000379 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000380 channel_close_fd(&c->rfd);
381 channel_close_fd(&c->wfd);
382 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000383}
384
385/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000386void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000387channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000390 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000391 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000392
393 for (n = 0, i = 0; i < channels_alloc; i++)
394 if (channels[i])
395 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000396 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000397 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000398
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000399 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000400 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000401 xfree(s);
402
Damien Miller6f83b8e2000-05-02 09:23:45 +1000403 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000404 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000405 if (c->ctl_fd != -1)
406 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000407 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 buffer_free(&c->input);
409 buffer_free(&c->output);
410 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000411 if (c->remote_name) {
412 xfree(c->remote_name);
413 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100414 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100415 if (c->path) {
416 xfree(c->path);
417 c->path = NULL;
418 }
Damien Millerb84886b2008-05-19 15:05:07 +1000419 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
420 if (cc->abandon_cb != NULL)
421 cc->abandon_cb(c, cc->ctx);
422 TAILQ_REMOVE(&c->status_confirms, cc, entry);
423 bzero(cc, sizeof(*cc));
424 xfree(cc);
425 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000426 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
427 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000428 channels[c->self] = NULL;
429 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430}
431
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000433channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000435 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000436
Ben Lindstrom601e4362001-06-21 03:19:23 +0000437 for (i = 0; i < channels_alloc; i++)
438 if (channels[i] != NULL)
439 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000440}
441
442/*
443 * Closes the sockets/fds of all channels. This is used to close extra file
444 * descriptors after a fork.
445 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000447channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000449 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000450
451 for (i = 0; i < channels_alloc; i++)
452 if (channels[i] != NULL)
453 channel_close_fds(channels[i]);
454}
455
456/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000457 * Stop listening to channels.
458 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000459void
460channel_stop_listening(void)
461{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000462 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000463 Channel *c;
464
465 for (i = 0; i < channels_alloc; i++) {
466 c = channels[i];
467 if (c != NULL) {
468 switch (c->type) {
469 case SSH_CHANNEL_AUTH_SOCKET:
470 case SSH_CHANNEL_PORT_LISTENER:
471 case SSH_CHANNEL_RPORT_LISTENER:
472 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000473 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000474 channel_free(c);
475 break;
476 }
477 }
478 }
479}
480
481/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482 * Returns true if no channel has too much buffered data, and false if one or
483 * more channel is overfull.
484 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000485int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000486channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000487{
488 u_int i;
489 Channel *c;
490
491 for (i = 0; i < channels_alloc; i++) {
492 c = channels[i];
493 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000494#if 0
495 if (!compat20 &&
496 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100497 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000498 c->self, buffer_len(&c->input));
499 return 0;
500 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000501#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000503 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000504 c->self, buffer_len(&c->output),
505 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000506 return 0;
507 }
508 }
509 }
510 return 1;
511}
512
513/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000515channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000516{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000517 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000518 Channel *c;
519
520 for (i = 0; i < channels_alloc; i++) {
521 c = channels[i];
522 if (c == NULL)
523 continue;
524 switch (c->type) {
525 case SSH_CHANNEL_X11_LISTENER:
526 case SSH_CHANNEL_PORT_LISTENER:
527 case SSH_CHANNEL_RPORT_LISTENER:
528 case SSH_CHANNEL_CLOSED:
529 case SSH_CHANNEL_AUTH_SOCKET:
530 case SSH_CHANNEL_DYNAMIC:
531 case SSH_CHANNEL_CONNECTING:
532 case SSH_CHANNEL_ZOMBIE:
533 continue;
534 case SSH_CHANNEL_LARVAL:
535 if (!compat20)
536 fatal("cannot happen: SSH_CHANNEL_LARVAL");
537 continue;
538 case SSH_CHANNEL_OPENING:
539 case SSH_CHANNEL_OPEN:
540 case SSH_CHANNEL_X11_OPEN:
541 return 1;
542 case SSH_CHANNEL_INPUT_DRAINING:
543 case SSH_CHANNEL_OUTPUT_DRAINING:
544 if (!compat13)
545 fatal("cannot happen: OUT_DRAIN");
546 return 1;
547 default:
548 fatal("channel_still_open: bad channel type %d", c->type);
549 /* NOTREACHED */
550 }
551 }
552 return 0;
553}
554
555/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000556int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000557channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000558{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000559 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000560 Channel *c;
561
562 for (i = 0; i < channels_alloc; i++) {
563 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000564 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000565 continue;
566 switch (c->type) {
567 case SSH_CHANNEL_CLOSED:
568 case SSH_CHANNEL_DYNAMIC:
569 case SSH_CHANNEL_X11_LISTENER:
570 case SSH_CHANNEL_PORT_LISTENER:
571 case SSH_CHANNEL_RPORT_LISTENER:
572 case SSH_CHANNEL_OPENING:
573 case SSH_CHANNEL_CONNECTING:
574 case SSH_CHANNEL_ZOMBIE:
575 continue;
576 case SSH_CHANNEL_LARVAL:
577 case SSH_CHANNEL_AUTH_SOCKET:
578 case SSH_CHANNEL_OPEN:
579 case SSH_CHANNEL_X11_OPEN:
580 return i;
581 case SSH_CHANNEL_INPUT_DRAINING:
582 case SSH_CHANNEL_OUTPUT_DRAINING:
583 if (!compat13)
584 fatal("cannot happen: OUT_DRAIN");
585 return i;
586 default:
587 fatal("channel_find_open: bad channel type %d", c->type);
588 /* NOTREACHED */
589 }
590 }
591 return -1;
592}
593
594
595/*
596 * Returns a message describing the currently open forwarded connections,
597 * suitable for sending to the client. The message contains crlf pairs for
598 * newlines.
599 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000600char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000601channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602{
603 Buffer buffer;
604 Channel *c;
605 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000606 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000607
608 buffer_init(&buffer);
609 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
610 buffer_append(&buffer, buf, strlen(buf));
611 for (i = 0; i < channels_alloc; i++) {
612 c = channels[i];
613 if (c == NULL)
614 continue;
615 switch (c->type) {
616 case SSH_CHANNEL_X11_LISTENER:
617 case SSH_CHANNEL_PORT_LISTENER:
618 case SSH_CHANNEL_RPORT_LISTENER:
619 case SSH_CHANNEL_CLOSED:
620 case SSH_CHANNEL_AUTH_SOCKET:
621 case SSH_CHANNEL_ZOMBIE:
622 continue;
623 case SSH_CHANNEL_LARVAL:
624 case SSH_CHANNEL_OPENING:
625 case SSH_CHANNEL_CONNECTING:
626 case SSH_CHANNEL_DYNAMIC:
627 case SSH_CHANNEL_OPEN:
628 case SSH_CHANNEL_X11_OPEN:
629 case SSH_CHANNEL_INPUT_DRAINING:
630 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000631 snprintf(buf, sizeof buf,
632 " #%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 +0000633 c->self, c->remote_name,
634 c->type, c->remote_id,
635 c->istate, buffer_len(&c->input),
636 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000637 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000638 buffer_append(&buffer, buf, strlen(buf));
639 continue;
640 default:
641 fatal("channel_open_message: bad channel type %d", c->type);
642 /* NOTREACHED */
643 }
644 }
645 buffer_append(&buffer, "\0", 1);
646 cp = xstrdup(buffer_ptr(&buffer));
647 buffer_free(&buffer);
648 return cp;
649}
650
651void
652channel_send_open(int id)
653{
654 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000655
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000657 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000658 return;
659 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000660 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661 packet_start(SSH2_MSG_CHANNEL_OPEN);
662 packet_put_cstring(c->ctype);
663 packet_put_int(c->self);
664 packet_put_int(c->local_window);
665 packet_put_int(c->local_maxpacket);
666 packet_send();
667}
668
669void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000670channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000672 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000673
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000675 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000676 return;
677 }
Damien Miller0e220db2004-06-15 10:34:08 +1000678 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 packet_start(SSH2_MSG_CHANNEL_REQUEST);
680 packet_put_int(c->remote_id);
681 packet_put_cstring(service);
682 packet_put_char(wantconfirm);
683}
Damien Miller4f7becb2006-03-26 14:10:14 +1100684
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685void
Damien Millerb84886b2008-05-19 15:05:07 +1000686channel_register_status_confirm(int id, channel_confirm_cb *cb,
687 channel_confirm_abandon_cb *abandon_cb, void *ctx)
688{
689 struct channel_confirm *cc;
690 Channel *c;
691
692 if ((c = channel_lookup(id)) == NULL)
693 fatal("channel_register_expect: %d: bad id", id);
694
695 cc = xmalloc(sizeof(*cc));
696 cc->cb = cb;
697 cc->abandon_cb = abandon_cb;
698 cc->ctx = ctx;
699 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
700}
701
702void
703channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704{
705 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000706
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100708 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709 return;
710 }
Damien Millerb84886b2008-05-19 15:05:07 +1000711 c->open_confirm = fn;
712 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713}
Damien Miller4f7becb2006-03-26 14:10:14 +1100714
Ben Lindstrome9c99912001-06-09 00:41:05 +0000715void
Damien Miller39eda6e2005-11-05 14:52:50 +1100716channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000717{
Damien Millerd47c62a2005-12-13 19:33:57 +1100718 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000719
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000721 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722 return;
723 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000724 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100725 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726}
Damien Miller4f7becb2006-03-26 14:10:14 +1100727
Ben Lindstrome9c99912001-06-09 00:41:05 +0000728void
729channel_cancel_cleanup(int id)
730{
Damien Millerd47c62a2005-12-13 19:33:57 +1100731 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000732
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000734 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735 return;
736 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000737 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100738 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739}
Damien Miller4f7becb2006-03-26 14:10:14 +1100740
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741void
Damien Miller077b2382005-12-31 16:22:32 +1100742channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000743 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744{
745 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000746
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000748 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749 return;
750 }
Damien Miller077b2382005-12-31 16:22:32 +1100751 c->input_filter = ifn;
752 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000753 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000754 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000755}
756
757void
758channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000759 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760{
761 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000762
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
764 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000765 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100767 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000768 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
769 packet_put_int(c->remote_id);
770 packet_put_int(c->local_window);
771 packet_send();
772}
773
Damien Miller5428f641999-11-25 11:54:57 +1100774/*
Damien Millerb38eff82000-04-01 11:09:21 +1000775 * 'channel_pre*' are called just before select() to add any bits relevant to
776 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100777 */
Damien Millerb38eff82000-04-01 11:09:21 +1000778/*
779 * 'channel_post*': perform any appropriate operations for channels which
780 * have events pending.
781 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100782typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000783chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
784chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
785
Damien Miller8473dd82006-07-24 14:08:32 +1000786/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000787static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100788channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000789{
790 FD_SET(c->sock, readset);
791}
792
Damien Miller8473dd82006-07-24 14:08:32 +1000793/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000794static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100795channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000796{
797 debug3("channel %d: waiting for connection", c->self);
798 FD_SET(c->sock, writeset);
799}
800
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100802channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000803{
804 if (buffer_len(&c->input) < packet_get_maxsize())
805 FD_SET(c->sock, readset);
806 if (buffer_len(&c->output) > 0)
807 FD_SET(c->sock, writeset);
808}
809
Ben Lindstrombba81212001-06-25 05:01:22 +0000810static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100811channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000812{
Damien Millerde6987c2002-01-22 23:20:40 +1100813 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000814
Damien Miller33b13562000-04-04 14:38:59 +1000815 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100816 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000817 buffer_len(&c->input) < limit &&
818 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000819 FD_SET(c->rfd, readset);
820 if (c->ostate == CHAN_OUTPUT_OPEN ||
821 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
822 if (buffer_len(&c->output) > 0) {
823 FD_SET(c->wfd, writeset);
824 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000825 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000826 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
827 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000828 else
829 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000830 }
831 }
832 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000833 if (compat20 && c->efd != -1 &&
834 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000835 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
836 buffer_len(&c->extended) > 0)
837 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000838 else if (!(c->flags & CHAN_EOF_SENT) &&
839 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000840 buffer_len(&c->extended) < c->remote_window)
841 FD_SET(c->efd, readset);
842 }
Damien Miller0e220db2004-06-15 10:34:08 +1000843 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000844 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000845 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
846 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000847}
848
Damien Miller8473dd82006-07-24 14:08:32 +1000849/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000850static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100851channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000852{
853 if (buffer_len(&c->input) == 0) {
854 packet_start(SSH_MSG_CHANNEL_CLOSE);
855 packet_put_int(c->remote_id);
856 packet_send();
857 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000858 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000859 }
860}
861
Damien Miller8473dd82006-07-24 14:08:32 +1000862/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000863static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100864channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000865{
866 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000867 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000868 else
Damien Millerb38eff82000-04-01 11:09:21 +1000869 FD_SET(c->sock, writeset);
870}
871
872/*
873 * This is a special state for X11 authentication spoofing. An opened X11
874 * connection (when authentication spoofing is being done) remains in this
875 * state until the first packet has been completely read. The authentication
876 * data in that packet is then substituted by the real data if it matches the
877 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000878 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000879 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000880 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000881static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000883{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000884 u_char *ucp;
885 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000886
887 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000888 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000889 return 0;
890
891 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100892 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000893 if (ucp[0] == 0x42) { /* Byte order MSB first. */
894 proto_len = 256 * ucp[6] + ucp[7];
895 data_len = 256 * ucp[8] + ucp[9];
896 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
897 proto_len = ucp[6] + 256 * ucp[7];
898 data_len = ucp[8] + 256 * ucp[9];
899 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000900 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100901 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000902 return -1;
903 }
904
905 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000906 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000907 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
908 return 0;
909
910 /* Check if authentication protocol matches. */
911 if (proto_len != strlen(x11_saved_proto) ||
912 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000913 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000914 return -1;
915 }
916 /* Check if authentication data matches our fake data. */
917 if (data_len != x11_fake_data_len ||
918 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
919 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000920 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000921 return -1;
922 }
923 /* Check fake data length */
924 if (x11_fake_data_len != x11_saved_data_len) {
925 error("X11 fake_data_len %d != saved_data_len %d",
926 x11_fake_data_len, x11_saved_data_len);
927 return -1;
928 }
929 /*
930 * Received authentication protocol and data match
931 * our fake data. Substitute the fake data with real
932 * data.
933 */
934 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
935 x11_saved_data, x11_saved_data_len);
936 return 1;
937}
938
Ben Lindstrombba81212001-06-25 05:01:22 +0000939static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100940channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000941{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000942 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000943
Damien Millerb38eff82000-04-01 11:09:21 +1000944 if (ret == 1) {
945 /* Start normal processing for the channel. */
946 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000947 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000948 } else if (ret == -1) {
949 /*
950 * We have received an X11 connection that has bad
951 * authentication information.
952 */
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000954 buffer_clear(&c->input);
955 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000956 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000957 c->sock = -1;
958 c->type = SSH_CHANNEL_CLOSED;
959 packet_start(SSH_MSG_CHANNEL_CLOSE);
960 packet_put_int(c->remote_id);
961 packet_send();
962 }
963}
964
Ben Lindstrombba81212001-06-25 05:01:22 +0000965static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100966channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000967{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000968 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000969
970 /* c->force_drain = 1; */
971
Damien Millerb38eff82000-04-01 11:09:21 +1000972 if (ret == 1) {
973 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100974 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000975 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000976 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000977 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100978 chan_read_failed(c);
979 buffer_clear(&c->input);
980 chan_ibuf_empty(c);
981 buffer_clear(&c->output);
982 /* for proto v1, the peer will send an IEOF */
983 if (compat20)
984 chan_write_failed(c);
985 else
986 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000987 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000988 }
989}
990
Ben Lindstromb3921512001-04-11 15:57:50 +0000991/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000992/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000993static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100994channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000995{
Damien Millera10f5612002-09-12 09:49:15 +1000996 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +1100997 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100998 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000999 struct {
1000 u_int8_t version;
1001 u_int8_t command;
1002 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001003 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001004 } s4_req, s4_rsp;
1005
Ben Lindstromb3921512001-04-11 15:57:50 +00001006 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001007
1008 have = buffer_len(&c->input);
1009 len = sizeof(s4_req);
1010 if (have < len)
1011 return 0;
1012 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001013
1014 need = 1;
1015 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1016 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1017 debug2("channel %d: socks4a request", c->self);
1018 /* ... and needs an extra string (the hostname) */
1019 need = 2;
1020 }
1021 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001022 for (found = 0, i = len; i < have; i++) {
1023 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001024 found++;
1025 if (found == need)
1026 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001027 }
1028 if (i > 1024) {
1029 /* the peer is probably sending garbage */
1030 debug("channel %d: decode socks4: too long",
1031 c->self);
1032 return -1;
1033 }
1034 }
Damien Miller1781f532009-01-28 16:24:41 +11001035 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001036 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001037 buffer_get(&c->input, (char *)&s4_req.version, 1);
1038 buffer_get(&c->input, (char *)&s4_req.command, 1);
1039 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001040 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001041 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001042 p = buffer_ptr(&c->input);
1043 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001044 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001045 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001046 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001047 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001048 c->self, len, have);
1049 strlcpy(username, p, sizeof(username));
1050 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001051
Damien Millera1c1b6c2009-01-28 16:29:49 +11001052 if (c->path != NULL) {
1053 xfree(c->path);
1054 c->path = NULL;
1055 }
Damien Miller1781f532009-01-28 16:24:41 +11001056 if (need == 1) { /* SOCKS4: one string */
1057 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001058 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001059 } else { /* SOCKS4A: two strings */
1060 have = buffer_len(&c->input);
1061 p = buffer_ptr(&c->input);
1062 len = strlen(p);
1063 debug2("channel %d: decode socks4a: host %s/%d",
1064 c->self, p, len);
1065 len++; /* trailing '\0' */
1066 if (len > have)
1067 fatal("channel %d: decode socks4a: len %d > have %d",
1068 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001069 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001070 error("channel %d: hostname \"%.100s\" too long",
1071 c->self, p);
1072 return -1;
1073 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001074 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001075 buffer_consume(&c->input, len);
1076 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001077 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001078
Damien Millerfbdeece2003-09-02 22:52:31 +10001079 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001080 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001081
Ben Lindstromb3921512001-04-11 15:57:50 +00001082 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001083 debug("channel %d: cannot handle: %s cn %d",
1084 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001085 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001086 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001087 s4_rsp.version = 0; /* vn: 0 for reply */
1088 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001089 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001090 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001091 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001092 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001093}
1094
Darren Tucker46471c92003-07-03 13:55:19 +10001095/* try to decode a socks5 header */
1096#define SSH_SOCKS5_AUTHDONE 0x1000
1097#define SSH_SOCKS5_NOAUTH 0x00
1098#define SSH_SOCKS5_IPV4 0x01
1099#define SSH_SOCKS5_DOMAIN 0x03
1100#define SSH_SOCKS5_IPV6 0x04
1101#define SSH_SOCKS5_CONNECT 0x01
1102#define SSH_SOCKS5_SUCCESS 0x00
1103
Damien Miller8473dd82006-07-24 14:08:32 +10001104/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001105static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001106channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001107{
1108 struct {
1109 u_int8_t version;
1110 u_int8_t command;
1111 u_int8_t reserved;
1112 u_int8_t atyp;
1113 } s5_req, s5_rsp;
1114 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001115 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001116 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001117
1118 debug2("channel %d: decode socks5", c->self);
1119 p = buffer_ptr(&c->input);
1120 if (p[0] != 0x05)
1121 return -1;
1122 have = buffer_len(&c->input);
1123 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1124 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001125 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001126 return 0;
1127 nmethods = p[1];
1128 if (have < nmethods + 2)
1129 return 0;
1130 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001131 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001132 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001133 found = 1;
1134 break;
1135 }
1136 }
1137 if (!found) {
1138 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1139 c->self);
1140 return -1;
1141 }
1142 buffer_consume(&c->input, nmethods + 2);
1143 buffer_put_char(&c->output, 0x05); /* version */
1144 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1145 FD_SET(c->sock, writeset);
1146 c->flags |= SSH_SOCKS5_AUTHDONE;
1147 debug2("channel %d: socks5 auth done", c->self);
1148 return 0; /* need more */
1149 }
1150 debug2("channel %d: socks5 post auth", c->self);
1151 if (have < sizeof(s5_req)+1)
1152 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001153 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001154 if (s5_req.version != 0x05 ||
1155 s5_req.command != SSH_SOCKS5_CONNECT ||
1156 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001157 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001158 return -1;
1159 }
Darren Tucker47eede72005-03-14 23:08:12 +11001160 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001161 case SSH_SOCKS5_IPV4:
1162 addrlen = 4;
1163 af = AF_INET;
1164 break;
1165 case SSH_SOCKS5_DOMAIN:
1166 addrlen = p[sizeof(s5_req)];
1167 af = -1;
1168 break;
1169 case SSH_SOCKS5_IPV6:
1170 addrlen = 16;
1171 af = AF_INET6;
1172 break;
1173 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001174 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001175 return -1;
1176 }
Damien Miller0f077072006-07-10 22:21:02 +10001177 need = sizeof(s5_req) + addrlen + 2;
1178 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1179 need++;
1180 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001181 return 0;
1182 buffer_consume(&c->input, sizeof(s5_req));
1183 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1184 buffer_consume(&c->input, 1); /* host string length */
1185 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1186 buffer_get(&c->input, (char *)&dest_port, 2);
1187 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001188 if (c->path != NULL) {
1189 xfree(c->path);
1190 c->path = NULL;
1191 }
1192 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001193 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001194 error("channel %d: dynamic request: socks5 hostname "
1195 "\"%.100s\" too long", c->self, dest_addr);
1196 return -1;
1197 }
1198 c->path = xstrdup(dest_addr);
1199 } else {
1200 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1201 return -1;
1202 c->path = xstrdup(ntop);
1203 }
Darren Tucker46471c92003-07-03 13:55:19 +10001204 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001205
Damien Millerfbdeece2003-09-02 22:52:31 +10001206 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001207 c->self, c->path, c->host_port, s5_req.command);
1208
1209 s5_rsp.version = 0x05;
1210 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1211 s5_rsp.reserved = 0; /* ignored */
1212 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1213 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1214 dest_port = 0; /* ignored */
1215
Damien Millera0fdce92006-03-26 14:28:50 +11001216 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1217 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1218 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001219 return 1;
1220}
1221
Ben Lindstromb3921512001-04-11 15:57:50 +00001222/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001223static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001224channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001225{
1226 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001227 u_int have;
1228 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001229
1230 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001231 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001232 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001233 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001234 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001235 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001236 /* need more */
1237 FD_SET(c->sock, readset);
1238 return;
1239 }
1240 /* try to guess the protocol */
1241 p = buffer_ptr(&c->input);
1242 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001243 case 0x04:
1244 ret = channel_decode_socks4(c, readset, writeset);
1245 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001246 case 0x05:
1247 ret = channel_decode_socks5(c, readset, writeset);
1248 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001249 default:
1250 ret = -1;
1251 break;
1252 }
1253 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001254 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001255 } else if (ret == 0) {
1256 debug2("channel %d: pre_dynamic: need more", c->self);
1257 /* need more */
1258 FD_SET(c->sock, readset);
1259 } else {
1260 /* switch to the next state */
1261 c->type = SSH_CHANNEL_OPENING;
1262 port_open_helper(c, "direct-tcpip");
1263 }
1264}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001265
Damien Millerb38eff82000-04-01 11:09:21 +10001266/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001267/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001268static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001269channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001270{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001271 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001272 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001273 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001274 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001275 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001276 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001277
1278 if (FD_ISSET(c->sock, readset)) {
1279 debug("X11 connection requested.");
1280 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001281 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001282 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001283 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001284 channel_close_fd(&c->sock);
1285 chan_mark_dead(c);
1286 }
Damien Millerb38eff82000-04-01 11:09:21 +10001287 if (newsock < 0) {
1288 error("accept: %.100s", strerror(errno));
1289 return;
1290 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001291 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001292 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001293 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001294 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001295 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001296
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001297 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001298 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001299 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001300 if (compat20) {
1301 packet_start(SSH2_MSG_CHANNEL_OPEN);
1302 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001303 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001304 packet_put_int(nc->local_window_max);
1305 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001306 /* originator ipaddr and port */
1307 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001308 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001309 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001310 } else {
1311 packet_put_int(remote_port);
1312 }
Damien Millerbd483e72000-04-30 10:00:53 +10001313 packet_send();
1314 } else {
1315 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001316 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001317 if (packet_get_protocol_flags() &
1318 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001319 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001320 packet_send();
1321 }
Damien Millerd83ff352001-01-30 09:19:34 +11001322 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001323 }
1324}
1325
Ben Lindstrombba81212001-06-25 05:01:22 +00001326static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001327port_open_helper(Channel *c, char *rtype)
1328{
1329 int direct;
1330 char buf[1024];
1331 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001332 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001333
1334 direct = (strcmp(rtype, "direct-tcpip") == 0);
1335
1336 snprintf(buf, sizeof buf,
1337 "%s: listening port %d for %.100s port %d, "
1338 "connect from %.200s port %d",
1339 rtype, c->listening_port, c->path, c->host_port,
1340 remote_ipaddr, remote_port);
1341
1342 xfree(c->remote_name);
1343 c->remote_name = xstrdup(buf);
1344
1345 if (compat20) {
1346 packet_start(SSH2_MSG_CHANNEL_OPEN);
1347 packet_put_cstring(rtype);
1348 packet_put_int(c->self);
1349 packet_put_int(c->local_window_max);
1350 packet_put_int(c->local_maxpacket);
1351 if (direct) {
1352 /* target host, port */
1353 packet_put_cstring(c->path);
1354 packet_put_int(c->host_port);
1355 } else {
1356 /* listen address, port */
1357 packet_put_cstring(c->path);
1358 packet_put_int(c->listening_port);
1359 }
1360 /* originator host and port */
1361 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001362 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001363 packet_send();
1364 } else {
1365 packet_start(SSH_MSG_PORT_OPEN);
1366 packet_put_int(c->self);
1367 packet_put_cstring(c->path);
1368 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001369 if (packet_get_protocol_flags() &
1370 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001371 packet_put_cstring(c->remote_name);
1372 packet_send();
1373 }
1374 xfree(remote_ipaddr);
1375}
1376
Damien Miller5e7fd072005-11-05 14:53:39 +11001377static void
1378channel_set_reuseaddr(int fd)
1379{
1380 int on = 1;
1381
1382 /*
1383 * Set socket options.
1384 * Allow local port reuse in TIME_WAIT.
1385 */
1386 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1387 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1388}
1389
Damien Millerb38eff82000-04-01 11:09:21 +10001390/*
1391 * This socket is listening for connections to a forwarded TCP/IP port.
1392 */
Damien Miller8473dd82006-07-24 14:08:32 +10001393/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001394static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001395channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001396{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001397 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001398 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001399 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001400 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001401 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001402
Damien Millerb38eff82000-04-01 11:09:21 +10001403 if (FD_ISSET(c->sock, readset)) {
1404 debug("Connection to port %d forwarding "
1405 "to %.100s port %d requested.",
1406 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001407
Damien Miller4623a752001-10-10 15:03:58 +10001408 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1409 nextstate = SSH_CHANNEL_OPENING;
1410 rtype = "forwarded-tcpip";
1411 } else {
1412 if (c->host_port == 0) {
1413 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001414 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001415 } else {
1416 nextstate = SSH_CHANNEL_OPENING;
1417 rtype = "direct-tcpip";
1418 }
1419 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001420
Damien Millerb38eff82000-04-01 11:09:21 +10001421 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001422 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001423 if (newsock < 0) {
1424 error("accept: %.100s", strerror(errno));
1425 return;
1426 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001427 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001428 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1429 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001430 nc->listening_port = c->listening_port;
1431 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001432 if (c->path != NULL)
1433 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001434
Damien Miller4623a752001-10-10 15:03:58 +10001435 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1436 /*
1437 * do not call the channel_post handler until
1438 * this flag has been reset by a pre-handler.
1439 * otherwise the FD_ISSET calls might overflow
1440 */
1441 nc->delayed = 1;
1442 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001443 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001444 }
Damien Millerb38eff82000-04-01 11:09:21 +10001445 }
1446}
1447
1448/*
1449 * This is the authentication agent socket listening for connections from
1450 * clients.
1451 */
Damien Miller8473dd82006-07-24 14:08:32 +10001452/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001453static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001454channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001455{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001456 Channel *nc;
1457 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001458 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001459 socklen_t addrlen;
1460
1461 if (FD_ISSET(c->sock, readset)) {
1462 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001463 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001464 if (newsock < 0) {
1465 error("accept from auth socket: %.100s", strerror(errno));
1466 return;
1467 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001468 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001469 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1470 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001471 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001472 if (compat20) {
1473 packet_start(SSH2_MSG_CHANNEL_OPEN);
1474 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001475 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001476 packet_put_int(c->local_window_max);
1477 packet_put_int(c->local_maxpacket);
1478 } else {
1479 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001480 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001481 }
Damien Millerb38eff82000-04-01 11:09:21 +10001482 packet_send();
1483 }
1484}
1485
Damien Miller8473dd82006-07-24 14:08:32 +10001486/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001487static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001488channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001489{
Damien Millerbd740252008-05-19 15:37:09 +10001490 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001491 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001492
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001493 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001494 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001495 err = errno;
1496 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001497 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001498 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001499 debug("channel %d: connected to %s port %d",
1500 c->self, c->connect_ctx.host, c->connect_ctx.port);
1501 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001502 c->type = SSH_CHANNEL_OPEN;
1503 if (compat20) {
1504 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1505 packet_put_int(c->remote_id);
1506 packet_put_int(c->self);
1507 packet_put_int(c->local_window);
1508 packet_put_int(c->local_maxpacket);
1509 } else {
1510 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1511 packet_put_int(c->remote_id);
1512 packet_put_int(c->self);
1513 }
1514 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001515 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001516 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001517 /* Try next address, if any */
1518 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1519 close(c->sock);
1520 c->sock = c->rfd = c->wfd = sock;
1521 channel_max_fd = channel_find_maxfd();
1522 return;
1523 }
1524 /* Exhausted all addresses */
1525 error("connect_to %.100s port %d: failed.",
1526 c->connect_ctx.host, c->connect_ctx.port);
1527 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001528 if (compat20) {
1529 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1530 packet_put_int(c->remote_id);
1531 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1532 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1533 packet_put_cstring(strerror(err));
1534 packet_put_cstring("");
1535 }
1536 } else {
1537 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1538 packet_put_int(c->remote_id);
1539 }
1540 chan_mark_dead(c);
1541 }
1542 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001543 }
1544}
1545
Damien Miller8473dd82006-07-24 14:08:32 +10001546/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001547static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001548channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001549{
Darren Tucker11327cc2005-03-14 23:22:25 +11001550 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001551 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001552
Damien Miller835284b2007-06-11 13:03:16 +10001553 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1554 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001555 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001556 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001557 if (len < 0 && (errno == EINTR ||
1558 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001559 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001560#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001561 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001562#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001563 if ((!c->isatty && len <= 0) ||
1564 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001565#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001566 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001567 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001568 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001569 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001570 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001571 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001572 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001573 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001574 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001575 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001576 } else {
1577 chan_read_failed(c);
1578 }
1579 return -1;
1580 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001581 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001582 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001583 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001584 chan_read_failed(c);
1585 }
Damien Millerd27b9472005-12-13 19:29:02 +11001586 } else if (c->datagram) {
1587 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001588 } else {
1589 buffer_append(&c->input, buf, len);
1590 }
Damien Millerb38eff82000-04-01 11:09:21 +10001591 }
1592 return 1;
1593}
Damien Miller4f7becb2006-03-26 14:10:14 +11001594
Damien Miller8473dd82006-07-24 14:08:32 +10001595/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001596static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001597channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001598{
Ben Lindstrome229b252001-03-05 06:28:06 +00001599 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001600 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001601 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001602 int len;
1603
1604 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001605 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001606 FD_ISSET(c->wfd, writeset) &&
1607 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001608 if (c->output_filter != NULL) {
1609 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1610 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001611 if (c->type != SSH_CHANNEL_OPEN)
1612 chan_mark_dead(c);
1613 else
1614 chan_write_failed(c);
1615 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001616 }
1617 } else if (c->datagram) {
1618 buf = data = buffer_get_string(&c->output, &dlen);
1619 } else {
1620 buf = data = buffer_ptr(&c->output);
1621 dlen = buffer_len(&c->output);
1622 }
1623
Damien Millerd27b9472005-12-13 19:29:02 +11001624 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001625 /* ignore truncated writes, datagrams might get lost */
1626 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001627 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001628 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001629 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1630 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001631 return 1;
1632 if (len <= 0) {
1633 if (c->type != SSH_CHANNEL_OPEN)
1634 chan_mark_dead(c);
1635 else
1636 chan_write_failed(c);
1637 return -1;
1638 }
1639 return 1;
1640 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001641#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001642 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001643 if (compat20 && c->wfd_isatty)
1644 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001645#endif
Damien Miller077b2382005-12-31 16:22:32 +11001646
1647 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001648 if (len < 0 &&
1649 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001650 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001651 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001652 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001653 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001654 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001655 return -1;
1656 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001657 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001658 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001659 c->type = SSH_CHANNEL_INPUT_DRAINING;
1660 } else {
1661 chan_write_failed(c);
1662 }
1663 return -1;
1664 }
Darren Tucker3980b632009-08-28 11:02:37 +10001665#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001666 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001667 if (tcgetattr(c->wfd, &tio) == 0 &&
1668 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1669 /*
1670 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001671 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001672 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001673 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001674 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001675 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001676 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001677 }
1678 }
Darren Tucker3980b632009-08-28 11:02:37 +10001679#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001680 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001681 if (compat20 && len > 0) {
1682 c->local_consumed += len;
1683 }
1684 }
1685 return 1;
1686}
Damien Miller4f7becb2006-03-26 14:10:14 +11001687
Ben Lindstrombba81212001-06-25 05:01:22 +00001688static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001689channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001690{
Darren Tucker11327cc2005-03-14 23:22:25 +11001691 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001692 int len;
1693
Damien Miller1383bd82000-04-06 12:32:37 +10001694/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001695 if (c->efd != -1) {
1696 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1697 FD_ISSET(c->efd, writeset) &&
1698 buffer_len(&c->extended) > 0) {
1699 len = write(c->efd, buffer_ptr(&c->extended),
1700 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001701 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001702 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001703 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1704 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001705 return 1;
1706 if (len <= 0) {
1707 debug2("channel %d: closing write-efd %d",
1708 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001709 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001710 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001711 buffer_consume(&c->extended, len);
1712 c->local_consumed += len;
1713 }
1714 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001715 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001716 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001717 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001718 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001719 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1720 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001721 return 1;
1722 if (len <= 0) {
1723 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001724 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001725 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001726 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001727 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001728 }
Damien Miller33b13562000-04-04 14:38:59 +10001729 }
1730 }
1731 return 1;
1732}
Damien Miller4f7becb2006-03-26 14:10:14 +11001733
Damien Miller8473dd82006-07-24 14:08:32 +10001734/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001735static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001736channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001737{
1738 char buf[16];
1739 int len;
1740
1741 /* Monitor control fd to detect if the slave client exits */
1742 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1743 len = read(c->ctl_fd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001744 if (len < 0 &&
1745 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller0e220db2004-06-15 10:34:08 +10001746 return 1;
1747 if (len <= 0) {
1748 debug2("channel %d: ctl read<=0", c->self);
1749 if (c->type != SSH_CHANNEL_OPEN) {
1750 debug2("channel %d: not open", c->self);
1751 chan_mark_dead(c);
1752 return -1;
1753 } else {
1754 chan_read_failed(c);
1755 chan_write_failed(c);
1756 }
1757 return -1;
1758 } else
1759 fatal("%s: unexpected data on ctl fd", __func__);
1760 }
1761 return 1;
1762}
Damien Miller4f7becb2006-03-26 14:10:14 +11001763
Damien Miller0e220db2004-06-15 10:34:08 +10001764static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001765channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001766{
Ben Lindstromb3921512001-04-11 15:57:50 +00001767 if (c->type == SSH_CHANNEL_OPEN &&
1768 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001769 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001770 c->local_maxpacket*3) ||
1771 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001772 c->local_consumed > 0) {
1773 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1774 packet_put_int(c->remote_id);
1775 packet_put_int(c->local_consumed);
1776 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001777 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001778 c->self, c->local_window,
1779 c->local_consumed);
1780 c->local_window += c->local_consumed;
1781 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001782 }
1783 return 1;
1784}
1785
Ben Lindstrombba81212001-06-25 05:01:22 +00001786static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001787channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001788{
Damien Miller4623a752001-10-10 15:03:58 +10001789 if (c->delayed)
1790 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001791 channel_handle_rfd(c, readset, writeset);
1792 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001793 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001794 return;
Damien Miller33b13562000-04-04 14:38:59 +10001795 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001796 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001797 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001798}
1799
Damien Miller8473dd82006-07-24 14:08:32 +10001800/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001801static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001802channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001803{
1804 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001805
Damien Millerb38eff82000-04-01 11:09:21 +10001806 /* Send buffered output data to the socket. */
1807 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1808 len = write(c->sock, buffer_ptr(&c->output),
1809 buffer_len(&c->output));
1810 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001811 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001812 else
1813 buffer_consume(&c->output, len);
1814 }
1815}
1816
Ben Lindstrombba81212001-06-25 05:01:22 +00001817static void
Damien Miller33b13562000-04-04 14:38:59 +10001818channel_handler_init_20(void)
1819{
Damien Millerde6987c2002-01-22 23:20:40 +11001820 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001821 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001822 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001823 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001824 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001825 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001826 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001827 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001828
Damien Millerde6987c2002-01-22 23:20:40 +11001829 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001830 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001831 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001832 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001833 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001834 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001835 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001836}
1837
Ben Lindstrombba81212001-06-25 05:01:22 +00001838static void
Damien Millerb38eff82000-04-01 11:09:21 +10001839channel_handler_init_13(void)
1840{
1841 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1842 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1843 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1844 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1845 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1846 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1847 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001848 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001849 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001850
Damien Millerde6987c2002-01-22 23:20:40 +11001851 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001852 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1853 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1854 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1855 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001856 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001857 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001858}
1859
Ben Lindstrombba81212001-06-25 05:01:22 +00001860static void
Damien Millerb38eff82000-04-01 11:09:21 +10001861channel_handler_init_15(void)
1862{
Damien Millerde6987c2002-01-22 23:20:40 +11001863 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001864 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001865 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1866 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1867 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001868 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001869 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001870
1871 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1872 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1873 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001874 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001875 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001876 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001877}
1878
Ben Lindstrombba81212001-06-25 05:01:22 +00001879static void
Damien Millerb38eff82000-04-01 11:09:21 +10001880channel_handler_init(void)
1881{
1882 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001883
Damien Miller9f0f5c62001-12-21 14:45:46 +11001884 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001885 channel_pre[i] = NULL;
1886 channel_post[i] = NULL;
1887 }
Damien Miller33b13562000-04-04 14:38:59 +10001888 if (compat20)
1889 channel_handler_init_20();
1890 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001891 channel_handler_init_13();
1892 else
1893 channel_handler_init_15();
1894}
1895
Damien Miller3ec27592001-10-12 11:35:04 +10001896/* gc dead channels */
1897static void
1898channel_garbage_collect(Channel *c)
1899{
1900 if (c == NULL)
1901 return;
1902 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001903 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001904 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001905 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001906 c->detach_user(c->self, NULL);
1907 /* if we still have a callback */
1908 if (c->detach_user != NULL)
1909 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001910 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001911 }
1912 if (!chan_is_dead(c, 1))
1913 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001914 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001915 channel_free(c);
1916}
1917
Ben Lindstrombba81212001-06-25 05:01:22 +00001918static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001919channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001920{
1921 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001922 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001923 Channel *c;
1924
1925 if (!did_init) {
1926 channel_handler_init();
1927 did_init = 1;
1928 }
1929 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001930 c = channels[i];
1931 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001932 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001933 if (ftab[c->type] != NULL)
1934 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001935 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001936 }
1937}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001938
Ben Lindstrome9c99912001-06-09 00:41:05 +00001939/*
1940 * Allocate/update select bitmasks and add any bits relevant to channels in
1941 * select bitmasks.
1942 */
Damien Miller4af51302000-04-16 11:18:38 +10001943void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001944channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001945 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001946{
Damien Miller36812092006-03-26 14:22:47 +11001947 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001948
1949 n = MAX(*maxfdp, channel_max_fd);
1950
Damien Miller36812092006-03-26 14:22:47 +11001951 nfdset = howmany(n+1, NFDBITS);
1952 /* Explicitly test here, because xrealloc isn't always called */
1953 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1954 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1955 sz = nfdset * sizeof(fd_mask);
1956
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001957 /* perhaps check sz < nalloc/2 and shrink? */
1958 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001959 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1960 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001961 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001962 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001963 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001964 memset(*readsetp, 0, sz);
1965 memset(*writesetp, 0, sz);
1966
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001967 if (!rekeying)
1968 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001969}
1970
Ben Lindstrome9c99912001-06-09 00:41:05 +00001971/*
1972 * After select, perform any appropriate operations for channels which have
1973 * events pending.
1974 */
Damien Miller4af51302000-04-16 11:18:38 +10001975void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001976channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001977{
Damien Millerb38eff82000-04-01 11:09:21 +10001978 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001979}
1980
Ben Lindstrome9c99912001-06-09 00:41:05 +00001981
Damien Miller5e953212001-01-30 09:14:00 +11001982/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001983void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001984channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001985{
Damien Millerb38eff82000-04-01 11:09:21 +10001986 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001987 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001988
Damien Miller95def091999-11-25 00:26:21 +11001989 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001990 c = channels[i];
1991 if (c == NULL)
1992 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001993
Ben Lindstrome9c99912001-06-09 00:41:05 +00001994 /*
1995 * We are only interested in channels that can have buffered
1996 * incoming data.
1997 */
Damien Miller34132e52000-01-14 15:45:46 +11001998 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001999 if (c->type != SSH_CHANNEL_OPEN &&
2000 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002001 continue;
2002 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002003 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002004 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002005 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002006 if (compat20 &&
2007 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002008 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002009 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002010 continue;
2011 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002012
Damien Miller95def091999-11-25 00:26:21 +11002013 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002014 if ((c->istate == CHAN_INPUT_OPEN ||
2015 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2016 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002017 if (c->datagram) {
2018 if (len > 0) {
2019 u_char *data;
2020 u_int dlen;
2021
2022 data = buffer_get_string(&c->input,
2023 &dlen);
2024 packet_start(SSH2_MSG_CHANNEL_DATA);
2025 packet_put_int(c->remote_id);
2026 packet_put_string(data, dlen);
2027 packet_send();
2028 c->remote_window -= dlen + 4;
2029 xfree(data);
2030 }
2031 continue;
2032 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002033 /*
2034 * Send some data for the other side over the secure
2035 * connection.
2036 */
Damien Miller33b13562000-04-04 14:38:59 +10002037 if (compat20) {
2038 if (len > c->remote_window)
2039 len = c->remote_window;
2040 if (len > c->remote_maxpacket)
2041 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002042 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002043 if (packet_is_interactive()) {
2044 if (len > 1024)
2045 len = 512;
2046 } else {
2047 /* Keep the packets at reasonable size. */
2048 if (len > packet_get_maxsize()/2)
2049 len = packet_get_maxsize()/2;
2050 }
Damien Miller95def091999-11-25 00:26:21 +11002051 }
Damien Millerb38eff82000-04-01 11:09:21 +10002052 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002053 packet_start(compat20 ?
2054 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002055 packet_put_int(c->remote_id);
2056 packet_put_string(buffer_ptr(&c->input), len);
2057 packet_send();
2058 buffer_consume(&c->input, len);
2059 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002060 }
2061 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002062 if (compat13)
2063 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002064 /*
2065 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002066 * tell peer, that we will not send more data: send IEOF.
2067 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002068 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002069 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002070 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2071 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002072 else
2073 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002074 }
Damien Miller33b13562000-04-04 14:38:59 +10002075 /* Send extended data, i.e. stderr */
2076 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002077 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002078 c->remote_window > 0 &&
2079 (len = buffer_len(&c->extended)) > 0 &&
2080 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002081 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002082 c->self, c->remote_window, buffer_len(&c->extended),
2083 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002084 if (len > c->remote_window)
2085 len = c->remote_window;
2086 if (len > c->remote_maxpacket)
2087 len = c->remote_maxpacket;
2088 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2089 packet_put_int(c->remote_id);
2090 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2091 packet_put_string(buffer_ptr(&c->extended), len);
2092 packet_send();
2093 buffer_consume(&c->extended, len);
2094 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002095 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002096 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002097 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002098}
2099
Ben Lindstrome9c99912001-06-09 00:41:05 +00002100
2101/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002102
2103/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002104void
Damien Miller630d6f42002-01-22 23:17:30 +11002105channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002106{
Damien Miller34132e52000-01-14 15:45:46 +11002107 int id;
Damien Miller95def091999-11-25 00:26:21 +11002108 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002109 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002110 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002111
Damien Miller95def091999-11-25 00:26:21 +11002112 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002113 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002114 c = channel_lookup(id);
2115 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002116 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002117
Damien Miller95def091999-11-25 00:26:21 +11002118 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002119 if (c->type != SSH_CHANNEL_OPEN &&
2120 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002121 return;
2122
Damien Miller95def091999-11-25 00:26:21 +11002123 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002124 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002125
Damien Millera04ad492004-01-21 11:02:09 +11002126 /*
2127 * Ignore data for protocol > 1.3 if output end is no longer open.
2128 * For protocol 2 the sending side is reducing its window as it sends
2129 * data, so we must 'fake' consumption of the data in order to ensure
2130 * that window updates are sent back. Otherwise the connection might
2131 * deadlock.
2132 */
2133 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2134 if (compat20) {
2135 c->local_window -= data_len;
2136 c->local_consumed += data_len;
2137 }
Damien Millera04ad492004-01-21 11:02:09 +11002138 return;
2139 }
2140
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002141 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002142 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002143 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002144 c->self, data_len, c->local_maxpacket);
2145 }
2146 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002147 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002148 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002149 return;
2150 }
2151 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002152 }
Damien Millerd27b9472005-12-13 19:29:02 +11002153 if (c->datagram)
2154 buffer_put_string(&c->output, data, data_len);
2155 else
2156 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002157 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002158}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002159
Damien Millerd79b4242006-03-31 23:11:44 +11002160/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002161void
Damien Miller630d6f42002-01-22 23:17:30 +11002162channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002163{
2164 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002165 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002166 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002167 Channel *c;
2168
2169 /* Get the channel number and verify it. */
2170 id = packet_get_int();
2171 c = channel_lookup(id);
2172
2173 if (c == NULL)
2174 packet_disconnect("Received extended_data for bad channel %d.", id);
2175 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002176 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002177 return;
2178 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002179 if (c->flags & CHAN_EOF_RCVD) {
2180 if (datafellows & SSH_BUG_EXTEOF)
2181 debug("channel %d: accepting ext data after eof", id);
2182 else
2183 packet_disconnect("Received extended_data after EOF "
2184 "on channel %d.", id);
2185 }
Damien Miller33b13562000-04-04 14:38:59 +10002186 tcode = packet_get_int();
2187 if (c->efd == -1 ||
2188 c->extended_usage != CHAN_EXTENDED_WRITE ||
2189 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002190 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002191 return;
2192 }
2193 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002194 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002195 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002196 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002197 c->self, data_len, c->local_window);
2198 xfree(data);
2199 return;
2200 }
Damien Millerd3444942000-09-30 14:20:03 +11002201 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002202 c->local_window -= data_len;
2203 buffer_append(&c->extended, data, data_len);
2204 xfree(data);
2205}
2206
Damien Millerd79b4242006-03-31 23:11:44 +11002207/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002208void
Damien Miller630d6f42002-01-22 23:17:30 +11002209channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002210{
2211 int id;
2212 Channel *c;
2213
Damien Millerb38eff82000-04-01 11:09:21 +10002214 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002215 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002216 c = channel_lookup(id);
2217 if (c == NULL)
2218 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2219 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002220
2221 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002222 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002223 debug("channel %d: FORCE input drain", c->self);
2224 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002225 if (buffer_len(&c->input) == 0)
2226 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002227 }
2228
Damien Millerb38eff82000-04-01 11:09:21 +10002229}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002230
Damien Millerd79b4242006-03-31 23:11:44 +11002231/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002232void
Damien Miller630d6f42002-01-22 23:17:30 +11002233channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002234{
Damien Millerb38eff82000-04-01 11:09:21 +10002235 int id;
2236 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002237
Damien Millerb38eff82000-04-01 11:09:21 +10002238 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002239 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002240 c = channel_lookup(id);
2241 if (c == NULL)
2242 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002243
2244 /*
2245 * Send a confirmation that we have closed the channel and no more
2246 * data is coming for it.
2247 */
Damien Miller95def091999-11-25 00:26:21 +11002248 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002249 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002250 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002251
Damien Miller5428f641999-11-25 11:54:57 +11002252 /*
2253 * If the channel is in closed state, we have sent a close request,
2254 * and the other side will eventually respond with a confirmation.
2255 * Thus, we cannot free the channel here, because then there would be
2256 * no-one to receive the confirmation. The channel gets freed when
2257 * the confirmation arrives.
2258 */
Damien Millerb38eff82000-04-01 11:09:21 +10002259 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002260 /*
2261 * Not a closed channel - mark it as draining, which will
2262 * cause it to be freed later.
2263 */
Damien Miller76765c02002-01-22 23:21:15 +11002264 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002265 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002266 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267}
2268
Damien Millerb38eff82000-04-01 11:09:21 +10002269/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002270/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002271void
Damien Miller630d6f42002-01-22 23:17:30 +11002272channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002273{
Damien Millerb38eff82000-04-01 11:09:21 +10002274 int id = packet_get_int();
2275 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002276
Damien Miller48b03fc2002-01-22 23:11:40 +11002277 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002278 if (c == NULL)
2279 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2280 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002281}
2282
Damien Millerd79b4242006-03-31 23:11:44 +11002283/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002284void
Damien Miller630d6f42002-01-22 23:17:30 +11002285channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002286{
2287 int id = packet_get_int();
2288 Channel *c = channel_lookup(id);
2289
Damien Miller48b03fc2002-01-22 23:11:40 +11002290 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002291 if (c == NULL)
2292 packet_disconnect("Received close confirmation for "
2293 "out-of-range channel %d.", id);
2294 if (c->type != SSH_CHANNEL_CLOSED)
2295 packet_disconnect("Received close confirmation for "
2296 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002297 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002298}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002299
Damien Millerd79b4242006-03-31 23:11:44 +11002300/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002301void
Damien Miller630d6f42002-01-22 23:17:30 +11002302channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303{
Damien Millerb38eff82000-04-01 11:09:21 +10002304 int id, remote_id;
2305 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002306
Damien Millerb38eff82000-04-01 11:09:21 +10002307 id = packet_get_int();
2308 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002309
Damien Millerb38eff82000-04-01 11:09:21 +10002310 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2311 packet_disconnect("Received open confirmation for "
2312 "non-opening channel %d.", id);
2313 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002314 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002315 c->remote_id = remote_id;
2316 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002317
2318 if (compat20) {
2319 c->remote_window = packet_get_int();
2320 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002321 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002322 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002323 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002324 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002325 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002326 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002327 c->remote_window, c->remote_maxpacket);
2328 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002329 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002330}
2331
Ben Lindstrombba81212001-06-25 05:01:22 +00002332static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002333reason2txt(int reason)
2334{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002335 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002336 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2337 return "administratively prohibited";
2338 case SSH2_OPEN_CONNECT_FAILED:
2339 return "connect failed";
2340 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2341 return "unknown channel type";
2342 case SSH2_OPEN_RESOURCE_SHORTAGE:
2343 return "resource shortage";
2344 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002345 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002346}
2347
Damien Millerd79b4242006-03-31 23:11:44 +11002348/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002349void
Damien Miller630d6f42002-01-22 23:17:30 +11002350channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002351{
Kevin Steves12057502001-02-05 14:54:34 +00002352 int id, reason;
2353 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002354 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002355
Damien Millerb38eff82000-04-01 11:09:21 +10002356 id = packet_get_int();
2357 c = channel_lookup(id);
2358
2359 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2360 packet_disconnect("Received open failure for "
2361 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002362 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002363 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002364 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002365 msg = packet_get_string(NULL);
2366 lang = packet_get_string(NULL);
2367 }
Damien Miller996acd22003-04-09 20:59:48 +10002368 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002369 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002370 if (msg != NULL)
2371 xfree(msg);
2372 if (lang != NULL)
2373 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002374 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002375 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002376 /* Schedule the channel for cleanup/deletion. */
2377 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002378}
2379
Damien Millerd79b4242006-03-31 23:11:44 +11002380/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002381void
Damien Miller630d6f42002-01-22 23:17:30 +11002382channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002383{
2384 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002385 int id;
2386 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002387
2388 if (!compat20)
2389 return;
2390
2391 /* Get the channel number and verify it. */
2392 id = packet_get_int();
2393 c = channel_lookup(id);
2394
Damien Millerd47c62a2005-12-13 19:33:57 +11002395 if (c == NULL) {
2396 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002397 return;
2398 }
2399 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002400 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002401 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002402 c->remote_window += adjust;
2403}
2404
Damien Millerd79b4242006-03-31 23:11:44 +11002405/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002406void
Damien Miller630d6f42002-01-22 23:17:30 +11002407channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002408{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002409 Channel *c = NULL;
2410 u_short host_port;
2411 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002412 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002413
Ben Lindstrome9c99912001-06-09 00:41:05 +00002414 remote_id = packet_get_int();
2415 host = packet_get_string(NULL);
2416 host_port = packet_get_int();
2417
2418 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2419 originator_string = packet_get_string(NULL);
2420 } else {
2421 originator_string = xstrdup("unknown (remote did not supply name)");
2422 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002423 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002424 c = channel_connect_to(host, host_port,
2425 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002426 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002427 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002428 if (c == NULL) {
2429 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2430 packet_put_int(remote_id);
2431 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002432 } else
2433 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002434}
2435
Damien Millerb84886b2008-05-19 15:05:07 +10002436/* ARGSUSED */
2437void
2438channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2439{
2440 Channel *c;
2441 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002442 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002443
2444 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002445 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002446
Damien Miller16a73072008-12-08 09:55:25 +11002447 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002448 packet_check_eom();
2449
Damien Miller16a73072008-12-08 09:55:25 +11002450 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002451
Damien Miller16a73072008-12-08 09:55:25 +11002452 if ((c = channel_lookup(id)) == NULL) {
2453 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002454 return;
2455 }
2456 ;
2457 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2458 return;
2459 cc->cb(type, c, cc->ctx);
2460 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2461 bzero(cc, sizeof(*cc));
2462 xfree(cc);
2463}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002464
Ben Lindstrome9c99912001-06-09 00:41:05 +00002465/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002466
Ben Lindstrom908afed2001-10-03 17:34:59 +00002467void
2468channel_set_af(int af)
2469{
2470 IPv4or6 = af;
2471}
2472
Darren Tucker34e314d2010-01-08 17:03:46 +11002473void
2474channel_set_rdomain(int rdomain)
2475{
2476 channel_rdomain = rdomain;
2477}
2478
Damien Millerb16461c2002-01-22 23:29:22 +11002479static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002480channel_setup_fwd_listener(int type, const char *listen_addr,
2481 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002482 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002483{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002484 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002485 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002486 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002487 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002488 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002489 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002490
Damien Millerb16461c2002-01-22 23:29:22 +11002491 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2492 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002493 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002494
Damien Millerb16461c2002-01-22 23:29:22 +11002495 if (host == NULL) {
2496 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002497 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002498 }
Damien Miller9576ac42009-01-28 16:30:33 +11002499 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002500 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002501 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002502 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002503
Damien Miller5428f641999-11-25 11:54:57 +11002504 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002505 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002506 * specified address or wildcard. On the client, a specified bind
2507 * address will always override gateway_ports. On the server, a
2508 * gateway_ports of 1 (``yes'') will override the client's
2509 * specification and force a wildcard bind, whereas a value of 2
2510 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002511 * asked for.
2512 *
2513 * Special-case listen_addrs are:
2514 *
2515 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2516 * "" (empty string), "*" -> wildcard v4/v6
2517 * "localhost" -> loopback v4/v6
2518 */
2519 addr = NULL;
2520 if (listen_addr == NULL) {
2521 /* No address specified: default to gateway_ports setting */
2522 if (gateway_ports)
2523 wildcard = 1;
2524 } else if (gateway_ports || is_client) {
2525 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002526 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002527 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2528 (!is_client && gateway_ports == 1))
2529 wildcard = 1;
2530 else if (strcmp(listen_addr, "localhost") != 0)
2531 addr = listen_addr;
2532 }
2533
2534 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2535 type, wildcard, (addr == NULL) ? "NULL" : addr);
2536
2537 /*
Damien Miller34132e52000-01-14 15:45:46 +11002538 * getaddrinfo returns a loopback address if the hostname is
2539 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002540 */
Damien Miller34132e52000-01-14 15:45:46 +11002541 memset(&hints, 0, sizeof(hints));
2542 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002543 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002544 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002545 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002546 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2547 if (addr == NULL) {
2548 /* This really shouldn't happen */
2549 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002550 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002551 } else {
Damien Millera7270302005-07-06 09:36:05 +10002552 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002553 "getaddrinfo(%.64s): %s", addr,
2554 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002555 }
Damien Millera7270302005-07-06 09:36:05 +10002556 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002557 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002558 if (allocated_listen_port != NULL)
2559 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002560 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002561 switch (ai->ai_family) {
2562 case AF_INET:
2563 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2564 sin_port;
2565 break;
2566 case AF_INET6:
2567 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2568 sin6_port;
2569 break;
2570 default:
Damien Miller34132e52000-01-14 15:45:46 +11002571 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002572 }
2573 /*
2574 * If allocating a port for -R forwards, then use the
2575 * same port for all address families.
2576 */
2577 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2578 allocated_listen_port != NULL && *allocated_listen_port > 0)
2579 *lport_p = htons(*allocated_listen_port);
2580
Damien Miller34132e52000-01-14 15:45:46 +11002581 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2582 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002583 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002584 continue;
2585 }
2586 /* Create a port to listen for the host. */
Darren Tucker34e314d2010-01-08 17:03:46 +11002587 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
2588 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11002589 if (sock < 0) {
2590 /* this is no error since kernel may not support ipv6 */
2591 verbose("socket: %.100s", strerror(errno));
2592 continue;
2593 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002594
2595 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002596 if (ai->ai_family == AF_INET6)
2597 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002598
Damien Miller4bf648f2009-02-14 16:28:21 +11002599 debug("Local forwarding listening on %s port %s.",
2600 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002601
Damien Miller34132e52000-01-14 15:45:46 +11002602 /* Bind the socket to the address. */
2603 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2604 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002605 if (!ai->ai_next)
2606 error("bind: %.100s", strerror(errno));
2607 else
2608 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002609
Damien Miller34132e52000-01-14 15:45:46 +11002610 close(sock);
2611 continue;
2612 }
2613 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002614 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002615 error("listen: %.100s", strerror(errno));
2616 close(sock);
2617 continue;
2618 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002619
2620 /*
2621 * listen_port == 0 requests a dynamically allocated port -
2622 * record what we got.
2623 */
2624 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2625 allocated_listen_port != NULL &&
2626 *allocated_listen_port == 0) {
2627 *allocated_listen_port = get_sock_port(sock, 1);
2628 debug("Allocated listen port %d",
2629 *allocated_listen_port);
2630 }
2631
Damien Miller34132e52000-01-14 15:45:46 +11002632 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002633 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002634 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002635 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002636 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002637 c->host_port = port_to_connect;
2638 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002639 success = 1;
2640 }
2641 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002642 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002643 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002644 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002645 return success;
Damien Miller95def091999-11-25 00:26:21 +11002646}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002647
Darren Tuckere7066df2004-05-24 10:18:05 +10002648int
2649channel_cancel_rport_listener(const char *host, u_short port)
2650{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002651 u_int i;
2652 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002653
Darren Tucker47eede72005-03-14 23:08:12 +11002654 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002655 Channel *c = channels[i];
2656
2657 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002658 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002659 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002660 channel_free(c);
2661 found = 1;
2662 }
2663 }
2664
2665 return (found);
2666}
2667
Damien Millerb16461c2002-01-22 23:29:22 +11002668/* protocol local port fwd, used by ssh (and sshd in v1) */
2669int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002670channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002671 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2672{
2673 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002674 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002675 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002676}
2677
2678/* protocol v2 remote port fwd, used by sshd */
2679int
2680channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002681 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002682{
2683 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002684 listen_address, listen_port, allocated_listen_port,
2685 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002686}
2687
Damien Miller5428f641999-11-25 11:54:57 +11002688/*
2689 * Initiate forwarding of connections to port "port" on remote host through
2690 * the secure channel to host:port from local side.
2691 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002692
Darren Tuckere7d4b192006-07-12 22:17:10 +10002693int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002694channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002695 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002696{
Damien Millerdff50992002-01-22 23:16:32 +11002697 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002698
Damien Miller95def091999-11-25 00:26:21 +11002699 /* Record locally that connection to this host/port is permitted. */
2700 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2701 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002702
Damien Miller95def091999-11-25 00:26:21 +11002703 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002704 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002705 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002706 if (listen_host == NULL) {
2707 if (datafellows & SSH_BUG_RFWD_ADDR)
2708 address_to_bind = "127.0.0.1";
2709 else
2710 address_to_bind = "localhost";
2711 } else if (*listen_host == '\0' ||
2712 strcmp(listen_host, "*") == 0) {
2713 if (datafellows & SSH_BUG_RFWD_ADDR)
2714 address_to_bind = "0.0.0.0";
2715 else
2716 address_to_bind = "";
2717 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002718 address_to_bind = listen_host;
2719
Damien Miller33b13562000-04-04 14:38:59 +10002720 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2721 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002722 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002723 packet_put_cstring(address_to_bind);
2724 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002725 packet_send();
2726 packet_write_wait();
2727 /* Assume that server accepts the request */
2728 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002729 } else {
2730 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002731 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002732 packet_put_cstring(host_to_connect);
2733 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002734 packet_send();
2735 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002736
2737 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002738 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002739 switch (type) {
2740 case SSH_SMSG_SUCCESS:
2741 success = 1;
2742 break;
2743 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002744 break;
2745 default:
2746 /* Unknown packet */
2747 packet_disconnect("Protocol error for port forward request:"
2748 "received packet type %d.", type);
2749 }
2750 }
2751 if (success) {
2752 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2753 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2754 permitted_opens[num_permitted_opens].listen_port = listen_port;
2755 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002756 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002757 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002758}
2759
Damien Miller5428f641999-11-25 11:54:57 +11002760/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002761 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002762 * local side.
2763 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002764void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002765channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002766{
2767 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002768
2769 if (!compat20)
2770 return;
2771
2772 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002773 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002774 permitted_opens[i].listen_port == port)
2775 break;
2776 }
2777 if (i >= num_permitted_opens) {
2778 debug("%s: requested forward not found", __func__);
2779 return;
2780 }
2781 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2782 packet_put_cstring("cancel-tcpip-forward");
2783 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002784 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002785 packet_put_int(port);
2786 packet_send();
2787
2788 permitted_opens[i].listen_port = 0;
2789 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002790 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002791 permitted_opens[i].host_to_connect = NULL;
2792}
2793
2794/*
Damien Miller5428f641999-11-25 11:54:57 +11002795 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2796 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002797 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002798 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002799int
Damien Millere247cc42000-05-07 12:03:14 +10002800channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002801{
Damien Milleraae6c611999-12-06 11:47:28 +11002802 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002803 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002804 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002805
Damien Miller95def091999-11-25 00:26:21 +11002806 /* Get arguments from the packet. */
2807 port = packet_get_int();
2808 hostname = packet_get_string(NULL);
2809 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002810
Damien Millerbac2d8a2000-09-05 16:13:06 +11002811#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002812 /*
2813 * Check that an unprivileged user is not trying to forward a
2814 * privileged port.
2815 */
Damien Miller95def091999-11-25 00:26:21 +11002816 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002817 packet_disconnect(
2818 "Requested forwarding of port %d but user is not root.",
2819 port);
2820 if (host_port == 0)
2821 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002822#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002823
Damien Miller0bc1bd82000-11-13 22:57:25 +11002824 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002825 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002826 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002827
2828 /* Free the argument string. */
2829 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002830
2831 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002832}
2833
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002834/*
2835 * Permits opening to any host/port if permitted_opens[] is empty. This is
2836 * usually called by the server, because the user could connect to any port
2837 * anyway, and the server has no way to know but to trust the client anyway.
2838 */
2839void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002840channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002841{
2842 if (num_permitted_opens == 0)
2843 all_opens_permitted = 1;
2844}
2845
Ben Lindstroma3700052001-04-05 23:26:32 +00002846void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002847channel_add_permitted_opens(char *host, int port)
2848{
2849 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002850 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002851 debug("allow port forwarding to host %s port %d", host, port);
2852
2853 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2854 permitted_opens[num_permitted_opens].port_to_connect = port;
2855 num_permitted_opens++;
2856
2857 all_opens_permitted = 0;
2858}
2859
Damien Millera765cf42006-07-24 14:08:13 +10002860int
Damien Miller9b439df2006-07-24 14:04:00 +10002861channel_add_adm_permitted_opens(char *host, int port)
2862{
2863 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2864 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002865 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002866
2867 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2868 = xstrdup(host);
2869 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002870 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002871}
2872
2873void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002874channel_clear_permitted_opens(void)
2875{
2876 int i;
2877
2878 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002879 if (permitted_opens[i].host_to_connect != NULL)
2880 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002881 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002882}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002883
Damien Miller9b439df2006-07-24 14:04:00 +10002884void
2885channel_clear_adm_permitted_opens(void)
2886{
2887 int i;
2888
2889 for (i = 0; i < num_adm_permitted_opens; i++)
2890 if (permitted_adm_opens[i].host_to_connect != NULL)
2891 xfree(permitted_adm_opens[i].host_to_connect);
2892 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002893}
2894
Darren Tuckere7140f22008-06-10 23:01:51 +10002895void
2896channel_print_adm_permitted_opens(void)
2897{
Damien Miller6ef17492008-07-16 22:42:06 +10002898 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10002899
Damien Millerb53d8a12009-01-28 16:13:04 +11002900 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11002901 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11002902 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11002903 return;
2904 }
Darren Tuckere7140f22008-06-10 23:01:51 +10002905 for (i = 0; i < num_adm_permitted_opens; i++)
2906 if (permitted_adm_opens[i].host_to_connect != NULL)
2907 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2908 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11002909 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10002910}
2911
Damien Millerbd740252008-05-19 15:37:09 +10002912/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002913static int
Damien Millerbd740252008-05-19 15:37:09 +10002914connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002915{
Damien Millerbd740252008-05-19 15:37:09 +10002916 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002917 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002918
Damien Millerbd740252008-05-19 15:37:09 +10002919 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2920 if (cctx->ai->ai_family != AF_INET &&
2921 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002922 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002923 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2924 ntop, sizeof(ntop), strport, sizeof(strport),
2925 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2926 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002927 continue;
2928 }
Darren Tucker34e314d2010-01-08 17:03:46 +11002929 if ((sock = socket_rdomain(cctx->ai->ai_family,
2930 cctx->ai->ai_socktype, cctx->ai->ai_protocol,
2931 channel_rdomain)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10002932 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002933 error("socket: %.100s", strerror(errno));
2934 else
2935 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002936 continue;
2937 }
Damien Miller232711f2004-06-15 10:35:30 +10002938 if (set_nonblock(sock) == -1)
2939 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002940 if (connect(sock, cctx->ai->ai_addr,
2941 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2942 debug("connect_next: host %.100s ([%.100s]:%s): "
2943 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002944 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002945 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002946 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002947 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002948 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002949 }
Damien Millerbd740252008-05-19 15:37:09 +10002950 debug("connect_next: host %.100s ([%.100s]:%s) "
2951 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2952 cctx->ai = cctx->ai->ai_next;
2953 set_nodelay(sock);
2954 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002955 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002956 return -1;
2957}
Damien Millerb38eff82000-04-01 11:09:21 +10002958
Damien Millerbd740252008-05-19 15:37:09 +10002959static void
2960channel_connect_ctx_free(struct channel_connect *cctx)
2961{
2962 xfree(cctx->host);
2963 if (cctx->aitop)
2964 freeaddrinfo(cctx->aitop);
2965 bzero(cctx, sizeof(*cctx));
2966 cctx->host = NULL;
2967 cctx->ai = cctx->aitop = NULL;
2968}
2969
2970/* Return CONNECTING channel to remote host, port */
2971static Channel *
2972connect_to(const char *host, u_short port, char *ctype, char *rname)
2973{
2974 struct addrinfo hints;
2975 int gaierr;
2976 int sock = -1;
2977 char strport[NI_MAXSERV];
2978 struct channel_connect cctx;
2979 Channel *c;
2980
Damien Miller2bcb8662008-07-12 17:12:29 +10002981 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10002982 memset(&hints, 0, sizeof(hints));
2983 hints.ai_family = IPv4or6;
2984 hints.ai_socktype = SOCK_STREAM;
2985 snprintf(strport, sizeof strport, "%d", port);
2986 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2987 error("connect_to %.100s: unknown host (%s)", host,
2988 ssh_gai_strerror(gaierr));
2989 return NULL;
2990 }
2991
2992 cctx.host = xstrdup(host);
2993 cctx.port = port;
2994 cctx.ai = cctx.aitop;
2995
2996 if ((sock = connect_next(&cctx)) == -1) {
2997 error("connect to %.100s port %d failed: %s",
2998 host, port, strerror(errno));
2999 channel_connect_ctx_free(&cctx);
3000 return NULL;
3001 }
3002 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3003 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3004 c->connect_ctx = cctx;
3005 return c;
3006}
3007
3008Channel *
3009channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3010{
3011 int i;
3012
3013 for (i = 0; i < num_permitted_opens; i++) {
3014 if (permitted_opens[i].host_to_connect != NULL &&
3015 permitted_opens[i].listen_port == listen_port) {
3016 return connect_to(
3017 permitted_opens[i].host_to_connect,
3018 permitted_opens[i].port_to_connect, ctype, rname);
3019 }
3020 }
3021 error("WARNING: Server requests forwarding for unknown listen_port %d",
3022 listen_port);
3023 return NULL;
3024}
3025
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003026/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003027Channel *
3028channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003029{
Damien Miller9b439df2006-07-24 14:04:00 +10003030 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003031
3032 permit = all_opens_permitted;
3033 if (!permit) {
3034 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003035 if (permitted_opens[i].host_to_connect != NULL &&
3036 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003037 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3038 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003039 }
Damien Miller9b439df2006-07-24 14:04:00 +10003040
3041 if (num_adm_permitted_opens > 0) {
3042 permit_adm = 0;
3043 for (i = 0; i < num_adm_permitted_opens; i++)
3044 if (permitted_adm_opens[i].host_to_connect != NULL &&
3045 permitted_adm_opens[i].port_to_connect == port &&
3046 strcmp(permitted_adm_opens[i].host_to_connect, host)
3047 == 0)
3048 permit_adm = 1;
3049 }
3050
3051 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003052 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003053 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003054 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003055 }
Damien Millerbd740252008-05-19 15:37:09 +10003056 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003057}
3058
Damien Miller0e220db2004-06-15 10:34:08 +10003059void
3060channel_send_window_changes(void)
3061{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003062 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003063 struct winsize ws;
3064
3065 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003066 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003067 channels[i]->type != SSH_CHANNEL_OPEN)
3068 continue;
3069 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3070 continue;
3071 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003072 packet_put_int((u_int)ws.ws_col);
3073 packet_put_int((u_int)ws.ws_row);
3074 packet_put_int((u_int)ws.ws_xpixel);
3075 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003076 packet_send();
3077 }
3078}
3079
Ben Lindstrome9c99912001-06-09 00:41:05 +00003080/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003081
Damien Miller5428f641999-11-25 11:54:57 +11003082/*
3083 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003084 * Returns 0 and a suitable display number for the DISPLAY variable
3085 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003086 */
Kevin Steves366298c2001-12-19 17:58:01 +00003087int
Damien Miller95c249f2002-02-05 12:11:34 +11003088x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003089 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003090{
Damien Millere7378562001-12-21 14:58:35 +11003091 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003092 int display_number, sock;
3093 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003094 struct addrinfo hints, *ai, *aitop;
3095 char strport[NI_MAXSERV];
3096 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003097
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003098 if (chanids == NULL)
3099 return -1;
3100
Damien Millera34a28b1999-12-14 10:47:15 +11003101 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003102 display_number < MAX_DISPLAYS;
3103 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003104 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003105 memset(&hints, 0, sizeof(hints));
3106 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003107 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003108 hints.ai_socktype = SOCK_STREAM;
3109 snprintf(strport, sizeof strport, "%d", port);
3110 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003111 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003112 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003113 }
Damien Miller34132e52000-01-14 15:45:46 +11003114 for (ai = aitop; ai; ai = ai->ai_next) {
3115 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3116 continue;
Darren Tucker34e314d2010-01-08 17:03:46 +11003117 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3118 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003119 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003120 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003121 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003122 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003123 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003124 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003125 debug("x11_create_display_inet: Socket family %d not supported",
3126 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003127 continue;
3128 }
Damien Miller34132e52000-01-14 15:45:46 +11003129 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003130 if (ai->ai_family == AF_INET6)
3131 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003132 if (x11_use_localhost)
3133 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003134 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003135 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003136 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003137
Damien Miller34132e52000-01-14 15:45:46 +11003138 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003139 close(socks[n]);
3140 }
3141 num_socks = 0;
3142 break;
3143 }
3144 socks[num_socks++] = sock;
3145 if (num_socks == NUM_SOCKS)
3146 break;
Damien Miller95def091999-11-25 00:26:21 +11003147 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003148 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003149 if (num_socks > 0)
3150 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003151 }
Damien Miller95def091999-11-25 00:26:21 +11003152 if (display_number >= MAX_DISPLAYS) {
3153 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003154 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003155 }
Damien Miller95def091999-11-25 00:26:21 +11003156 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003157 for (n = 0; n < num_socks; n++) {
3158 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003159 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003160 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003161 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003162 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003163 }
Damien Miller95def091999-11-25 00:26:21 +11003164 }
Damien Miller34132e52000-01-14 15:45:46 +11003165
Damien Miller34132e52000-01-14 15:45:46 +11003166 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003167 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003168 for (n = 0; n < num_socks; n++) {
3169 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003170 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003171 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3172 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003173 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003174 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003175 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003176 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003177 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003178
Kevin Steves366298c2001-12-19 17:58:01 +00003179 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003180 *display_numberp = display_number;
3181 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003182}
3183
Ben Lindstrombba81212001-06-25 05:01:22 +00003184static int
Damien Miller819dbb62009-01-21 16:46:26 +11003185connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003186{
Damien Miller95def091999-11-25 00:26:21 +11003187 int sock;
3188 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003189
Damien Miller3afe3752001-12-21 12:39:51 +11003190 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3191 if (sock < 0)
3192 error("socket: %.100s", strerror(errno));
3193 memset(&addr, 0, sizeof(addr));
3194 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003195 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003196 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003197 return sock;
3198 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003199 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3200 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003201}
3202
Damien Miller819dbb62009-01-21 16:46:26 +11003203static int
3204connect_local_xsocket(u_int dnr)
3205{
3206 char buf[1024];
3207 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3208 return connect_local_xsocket_path(buf);
3209}
3210
Damien Millerbd483e72000-04-30 10:00:53 +10003211int
3212x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003213{
Damien Miller57c4e872006-03-31 23:11:07 +11003214 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003215 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003216 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003217 struct addrinfo hints, *ai, *aitop;
3218 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003219 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003220
Damien Miller95def091999-11-25 00:26:21 +11003221 /* Try to open a socket for the local X server. */
3222 display = getenv("DISPLAY");
3223 if (!display) {
3224 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003225 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003226 }
Damien Miller5428f641999-11-25 11:54:57 +11003227 /*
3228 * Now we decode the value of the DISPLAY variable and make a
3229 * connection to the real X server.
3230 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003231
Damien Miller819dbb62009-01-21 16:46:26 +11003232 /* Check if the display is from launchd. */
3233#ifdef __APPLE__
3234 if (strncmp(display, "/tmp/launch", 11) == 0) {
3235 sock = connect_local_xsocket_path(display);
3236 if (sock < 0)
3237 return -1;
3238
3239 /* OK, we now have a connection to the display. */
3240 return sock;
3241 }
3242#endif
Damien Miller5428f641999-11-25 11:54:57 +11003243 /*
3244 * Check if it is a unix domain socket. Unix domain displays are in
3245 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3246 */
Damien Miller95def091999-11-25 00:26:21 +11003247 if (strncmp(display, "unix:", 5) == 0 ||
3248 display[0] == ':') {
3249 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003250 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003251 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003252 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003253 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003254 }
3255 /* Create a socket. */
3256 sock = connect_local_xsocket(display_number);
3257 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003258 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003259
3260 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003261 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003262 }
Damien Miller5428f641999-11-25 11:54:57 +11003263 /*
3264 * Connect to an inet socket. The DISPLAY value is supposedly
3265 * hostname:d[.s], where hostname may also be numeric IP address.
3266 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003267 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003268 cp = strchr(buf, ':');
3269 if (!cp) {
3270 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003271 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003272 }
Damien Miller95def091999-11-25 00:26:21 +11003273 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003274 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003275 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003276 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003277 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003278 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003279 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003280
Damien Miller34132e52000-01-14 15:45:46 +11003281 /* Look up the host address */
3282 memset(&hints, 0, sizeof(hints));
3283 hints.ai_family = IPv4or6;
3284 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003285 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003286 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003287 error("%.100s: unknown host. (%s)", buf,
3288 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003289 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003290 }
Damien Miller34132e52000-01-14 15:45:46 +11003291 for (ai = aitop; ai; ai = ai->ai_next) {
3292 /* Create a socket. */
Darren Tucker34e314d2010-01-08 17:03:46 +11003293 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3294 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003295 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003296 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003297 continue;
3298 }
3299 /* Connect it to the display. */
3300 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003301 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003302 6000 + display_number, strerror(errno));
3303 close(sock);
3304 continue;
3305 }
3306 /* Success */
3307 break;
Damien Miller34132e52000-01-14 15:45:46 +11003308 }
Damien Miller34132e52000-01-14 15:45:46 +11003309 freeaddrinfo(aitop);
3310 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003311 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003312 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003313 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003314 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003315 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003316 return sock;
3317}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003318
Damien Millerbd483e72000-04-30 10:00:53 +10003319/*
3320 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3321 * the remote channel number. We should do whatever we want, and respond
3322 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3323 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003324
Damien Miller8473dd82006-07-24 14:08:32 +10003325/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003326void
Damien Miller630d6f42002-01-22 23:17:30 +11003327x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003328{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003329 Channel *c = NULL;
3330 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003331 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003332
3333 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003334
3335 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003336
3337 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003338 remote_host = packet_get_string(NULL);
3339 } else {
3340 remote_host = xstrdup("unknown (remote did not supply name)");
3341 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003342 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003343
3344 /* Obtain a connection to the real X display. */
3345 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003346 if (sock != -1) {
3347 /* Allocate a channel for this connection. */
3348 c = channel_new("connected x11 socket",
3349 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3350 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003351 c->remote_id = remote_id;
3352 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003353 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003354 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003355 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003356 /* Send refusal to the remote host. */
3357 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003358 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003359 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003360 /* Send a confirmation to the remote host. */
3361 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003362 packet_put_int(remote_id);
3363 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003364 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003365 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003366}
3367
Damien Miller69b69aa2000-10-28 14:19:58 +11003368/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003369/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003370void
Damien Miller630d6f42002-01-22 23:17:30 +11003371deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003372{
3373 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003374
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003375 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003376 case SSH_SMSG_AGENT_OPEN:
3377 error("Warning: ssh server tried agent forwarding.");
3378 break;
3379 case SSH_SMSG_X11_OPEN:
3380 error("Warning: ssh server tried X11 forwarding.");
3381 break;
3382 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003383 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003384 break;
3385 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003386 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003387 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3388 packet_put_int(rchan);
3389 packet_send();
3390}
3391
Damien Miller5428f641999-11-25 11:54:57 +11003392/*
3393 * Requests forwarding of X11 connections, generates fake authentication
3394 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003395 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003396 */
Damien Miller4af51302000-04-16 11:18:38 +10003397void
Damien Miller17e7ed02005-06-17 12:54:33 +10003398x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003399 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003400{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003401 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003402 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003403 char *new_data;
3404 int screen_number;
3405 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003406 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003407
Damien Millerf92c0792005-07-06 09:45:26 +10003408 if (x11_saved_display == NULL)
3409 x11_saved_display = xstrdup(disp);
3410 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003411 error("x11_request_forwarding_with_spoofing: different "
3412 "$DISPLAY already forwarded");
3413 return;
3414 }
3415
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003416 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003417 if (cp)
3418 cp = strchr(cp, '.');
3419 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003420 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003421 else
3422 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003423
Damien Miller13390022005-07-06 09:44:19 +10003424 if (x11_saved_proto == NULL) {
3425 /* Save protocol name. */
3426 x11_saved_proto = xstrdup(proto);
3427 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003428 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003429 * of the same length.
3430 */
3431 x11_saved_data = xmalloc(data_len);
3432 x11_fake_data = xmalloc(data_len);
3433 for (i = 0; i < data_len; i++) {
3434 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3435 fatal("x11_request_forwarding: bad "
3436 "authentication data: %.100s", data);
3437 if (i % 4 == 0)
3438 rnd = arc4random();
3439 x11_saved_data[i] = value;
3440 x11_fake_data[i] = rnd & 0xff;
3441 rnd >>= 8;
3442 }
3443 x11_saved_data_len = data_len;
3444 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003445 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003446
Damien Miller95def091999-11-25 00:26:21 +11003447 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003448 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003449
Damien Miller95def091999-11-25 00:26:21 +11003450 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003451 if (compat20) {
3452 channel_request_start(client_session_id, "x11-req", 0);
3453 packet_put_char(0); /* XXX bool single connection */
3454 } else {
3455 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3456 }
3457 packet_put_cstring(proto);
3458 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003459 packet_put_int(screen_number);
3460 packet_send();
3461 packet_write_wait();
3462 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003463}
3464
Ben Lindstrome9c99912001-06-09 00:41:05 +00003465
3466/* -- agent forwarding */
3467
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003468/* Sends a message to the server to request authentication fd forwarding. */
3469
Damien Miller4af51302000-04-16 11:18:38 +10003470void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003471auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003472{
Damien Miller95def091999-11-25 00:26:21 +11003473 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3474 packet_send();
3475 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003476}