blob: 94939239022df3867337d554afc3d14a39c28af0 [file] [log] [blame]
Darren Tucker876045b2010-01-08 17:08:00 +11001/* $OpenBSD: channels.c,v 1.299 2009/11/11 21:37:03 markus 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;
Darren Tucker876045b2010-01-08 17:08:00 +1100334 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000335 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100336 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000337 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000339
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000340static int
341channel_find_maxfd(void)
342{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000343 u_int i;
344 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000345 Channel *c;
346
347 for (i = 0; i < channels_alloc; i++) {
348 c = channels[i];
349 if (c != NULL) {
350 max = MAX(max, c->rfd);
351 max = MAX(max, c->wfd);
352 max = MAX(max, c->efd);
353 }
354 }
355 return max;
356}
357
358int
359channel_close_fd(int *fdp)
360{
361 int ret = 0, fd = *fdp;
362
363 if (fd != -1) {
364 ret = close(fd);
365 *fdp = -1;
366 if (fd == channel_max_fd)
367 channel_max_fd = channel_find_maxfd();
368 }
369 return ret;
370}
371
Damien Miller6f83b8e2000-05-02 09:23:45 +1000372/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000374channel_close_fds(Channel *c)
375{
Damien Miller0e220db2004-06-15 10:34:08 +1000376 debug3("channel %d: close_fds r %d w %d e %d c %d",
377 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000378
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000379 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000380 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000381 channel_close_fd(&c->rfd);
382 channel_close_fd(&c->wfd);
383 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000384}
385
386/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000387void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000388channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000389{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000390 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000391 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000392 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000393
394 for (n = 0, i = 0; i < channels_alloc; i++)
395 if (channels[i])
396 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000397 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000398 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000399
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000400 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000401 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000402 xfree(s);
403
Damien Miller6f83b8e2000-05-02 09:23:45 +1000404 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000405 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000406 if (c->ctl_fd != -1)
407 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000408 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000409 buffer_free(&c->input);
410 buffer_free(&c->output);
411 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000412 if (c->remote_name) {
413 xfree(c->remote_name);
414 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100415 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100416 if (c->path) {
417 xfree(c->path);
418 c->path = NULL;
419 }
Damien Millerb84886b2008-05-19 15:05:07 +1000420 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
421 if (cc->abandon_cb != NULL)
422 cc->abandon_cb(c, cc->ctx);
423 TAILQ_REMOVE(&c->status_confirms, cc, entry);
424 bzero(cc, sizeof(*cc));
425 xfree(cc);
426 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000427 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
428 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000429 channels[c->self] = NULL;
430 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431}
432
Ben Lindstrome9c99912001-06-09 00:41:05 +0000433void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000434channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000436 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437
Ben Lindstrom601e4362001-06-21 03:19:23 +0000438 for (i = 0; i < channels_alloc; i++)
439 if (channels[i] != NULL)
440 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441}
442
443/*
444 * Closes the sockets/fds of all channels. This is used to close extra file
445 * descriptors after a fork.
446 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000448channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000450 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451
452 for (i = 0; i < channels_alloc; i++)
453 if (channels[i] != NULL)
454 channel_close_fds(channels[i]);
455}
456
457/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000458 * Stop listening to channels.
459 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460void
461channel_stop_listening(void)
462{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000463 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000464 Channel *c;
465
466 for (i = 0; i < channels_alloc; i++) {
467 c = channels[i];
468 if (c != NULL) {
469 switch (c->type) {
470 case SSH_CHANNEL_AUTH_SOCKET:
471 case SSH_CHANNEL_PORT_LISTENER:
472 case SSH_CHANNEL_RPORT_LISTENER:
473 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000474 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000475 channel_free(c);
476 break;
477 }
478 }
479 }
480}
481
482/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000483 * Returns true if no channel has too much buffered data, and false if one or
484 * more channel is overfull.
485 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000486int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000487channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488{
489 u_int i;
490 Channel *c;
491
492 for (i = 0; i < channels_alloc; i++) {
493 c = channels[i];
494 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000495#if 0
496 if (!compat20 &&
497 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100498 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000499 c->self, buffer_len(&c->input));
500 return 0;
501 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000502#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000503 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000504 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000505 c->self, buffer_len(&c->output),
506 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000507 return 0;
508 }
509 }
510 }
511 return 1;
512}
513
514/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000515int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000516channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000518 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000519 Channel *c;
520
521 for (i = 0; i < channels_alloc; i++) {
522 c = channels[i];
523 if (c == NULL)
524 continue;
525 switch (c->type) {
526 case SSH_CHANNEL_X11_LISTENER:
527 case SSH_CHANNEL_PORT_LISTENER:
528 case SSH_CHANNEL_RPORT_LISTENER:
529 case SSH_CHANNEL_CLOSED:
530 case SSH_CHANNEL_AUTH_SOCKET:
531 case SSH_CHANNEL_DYNAMIC:
532 case SSH_CHANNEL_CONNECTING:
533 case SSH_CHANNEL_ZOMBIE:
534 continue;
535 case SSH_CHANNEL_LARVAL:
536 if (!compat20)
537 fatal("cannot happen: SSH_CHANNEL_LARVAL");
538 continue;
539 case SSH_CHANNEL_OPENING:
540 case SSH_CHANNEL_OPEN:
541 case SSH_CHANNEL_X11_OPEN:
542 return 1;
543 case SSH_CHANNEL_INPUT_DRAINING:
544 case SSH_CHANNEL_OUTPUT_DRAINING:
545 if (!compat13)
546 fatal("cannot happen: OUT_DRAIN");
547 return 1;
548 default:
549 fatal("channel_still_open: bad channel type %d", c->type);
550 /* NOTREACHED */
551 }
552 }
553 return 0;
554}
555
556/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000558channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000560 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561 Channel *c;
562
563 for (i = 0; i < channels_alloc; i++) {
564 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000565 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566 continue;
567 switch (c->type) {
568 case SSH_CHANNEL_CLOSED:
569 case SSH_CHANNEL_DYNAMIC:
570 case SSH_CHANNEL_X11_LISTENER:
571 case SSH_CHANNEL_PORT_LISTENER:
572 case SSH_CHANNEL_RPORT_LISTENER:
573 case SSH_CHANNEL_OPENING:
574 case SSH_CHANNEL_CONNECTING:
575 case SSH_CHANNEL_ZOMBIE:
576 continue;
577 case SSH_CHANNEL_LARVAL:
578 case SSH_CHANNEL_AUTH_SOCKET:
579 case SSH_CHANNEL_OPEN:
580 case SSH_CHANNEL_X11_OPEN:
581 return i;
582 case SSH_CHANNEL_INPUT_DRAINING:
583 case SSH_CHANNEL_OUTPUT_DRAINING:
584 if (!compat13)
585 fatal("cannot happen: OUT_DRAIN");
586 return i;
587 default:
588 fatal("channel_find_open: bad channel type %d", c->type);
589 /* NOTREACHED */
590 }
591 }
592 return -1;
593}
594
595
596/*
597 * Returns a message describing the currently open forwarded connections,
598 * suitable for sending to the client. The message contains crlf pairs for
599 * newlines.
600 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000601char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000602channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000603{
604 Buffer buffer;
605 Channel *c;
606 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000607 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000608
609 buffer_init(&buffer);
610 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
611 buffer_append(&buffer, buf, strlen(buf));
612 for (i = 0; i < channels_alloc; i++) {
613 c = channels[i];
614 if (c == NULL)
615 continue;
616 switch (c->type) {
617 case SSH_CHANNEL_X11_LISTENER:
618 case SSH_CHANNEL_PORT_LISTENER:
619 case SSH_CHANNEL_RPORT_LISTENER:
620 case SSH_CHANNEL_CLOSED:
621 case SSH_CHANNEL_AUTH_SOCKET:
622 case SSH_CHANNEL_ZOMBIE:
623 continue;
624 case SSH_CHANNEL_LARVAL:
625 case SSH_CHANNEL_OPENING:
626 case SSH_CHANNEL_CONNECTING:
627 case SSH_CHANNEL_DYNAMIC:
628 case SSH_CHANNEL_OPEN:
629 case SSH_CHANNEL_X11_OPEN:
630 case SSH_CHANNEL_INPUT_DRAINING:
631 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000632 snprintf(buf, sizeof buf,
633 " #%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 +0000634 c->self, c->remote_name,
635 c->type, c->remote_id,
636 c->istate, buffer_len(&c->input),
637 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000638 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000639 buffer_append(&buffer, buf, strlen(buf));
640 continue;
641 default:
642 fatal("channel_open_message: bad channel type %d", c->type);
643 /* NOTREACHED */
644 }
645 }
646 buffer_append(&buffer, "\0", 1);
647 cp = xstrdup(buffer_ptr(&buffer));
648 buffer_free(&buffer);
649 return cp;
650}
651
652void
653channel_send_open(int id)
654{
655 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000656
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000658 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 return;
660 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000661 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 packet_start(SSH2_MSG_CHANNEL_OPEN);
663 packet_put_cstring(c->ctype);
664 packet_put_int(c->self);
665 packet_put_int(c->local_window);
666 packet_put_int(c->local_maxpacket);
667 packet_send();
668}
669
670void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000671channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000673 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000674
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000676 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 return;
678 }
Damien Miller0e220db2004-06-15 10:34:08 +1000679 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 packet_start(SSH2_MSG_CHANNEL_REQUEST);
681 packet_put_int(c->remote_id);
682 packet_put_cstring(service);
683 packet_put_char(wantconfirm);
684}
Damien Miller4f7becb2006-03-26 14:10:14 +1100685
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686void
Damien Millerb84886b2008-05-19 15:05:07 +1000687channel_register_status_confirm(int id, channel_confirm_cb *cb,
688 channel_confirm_abandon_cb *abandon_cb, void *ctx)
689{
690 struct channel_confirm *cc;
691 Channel *c;
692
693 if ((c = channel_lookup(id)) == NULL)
694 fatal("channel_register_expect: %d: bad id", id);
695
696 cc = xmalloc(sizeof(*cc));
697 cc->cb = cb;
698 cc->abandon_cb = abandon_cb;
699 cc->ctx = ctx;
700 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
701}
702
703void
704channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705{
706 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000707
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100709 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000710 return;
711 }
Damien Millerb84886b2008-05-19 15:05:07 +1000712 c->open_confirm = fn;
713 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714}
Damien Miller4f7becb2006-03-26 14:10:14 +1100715
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716void
Damien Miller39eda6e2005-11-05 14:52:50 +1100717channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718{
Damien Millerd47c62a2005-12-13 19:33:57 +1100719 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000720
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000722 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000723 return;
724 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000725 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100726 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727}
Damien Miller4f7becb2006-03-26 14:10:14 +1100728
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729void
730channel_cancel_cleanup(int id)
731{
Damien Millerd47c62a2005-12-13 19:33:57 +1100732 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000733
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000735 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 return;
737 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000738 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100739 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740}
Damien Miller4f7becb2006-03-26 14:10:14 +1100741
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742void
Damien Miller077b2382005-12-31 16:22:32 +1100743channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000744 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745{
746 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000747
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000749 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750 return;
751 }
Damien Miller077b2382005-12-31 16:22:32 +1100752 c->input_filter = ifn;
753 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000754 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000755 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756}
757
758void
759channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000760 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761{
762 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000763
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
765 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000766 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100768 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
770 packet_put_int(c->remote_id);
771 packet_put_int(c->local_window);
772 packet_send();
773}
774
Damien Miller5428f641999-11-25 11:54:57 +1100775/*
Damien Millerb38eff82000-04-01 11:09:21 +1000776 * 'channel_pre*' are called just before select() to add any bits relevant to
777 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100778 */
Damien Millerb38eff82000-04-01 11:09:21 +1000779/*
780 * 'channel_post*': perform any appropriate operations for channels which
781 * have events pending.
782 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100783typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000784chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
785chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
786
Damien Miller8473dd82006-07-24 14:08:32 +1000787/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100789channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000790{
791 FD_SET(c->sock, readset);
792}
793
Damien Miller8473dd82006-07-24 14:08:32 +1000794/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100796channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000797{
798 debug3("channel %d: waiting for connection", c->self);
799 FD_SET(c->sock, writeset);
800}
801
Ben Lindstrombba81212001-06-25 05:01:22 +0000802static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100803channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000804{
805 if (buffer_len(&c->input) < packet_get_maxsize())
806 FD_SET(c->sock, readset);
807 if (buffer_len(&c->output) > 0)
808 FD_SET(c->sock, writeset);
809}
810
Ben Lindstrombba81212001-06-25 05:01:22 +0000811static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100812channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000813{
Damien Millerde6987c2002-01-22 23:20:40 +1100814 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000815
Damien Miller33b13562000-04-04 14:38:59 +1000816 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100817 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000818 buffer_len(&c->input) < limit &&
819 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000820 FD_SET(c->rfd, readset);
821 if (c->ostate == CHAN_OUTPUT_OPEN ||
822 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
823 if (buffer_len(&c->output) > 0) {
824 FD_SET(c->wfd, writeset);
825 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000826 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000827 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
828 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000829 else
830 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000831 }
832 }
833 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000834 if (compat20 && c->efd != -1 &&
835 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000836 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
837 buffer_len(&c->extended) > 0)
838 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000839 else if (!(c->flags & CHAN_EOF_SENT) &&
840 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000841 buffer_len(&c->extended) < c->remote_window)
842 FD_SET(c->efd, readset);
843 }
Damien Miller0e220db2004-06-15 10:34:08 +1000844 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000845 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000846 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
847 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000848}
849
Damien Miller8473dd82006-07-24 14:08:32 +1000850/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000851static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100852channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000853{
854 if (buffer_len(&c->input) == 0) {
855 packet_start(SSH_MSG_CHANNEL_CLOSE);
856 packet_put_int(c->remote_id);
857 packet_send();
858 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000859 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000860 }
861}
862
Damien Miller8473dd82006-07-24 14:08:32 +1000863/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000864static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100865channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000866{
867 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000868 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000869 else
Damien Millerb38eff82000-04-01 11:09:21 +1000870 FD_SET(c->sock, writeset);
871}
872
873/*
874 * This is a special state for X11 authentication spoofing. An opened X11
875 * connection (when authentication spoofing is being done) remains in this
876 * state until the first packet has been completely read. The authentication
877 * data in that packet is then substituted by the real data if it matches the
878 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000879 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000880 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000881 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000882static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000883x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000884{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000885 u_char *ucp;
886 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000887
888 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000889 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000890 return 0;
891
892 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100893 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000894 if (ucp[0] == 0x42) { /* Byte order MSB first. */
895 proto_len = 256 * ucp[6] + ucp[7];
896 data_len = 256 * ucp[8] + ucp[9];
897 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
898 proto_len = ucp[6] + 256 * ucp[7];
899 data_len = ucp[8] + 256 * ucp[9];
900 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000901 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100902 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000903 return -1;
904 }
905
906 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000907 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000908 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
909 return 0;
910
911 /* Check if authentication protocol matches. */
912 if (proto_len != strlen(x11_saved_proto) ||
913 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000914 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000915 return -1;
916 }
917 /* Check if authentication data matches our fake data. */
918 if (data_len != x11_fake_data_len ||
919 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
920 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000921 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000922 return -1;
923 }
924 /* Check fake data length */
925 if (x11_fake_data_len != x11_saved_data_len) {
926 error("X11 fake_data_len %d != saved_data_len %d",
927 x11_fake_data_len, x11_saved_data_len);
928 return -1;
929 }
930 /*
931 * Received authentication protocol and data match
932 * our fake data. Substitute the fake data with real
933 * data.
934 */
935 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
936 x11_saved_data, x11_saved_data_len);
937 return 1;
938}
939
Ben Lindstrombba81212001-06-25 05:01:22 +0000940static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100941channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000942{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000943 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000944
Damien Millerb38eff82000-04-01 11:09:21 +1000945 if (ret == 1) {
946 /* Start normal processing for the channel. */
947 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000948 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000949 } else if (ret == -1) {
950 /*
951 * We have received an X11 connection that has bad
952 * authentication information.
953 */
Damien Miller996acd22003-04-09 20:59:48 +1000954 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000955 buffer_clear(&c->input);
956 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000957 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000958 c->sock = -1;
959 c->type = SSH_CHANNEL_CLOSED;
960 packet_start(SSH_MSG_CHANNEL_CLOSE);
961 packet_put_int(c->remote_id);
962 packet_send();
963 }
964}
965
Ben Lindstrombba81212001-06-25 05:01:22 +0000966static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100967channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000968{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000969 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000970
971 /* c->force_drain = 1; */
972
Damien Millerb38eff82000-04-01 11:09:21 +1000973 if (ret == 1) {
974 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100975 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000976 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000977 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000978 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100979 chan_read_failed(c);
980 buffer_clear(&c->input);
981 chan_ibuf_empty(c);
982 buffer_clear(&c->output);
983 /* for proto v1, the peer will send an IEOF */
984 if (compat20)
985 chan_write_failed(c);
986 else
987 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000988 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000989 }
990}
991
Ben Lindstromb3921512001-04-11 15:57:50 +0000992/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000993/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000994static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100995channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000996{
Damien Millera10f5612002-09-12 09:49:15 +1000997 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +1100998 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100999 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001000 struct {
1001 u_int8_t version;
1002 u_int8_t command;
1003 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001004 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001005 } s4_req, s4_rsp;
1006
Ben Lindstromb3921512001-04-11 15:57:50 +00001007 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001008
1009 have = buffer_len(&c->input);
1010 len = sizeof(s4_req);
1011 if (have < len)
1012 return 0;
1013 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001014
1015 need = 1;
1016 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1017 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1018 debug2("channel %d: socks4a request", c->self);
1019 /* ... and needs an extra string (the hostname) */
1020 need = 2;
1021 }
1022 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001023 for (found = 0, i = len; i < have; i++) {
1024 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001025 found++;
1026 if (found == need)
1027 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001028 }
1029 if (i > 1024) {
1030 /* the peer is probably sending garbage */
1031 debug("channel %d: decode socks4: too long",
1032 c->self);
1033 return -1;
1034 }
1035 }
Damien Miller1781f532009-01-28 16:24:41 +11001036 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001037 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001038 buffer_get(&c->input, (char *)&s4_req.version, 1);
1039 buffer_get(&c->input, (char *)&s4_req.command, 1);
1040 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001041 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001042 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001043 p = buffer_ptr(&c->input);
1044 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001045 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001046 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001047 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001048 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001049 c->self, len, have);
1050 strlcpy(username, p, sizeof(username));
1051 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001052
Damien Millera1c1b6c2009-01-28 16:29:49 +11001053 if (c->path != NULL) {
1054 xfree(c->path);
1055 c->path = NULL;
1056 }
Damien Miller1781f532009-01-28 16:24:41 +11001057 if (need == 1) { /* SOCKS4: one string */
1058 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001059 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001060 } else { /* SOCKS4A: two strings */
1061 have = buffer_len(&c->input);
1062 p = buffer_ptr(&c->input);
1063 len = strlen(p);
1064 debug2("channel %d: decode socks4a: host %s/%d",
1065 c->self, p, len);
1066 len++; /* trailing '\0' */
1067 if (len > have)
1068 fatal("channel %d: decode socks4a: len %d > have %d",
1069 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001070 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001071 error("channel %d: hostname \"%.100s\" too long",
1072 c->self, p);
1073 return -1;
1074 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001075 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001076 buffer_consume(&c->input, len);
1077 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001078 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001079
Damien Millerfbdeece2003-09-02 22:52:31 +10001080 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001081 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001082
Ben Lindstromb3921512001-04-11 15:57:50 +00001083 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001084 debug("channel %d: cannot handle: %s cn %d",
1085 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001086 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001087 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001088 s4_rsp.version = 0; /* vn: 0 for reply */
1089 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001090 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001091 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001092 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001093 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001094}
1095
Darren Tucker46471c92003-07-03 13:55:19 +10001096/* try to decode a socks5 header */
1097#define SSH_SOCKS5_AUTHDONE 0x1000
1098#define SSH_SOCKS5_NOAUTH 0x00
1099#define SSH_SOCKS5_IPV4 0x01
1100#define SSH_SOCKS5_DOMAIN 0x03
1101#define SSH_SOCKS5_IPV6 0x04
1102#define SSH_SOCKS5_CONNECT 0x01
1103#define SSH_SOCKS5_SUCCESS 0x00
1104
Damien Miller8473dd82006-07-24 14:08:32 +10001105/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001106static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001107channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001108{
1109 struct {
1110 u_int8_t version;
1111 u_int8_t command;
1112 u_int8_t reserved;
1113 u_int8_t atyp;
1114 } s5_req, s5_rsp;
1115 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001116 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001117 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001118
1119 debug2("channel %d: decode socks5", c->self);
1120 p = buffer_ptr(&c->input);
1121 if (p[0] != 0x05)
1122 return -1;
1123 have = buffer_len(&c->input);
1124 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1125 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001126 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001127 return 0;
1128 nmethods = p[1];
1129 if (have < nmethods + 2)
1130 return 0;
1131 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001132 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001133 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001134 found = 1;
1135 break;
1136 }
1137 }
1138 if (!found) {
1139 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1140 c->self);
1141 return -1;
1142 }
1143 buffer_consume(&c->input, nmethods + 2);
1144 buffer_put_char(&c->output, 0x05); /* version */
1145 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1146 FD_SET(c->sock, writeset);
1147 c->flags |= SSH_SOCKS5_AUTHDONE;
1148 debug2("channel %d: socks5 auth done", c->self);
1149 return 0; /* need more */
1150 }
1151 debug2("channel %d: socks5 post auth", c->self);
1152 if (have < sizeof(s5_req)+1)
1153 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001154 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001155 if (s5_req.version != 0x05 ||
1156 s5_req.command != SSH_SOCKS5_CONNECT ||
1157 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001158 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001159 return -1;
1160 }
Darren Tucker47eede72005-03-14 23:08:12 +11001161 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001162 case SSH_SOCKS5_IPV4:
1163 addrlen = 4;
1164 af = AF_INET;
1165 break;
1166 case SSH_SOCKS5_DOMAIN:
1167 addrlen = p[sizeof(s5_req)];
1168 af = -1;
1169 break;
1170 case SSH_SOCKS5_IPV6:
1171 addrlen = 16;
1172 af = AF_INET6;
1173 break;
1174 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001175 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001176 return -1;
1177 }
Damien Miller0f077072006-07-10 22:21:02 +10001178 need = sizeof(s5_req) + addrlen + 2;
1179 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1180 need++;
1181 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001182 return 0;
1183 buffer_consume(&c->input, sizeof(s5_req));
1184 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1185 buffer_consume(&c->input, 1); /* host string length */
1186 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1187 buffer_get(&c->input, (char *)&dest_port, 2);
1188 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001189 if (c->path != NULL) {
1190 xfree(c->path);
1191 c->path = NULL;
1192 }
1193 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001194 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001195 error("channel %d: dynamic request: socks5 hostname "
1196 "\"%.100s\" too long", c->self, dest_addr);
1197 return -1;
1198 }
1199 c->path = xstrdup(dest_addr);
1200 } else {
1201 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1202 return -1;
1203 c->path = xstrdup(ntop);
1204 }
Darren Tucker46471c92003-07-03 13:55:19 +10001205 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001206
Damien Millerfbdeece2003-09-02 22:52:31 +10001207 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001208 c->self, c->path, c->host_port, s5_req.command);
1209
1210 s5_rsp.version = 0x05;
1211 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1212 s5_rsp.reserved = 0; /* ignored */
1213 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1214 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1215 dest_port = 0; /* ignored */
1216
Damien Millera0fdce92006-03-26 14:28:50 +11001217 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1218 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1219 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001220 return 1;
1221}
1222
Ben Lindstromb3921512001-04-11 15:57:50 +00001223/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001224static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001225channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001226{
1227 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001228 u_int have;
1229 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001230
1231 have = buffer_len(&c->input);
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
Darren Tucker876045b2010-01-08 17:08:00 +11001435 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001436 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001437 }
1438}
1439
1440/*
1441 * This is the authentication agent socket listening for connections from
1442 * clients.
1443 */
Damien Miller8473dd82006-07-24 14:08:32 +10001444/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001445static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001446channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001447{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001448 Channel *nc;
1449 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001450 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001451 socklen_t addrlen;
1452
1453 if (FD_ISSET(c->sock, readset)) {
1454 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001455 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001456 if (newsock < 0) {
1457 error("accept from auth socket: %.100s", strerror(errno));
1458 return;
1459 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001460 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001461 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1462 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001463 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001464 if (compat20) {
1465 packet_start(SSH2_MSG_CHANNEL_OPEN);
1466 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001467 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001468 packet_put_int(c->local_window_max);
1469 packet_put_int(c->local_maxpacket);
1470 } else {
1471 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001472 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001473 }
Damien Millerb38eff82000-04-01 11:09:21 +10001474 packet_send();
1475 }
1476}
1477
Damien Miller8473dd82006-07-24 14:08:32 +10001478/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001479static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001480channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001481{
Damien Millerbd740252008-05-19 15:37:09 +10001482 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001483 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001484
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001485 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001486 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001487 err = errno;
1488 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001489 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001490 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001491 debug("channel %d: connected to %s port %d",
1492 c->self, c->connect_ctx.host, c->connect_ctx.port);
1493 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001494 c->type = SSH_CHANNEL_OPEN;
1495 if (compat20) {
1496 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1497 packet_put_int(c->remote_id);
1498 packet_put_int(c->self);
1499 packet_put_int(c->local_window);
1500 packet_put_int(c->local_maxpacket);
1501 } else {
1502 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1503 packet_put_int(c->remote_id);
1504 packet_put_int(c->self);
1505 }
1506 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001507 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001508 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001509 /* Try next address, if any */
1510 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1511 close(c->sock);
1512 c->sock = c->rfd = c->wfd = sock;
1513 channel_max_fd = channel_find_maxfd();
1514 return;
1515 }
1516 /* Exhausted all addresses */
1517 error("connect_to %.100s port %d: failed.",
1518 c->connect_ctx.host, c->connect_ctx.port);
1519 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001520 if (compat20) {
1521 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1522 packet_put_int(c->remote_id);
1523 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1524 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1525 packet_put_cstring(strerror(err));
1526 packet_put_cstring("");
1527 }
1528 } else {
1529 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1530 packet_put_int(c->remote_id);
1531 }
1532 chan_mark_dead(c);
1533 }
1534 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001535 }
1536}
1537
Damien Miller8473dd82006-07-24 14:08:32 +10001538/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001539static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001540channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001541{
Darren Tucker11327cc2005-03-14 23:22:25 +11001542 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001543 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001544
Damien Miller835284b2007-06-11 13:03:16 +10001545 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1546 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001547 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001548 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001549 if (len < 0 && (errno == EINTR ||
1550 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001551 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001552#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001553 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001554#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001555 if ((!c->isatty && len <= 0) ||
1556 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001557#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001558 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001559 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001560 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001561 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001562 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001563 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001564 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001565 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001566 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001567 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001568 } else {
1569 chan_read_failed(c);
1570 }
1571 return -1;
1572 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001573 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001574 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001575 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001576 chan_read_failed(c);
1577 }
Damien Millerd27b9472005-12-13 19:29:02 +11001578 } else if (c->datagram) {
1579 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001580 } else {
1581 buffer_append(&c->input, buf, len);
1582 }
Damien Millerb38eff82000-04-01 11:09:21 +10001583 }
1584 return 1;
1585}
Damien Miller4f7becb2006-03-26 14:10:14 +11001586
Damien Miller8473dd82006-07-24 14:08:32 +10001587/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001588static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001589channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001590{
Ben Lindstrome229b252001-03-05 06:28:06 +00001591 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001592 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001593 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001594 int len;
1595
1596 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001597 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001598 FD_ISSET(c->wfd, writeset) &&
1599 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001600 if (c->output_filter != NULL) {
1601 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1602 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001603 if (c->type != SSH_CHANNEL_OPEN)
1604 chan_mark_dead(c);
1605 else
1606 chan_write_failed(c);
1607 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001608 }
1609 } else if (c->datagram) {
1610 buf = data = buffer_get_string(&c->output, &dlen);
1611 } else {
1612 buf = data = buffer_ptr(&c->output);
1613 dlen = buffer_len(&c->output);
1614 }
1615
Damien Millerd27b9472005-12-13 19:29:02 +11001616 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001617 /* ignore truncated writes, datagrams might get lost */
1618 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001619 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001620 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001621 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1622 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001623 return 1;
1624 if (len <= 0) {
1625 if (c->type != SSH_CHANNEL_OPEN)
1626 chan_mark_dead(c);
1627 else
1628 chan_write_failed(c);
1629 return -1;
1630 }
1631 return 1;
1632 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001633#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001634 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001635 if (compat20 && c->wfd_isatty)
1636 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001637#endif
Damien Miller077b2382005-12-31 16:22:32 +11001638
1639 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001640 if (len < 0 &&
1641 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001642 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001643 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001644 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001645 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001646 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001647 return -1;
1648 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001649 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001650 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001651 c->type = SSH_CHANNEL_INPUT_DRAINING;
1652 } else {
1653 chan_write_failed(c);
1654 }
1655 return -1;
1656 }
Darren Tucker3980b632009-08-28 11:02:37 +10001657#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001658 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001659 if (tcgetattr(c->wfd, &tio) == 0 &&
1660 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1661 /*
1662 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001663 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001664 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001665 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001666 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001667 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001668 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001669 }
1670 }
Darren Tucker3980b632009-08-28 11:02:37 +10001671#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001672 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001673 if (compat20 && len > 0) {
1674 c->local_consumed += len;
1675 }
1676 }
1677 return 1;
1678}
Damien Miller4f7becb2006-03-26 14:10:14 +11001679
Ben Lindstrombba81212001-06-25 05:01:22 +00001680static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001681channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001682{
Darren Tucker11327cc2005-03-14 23:22:25 +11001683 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001684 int len;
1685
Damien Miller1383bd82000-04-06 12:32:37 +10001686/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001687 if (c->efd != -1) {
1688 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1689 FD_ISSET(c->efd, writeset) &&
1690 buffer_len(&c->extended) > 0) {
1691 len = write(c->efd, buffer_ptr(&c->extended),
1692 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001693 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001694 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001695 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1696 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001697 return 1;
1698 if (len <= 0) {
1699 debug2("channel %d: closing write-efd %d",
1700 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001701 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001702 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001703 buffer_consume(&c->extended, len);
1704 c->local_consumed += len;
1705 }
1706 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001707 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001708 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001709 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001710 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001711 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1712 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001713 return 1;
1714 if (len <= 0) {
1715 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001716 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001717 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001718 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001719 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001720 }
Damien Miller33b13562000-04-04 14:38:59 +10001721 }
1722 }
1723 return 1;
1724}
Damien Miller4f7becb2006-03-26 14:10:14 +11001725
Damien Miller8473dd82006-07-24 14:08:32 +10001726/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001727static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001728channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001729{
1730 char buf[16];
1731 int len;
1732
1733 /* Monitor control fd to detect if the slave client exits */
1734 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1735 len = read(c->ctl_fd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001736 if (len < 0 &&
1737 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller0e220db2004-06-15 10:34:08 +10001738 return 1;
1739 if (len <= 0) {
1740 debug2("channel %d: ctl read<=0", c->self);
1741 if (c->type != SSH_CHANNEL_OPEN) {
1742 debug2("channel %d: not open", c->self);
1743 chan_mark_dead(c);
1744 return -1;
1745 } else {
1746 chan_read_failed(c);
1747 chan_write_failed(c);
1748 }
1749 return -1;
1750 } else
1751 fatal("%s: unexpected data on ctl fd", __func__);
1752 }
1753 return 1;
1754}
Damien Miller4f7becb2006-03-26 14:10:14 +11001755
Damien Miller0e220db2004-06-15 10:34:08 +10001756static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001757channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001758{
Ben Lindstromb3921512001-04-11 15:57:50 +00001759 if (c->type == SSH_CHANNEL_OPEN &&
1760 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001761 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001762 c->local_maxpacket*3) ||
1763 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001764 c->local_consumed > 0) {
1765 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1766 packet_put_int(c->remote_id);
1767 packet_put_int(c->local_consumed);
1768 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001769 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001770 c->self, c->local_window,
1771 c->local_consumed);
1772 c->local_window += c->local_consumed;
1773 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001774 }
1775 return 1;
1776}
1777
Ben Lindstrombba81212001-06-25 05:01:22 +00001778static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001779channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001780{
1781 channel_handle_rfd(c, readset, writeset);
1782 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001783 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001784 return;
Damien Miller33b13562000-04-04 14:38:59 +10001785 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001786 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001787 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001788}
1789
Damien Miller8473dd82006-07-24 14:08:32 +10001790/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001791static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001792channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001793{
1794 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001795
Damien Millerb38eff82000-04-01 11:09:21 +10001796 /* Send buffered output data to the socket. */
1797 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1798 len = write(c->sock, buffer_ptr(&c->output),
1799 buffer_len(&c->output));
1800 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001801 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001802 else
1803 buffer_consume(&c->output, len);
1804 }
1805}
1806
Ben Lindstrombba81212001-06-25 05:01:22 +00001807static void
Damien Miller33b13562000-04-04 14:38:59 +10001808channel_handler_init_20(void)
1809{
Damien Millerde6987c2002-01-22 23:20:40 +11001810 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001811 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001812 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001813 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001814 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001815 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001816 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001817 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001818
Damien Millerde6987c2002-01-22 23:20:40 +11001819 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001820 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001821 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001822 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001823 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001824 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001825 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001826}
1827
Ben Lindstrombba81212001-06-25 05:01:22 +00001828static void
Damien Millerb38eff82000-04-01 11:09:21 +10001829channel_handler_init_13(void)
1830{
1831 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1832 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1833 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1834 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1835 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1836 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1837 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001838 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001839 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001840
Damien Millerde6987c2002-01-22 23:20:40 +11001841 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001842 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1843 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1844 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1845 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001846 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001847 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001848}
1849
Ben Lindstrombba81212001-06-25 05:01:22 +00001850static void
Damien Millerb38eff82000-04-01 11:09:21 +10001851channel_handler_init_15(void)
1852{
Damien Millerde6987c2002-01-22 23:20:40 +11001853 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001854 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001855 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1856 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1857 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001858 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001859 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001860
1861 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1862 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1863 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001864 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001865 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001866 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001867}
1868
Ben Lindstrombba81212001-06-25 05:01:22 +00001869static void
Damien Millerb38eff82000-04-01 11:09:21 +10001870channel_handler_init(void)
1871{
1872 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001873
Damien Miller9f0f5c62001-12-21 14:45:46 +11001874 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001875 channel_pre[i] = NULL;
1876 channel_post[i] = NULL;
1877 }
Damien Miller33b13562000-04-04 14:38:59 +10001878 if (compat20)
1879 channel_handler_init_20();
1880 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001881 channel_handler_init_13();
1882 else
1883 channel_handler_init_15();
1884}
1885
Damien Miller3ec27592001-10-12 11:35:04 +10001886/* gc dead channels */
1887static void
1888channel_garbage_collect(Channel *c)
1889{
1890 if (c == NULL)
1891 return;
1892 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001893 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001894 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001895 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001896 c->detach_user(c->self, NULL);
1897 /* if we still have a callback */
1898 if (c->detach_user != NULL)
1899 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001900 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001901 }
1902 if (!chan_is_dead(c, 1))
1903 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001904 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001905 channel_free(c);
1906}
1907
Ben Lindstrombba81212001-06-25 05:01:22 +00001908static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001909channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001910{
1911 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11001912 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10001913 Channel *c;
1914
1915 if (!did_init) {
1916 channel_handler_init();
1917 did_init = 1;
1918 }
Darren Tucker876045b2010-01-08 17:08:00 +11001919 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001920 c = channels[i];
1921 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001922 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11001923 if (c->delayed) {
1924 if (ftab == channel_pre)
1925 c->delayed = 0;
1926 else
1927 continue;
1928 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001929 if (ftab[c->type] != NULL)
1930 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001931 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001932 }
1933}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001934
Ben Lindstrome9c99912001-06-09 00:41:05 +00001935/*
1936 * Allocate/update select bitmasks and add any bits relevant to channels in
1937 * select bitmasks.
1938 */
Damien Miller4af51302000-04-16 11:18:38 +10001939void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001940channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001941 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001942{
Damien Miller36812092006-03-26 14:22:47 +11001943 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001944
1945 n = MAX(*maxfdp, channel_max_fd);
1946
Damien Miller36812092006-03-26 14:22:47 +11001947 nfdset = howmany(n+1, NFDBITS);
1948 /* Explicitly test here, because xrealloc isn't always called */
1949 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1950 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1951 sz = nfdset * sizeof(fd_mask);
1952
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001953 /* perhaps check sz < nalloc/2 and shrink? */
1954 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001955 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1956 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001957 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001958 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001959 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001960 memset(*readsetp, 0, sz);
1961 memset(*writesetp, 0, sz);
1962
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001963 if (!rekeying)
1964 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001965}
1966
Ben Lindstrome9c99912001-06-09 00:41:05 +00001967/*
1968 * After select, perform any appropriate operations for channels which have
1969 * events pending.
1970 */
Damien Miller4af51302000-04-16 11:18:38 +10001971void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001972channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001973{
Damien Millerb38eff82000-04-01 11:09:21 +10001974 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001975}
1976
Ben Lindstrome9c99912001-06-09 00:41:05 +00001977
Damien Miller5e953212001-01-30 09:14:00 +11001978/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001979void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001980channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001981{
Damien Millerb38eff82000-04-01 11:09:21 +10001982 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001983 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001984
Damien Miller95def091999-11-25 00:26:21 +11001985 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001986 c = channels[i];
1987 if (c == NULL)
1988 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001989
Ben Lindstrome9c99912001-06-09 00:41:05 +00001990 /*
1991 * We are only interested in channels that can have buffered
1992 * incoming data.
1993 */
Damien Miller34132e52000-01-14 15:45:46 +11001994 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001995 if (c->type != SSH_CHANNEL_OPEN &&
1996 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001997 continue;
1998 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001999 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002000 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002001 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002002 if (compat20 &&
2003 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002004 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002005 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002006 continue;
2007 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002008
Damien Miller95def091999-11-25 00:26:21 +11002009 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002010 if ((c->istate == CHAN_INPUT_OPEN ||
2011 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2012 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002013 if (c->datagram) {
2014 if (len > 0) {
2015 u_char *data;
2016 u_int dlen;
2017
2018 data = buffer_get_string(&c->input,
2019 &dlen);
2020 packet_start(SSH2_MSG_CHANNEL_DATA);
2021 packet_put_int(c->remote_id);
2022 packet_put_string(data, dlen);
2023 packet_send();
2024 c->remote_window -= dlen + 4;
2025 xfree(data);
2026 }
2027 continue;
2028 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002029 /*
2030 * Send some data for the other side over the secure
2031 * connection.
2032 */
Damien Miller33b13562000-04-04 14:38:59 +10002033 if (compat20) {
2034 if (len > c->remote_window)
2035 len = c->remote_window;
2036 if (len > c->remote_maxpacket)
2037 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002038 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002039 if (packet_is_interactive()) {
2040 if (len > 1024)
2041 len = 512;
2042 } else {
2043 /* Keep the packets at reasonable size. */
2044 if (len > packet_get_maxsize()/2)
2045 len = packet_get_maxsize()/2;
2046 }
Damien Miller95def091999-11-25 00:26:21 +11002047 }
Damien Millerb38eff82000-04-01 11:09:21 +10002048 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002049 packet_start(compat20 ?
2050 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002051 packet_put_int(c->remote_id);
2052 packet_put_string(buffer_ptr(&c->input), len);
2053 packet_send();
2054 buffer_consume(&c->input, len);
2055 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002056 }
2057 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002058 if (compat13)
2059 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002060 /*
2061 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002062 * tell peer, that we will not send more data: send IEOF.
2063 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002064 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002065 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002066 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2067 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002068 else
2069 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002070 }
Damien Miller33b13562000-04-04 14:38:59 +10002071 /* Send extended data, i.e. stderr */
2072 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002073 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002074 c->remote_window > 0 &&
2075 (len = buffer_len(&c->extended)) > 0 &&
2076 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002077 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002078 c->self, c->remote_window, buffer_len(&c->extended),
2079 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002080 if (len > c->remote_window)
2081 len = c->remote_window;
2082 if (len > c->remote_maxpacket)
2083 len = c->remote_maxpacket;
2084 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2085 packet_put_int(c->remote_id);
2086 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2087 packet_put_string(buffer_ptr(&c->extended), len);
2088 packet_send();
2089 buffer_consume(&c->extended, len);
2090 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002091 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002092 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002093 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002094}
2095
Ben Lindstrome9c99912001-06-09 00:41:05 +00002096
2097/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002098
2099/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002100void
Damien Miller630d6f42002-01-22 23:17:30 +11002101channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002102{
Damien Miller34132e52000-01-14 15:45:46 +11002103 int id;
Damien Miller95def091999-11-25 00:26:21 +11002104 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002105 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002106 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002107
Damien Miller95def091999-11-25 00:26:21 +11002108 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002109 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002110 c = channel_lookup(id);
2111 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002112 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002113
Damien Miller95def091999-11-25 00:26:21 +11002114 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002115 if (c->type != SSH_CHANNEL_OPEN &&
2116 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002117 return;
2118
Damien Miller95def091999-11-25 00:26:21 +11002119 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002120 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002121
Damien Millera04ad492004-01-21 11:02:09 +11002122 /*
2123 * Ignore data for protocol > 1.3 if output end is no longer open.
2124 * For protocol 2 the sending side is reducing its window as it sends
2125 * data, so we must 'fake' consumption of the data in order to ensure
2126 * that window updates are sent back. Otherwise the connection might
2127 * deadlock.
2128 */
2129 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2130 if (compat20) {
2131 c->local_window -= data_len;
2132 c->local_consumed += data_len;
2133 }
Damien Millera04ad492004-01-21 11:02:09 +11002134 return;
2135 }
2136
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002137 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002138 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002139 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002140 c->self, data_len, c->local_maxpacket);
2141 }
2142 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002143 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002144 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002145 return;
2146 }
2147 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002148 }
Damien Millerd27b9472005-12-13 19:29:02 +11002149 if (c->datagram)
2150 buffer_put_string(&c->output, data, data_len);
2151 else
2152 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002153 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002154}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002155
Damien Millerd79b4242006-03-31 23:11:44 +11002156/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002157void
Damien Miller630d6f42002-01-22 23:17:30 +11002158channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002159{
2160 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002161 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002162 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002163 Channel *c;
2164
2165 /* Get the channel number and verify it. */
2166 id = packet_get_int();
2167 c = channel_lookup(id);
2168
2169 if (c == NULL)
2170 packet_disconnect("Received extended_data for bad channel %d.", id);
2171 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002172 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002173 return;
2174 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002175 if (c->flags & CHAN_EOF_RCVD) {
2176 if (datafellows & SSH_BUG_EXTEOF)
2177 debug("channel %d: accepting ext data after eof", id);
2178 else
2179 packet_disconnect("Received extended_data after EOF "
2180 "on channel %d.", id);
2181 }
Damien Miller33b13562000-04-04 14:38:59 +10002182 tcode = packet_get_int();
2183 if (c->efd == -1 ||
2184 c->extended_usage != CHAN_EXTENDED_WRITE ||
2185 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002186 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002187 return;
2188 }
2189 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002190 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002191 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002192 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002193 c->self, data_len, c->local_window);
2194 xfree(data);
2195 return;
2196 }
Damien Millerd3444942000-09-30 14:20:03 +11002197 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002198 c->local_window -= data_len;
2199 buffer_append(&c->extended, data, data_len);
2200 xfree(data);
2201}
2202
Damien Millerd79b4242006-03-31 23:11:44 +11002203/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002204void
Damien Miller630d6f42002-01-22 23:17:30 +11002205channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002206{
2207 int id;
2208 Channel *c;
2209
Damien Millerb38eff82000-04-01 11:09:21 +10002210 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002211 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002212 c = channel_lookup(id);
2213 if (c == NULL)
2214 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2215 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002216
2217 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002218 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002219 debug("channel %d: FORCE input drain", c->self);
2220 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002221 if (buffer_len(&c->input) == 0)
2222 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002223 }
2224
Damien Millerb38eff82000-04-01 11:09:21 +10002225}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002226
Damien Millerd79b4242006-03-31 23:11:44 +11002227/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002228void
Damien Miller630d6f42002-01-22 23:17:30 +11002229channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002230{
Damien Millerb38eff82000-04-01 11:09:21 +10002231 int id;
2232 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233
Damien Millerb38eff82000-04-01 11:09:21 +10002234 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002235 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002236 c = channel_lookup(id);
2237 if (c == NULL)
2238 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002239
2240 /*
2241 * Send a confirmation that we have closed the channel and no more
2242 * data is coming for it.
2243 */
Damien Miller95def091999-11-25 00:26:21 +11002244 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002245 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002246 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002247
Damien Miller5428f641999-11-25 11:54:57 +11002248 /*
2249 * If the channel is in closed state, we have sent a close request,
2250 * and the other side will eventually respond with a confirmation.
2251 * Thus, we cannot free the channel here, because then there would be
2252 * no-one to receive the confirmation. The channel gets freed when
2253 * the confirmation arrives.
2254 */
Damien Millerb38eff82000-04-01 11:09:21 +10002255 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002256 /*
2257 * Not a closed channel - mark it as draining, which will
2258 * cause it to be freed later.
2259 */
Damien Miller76765c02002-01-22 23:21:15 +11002260 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002261 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002262 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002263}
2264
Damien Millerb38eff82000-04-01 11:09:21 +10002265/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002266/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002267void
Damien Miller630d6f42002-01-22 23:17:30 +11002268channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002269{
Damien Millerb38eff82000-04-01 11:09:21 +10002270 int id = packet_get_int();
2271 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002272
Damien Miller48b03fc2002-01-22 23:11:40 +11002273 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002274 if (c == NULL)
2275 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2276 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002277}
2278
Damien Millerd79b4242006-03-31 23:11:44 +11002279/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002280void
Damien Miller630d6f42002-01-22 23:17:30 +11002281channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002282{
2283 int id = packet_get_int();
2284 Channel *c = channel_lookup(id);
2285
Damien Miller48b03fc2002-01-22 23:11:40 +11002286 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002287 if (c == NULL)
2288 packet_disconnect("Received close confirmation for "
2289 "out-of-range channel %d.", id);
2290 if (c->type != SSH_CHANNEL_CLOSED)
2291 packet_disconnect("Received close confirmation for "
2292 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002293 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002294}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295
Damien Millerd79b4242006-03-31 23:11:44 +11002296/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002297void
Damien Miller630d6f42002-01-22 23:17:30 +11002298channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002299{
Damien Millerb38eff82000-04-01 11:09:21 +10002300 int id, remote_id;
2301 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002302
Damien Millerb38eff82000-04-01 11:09:21 +10002303 id = packet_get_int();
2304 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002305
Damien Millerb38eff82000-04-01 11:09:21 +10002306 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2307 packet_disconnect("Received open confirmation for "
2308 "non-opening channel %d.", id);
2309 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002310 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002311 c->remote_id = remote_id;
2312 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002313
2314 if (compat20) {
2315 c->remote_window = packet_get_int();
2316 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002317 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002318 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002319 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002320 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002321 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002322 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002323 c->remote_window, c->remote_maxpacket);
2324 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002325 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002326}
2327
Ben Lindstrombba81212001-06-25 05:01:22 +00002328static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002329reason2txt(int reason)
2330{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002331 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002332 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2333 return "administratively prohibited";
2334 case SSH2_OPEN_CONNECT_FAILED:
2335 return "connect failed";
2336 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2337 return "unknown channel type";
2338 case SSH2_OPEN_RESOURCE_SHORTAGE:
2339 return "resource shortage";
2340 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002341 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002342}
2343
Damien Millerd79b4242006-03-31 23:11:44 +11002344/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002345void
Damien Miller630d6f42002-01-22 23:17:30 +11002346channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002347{
Kevin Steves12057502001-02-05 14:54:34 +00002348 int id, reason;
2349 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002350 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002351
Damien Millerb38eff82000-04-01 11:09:21 +10002352 id = packet_get_int();
2353 c = channel_lookup(id);
2354
2355 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2356 packet_disconnect("Received open failure for "
2357 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002358 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002359 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002360 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002361 msg = packet_get_string(NULL);
2362 lang = packet_get_string(NULL);
2363 }
Damien Miller996acd22003-04-09 20:59:48 +10002364 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002365 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002366 if (msg != NULL)
2367 xfree(msg);
2368 if (lang != NULL)
2369 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002370 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002371 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002372 /* Schedule the channel for cleanup/deletion. */
2373 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002374}
2375
Damien Millerd79b4242006-03-31 23:11:44 +11002376/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002377void
Damien Miller630d6f42002-01-22 23:17:30 +11002378channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002379{
2380 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002381 int id;
2382 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002383
2384 if (!compat20)
2385 return;
2386
2387 /* Get the channel number and verify it. */
2388 id = packet_get_int();
2389 c = channel_lookup(id);
2390
Damien Millerd47c62a2005-12-13 19:33:57 +11002391 if (c == NULL) {
2392 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002393 return;
2394 }
2395 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002396 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002397 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002398 c->remote_window += adjust;
2399}
2400
Damien Millerd79b4242006-03-31 23:11:44 +11002401/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002402void
Damien Miller630d6f42002-01-22 23:17:30 +11002403channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002404{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002405 Channel *c = NULL;
2406 u_short host_port;
2407 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002408 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002409
Ben Lindstrome9c99912001-06-09 00:41:05 +00002410 remote_id = packet_get_int();
2411 host = packet_get_string(NULL);
2412 host_port = packet_get_int();
2413
2414 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2415 originator_string = packet_get_string(NULL);
2416 } else {
2417 originator_string = xstrdup("unknown (remote did not supply name)");
2418 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002419 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002420 c = channel_connect_to(host, host_port,
2421 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002422 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002423 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002424 if (c == NULL) {
2425 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2426 packet_put_int(remote_id);
2427 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002428 } else
2429 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002430}
2431
Damien Millerb84886b2008-05-19 15:05:07 +10002432/* ARGSUSED */
2433void
2434channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2435{
2436 Channel *c;
2437 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002438 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002439
2440 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002441 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002442
Damien Miller16a73072008-12-08 09:55:25 +11002443 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002444 packet_check_eom();
2445
Damien Miller16a73072008-12-08 09:55:25 +11002446 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002447
Damien Miller16a73072008-12-08 09:55:25 +11002448 if ((c = channel_lookup(id)) == NULL) {
2449 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002450 return;
2451 }
2452 ;
2453 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2454 return;
2455 cc->cb(type, c, cc->ctx);
2456 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2457 bzero(cc, sizeof(*cc));
2458 xfree(cc);
2459}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002460
Ben Lindstrome9c99912001-06-09 00:41:05 +00002461/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002462
Ben Lindstrom908afed2001-10-03 17:34:59 +00002463void
2464channel_set_af(int af)
2465{
2466 IPv4or6 = af;
2467}
2468
Darren Tucker34e314d2010-01-08 17:03:46 +11002469void
2470channel_set_rdomain(int rdomain)
2471{
2472 channel_rdomain = rdomain;
2473}
2474
Damien Millerb16461c2002-01-22 23:29:22 +11002475static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002476channel_setup_fwd_listener(int type, const char *listen_addr,
2477 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002478 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002479{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002480 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002481 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002482 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002483 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002484 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002485 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002486
Damien Millerb16461c2002-01-22 23:29:22 +11002487 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2488 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002489 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002490
Damien Millerb16461c2002-01-22 23:29:22 +11002491 if (host == NULL) {
2492 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002493 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002494 }
Damien Miller9576ac42009-01-28 16:30:33 +11002495 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002496 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002497 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002498 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002499
Damien Miller5428f641999-11-25 11:54:57 +11002500 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002501 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002502 * specified address or wildcard. On the client, a specified bind
2503 * address will always override gateway_ports. On the server, a
2504 * gateway_ports of 1 (``yes'') will override the client's
2505 * specification and force a wildcard bind, whereas a value of 2
2506 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002507 * asked for.
2508 *
2509 * Special-case listen_addrs are:
2510 *
2511 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2512 * "" (empty string), "*" -> wildcard v4/v6
2513 * "localhost" -> loopback v4/v6
2514 */
2515 addr = NULL;
2516 if (listen_addr == NULL) {
2517 /* No address specified: default to gateway_ports setting */
2518 if (gateway_ports)
2519 wildcard = 1;
2520 } else if (gateway_ports || is_client) {
2521 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002522 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002523 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2524 (!is_client && gateway_ports == 1))
2525 wildcard = 1;
2526 else if (strcmp(listen_addr, "localhost") != 0)
2527 addr = listen_addr;
2528 }
2529
2530 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2531 type, wildcard, (addr == NULL) ? "NULL" : addr);
2532
2533 /*
Damien Miller34132e52000-01-14 15:45:46 +11002534 * getaddrinfo returns a loopback address if the hostname is
2535 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002536 */
Damien Miller34132e52000-01-14 15:45:46 +11002537 memset(&hints, 0, sizeof(hints));
2538 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002539 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002540 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002541 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002542 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2543 if (addr == NULL) {
2544 /* This really shouldn't happen */
2545 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002546 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002547 } else {
Damien Millera7270302005-07-06 09:36:05 +10002548 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002549 "getaddrinfo(%.64s): %s", addr,
2550 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002551 }
Damien Millera7270302005-07-06 09:36:05 +10002552 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002553 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002554 if (allocated_listen_port != NULL)
2555 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002556 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002557 switch (ai->ai_family) {
2558 case AF_INET:
2559 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2560 sin_port;
2561 break;
2562 case AF_INET6:
2563 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2564 sin6_port;
2565 break;
2566 default:
Damien Miller34132e52000-01-14 15:45:46 +11002567 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002568 }
2569 /*
2570 * If allocating a port for -R forwards, then use the
2571 * same port for all address families.
2572 */
2573 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2574 allocated_listen_port != NULL && *allocated_listen_port > 0)
2575 *lport_p = htons(*allocated_listen_port);
2576
Damien Miller34132e52000-01-14 15:45:46 +11002577 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2578 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002579 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002580 continue;
2581 }
2582 /* Create a port to listen for the host. */
Darren Tucker34e314d2010-01-08 17:03:46 +11002583 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
2584 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11002585 if (sock < 0) {
2586 /* this is no error since kernel may not support ipv6 */
2587 verbose("socket: %.100s", strerror(errno));
2588 continue;
2589 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002590
2591 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002592 if (ai->ai_family == AF_INET6)
2593 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002594
Damien Miller4bf648f2009-02-14 16:28:21 +11002595 debug("Local forwarding listening on %s port %s.",
2596 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002597
Damien Miller34132e52000-01-14 15:45:46 +11002598 /* Bind the socket to the address. */
2599 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2600 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002601 if (!ai->ai_next)
2602 error("bind: %.100s", strerror(errno));
2603 else
2604 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002605
Damien Miller34132e52000-01-14 15:45:46 +11002606 close(sock);
2607 continue;
2608 }
2609 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002610 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002611 error("listen: %.100s", strerror(errno));
2612 close(sock);
2613 continue;
2614 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002615
2616 /*
2617 * listen_port == 0 requests a dynamically allocated port -
2618 * record what we got.
2619 */
2620 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2621 allocated_listen_port != NULL &&
2622 *allocated_listen_port == 0) {
2623 *allocated_listen_port = get_sock_port(sock, 1);
2624 debug("Allocated listen port %d",
2625 *allocated_listen_port);
2626 }
2627
Damien Miller34132e52000-01-14 15:45:46 +11002628 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002629 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002630 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002631 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002632 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002633 c->host_port = port_to_connect;
2634 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002635 success = 1;
2636 }
2637 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002638 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002639 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002640 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002641 return success;
Damien Miller95def091999-11-25 00:26:21 +11002642}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002643
Darren Tuckere7066df2004-05-24 10:18:05 +10002644int
2645channel_cancel_rport_listener(const char *host, u_short port)
2646{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002647 u_int i;
2648 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002649
Darren Tucker47eede72005-03-14 23:08:12 +11002650 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002651 Channel *c = channels[i];
2652
2653 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002654 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002655 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002656 channel_free(c);
2657 found = 1;
2658 }
2659 }
2660
2661 return (found);
2662}
2663
Damien Millerb16461c2002-01-22 23:29:22 +11002664/* protocol local port fwd, used by ssh (and sshd in v1) */
2665int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002666channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002667 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2668{
2669 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002670 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002671 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002672}
2673
2674/* protocol v2 remote port fwd, used by sshd */
2675int
2676channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002677 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002678{
2679 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002680 listen_address, listen_port, allocated_listen_port,
2681 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002682}
2683
Damien Miller5428f641999-11-25 11:54:57 +11002684/*
2685 * Initiate forwarding of connections to port "port" on remote host through
2686 * the secure channel to host:port from local side.
2687 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002688
Darren Tuckere7d4b192006-07-12 22:17:10 +10002689int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002690channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002691 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002692{
Damien Millerdff50992002-01-22 23:16:32 +11002693 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002694
Damien Miller95def091999-11-25 00:26:21 +11002695 /* Record locally that connection to this host/port is permitted. */
2696 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2697 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002698
Damien Miller95def091999-11-25 00:26:21 +11002699 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002700 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002701 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002702 if (listen_host == NULL) {
2703 if (datafellows & SSH_BUG_RFWD_ADDR)
2704 address_to_bind = "127.0.0.1";
2705 else
2706 address_to_bind = "localhost";
2707 } else if (*listen_host == '\0' ||
2708 strcmp(listen_host, "*") == 0) {
2709 if (datafellows & SSH_BUG_RFWD_ADDR)
2710 address_to_bind = "0.0.0.0";
2711 else
2712 address_to_bind = "";
2713 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002714 address_to_bind = listen_host;
2715
Damien Miller33b13562000-04-04 14:38:59 +10002716 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2717 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002718 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002719 packet_put_cstring(address_to_bind);
2720 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002721 packet_send();
2722 packet_write_wait();
2723 /* Assume that server accepts the request */
2724 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002725 } else {
2726 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002727 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002728 packet_put_cstring(host_to_connect);
2729 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002730 packet_send();
2731 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002732
2733 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002734 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002735 switch (type) {
2736 case SSH_SMSG_SUCCESS:
2737 success = 1;
2738 break;
2739 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002740 break;
2741 default:
2742 /* Unknown packet */
2743 packet_disconnect("Protocol error for port forward request:"
2744 "received packet type %d.", type);
2745 }
2746 }
2747 if (success) {
2748 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2749 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2750 permitted_opens[num_permitted_opens].listen_port = listen_port;
2751 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002752 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002753 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002754}
2755
Damien Miller5428f641999-11-25 11:54:57 +11002756/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002757 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002758 * local side.
2759 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002760void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002761channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002762{
2763 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002764
2765 if (!compat20)
2766 return;
2767
2768 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002769 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002770 permitted_opens[i].listen_port == port)
2771 break;
2772 }
2773 if (i >= num_permitted_opens) {
2774 debug("%s: requested forward not found", __func__);
2775 return;
2776 }
2777 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2778 packet_put_cstring("cancel-tcpip-forward");
2779 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002780 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002781 packet_put_int(port);
2782 packet_send();
2783
2784 permitted_opens[i].listen_port = 0;
2785 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002786 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002787 permitted_opens[i].host_to_connect = NULL;
2788}
2789
2790/*
Damien Miller5428f641999-11-25 11:54:57 +11002791 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2792 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002793 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002794 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002795int
Damien Millere247cc42000-05-07 12:03:14 +10002796channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002797{
Damien Milleraae6c611999-12-06 11:47:28 +11002798 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002799 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002800 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002801
Damien Miller95def091999-11-25 00:26:21 +11002802 /* Get arguments from the packet. */
2803 port = packet_get_int();
2804 hostname = packet_get_string(NULL);
2805 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002806
Damien Millerbac2d8a2000-09-05 16:13:06 +11002807#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002808 /*
2809 * Check that an unprivileged user is not trying to forward a
2810 * privileged port.
2811 */
Damien Miller95def091999-11-25 00:26:21 +11002812 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002813 packet_disconnect(
2814 "Requested forwarding of port %d but user is not root.",
2815 port);
2816 if (host_port == 0)
2817 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002818#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002819
Damien Miller0bc1bd82000-11-13 22:57:25 +11002820 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002821 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002822 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002823
2824 /* Free the argument string. */
2825 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002826
2827 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828}
2829
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002830/*
2831 * Permits opening to any host/port if permitted_opens[] is empty. This is
2832 * usually called by the server, because the user could connect to any port
2833 * anyway, and the server has no way to know but to trust the client anyway.
2834 */
2835void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002836channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002837{
2838 if (num_permitted_opens == 0)
2839 all_opens_permitted = 1;
2840}
2841
Ben Lindstroma3700052001-04-05 23:26:32 +00002842void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002843channel_add_permitted_opens(char *host, int port)
2844{
2845 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002846 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002847 debug("allow port forwarding to host %s port %d", host, port);
2848
2849 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2850 permitted_opens[num_permitted_opens].port_to_connect = port;
2851 num_permitted_opens++;
2852
2853 all_opens_permitted = 0;
2854}
2855
Damien Millera765cf42006-07-24 14:08:13 +10002856int
Damien Miller9b439df2006-07-24 14:04:00 +10002857channel_add_adm_permitted_opens(char *host, int port)
2858{
2859 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2860 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002861 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002862
2863 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2864 = xstrdup(host);
2865 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002866 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002867}
2868
2869void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002870channel_clear_permitted_opens(void)
2871{
2872 int i;
2873
2874 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002875 if (permitted_opens[i].host_to_connect != NULL)
2876 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002877 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002878}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002879
Damien Miller9b439df2006-07-24 14:04:00 +10002880void
2881channel_clear_adm_permitted_opens(void)
2882{
2883 int i;
2884
2885 for (i = 0; i < num_adm_permitted_opens; i++)
2886 if (permitted_adm_opens[i].host_to_connect != NULL)
2887 xfree(permitted_adm_opens[i].host_to_connect);
2888 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002889}
2890
Darren Tuckere7140f22008-06-10 23:01:51 +10002891void
2892channel_print_adm_permitted_opens(void)
2893{
Damien Miller6ef17492008-07-16 22:42:06 +10002894 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10002895
Damien Millerb53d8a12009-01-28 16:13:04 +11002896 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11002897 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11002898 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11002899 return;
2900 }
Darren Tuckere7140f22008-06-10 23:01:51 +10002901 for (i = 0; i < num_adm_permitted_opens; i++)
2902 if (permitted_adm_opens[i].host_to_connect != NULL)
2903 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2904 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11002905 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10002906}
2907
Damien Millerbd740252008-05-19 15:37:09 +10002908/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002909static int
Damien Millerbd740252008-05-19 15:37:09 +10002910connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002911{
Damien Millerbd740252008-05-19 15:37:09 +10002912 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002913 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002914
Damien Millerbd740252008-05-19 15:37:09 +10002915 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2916 if (cctx->ai->ai_family != AF_INET &&
2917 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002918 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002919 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2920 ntop, sizeof(ntop), strport, sizeof(strport),
2921 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2922 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002923 continue;
2924 }
Darren Tucker34e314d2010-01-08 17:03:46 +11002925 if ((sock = socket_rdomain(cctx->ai->ai_family,
2926 cctx->ai->ai_socktype, cctx->ai->ai_protocol,
2927 channel_rdomain)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10002928 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002929 error("socket: %.100s", strerror(errno));
2930 else
2931 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002932 continue;
2933 }
Damien Miller232711f2004-06-15 10:35:30 +10002934 if (set_nonblock(sock) == -1)
2935 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002936 if (connect(sock, cctx->ai->ai_addr,
2937 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2938 debug("connect_next: host %.100s ([%.100s]:%s): "
2939 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002940 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002941 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002942 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002943 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002944 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002945 }
Damien Millerbd740252008-05-19 15:37:09 +10002946 debug("connect_next: host %.100s ([%.100s]:%s) "
2947 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2948 cctx->ai = cctx->ai->ai_next;
2949 set_nodelay(sock);
2950 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002951 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002952 return -1;
2953}
Damien Millerb38eff82000-04-01 11:09:21 +10002954
Damien Millerbd740252008-05-19 15:37:09 +10002955static void
2956channel_connect_ctx_free(struct channel_connect *cctx)
2957{
2958 xfree(cctx->host);
2959 if (cctx->aitop)
2960 freeaddrinfo(cctx->aitop);
2961 bzero(cctx, sizeof(*cctx));
2962 cctx->host = NULL;
2963 cctx->ai = cctx->aitop = NULL;
2964}
2965
2966/* Return CONNECTING channel to remote host, port */
2967static Channel *
2968connect_to(const char *host, u_short port, char *ctype, char *rname)
2969{
2970 struct addrinfo hints;
2971 int gaierr;
2972 int sock = -1;
2973 char strport[NI_MAXSERV];
2974 struct channel_connect cctx;
2975 Channel *c;
2976
Damien Miller2bcb8662008-07-12 17:12:29 +10002977 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10002978 memset(&hints, 0, sizeof(hints));
2979 hints.ai_family = IPv4or6;
2980 hints.ai_socktype = SOCK_STREAM;
2981 snprintf(strport, sizeof strport, "%d", port);
2982 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2983 error("connect_to %.100s: unknown host (%s)", host,
2984 ssh_gai_strerror(gaierr));
2985 return NULL;
2986 }
2987
2988 cctx.host = xstrdup(host);
2989 cctx.port = port;
2990 cctx.ai = cctx.aitop;
2991
2992 if ((sock = connect_next(&cctx)) == -1) {
2993 error("connect to %.100s port %d failed: %s",
2994 host, port, strerror(errno));
2995 channel_connect_ctx_free(&cctx);
2996 return NULL;
2997 }
2998 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
2999 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3000 c->connect_ctx = cctx;
3001 return c;
3002}
3003
3004Channel *
3005channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3006{
3007 int i;
3008
3009 for (i = 0; i < num_permitted_opens; i++) {
3010 if (permitted_opens[i].host_to_connect != NULL &&
3011 permitted_opens[i].listen_port == listen_port) {
3012 return connect_to(
3013 permitted_opens[i].host_to_connect,
3014 permitted_opens[i].port_to_connect, ctype, rname);
3015 }
3016 }
3017 error("WARNING: Server requests forwarding for unknown listen_port %d",
3018 listen_port);
3019 return NULL;
3020}
3021
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003022/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003023Channel *
3024channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003025{
Damien Miller9b439df2006-07-24 14:04:00 +10003026 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003027
3028 permit = all_opens_permitted;
3029 if (!permit) {
3030 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003031 if (permitted_opens[i].host_to_connect != NULL &&
3032 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003033 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3034 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003035 }
Damien Miller9b439df2006-07-24 14:04:00 +10003036
3037 if (num_adm_permitted_opens > 0) {
3038 permit_adm = 0;
3039 for (i = 0; i < num_adm_permitted_opens; i++)
3040 if (permitted_adm_opens[i].host_to_connect != NULL &&
3041 permitted_adm_opens[i].port_to_connect == port &&
3042 strcmp(permitted_adm_opens[i].host_to_connect, host)
3043 == 0)
3044 permit_adm = 1;
3045 }
3046
3047 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003048 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003049 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003050 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003051 }
Damien Millerbd740252008-05-19 15:37:09 +10003052 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003053}
3054
Damien Miller0e220db2004-06-15 10:34:08 +10003055void
3056channel_send_window_changes(void)
3057{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003058 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003059 struct winsize ws;
3060
3061 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003062 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003063 channels[i]->type != SSH_CHANNEL_OPEN)
3064 continue;
3065 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3066 continue;
3067 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003068 packet_put_int((u_int)ws.ws_col);
3069 packet_put_int((u_int)ws.ws_row);
3070 packet_put_int((u_int)ws.ws_xpixel);
3071 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003072 packet_send();
3073 }
3074}
3075
Ben Lindstrome9c99912001-06-09 00:41:05 +00003076/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003077
Damien Miller5428f641999-11-25 11:54:57 +11003078/*
3079 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003080 * Returns 0 and a suitable display number for the DISPLAY variable
3081 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003082 */
Kevin Steves366298c2001-12-19 17:58:01 +00003083int
Damien Miller95c249f2002-02-05 12:11:34 +11003084x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003085 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003086{
Damien Millere7378562001-12-21 14:58:35 +11003087 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003088 int display_number, sock;
3089 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003090 struct addrinfo hints, *ai, *aitop;
3091 char strport[NI_MAXSERV];
3092 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003093
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003094 if (chanids == NULL)
3095 return -1;
3096
Damien Millera34a28b1999-12-14 10:47:15 +11003097 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003098 display_number < MAX_DISPLAYS;
3099 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003100 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003101 memset(&hints, 0, sizeof(hints));
3102 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003103 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003104 hints.ai_socktype = SOCK_STREAM;
3105 snprintf(strport, sizeof strport, "%d", port);
3106 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003107 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003108 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003109 }
Damien Miller34132e52000-01-14 15:45:46 +11003110 for (ai = aitop; ai; ai = ai->ai_next) {
3111 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3112 continue;
Darren Tucker34e314d2010-01-08 17:03:46 +11003113 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3114 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003115 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003116 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003117 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003118 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003119 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003120 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003121 debug("x11_create_display_inet: Socket family %d not supported",
3122 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003123 continue;
3124 }
Damien Miller34132e52000-01-14 15:45:46 +11003125 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003126 if (ai->ai_family == AF_INET6)
3127 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003128 if (x11_use_localhost)
3129 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003130 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003131 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003132 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003133
Damien Miller34132e52000-01-14 15:45:46 +11003134 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003135 close(socks[n]);
3136 }
3137 num_socks = 0;
3138 break;
3139 }
3140 socks[num_socks++] = sock;
3141 if (num_socks == NUM_SOCKS)
3142 break;
Damien Miller95def091999-11-25 00:26:21 +11003143 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003144 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003145 if (num_socks > 0)
3146 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003147 }
Damien Miller95def091999-11-25 00:26:21 +11003148 if (display_number >= MAX_DISPLAYS) {
3149 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003150 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003151 }
Damien Miller95def091999-11-25 00:26:21 +11003152 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003153 for (n = 0; n < num_socks; n++) {
3154 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003155 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003156 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003157 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003158 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003159 }
Damien Miller95def091999-11-25 00:26:21 +11003160 }
Damien Miller34132e52000-01-14 15:45:46 +11003161
Damien Miller34132e52000-01-14 15:45:46 +11003162 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003163 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003164 for (n = 0; n < num_socks; n++) {
3165 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003166 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003167 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3168 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003169 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003170 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003171 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003172 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003173 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003174
Kevin Steves366298c2001-12-19 17:58:01 +00003175 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003176 *display_numberp = display_number;
3177 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003178}
3179
Ben Lindstrombba81212001-06-25 05:01:22 +00003180static int
Damien Miller819dbb62009-01-21 16:46:26 +11003181connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003182{
Damien Miller95def091999-11-25 00:26:21 +11003183 int sock;
3184 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003185
Damien Miller3afe3752001-12-21 12:39:51 +11003186 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3187 if (sock < 0)
3188 error("socket: %.100s", strerror(errno));
3189 memset(&addr, 0, sizeof(addr));
3190 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003191 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003192 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003193 return sock;
3194 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003195 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3196 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003197}
3198
Damien Miller819dbb62009-01-21 16:46:26 +11003199static int
3200connect_local_xsocket(u_int dnr)
3201{
3202 char buf[1024];
3203 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3204 return connect_local_xsocket_path(buf);
3205}
3206
Damien Millerbd483e72000-04-30 10:00:53 +10003207int
3208x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003209{
Damien Miller57c4e872006-03-31 23:11:07 +11003210 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003211 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003212 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003213 struct addrinfo hints, *ai, *aitop;
3214 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003215 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003216
Damien Miller95def091999-11-25 00:26:21 +11003217 /* Try to open a socket for the local X server. */
3218 display = getenv("DISPLAY");
3219 if (!display) {
3220 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003221 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003222 }
Damien Miller5428f641999-11-25 11:54:57 +11003223 /*
3224 * Now we decode the value of the DISPLAY variable and make a
3225 * connection to the real X server.
3226 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003227
Damien Miller819dbb62009-01-21 16:46:26 +11003228 /* Check if the display is from launchd. */
3229#ifdef __APPLE__
3230 if (strncmp(display, "/tmp/launch", 11) == 0) {
3231 sock = connect_local_xsocket_path(display);
3232 if (sock < 0)
3233 return -1;
3234
3235 /* OK, we now have a connection to the display. */
3236 return sock;
3237 }
3238#endif
Damien Miller5428f641999-11-25 11:54:57 +11003239 /*
3240 * Check if it is a unix domain socket. Unix domain displays are in
3241 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3242 */
Damien Miller95def091999-11-25 00:26:21 +11003243 if (strncmp(display, "unix:", 5) == 0 ||
3244 display[0] == ':') {
3245 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003246 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003247 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003248 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003249 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003250 }
3251 /* Create a socket. */
3252 sock = connect_local_xsocket(display_number);
3253 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003254 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003255
3256 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003257 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003258 }
Damien Miller5428f641999-11-25 11:54:57 +11003259 /*
3260 * Connect to an inet socket. The DISPLAY value is supposedly
3261 * hostname:d[.s], where hostname may also be numeric IP address.
3262 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003263 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003264 cp = strchr(buf, ':');
3265 if (!cp) {
3266 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003267 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003268 }
Damien Miller95def091999-11-25 00:26:21 +11003269 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003270 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003271 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003272 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003273 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003274 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003275 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003276
Damien Miller34132e52000-01-14 15:45:46 +11003277 /* Look up the host address */
3278 memset(&hints, 0, sizeof(hints));
3279 hints.ai_family = IPv4or6;
3280 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003281 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003282 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003283 error("%.100s: unknown host. (%s)", buf,
3284 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003285 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003286 }
Damien Miller34132e52000-01-14 15:45:46 +11003287 for (ai = aitop; ai; ai = ai->ai_next) {
3288 /* Create a socket. */
Darren Tucker34e314d2010-01-08 17:03:46 +11003289 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3290 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003291 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003292 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003293 continue;
3294 }
3295 /* Connect it to the display. */
3296 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003297 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003298 6000 + display_number, strerror(errno));
3299 close(sock);
3300 continue;
3301 }
3302 /* Success */
3303 break;
Damien Miller34132e52000-01-14 15:45:46 +11003304 }
Damien Miller34132e52000-01-14 15:45:46 +11003305 freeaddrinfo(aitop);
3306 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003307 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003308 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003309 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003310 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003311 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003312 return sock;
3313}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003314
Damien Millerbd483e72000-04-30 10:00:53 +10003315/*
3316 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3317 * the remote channel number. We should do whatever we want, and respond
3318 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3319 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003320
Damien Miller8473dd82006-07-24 14:08:32 +10003321/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003322void
Damien Miller630d6f42002-01-22 23:17:30 +11003323x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003324{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003325 Channel *c = NULL;
3326 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003327 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003328
3329 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003330
3331 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003332
3333 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003334 remote_host = packet_get_string(NULL);
3335 } else {
3336 remote_host = xstrdup("unknown (remote did not supply name)");
3337 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003338 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003339
3340 /* Obtain a connection to the real X display. */
3341 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003342 if (sock != -1) {
3343 /* Allocate a channel for this connection. */
3344 c = channel_new("connected x11 socket",
3345 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3346 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003347 c->remote_id = remote_id;
3348 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003349 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003350 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003351 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003352 /* Send refusal to the remote host. */
3353 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003354 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003355 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003356 /* Send a confirmation to the remote host. */
3357 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003358 packet_put_int(remote_id);
3359 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003360 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003361 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003362}
3363
Damien Miller69b69aa2000-10-28 14:19:58 +11003364/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003365/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003366void
Damien Miller630d6f42002-01-22 23:17:30 +11003367deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003368{
3369 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003370
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003371 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003372 case SSH_SMSG_AGENT_OPEN:
3373 error("Warning: ssh server tried agent forwarding.");
3374 break;
3375 case SSH_SMSG_X11_OPEN:
3376 error("Warning: ssh server tried X11 forwarding.");
3377 break;
3378 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003379 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003380 break;
3381 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003382 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003383 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3384 packet_put_int(rchan);
3385 packet_send();
3386}
3387
Damien Miller5428f641999-11-25 11:54:57 +11003388/*
3389 * Requests forwarding of X11 connections, generates fake authentication
3390 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003391 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003392 */
Damien Miller4af51302000-04-16 11:18:38 +10003393void
Damien Miller17e7ed02005-06-17 12:54:33 +10003394x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003395 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003396{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003397 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003398 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003399 char *new_data;
3400 int screen_number;
3401 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003402 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003403
Damien Millerf92c0792005-07-06 09:45:26 +10003404 if (x11_saved_display == NULL)
3405 x11_saved_display = xstrdup(disp);
3406 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003407 error("x11_request_forwarding_with_spoofing: different "
3408 "$DISPLAY already forwarded");
3409 return;
3410 }
3411
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003412 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003413 if (cp)
3414 cp = strchr(cp, '.');
3415 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003416 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003417 else
3418 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003419
Damien Miller13390022005-07-06 09:44:19 +10003420 if (x11_saved_proto == NULL) {
3421 /* Save protocol name. */
3422 x11_saved_proto = xstrdup(proto);
3423 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003424 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003425 * of the same length.
3426 */
3427 x11_saved_data = xmalloc(data_len);
3428 x11_fake_data = xmalloc(data_len);
3429 for (i = 0; i < data_len; i++) {
3430 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3431 fatal("x11_request_forwarding: bad "
3432 "authentication data: %.100s", data);
3433 if (i % 4 == 0)
3434 rnd = arc4random();
3435 x11_saved_data[i] = value;
3436 x11_fake_data[i] = rnd & 0xff;
3437 rnd >>= 8;
3438 }
3439 x11_saved_data_len = data_len;
3440 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003441 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003442
Damien Miller95def091999-11-25 00:26:21 +11003443 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003444 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003445
Damien Miller95def091999-11-25 00:26:21 +11003446 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003447 if (compat20) {
3448 channel_request_start(client_session_id, "x11-req", 0);
3449 packet_put_char(0); /* XXX bool single connection */
3450 } else {
3451 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3452 }
3453 packet_put_cstring(proto);
3454 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003455 packet_put_int(screen_number);
3456 packet_send();
3457 packet_write_wait();
3458 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003459}
3460
Ben Lindstrome9c99912001-06-09 00:41:05 +00003461
3462/* -- agent forwarding */
3463
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003464/* Sends a message to the server to request authentication fd forwarding. */
3465
Damien Miller4af51302000-04-16 11:18:38 +10003466void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003467auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003468{
Damien Miller95def091999-11-25 00:26:21 +11003469 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3470 packet_send();
3471 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003472}