blob: e8589d8c4d148287f46e3cab4c850f12eb8ede39 [file] [log] [blame]
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001/* $OpenBSD: channels.c,v 1.301 2010/01/11 01:39:46 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110061#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100062#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100063#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerb84886b2008-05-19 15:05:07 +100065#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "log.h"
72#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100077#include "key.h"
78#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110079#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
86 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100093static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000097 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110098 */
Damien Miller5e953212001-01-30 09:14:00 +110099static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
109 */
Damien Miller95def091999-11-25 00:26:21 +1100110typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000111 char *host_to_connect; /* Connect to 'host'. */
112 u_short port_to_connect; /* Connect to 'port'. */
113 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114} ForwardPermission;
115
Damien Miller9b439df2006-07-24 14:04:00 +1000116/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000118
Damien Miller9b439df2006-07-24 14:04:00 +1000119/* List of all permitted host/port pairs to connect by the admin. */
120static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
121
122/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000124
125/* Number of permitted host/port pair in the array permitted by the admin. */
126static int num_adm_permitted_opens = 0;
127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * If this is true, all opens are permitted. This is the case on the server
130 * on which we have to trust the client anyway, and the user could do
131 * anything after logging in anyway.
132 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133static int all_opens_permitted = 0;
134
Ben Lindstrome9c99912001-06-09 00:41:05 +0000135
136/* -- X11 forwarding */
137
138/* Maximum number of fake X11 displays to try. */
139#define MAX_DISPLAYS 1000
140
Damien Miller13390022005-07-06 09:44:19 +1000141/* Saved X11 local (client) display. */
142static char *x11_saved_display = NULL;
143
Ben Lindstrome9c99912001-06-09 00:41:05 +0000144/* Saved X11 authentication protocol name. */
145static char *x11_saved_proto = NULL;
146
147/* Saved X11 authentication data. This is the real data. */
148static char *x11_saved_data = NULL;
149static u_int x11_saved_data_len = 0;
150
151/*
152 * Fake X11 authentication data. This is what the server will be sending us;
153 * we should replace any occurrences of this by the real data.
154 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100155static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000156static u_int x11_fake_data_len;
157
158
159/* -- agent forwarding */
160
161#define NUM_SOCKS 10
162
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000163/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000164static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000165
Ben Lindstrome9c99912001-06-09 00:41:05 +0000166/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000168
Damien Millerbd740252008-05-19 15:37:09 +1000169/* non-blocking connect helpers */
170static int connect_next(struct channel_connect *);
171static void channel_connect_ctx_free(struct channel_connect *);
172
Ben Lindstrome9c99912001-06-09 00:41:05 +0000173/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000174
175Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100176channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000177{
178 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000179
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000180 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100181 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000182 return NULL;
183 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000184 c = channels[id];
185 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100186 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000187 return NULL;
188 }
189 return c;
190}
191
Damien Miller5428f641999-11-25 11:54:57 +1100192/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100193 * Returns the channel if it is allowed to receive protocol messages.
194 * Private channels, like listening sockets, may not receive messages.
195 */
196Channel *
197channel_lookup(int id)
198{
199 Channel *c;
200
201 if ((c = channel_by_id(id)) == NULL)
202 return (NULL);
203
Damien Millerd62f2ca2006-03-26 13:57:41 +1100204 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100205 case SSH_CHANNEL_X11_OPEN:
206 case SSH_CHANNEL_LARVAL:
207 case SSH_CHANNEL_CONNECTING:
208 case SSH_CHANNEL_DYNAMIC:
209 case SSH_CHANNEL_OPENING:
210 case SSH_CHANNEL_OPEN:
211 case SSH_CHANNEL_INPUT_DRAINING:
212 case SSH_CHANNEL_OUTPUT_DRAINING:
213 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100214 }
215 logit("Non-public channel %d, type %d.", id, c->type);
216 return (NULL);
217}
218
219/*
Damien Millere247cc42000-05-07 12:03:14 +1000220 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000221 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100222 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000223static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100224channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000225 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226{
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100228 channel_max_fd = MAX(channel_max_fd, rfd);
229 channel_max_fd = MAX(channel_max_fd, wfd);
230 channel_max_fd = MAX(channel_max_fd, efd);
231
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100232 if (rfd != -1)
233 fcntl(rfd, F_SETFD, FD_CLOEXEC);
234 if (wfd != -1 && wfd != rfd)
235 fcntl(wfd, F_SETFD, FD_CLOEXEC);
236 if (efd != -1 && efd != rfd && efd != wfd)
237 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000238
Damien Miller6f83b8e2000-05-02 09:23:45 +1000239 c->rfd = rfd;
240 c->wfd = wfd;
241 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000242 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000243 c->efd = efd;
244 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100245
Darren Tuckered3cdc02008-06-16 23:29:18 +1000246 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000247 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000248 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100249
Damien Miller69b69aa2000-10-28 14:19:58 +1100250 /* enable nonblocking mode */
251 if (nonblock) {
252 if (rfd != -1)
253 set_nonblock(rfd);
254 if (wfd != -1)
255 set_nonblock(wfd);
256 if (efd != -1)
257 set_nonblock(efd);
258 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000259}
260
261/*
262 * Allocate a new channel object and set its type and socket. This will cause
263 * remote_name to be freed.
264 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000265Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000266channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000267 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000268{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000269 int found;
270 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller95def091999-11-25 00:26:21 +1100273 /* Do initial allocation if this is the first call. */
274 if (channels_alloc == 0) {
275 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100276 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100277 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000278 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100279 }
280 /* Try to find a free slot where to put the new channel. */
281 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000282 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100283 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000284 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100285 break;
286 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000287 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100288 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100289 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000290 if (channels_alloc > 10000)
291 fatal("channel_new: internal error: channels_alloc %d "
292 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100293 channels = xrealloc(channels, channels_alloc + 10,
294 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000295 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100296 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100297 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000298 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100299 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000300 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100301 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100302 buffer_init(&c->input);
303 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000304 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100305 c->path = NULL;
Damien Miller5144df92002-01-22 23:28:45 +1100306 c->ostate = CHAN_OUTPUT_OPEN;
307 c->istate = CHAN_INPUT_OPEN;
308 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000309 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100310 c->self = found;
311 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000312 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000313 c->local_window = window;
314 c->local_window_max = window;
315 c->local_consumed = 0;
316 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100317 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000318 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000319 c->remote_window = 0;
320 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000321 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100322 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000323 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100324 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000325 c->open_confirm = NULL;
326 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000327 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100328 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000329 c->filter_ctx = NULL;
330 c->filter_cleanup = NULL;
Darren Tucker876045b2010-01-08 17:08:00 +1100331 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000332 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100333 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000334 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000335}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000336
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000337static int
338channel_find_maxfd(void)
339{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000340 u_int i;
341 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000342 Channel *c;
343
344 for (i = 0; i < channels_alloc; i++) {
345 c = channels[i];
346 if (c != NULL) {
347 max = MAX(max, c->rfd);
348 max = MAX(max, c->wfd);
349 max = MAX(max, c->efd);
350 }
351 }
352 return max;
353}
354
355int
356channel_close_fd(int *fdp)
357{
358 int ret = 0, fd = *fdp;
359
360 if (fd != -1) {
361 ret = close(fd);
362 *fdp = -1;
363 if (fd == channel_max_fd)
364 channel_max_fd = channel_find_maxfd();
365 }
366 return ret;
367}
368
Damien Miller6f83b8e2000-05-02 09:23:45 +1000369/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000370static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000371channel_close_fds(Channel *c)
372{
Damien Miller0e220db2004-06-15 10:34:08 +1000373 debug3("channel %d: close_fds r %d w %d e %d c %d",
374 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000375
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000376 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000377 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000378 channel_close_fd(&c->rfd);
379 channel_close_fd(&c->wfd);
380 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000381}
382
383/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000384void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000385channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000387 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000388 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000389 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000390
391 for (n = 0, i = 0; i < channels_alloc; i++)
392 if (channels[i])
393 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000394 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000395 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000396
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000397 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000398 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000399 xfree(s);
400
Damien Miller6f83b8e2000-05-02 09:23:45 +1000401 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000402 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000403 if (c->ctl_fd != -1)
404 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000405 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 buffer_free(&c->input);
407 buffer_free(&c->output);
408 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000409 if (c->remote_name) {
410 xfree(c->remote_name);
411 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100412 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100413 if (c->path) {
414 xfree(c->path);
415 c->path = NULL;
416 }
Damien Millerb84886b2008-05-19 15:05:07 +1000417 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
418 if (cc->abandon_cb != NULL)
419 cc->abandon_cb(c, cc->ctx);
420 TAILQ_REMOVE(&c->status_confirms, cc, entry);
421 bzero(cc, sizeof(*cc));
422 xfree(cc);
423 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000424 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
425 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000426 channels[c->self] = NULL;
427 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428}
429
Ben Lindstrome9c99912001-06-09 00:41:05 +0000430void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000431channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000433 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434
Ben Lindstrom601e4362001-06-21 03:19:23 +0000435 for (i = 0; i < channels_alloc; i++)
436 if (channels[i] != NULL)
437 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000438}
439
440/*
441 * Closes the sockets/fds of all channels. This is used to close extra file
442 * descriptors after a fork.
443 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000444void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000445channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000447 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448
449 for (i = 0; i < channels_alloc; i++)
450 if (channels[i] != NULL)
451 channel_close_fds(channels[i]);
452}
453
454/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000455 * Stop listening to channels.
456 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000457void
458channel_stop_listening(void)
459{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000460 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000461 Channel *c;
462
463 for (i = 0; i < channels_alloc; i++) {
464 c = channels[i];
465 if (c != NULL) {
466 switch (c->type) {
467 case SSH_CHANNEL_AUTH_SOCKET:
468 case SSH_CHANNEL_PORT_LISTENER:
469 case SSH_CHANNEL_RPORT_LISTENER:
470 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000471 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000472 channel_free(c);
473 break;
474 }
475 }
476 }
477}
478
479/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480 * Returns true if no channel has too much buffered data, and false if one or
481 * more channel is overfull.
482 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000483int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000484channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000485{
486 u_int i;
487 Channel *c;
488
489 for (i = 0; i < channels_alloc; i++) {
490 c = channels[i];
491 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000492#if 0
493 if (!compat20 &&
494 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100495 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000496 c->self, buffer_len(&c->input));
497 return 0;
498 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000499#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000501 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000502 c->self, buffer_len(&c->output),
503 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000504 return 0;
505 }
506 }
507 }
508 return 1;
509}
510
511/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000512int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000513channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000515 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000516 Channel *c;
517
518 for (i = 0; i < channels_alloc; i++) {
519 c = channels[i];
520 if (c == NULL)
521 continue;
522 switch (c->type) {
523 case SSH_CHANNEL_X11_LISTENER:
524 case SSH_CHANNEL_PORT_LISTENER:
525 case SSH_CHANNEL_RPORT_LISTENER:
526 case SSH_CHANNEL_CLOSED:
527 case SSH_CHANNEL_AUTH_SOCKET:
528 case SSH_CHANNEL_DYNAMIC:
529 case SSH_CHANNEL_CONNECTING:
530 case SSH_CHANNEL_ZOMBIE:
531 continue;
532 case SSH_CHANNEL_LARVAL:
533 if (!compat20)
534 fatal("cannot happen: SSH_CHANNEL_LARVAL");
535 continue;
536 case SSH_CHANNEL_OPENING:
537 case SSH_CHANNEL_OPEN:
538 case SSH_CHANNEL_X11_OPEN:
539 return 1;
540 case SSH_CHANNEL_INPUT_DRAINING:
541 case SSH_CHANNEL_OUTPUT_DRAINING:
542 if (!compat13)
543 fatal("cannot happen: OUT_DRAIN");
544 return 1;
545 default:
546 fatal("channel_still_open: bad channel type %d", c->type);
547 /* NOTREACHED */
548 }
549 }
550 return 0;
551}
552
553/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000554int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000555channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000556{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000557 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000558 Channel *c;
559
560 for (i = 0; i < channels_alloc; i++) {
561 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000562 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563 continue;
564 switch (c->type) {
565 case SSH_CHANNEL_CLOSED:
566 case SSH_CHANNEL_DYNAMIC:
567 case SSH_CHANNEL_X11_LISTENER:
568 case SSH_CHANNEL_PORT_LISTENER:
569 case SSH_CHANNEL_RPORT_LISTENER:
570 case SSH_CHANNEL_OPENING:
571 case SSH_CHANNEL_CONNECTING:
572 case SSH_CHANNEL_ZOMBIE:
573 continue;
574 case SSH_CHANNEL_LARVAL:
575 case SSH_CHANNEL_AUTH_SOCKET:
576 case SSH_CHANNEL_OPEN:
577 case SSH_CHANNEL_X11_OPEN:
578 return i;
579 case SSH_CHANNEL_INPUT_DRAINING:
580 case SSH_CHANNEL_OUTPUT_DRAINING:
581 if (!compat13)
582 fatal("cannot happen: OUT_DRAIN");
583 return i;
584 default:
585 fatal("channel_find_open: bad channel type %d", c->type);
586 /* NOTREACHED */
587 }
588 }
589 return -1;
590}
591
592
593/*
594 * Returns a message describing the currently open forwarded connections,
595 * suitable for sending to the client. The message contains crlf pairs for
596 * newlines.
597 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000598char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000599channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000600{
601 Buffer buffer;
602 Channel *c;
603 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000604 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605
606 buffer_init(&buffer);
607 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
608 buffer_append(&buffer, buf, strlen(buf));
609 for (i = 0; i < channels_alloc; i++) {
610 c = channels[i];
611 if (c == NULL)
612 continue;
613 switch (c->type) {
614 case SSH_CHANNEL_X11_LISTENER:
615 case SSH_CHANNEL_PORT_LISTENER:
616 case SSH_CHANNEL_RPORT_LISTENER:
617 case SSH_CHANNEL_CLOSED:
618 case SSH_CHANNEL_AUTH_SOCKET:
619 case SSH_CHANNEL_ZOMBIE:
620 continue;
621 case SSH_CHANNEL_LARVAL:
622 case SSH_CHANNEL_OPENING:
623 case SSH_CHANNEL_CONNECTING:
624 case SSH_CHANNEL_DYNAMIC:
625 case SSH_CHANNEL_OPEN:
626 case SSH_CHANNEL_X11_OPEN:
627 case SSH_CHANNEL_INPUT_DRAINING:
628 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000629 snprintf(buf, sizeof buf,
630 " #%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 +0000631 c->self, c->remote_name,
632 c->type, c->remote_id,
633 c->istate, buffer_len(&c->input),
634 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000635 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000636 buffer_append(&buffer, buf, strlen(buf));
637 continue;
638 default:
639 fatal("channel_open_message: bad channel type %d", c->type);
640 /* NOTREACHED */
641 }
642 }
643 buffer_append(&buffer, "\0", 1);
644 cp = xstrdup(buffer_ptr(&buffer));
645 buffer_free(&buffer);
646 return cp;
647}
648
649void
650channel_send_open(int id)
651{
652 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000653
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000655 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 return;
657 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000658 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 packet_start(SSH2_MSG_CHANNEL_OPEN);
660 packet_put_cstring(c->ctype);
661 packet_put_int(c->self);
662 packet_put_int(c->local_window);
663 packet_put_int(c->local_maxpacket);
664 packet_send();
665}
666
667void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000668channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000669{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000670 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000671
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000673 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674 return;
675 }
Damien Miller0e220db2004-06-15 10:34:08 +1000676 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 packet_start(SSH2_MSG_CHANNEL_REQUEST);
678 packet_put_int(c->remote_id);
679 packet_put_cstring(service);
680 packet_put_char(wantconfirm);
681}
Damien Miller4f7becb2006-03-26 14:10:14 +1100682
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683void
Damien Millerb84886b2008-05-19 15:05:07 +1000684channel_register_status_confirm(int id, channel_confirm_cb *cb,
685 channel_confirm_abandon_cb *abandon_cb, void *ctx)
686{
687 struct channel_confirm *cc;
688 Channel *c;
689
690 if ((c = channel_lookup(id)) == NULL)
691 fatal("channel_register_expect: %d: bad id", id);
692
693 cc = xmalloc(sizeof(*cc));
694 cc->cb = cb;
695 cc->abandon_cb = abandon_cb;
696 cc->ctx = ctx;
697 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
698}
699
700void
701channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000702{
703 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000704
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100706 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707 return;
708 }
Damien Millerb84886b2008-05-19 15:05:07 +1000709 c->open_confirm = fn;
710 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711}
Damien Miller4f7becb2006-03-26 14:10:14 +1100712
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713void
Damien Miller39eda6e2005-11-05 14:52:50 +1100714channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000715{
Damien Millerd47c62a2005-12-13 19:33:57 +1100716 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000717
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000719 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720 return;
721 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000722 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100723 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724}
Damien Miller4f7becb2006-03-26 14:10:14 +1100725
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726void
727channel_cancel_cleanup(int id)
728{
Damien Millerd47c62a2005-12-13 19:33:57 +1100729 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000730
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000732 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 return;
734 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000735 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100736 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737}
Damien Miller4f7becb2006-03-26 14:10:14 +1100738
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739void
Damien Miller077b2382005-12-31 16:22:32 +1100740channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000741 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742{
743 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000744
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000746 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747 return;
748 }
Damien Miller077b2382005-12-31 16:22:32 +1100749 c->input_filter = ifn;
750 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000751 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000752 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753}
754
755void
756channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000757 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758{
759 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000760
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
762 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000763 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100765 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
767 packet_put_int(c->remote_id);
768 packet_put_int(c->local_window);
769 packet_send();
770}
771
Damien Miller5428f641999-11-25 11:54:57 +1100772/*
Damien Millerb38eff82000-04-01 11:09:21 +1000773 * 'channel_pre*' are called just before select() to add any bits relevant to
774 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100775 */
Damien Millerb38eff82000-04-01 11:09:21 +1000776/*
777 * 'channel_post*': perform any appropriate operations for channels which
778 * have events pending.
779 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100780typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000781chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
782chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
783
Damien Miller8473dd82006-07-24 14:08:32 +1000784/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000785static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100786channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000787{
788 FD_SET(c->sock, readset);
789}
790
Damien Miller8473dd82006-07-24 14:08:32 +1000791/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100793channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000794{
795 debug3("channel %d: waiting for connection", c->self);
796 FD_SET(c->sock, writeset);
797}
798
Ben Lindstrombba81212001-06-25 05:01:22 +0000799static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100800channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000801{
802 if (buffer_len(&c->input) < packet_get_maxsize())
803 FD_SET(c->sock, readset);
804 if (buffer_len(&c->output) > 0)
805 FD_SET(c->sock, writeset);
806}
807
Ben Lindstrombba81212001-06-25 05:01:22 +0000808static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100809channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000810{
Damien Millerde6987c2002-01-22 23:20:40 +1100811 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000812
Damien Miller33b13562000-04-04 14:38:59 +1000813 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100814 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000815 buffer_len(&c->input) < limit &&
816 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000817 FD_SET(c->rfd, readset);
818 if (c->ostate == CHAN_OUTPUT_OPEN ||
819 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
820 if (buffer_len(&c->output) > 0) {
821 FD_SET(c->wfd, writeset);
822 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000823 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000824 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
825 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000826 else
827 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000828 }
829 }
830 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000831 if (compat20 && c->efd != -1 &&
832 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000833 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
834 buffer_len(&c->extended) > 0)
835 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000836 else if (!(c->flags & CHAN_EOF_SENT) &&
837 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000838 buffer_len(&c->extended) < c->remote_window)
839 FD_SET(c->efd, readset);
840 }
Damien Miller0e220db2004-06-15 10:34:08 +1000841 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000842 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000843 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
844 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000845}
846
Damien Miller8473dd82006-07-24 14:08:32 +1000847/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100849channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000850{
851 if (buffer_len(&c->input) == 0) {
852 packet_start(SSH_MSG_CHANNEL_CLOSE);
853 packet_put_int(c->remote_id);
854 packet_send();
855 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000856 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000857 }
858}
859
Damien Miller8473dd82006-07-24 14:08:32 +1000860/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000861static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100862channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000863{
864 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000865 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000866 else
Damien Millerb38eff82000-04-01 11:09:21 +1000867 FD_SET(c->sock, writeset);
868}
869
870/*
871 * This is a special state for X11 authentication spoofing. An opened X11
872 * connection (when authentication spoofing is being done) remains in this
873 * state until the first packet has been completely read. The authentication
874 * data in that packet is then substituted by the real data if it matches the
875 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000876 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000877 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000878 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000879static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000880x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000881{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000882 u_char *ucp;
883 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000884
885 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000886 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000887 return 0;
888
889 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100890 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000891 if (ucp[0] == 0x42) { /* Byte order MSB first. */
892 proto_len = 256 * ucp[6] + ucp[7];
893 data_len = 256 * ucp[8] + ucp[9];
894 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
895 proto_len = ucp[6] + 256 * ucp[7];
896 data_len = ucp[8] + 256 * ucp[9];
897 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000898 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100899 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000900 return -1;
901 }
902
903 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000904 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000905 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
906 return 0;
907
908 /* Check if authentication protocol matches. */
909 if (proto_len != strlen(x11_saved_proto) ||
910 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000911 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000912 return -1;
913 }
914 /* Check if authentication data matches our fake data. */
915 if (data_len != x11_fake_data_len ||
916 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
917 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000918 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000919 return -1;
920 }
921 /* Check fake data length */
922 if (x11_fake_data_len != x11_saved_data_len) {
923 error("X11 fake_data_len %d != saved_data_len %d",
924 x11_fake_data_len, x11_saved_data_len);
925 return -1;
926 }
927 /*
928 * Received authentication protocol and data match
929 * our fake data. Substitute the fake data with real
930 * data.
931 */
932 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
933 x11_saved_data, x11_saved_data_len);
934 return 1;
935}
936
Ben Lindstrombba81212001-06-25 05:01:22 +0000937static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100938channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000939{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000940 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000941
Damien Millerb38eff82000-04-01 11:09:21 +1000942 if (ret == 1) {
943 /* Start normal processing for the channel. */
944 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000945 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000946 } else if (ret == -1) {
947 /*
948 * We have received an X11 connection that has bad
949 * authentication information.
950 */
Damien Miller996acd22003-04-09 20:59:48 +1000951 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000952 buffer_clear(&c->input);
953 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000954 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000955 c->sock = -1;
956 c->type = SSH_CHANNEL_CLOSED;
957 packet_start(SSH_MSG_CHANNEL_CLOSE);
958 packet_put_int(c->remote_id);
959 packet_send();
960 }
961}
962
Ben Lindstrombba81212001-06-25 05:01:22 +0000963static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100964channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000965{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000966 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000967
968 /* c->force_drain = 1; */
969
Damien Millerb38eff82000-04-01 11:09:21 +1000970 if (ret == 1) {
971 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100972 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000973 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000974 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000975 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100976 chan_read_failed(c);
977 buffer_clear(&c->input);
978 chan_ibuf_empty(c);
979 buffer_clear(&c->output);
980 /* for proto v1, the peer will send an IEOF */
981 if (compat20)
982 chan_write_failed(c);
983 else
984 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000985 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000986 }
987}
988
Ben Lindstromb3921512001-04-11 15:57:50 +0000989/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000990/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000991static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100992channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000993{
Damien Millera10f5612002-09-12 09:49:15 +1000994 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +1100995 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100996 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000997 struct {
998 u_int8_t version;
999 u_int8_t command;
1000 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001001 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001002 } s4_req, s4_rsp;
1003
Ben Lindstromb3921512001-04-11 15:57:50 +00001004 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001005
1006 have = buffer_len(&c->input);
1007 len = sizeof(s4_req);
1008 if (have < len)
1009 return 0;
1010 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001011
1012 need = 1;
1013 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1014 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1015 debug2("channel %d: socks4a request", c->self);
1016 /* ... and needs an extra string (the hostname) */
1017 need = 2;
1018 }
1019 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001020 for (found = 0, i = len; i < have; i++) {
1021 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001022 found++;
1023 if (found == need)
1024 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001025 }
1026 if (i > 1024) {
1027 /* the peer is probably sending garbage */
1028 debug("channel %d: decode socks4: too long",
1029 c->self);
1030 return -1;
1031 }
1032 }
Damien Miller1781f532009-01-28 16:24:41 +11001033 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001034 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001035 buffer_get(&c->input, (char *)&s4_req.version, 1);
1036 buffer_get(&c->input, (char *)&s4_req.command, 1);
1037 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001038 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001039 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001040 p = buffer_ptr(&c->input);
1041 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001042 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001043 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001044 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001045 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001046 c->self, len, have);
1047 strlcpy(username, p, sizeof(username));
1048 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001049
Damien Millera1c1b6c2009-01-28 16:29:49 +11001050 if (c->path != NULL) {
1051 xfree(c->path);
1052 c->path = NULL;
1053 }
Damien Miller1781f532009-01-28 16:24:41 +11001054 if (need == 1) { /* SOCKS4: one string */
1055 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001056 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001057 } else { /* SOCKS4A: two strings */
1058 have = buffer_len(&c->input);
1059 p = buffer_ptr(&c->input);
1060 len = strlen(p);
1061 debug2("channel %d: decode socks4a: host %s/%d",
1062 c->self, p, len);
1063 len++; /* trailing '\0' */
1064 if (len > have)
1065 fatal("channel %d: decode socks4a: len %d > have %d",
1066 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001067 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001068 error("channel %d: hostname \"%.100s\" too long",
1069 c->self, p);
1070 return -1;
1071 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001072 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001073 buffer_consume(&c->input, len);
1074 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001075 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001076
Damien Millerfbdeece2003-09-02 22:52:31 +10001077 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001078 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001079
Ben Lindstromb3921512001-04-11 15:57:50 +00001080 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001081 debug("channel %d: cannot handle: %s cn %d",
1082 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001083 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001084 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001085 s4_rsp.version = 0; /* vn: 0 for reply */
1086 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001087 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001088 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001089 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001090 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001091}
1092
Darren Tucker46471c92003-07-03 13:55:19 +10001093/* try to decode a socks5 header */
1094#define SSH_SOCKS5_AUTHDONE 0x1000
1095#define SSH_SOCKS5_NOAUTH 0x00
1096#define SSH_SOCKS5_IPV4 0x01
1097#define SSH_SOCKS5_DOMAIN 0x03
1098#define SSH_SOCKS5_IPV6 0x04
1099#define SSH_SOCKS5_CONNECT 0x01
1100#define SSH_SOCKS5_SUCCESS 0x00
1101
Damien Miller8473dd82006-07-24 14:08:32 +10001102/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001103static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001104channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001105{
1106 struct {
1107 u_int8_t version;
1108 u_int8_t command;
1109 u_int8_t reserved;
1110 u_int8_t atyp;
1111 } s5_req, s5_rsp;
1112 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001113 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001114 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001115
1116 debug2("channel %d: decode socks5", c->self);
1117 p = buffer_ptr(&c->input);
1118 if (p[0] != 0x05)
1119 return -1;
1120 have = buffer_len(&c->input);
1121 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1122 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001123 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001124 return 0;
1125 nmethods = p[1];
1126 if (have < nmethods + 2)
1127 return 0;
1128 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001129 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001130 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001131 found = 1;
1132 break;
1133 }
1134 }
1135 if (!found) {
1136 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1137 c->self);
1138 return -1;
1139 }
1140 buffer_consume(&c->input, nmethods + 2);
1141 buffer_put_char(&c->output, 0x05); /* version */
1142 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1143 FD_SET(c->sock, writeset);
1144 c->flags |= SSH_SOCKS5_AUTHDONE;
1145 debug2("channel %d: socks5 auth done", c->self);
1146 return 0; /* need more */
1147 }
1148 debug2("channel %d: socks5 post auth", c->self);
1149 if (have < sizeof(s5_req)+1)
1150 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001151 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001152 if (s5_req.version != 0x05 ||
1153 s5_req.command != SSH_SOCKS5_CONNECT ||
1154 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001155 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001156 return -1;
1157 }
Darren Tucker47eede72005-03-14 23:08:12 +11001158 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001159 case SSH_SOCKS5_IPV4:
1160 addrlen = 4;
1161 af = AF_INET;
1162 break;
1163 case SSH_SOCKS5_DOMAIN:
1164 addrlen = p[sizeof(s5_req)];
1165 af = -1;
1166 break;
1167 case SSH_SOCKS5_IPV6:
1168 addrlen = 16;
1169 af = AF_INET6;
1170 break;
1171 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001172 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001173 return -1;
1174 }
Damien Miller0f077072006-07-10 22:21:02 +10001175 need = sizeof(s5_req) + addrlen + 2;
1176 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1177 need++;
1178 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001179 return 0;
1180 buffer_consume(&c->input, sizeof(s5_req));
1181 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1182 buffer_consume(&c->input, 1); /* host string length */
1183 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1184 buffer_get(&c->input, (char *)&dest_port, 2);
1185 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001186 if (c->path != NULL) {
1187 xfree(c->path);
1188 c->path = NULL;
1189 }
1190 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001191 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001192 error("channel %d: dynamic request: socks5 hostname "
1193 "\"%.100s\" too long", c->self, dest_addr);
1194 return -1;
1195 }
1196 c->path = xstrdup(dest_addr);
1197 } else {
1198 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1199 return -1;
1200 c->path = xstrdup(ntop);
1201 }
Darren Tucker46471c92003-07-03 13:55:19 +10001202 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001203
Damien Millerfbdeece2003-09-02 22:52:31 +10001204 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001205 c->self, c->path, c->host_port, s5_req.command);
1206
1207 s5_rsp.version = 0x05;
1208 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1209 s5_rsp.reserved = 0; /* ignored */
1210 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1211 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1212 dest_port = 0; /* ignored */
1213
Damien Millera0fdce92006-03-26 14:28:50 +11001214 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1215 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1216 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001217 return 1;
1218}
1219
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001220Channel *
1221channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1222{
1223 Channel *c;
1224 int in, out;
1225
1226 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1227 port_to_connect);
1228
1229 in = dup(STDIN_FILENO);
1230 out = dup(STDOUT_FILENO);
1231 if (in < 0 || out < 0)
1232 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1233
1234 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1235 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1236 0, "stdio-forward", /*nonblock*/0);
1237
1238 c->path = xstrdup(host_to_connect);
1239 c->host_port = port_to_connect;
1240 c->listening_port = 0;
1241 c->force_drain = 1;
1242
1243 channel_register_fds(c, in, out, -1, 0, 1, 0);
1244 port_open_helper(c, "direct-tcpip");
1245
1246 return c;
1247}
1248
Ben Lindstromb3921512001-04-11 15:57:50 +00001249/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001250static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001251channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001252{
1253 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001254 u_int have;
1255 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001256
1257 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001258 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001259 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001260 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001261 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001262 /* need more */
1263 FD_SET(c->sock, readset);
1264 return;
1265 }
1266 /* try to guess the protocol */
1267 p = buffer_ptr(&c->input);
1268 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001269 case 0x04:
1270 ret = channel_decode_socks4(c, readset, writeset);
1271 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001272 case 0x05:
1273 ret = channel_decode_socks5(c, readset, writeset);
1274 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001275 default:
1276 ret = -1;
1277 break;
1278 }
1279 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001280 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001281 } else if (ret == 0) {
1282 debug2("channel %d: pre_dynamic: need more", c->self);
1283 /* need more */
1284 FD_SET(c->sock, readset);
1285 } else {
1286 /* switch to the next state */
1287 c->type = SSH_CHANNEL_OPENING;
1288 port_open_helper(c, "direct-tcpip");
1289 }
1290}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001291
Damien Millerb38eff82000-04-01 11:09:21 +10001292/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001293/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001294static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001295channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001296{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001297 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001298 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001299 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001300 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001301 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001302 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001303
1304 if (FD_ISSET(c->sock, readset)) {
1305 debug("X11 connection requested.");
1306 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001307 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001308 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001309 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001310 channel_close_fd(&c->sock);
1311 chan_mark_dead(c);
1312 }
Damien Millerb38eff82000-04-01 11:09:21 +10001313 if (newsock < 0) {
1314 error("accept: %.100s", strerror(errno));
1315 return;
1316 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001317 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001318 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001319 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001320 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001321 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001322
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001323 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001324 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001325 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001326 if (compat20) {
1327 packet_start(SSH2_MSG_CHANNEL_OPEN);
1328 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001329 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001330 packet_put_int(nc->local_window_max);
1331 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001332 /* originator ipaddr and port */
1333 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001334 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001335 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001336 } else {
1337 packet_put_int(remote_port);
1338 }
Damien Millerbd483e72000-04-30 10:00:53 +10001339 packet_send();
1340 } else {
1341 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001342 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001343 if (packet_get_protocol_flags() &
1344 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001345 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001346 packet_send();
1347 }
Damien Millerd83ff352001-01-30 09:19:34 +11001348 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001349 }
1350}
1351
Ben Lindstrombba81212001-06-25 05:01:22 +00001352static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001353port_open_helper(Channel *c, char *rtype)
1354{
1355 int direct;
1356 char buf[1024];
1357 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001358 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001359
1360 direct = (strcmp(rtype, "direct-tcpip") == 0);
1361
1362 snprintf(buf, sizeof buf,
1363 "%s: listening port %d for %.100s port %d, "
1364 "connect from %.200s port %d",
1365 rtype, c->listening_port, c->path, c->host_port,
1366 remote_ipaddr, remote_port);
1367
1368 xfree(c->remote_name);
1369 c->remote_name = xstrdup(buf);
1370
1371 if (compat20) {
1372 packet_start(SSH2_MSG_CHANNEL_OPEN);
1373 packet_put_cstring(rtype);
1374 packet_put_int(c->self);
1375 packet_put_int(c->local_window_max);
1376 packet_put_int(c->local_maxpacket);
1377 if (direct) {
1378 /* target host, port */
1379 packet_put_cstring(c->path);
1380 packet_put_int(c->host_port);
1381 } else {
1382 /* listen address, port */
1383 packet_put_cstring(c->path);
1384 packet_put_int(c->listening_port);
1385 }
1386 /* originator host and port */
1387 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001388 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001389 packet_send();
1390 } else {
1391 packet_start(SSH_MSG_PORT_OPEN);
1392 packet_put_int(c->self);
1393 packet_put_cstring(c->path);
1394 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001395 if (packet_get_protocol_flags() &
1396 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001397 packet_put_cstring(c->remote_name);
1398 packet_send();
1399 }
1400 xfree(remote_ipaddr);
1401}
1402
Damien Miller5e7fd072005-11-05 14:53:39 +11001403static void
1404channel_set_reuseaddr(int fd)
1405{
1406 int on = 1;
1407
1408 /*
1409 * Set socket options.
1410 * Allow local port reuse in TIME_WAIT.
1411 */
1412 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1413 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1414}
1415
Damien Millerb38eff82000-04-01 11:09:21 +10001416/*
1417 * This socket is listening for connections to a forwarded TCP/IP port.
1418 */
Damien Miller8473dd82006-07-24 14:08:32 +10001419/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001420static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001421channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001422{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001423 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001424 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001425 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001426 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001427 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001428
Damien Millerb38eff82000-04-01 11:09:21 +10001429 if (FD_ISSET(c->sock, readset)) {
1430 debug("Connection to port %d forwarding "
1431 "to %.100s port %d requested.",
1432 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001433
Damien Miller4623a752001-10-10 15:03:58 +10001434 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1435 nextstate = SSH_CHANNEL_OPENING;
1436 rtype = "forwarded-tcpip";
1437 } else {
1438 if (c->host_port == 0) {
1439 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001440 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001441 } else {
1442 nextstate = SSH_CHANNEL_OPENING;
1443 rtype = "direct-tcpip";
1444 }
1445 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001446
Damien Millerb38eff82000-04-01 11:09:21 +10001447 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001448 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001449 if (newsock < 0) {
1450 error("accept: %.100s", strerror(errno));
1451 return;
1452 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001453 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001454 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1455 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001456 nc->listening_port = c->listening_port;
1457 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001458 if (c->path != NULL)
1459 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001460
Darren Tucker876045b2010-01-08 17:08:00 +11001461 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001462 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001463 }
1464}
1465
1466/*
1467 * This is the authentication agent socket listening for connections from
1468 * clients.
1469 */
Damien Miller8473dd82006-07-24 14:08:32 +10001470/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001471static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001472channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001473{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001474 Channel *nc;
1475 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001476 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001477 socklen_t addrlen;
1478
1479 if (FD_ISSET(c->sock, readset)) {
1480 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001481 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001482 if (newsock < 0) {
1483 error("accept from auth socket: %.100s", strerror(errno));
1484 return;
1485 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001486 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001487 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1488 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001489 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001490 if (compat20) {
1491 packet_start(SSH2_MSG_CHANNEL_OPEN);
1492 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001493 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001494 packet_put_int(c->local_window_max);
1495 packet_put_int(c->local_maxpacket);
1496 } else {
1497 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001498 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001499 }
Damien Millerb38eff82000-04-01 11:09:21 +10001500 packet_send();
1501 }
1502}
1503
Damien Miller8473dd82006-07-24 14:08:32 +10001504/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001505static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001506channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001507{
Damien Millerbd740252008-05-19 15:37:09 +10001508 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001509 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001510
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001511 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001512 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001513 err = errno;
1514 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001515 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001516 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001517 debug("channel %d: connected to %s port %d",
1518 c->self, c->connect_ctx.host, c->connect_ctx.port);
1519 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001520 c->type = SSH_CHANNEL_OPEN;
1521 if (compat20) {
1522 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1523 packet_put_int(c->remote_id);
1524 packet_put_int(c->self);
1525 packet_put_int(c->local_window);
1526 packet_put_int(c->local_maxpacket);
1527 } else {
1528 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1529 packet_put_int(c->remote_id);
1530 packet_put_int(c->self);
1531 }
1532 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001533 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001534 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001535 /* Try next address, if any */
1536 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1537 close(c->sock);
1538 c->sock = c->rfd = c->wfd = sock;
1539 channel_max_fd = channel_find_maxfd();
1540 return;
1541 }
1542 /* Exhausted all addresses */
1543 error("connect_to %.100s port %d: failed.",
1544 c->connect_ctx.host, c->connect_ctx.port);
1545 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001546 if (compat20) {
1547 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1548 packet_put_int(c->remote_id);
1549 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1550 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1551 packet_put_cstring(strerror(err));
1552 packet_put_cstring("");
1553 }
1554 } else {
1555 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1556 packet_put_int(c->remote_id);
1557 }
1558 chan_mark_dead(c);
1559 }
1560 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001561 }
1562}
1563
Damien Miller8473dd82006-07-24 14:08:32 +10001564/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001565static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001566channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001567{
Darren Tucker11327cc2005-03-14 23:22:25 +11001568 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001569 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001570
Damien Miller835284b2007-06-11 13:03:16 +10001571 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1572 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001573 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001574 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001575 if (len < 0 && (errno == EINTR ||
1576 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001577 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001578#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001579 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001580#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001581 if ((!c->isatty && len <= 0) ||
1582 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001583#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001584 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001585 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001586 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001587 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001588 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001589 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001590 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001591 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001592 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001593 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001594 } else {
1595 chan_read_failed(c);
1596 }
1597 return -1;
1598 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001599 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001600 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001601 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001602 chan_read_failed(c);
1603 }
Damien Millerd27b9472005-12-13 19:29:02 +11001604 } else if (c->datagram) {
1605 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001606 } else {
1607 buffer_append(&c->input, buf, len);
1608 }
Damien Millerb38eff82000-04-01 11:09:21 +10001609 }
1610 return 1;
1611}
Damien Miller4f7becb2006-03-26 14:10:14 +11001612
Damien Miller8473dd82006-07-24 14:08:32 +10001613/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001614static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001615channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001616{
Ben Lindstrome229b252001-03-05 06:28:06 +00001617 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001618 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001619 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001620 int len;
1621
1622 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001623 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001624 FD_ISSET(c->wfd, writeset) &&
1625 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001626 if (c->output_filter != NULL) {
1627 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1628 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001629 if (c->type != SSH_CHANNEL_OPEN)
1630 chan_mark_dead(c);
1631 else
1632 chan_write_failed(c);
1633 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001634 }
1635 } else if (c->datagram) {
1636 buf = data = buffer_get_string(&c->output, &dlen);
1637 } else {
1638 buf = data = buffer_ptr(&c->output);
1639 dlen = buffer_len(&c->output);
1640 }
1641
Damien Millerd27b9472005-12-13 19:29:02 +11001642 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001643 /* ignore truncated writes, datagrams might get lost */
1644 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001645 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001646 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001647 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1648 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001649 return 1;
1650 if (len <= 0) {
1651 if (c->type != SSH_CHANNEL_OPEN)
1652 chan_mark_dead(c);
1653 else
1654 chan_write_failed(c);
1655 return -1;
1656 }
1657 return 1;
1658 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001659#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001660 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001661 if (compat20 && c->wfd_isatty)
1662 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001663#endif
Damien Miller077b2382005-12-31 16:22:32 +11001664
1665 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001666 if (len < 0 &&
1667 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001668 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001669 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001670 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001671 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001672 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001673 return -1;
1674 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001675 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001676 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001677 c->type = SSH_CHANNEL_INPUT_DRAINING;
1678 } else {
1679 chan_write_failed(c);
1680 }
1681 return -1;
1682 }
Darren Tucker3980b632009-08-28 11:02:37 +10001683#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001684 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001685 if (tcgetattr(c->wfd, &tio) == 0 &&
1686 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1687 /*
1688 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001689 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001690 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001691 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001692 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001693 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001694 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001695 }
1696 }
Darren Tucker3980b632009-08-28 11:02:37 +10001697#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001698 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001699 if (compat20 && len > 0) {
1700 c->local_consumed += len;
1701 }
1702 }
1703 return 1;
1704}
Damien Miller4f7becb2006-03-26 14:10:14 +11001705
Ben Lindstrombba81212001-06-25 05:01:22 +00001706static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001707channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001708{
Darren Tucker11327cc2005-03-14 23:22:25 +11001709 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001710 int len;
1711
Damien Miller1383bd82000-04-06 12:32:37 +10001712/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001713 if (c->efd != -1) {
1714 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1715 FD_ISSET(c->efd, writeset) &&
1716 buffer_len(&c->extended) > 0) {
1717 len = write(c->efd, buffer_ptr(&c->extended),
1718 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001719 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001720 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001721 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1722 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001723 return 1;
1724 if (len <= 0) {
1725 debug2("channel %d: closing write-efd %d",
1726 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001727 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001728 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001729 buffer_consume(&c->extended, len);
1730 c->local_consumed += len;
1731 }
1732 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001733 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001734 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001735 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001736 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001737 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1738 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001739 return 1;
1740 if (len <= 0) {
1741 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001742 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001743 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001744 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001745 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001746 }
Damien Miller33b13562000-04-04 14:38:59 +10001747 }
1748 }
1749 return 1;
1750}
Damien Miller4f7becb2006-03-26 14:10:14 +11001751
Damien Miller8473dd82006-07-24 14:08:32 +10001752/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001754channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001755{
1756 char buf[16];
1757 int len;
1758
1759 /* Monitor control fd to detect if the slave client exits */
1760 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1761 len = read(c->ctl_fd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001762 if (len < 0 &&
1763 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller0e220db2004-06-15 10:34:08 +10001764 return 1;
1765 if (len <= 0) {
1766 debug2("channel %d: ctl read<=0", c->self);
1767 if (c->type != SSH_CHANNEL_OPEN) {
1768 debug2("channel %d: not open", c->self);
1769 chan_mark_dead(c);
1770 return -1;
1771 } else {
1772 chan_read_failed(c);
1773 chan_write_failed(c);
1774 }
1775 return -1;
1776 } else
1777 fatal("%s: unexpected data on ctl fd", __func__);
1778 }
1779 return 1;
1780}
Damien Miller4f7becb2006-03-26 14:10:14 +11001781
Damien Miller0e220db2004-06-15 10:34:08 +10001782static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001783channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001784{
Ben Lindstromb3921512001-04-11 15:57:50 +00001785 if (c->type == SSH_CHANNEL_OPEN &&
1786 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001787 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001788 c->local_maxpacket*3) ||
1789 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001790 c->local_consumed > 0) {
1791 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1792 packet_put_int(c->remote_id);
1793 packet_put_int(c->local_consumed);
1794 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001795 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001796 c->self, c->local_window,
1797 c->local_consumed);
1798 c->local_window += c->local_consumed;
1799 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001800 }
1801 return 1;
1802}
1803
Ben Lindstrombba81212001-06-25 05:01:22 +00001804static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001805channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001806{
1807 channel_handle_rfd(c, readset, writeset);
1808 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001809 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001810 return;
Damien Miller33b13562000-04-04 14:38:59 +10001811 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001812 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001813 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001814}
1815
Damien Miller8473dd82006-07-24 14:08:32 +10001816/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001817static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001818channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001819{
1820 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001821
Damien Millerb38eff82000-04-01 11:09:21 +10001822 /* Send buffered output data to the socket. */
1823 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1824 len = write(c->sock, buffer_ptr(&c->output),
1825 buffer_len(&c->output));
1826 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001827 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001828 else
1829 buffer_consume(&c->output, len);
1830 }
1831}
1832
Ben Lindstrombba81212001-06-25 05:01:22 +00001833static void
Damien Miller33b13562000-04-04 14:38:59 +10001834channel_handler_init_20(void)
1835{
Damien Millerde6987c2002-01-22 23:20:40 +11001836 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001837 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001838 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001839 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001840 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001841 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001842 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001843 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001844
Damien Millerde6987c2002-01-22 23:20:40 +11001845 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001846 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001847 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001848 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001849 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001850 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001851 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001852}
1853
Ben Lindstrombba81212001-06-25 05:01:22 +00001854static void
Damien Millerb38eff82000-04-01 11:09:21 +10001855channel_handler_init_13(void)
1856{
1857 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1858 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1859 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1860 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1861 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1862 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1863 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001864 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001865 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001866
Damien Millerde6987c2002-01-22 23:20:40 +11001867 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001868 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1869 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1870 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1871 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001872 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001873 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001874}
1875
Ben Lindstrombba81212001-06-25 05:01:22 +00001876static void
Damien Millerb38eff82000-04-01 11:09:21 +10001877channel_handler_init_15(void)
1878{
Damien Millerde6987c2002-01-22 23:20:40 +11001879 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001880 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001881 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1882 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1883 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001884 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001885 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001886
1887 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1888 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1889 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001890 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001891 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001892 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001893}
1894
Ben Lindstrombba81212001-06-25 05:01:22 +00001895static void
Damien Millerb38eff82000-04-01 11:09:21 +10001896channel_handler_init(void)
1897{
1898 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001899
Damien Miller9f0f5c62001-12-21 14:45:46 +11001900 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001901 channel_pre[i] = NULL;
1902 channel_post[i] = NULL;
1903 }
Damien Miller33b13562000-04-04 14:38:59 +10001904 if (compat20)
1905 channel_handler_init_20();
1906 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001907 channel_handler_init_13();
1908 else
1909 channel_handler_init_15();
1910}
1911
Damien Miller3ec27592001-10-12 11:35:04 +10001912/* gc dead channels */
1913static void
1914channel_garbage_collect(Channel *c)
1915{
1916 if (c == NULL)
1917 return;
1918 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001919 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001920 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001921 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001922 c->detach_user(c->self, NULL);
1923 /* if we still have a callback */
1924 if (c->detach_user != NULL)
1925 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001926 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001927 }
1928 if (!chan_is_dead(c, 1))
1929 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001930 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001931 channel_free(c);
1932}
1933
Ben Lindstrombba81212001-06-25 05:01:22 +00001934static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001935channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001936{
1937 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11001938 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10001939 Channel *c;
1940
1941 if (!did_init) {
1942 channel_handler_init();
1943 did_init = 1;
1944 }
Darren Tucker876045b2010-01-08 17:08:00 +11001945 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001946 c = channels[i];
1947 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001948 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11001949 if (c->delayed) {
1950 if (ftab == channel_pre)
1951 c->delayed = 0;
1952 else
1953 continue;
1954 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001955 if (ftab[c->type] != NULL)
1956 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001957 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001958 }
1959}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001960
Ben Lindstrome9c99912001-06-09 00:41:05 +00001961/*
1962 * Allocate/update select bitmasks and add any bits relevant to channels in
1963 * select bitmasks.
1964 */
Damien Miller4af51302000-04-16 11:18:38 +10001965void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001966channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001967 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001968{
Damien Miller36812092006-03-26 14:22:47 +11001969 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001970
1971 n = MAX(*maxfdp, channel_max_fd);
1972
Damien Miller36812092006-03-26 14:22:47 +11001973 nfdset = howmany(n+1, NFDBITS);
1974 /* Explicitly test here, because xrealloc isn't always called */
1975 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1976 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1977 sz = nfdset * sizeof(fd_mask);
1978
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001979 /* perhaps check sz < nalloc/2 and shrink? */
1980 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001981 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1982 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001983 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001984 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001985 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001986 memset(*readsetp, 0, sz);
1987 memset(*writesetp, 0, sz);
1988
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001989 if (!rekeying)
1990 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001991}
1992
Ben Lindstrome9c99912001-06-09 00:41:05 +00001993/*
1994 * After select, perform any appropriate operations for channels which have
1995 * events pending.
1996 */
Damien Miller4af51302000-04-16 11:18:38 +10001997void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001998channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001999{
Damien Millerb38eff82000-04-01 11:09:21 +10002000 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002001}
2002
Ben Lindstrome9c99912001-06-09 00:41:05 +00002003
Damien Miller5e953212001-01-30 09:14:00 +11002004/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002005void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002006channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002007{
Damien Millerb38eff82000-04-01 11:09:21 +10002008 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002009 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002010
Damien Miller95def091999-11-25 00:26:21 +11002011 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002012 c = channels[i];
2013 if (c == NULL)
2014 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002015
Ben Lindstrome9c99912001-06-09 00:41:05 +00002016 /*
2017 * We are only interested in channels that can have buffered
2018 * incoming data.
2019 */
Damien Miller34132e52000-01-14 15:45:46 +11002020 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002021 if (c->type != SSH_CHANNEL_OPEN &&
2022 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002023 continue;
2024 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002025 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002026 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002027 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002028 if (compat20 &&
2029 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002030 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002031 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002032 continue;
2033 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002034
Damien Miller95def091999-11-25 00:26:21 +11002035 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002036 if ((c->istate == CHAN_INPUT_OPEN ||
2037 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2038 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002039 if (c->datagram) {
2040 if (len > 0) {
2041 u_char *data;
2042 u_int dlen;
2043
2044 data = buffer_get_string(&c->input,
2045 &dlen);
2046 packet_start(SSH2_MSG_CHANNEL_DATA);
2047 packet_put_int(c->remote_id);
2048 packet_put_string(data, dlen);
2049 packet_send();
2050 c->remote_window -= dlen + 4;
2051 xfree(data);
2052 }
2053 continue;
2054 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002055 /*
2056 * Send some data for the other side over the secure
2057 * connection.
2058 */
Damien Miller33b13562000-04-04 14:38:59 +10002059 if (compat20) {
2060 if (len > c->remote_window)
2061 len = c->remote_window;
2062 if (len > c->remote_maxpacket)
2063 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002064 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002065 if (packet_is_interactive()) {
2066 if (len > 1024)
2067 len = 512;
2068 } else {
2069 /* Keep the packets at reasonable size. */
2070 if (len > packet_get_maxsize()/2)
2071 len = packet_get_maxsize()/2;
2072 }
Damien Miller95def091999-11-25 00:26:21 +11002073 }
Damien Millerb38eff82000-04-01 11:09:21 +10002074 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002075 packet_start(compat20 ?
2076 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002077 packet_put_int(c->remote_id);
2078 packet_put_string(buffer_ptr(&c->input), len);
2079 packet_send();
2080 buffer_consume(&c->input, len);
2081 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002082 }
2083 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002084 if (compat13)
2085 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002086 /*
2087 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002088 * tell peer, that we will not send more data: send IEOF.
2089 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002090 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002091 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002092 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2093 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002094 else
2095 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002096 }
Damien Miller33b13562000-04-04 14:38:59 +10002097 /* Send extended data, i.e. stderr */
2098 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002099 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002100 c->remote_window > 0 &&
2101 (len = buffer_len(&c->extended)) > 0 &&
2102 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002103 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002104 c->self, c->remote_window, buffer_len(&c->extended),
2105 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002106 if (len > c->remote_window)
2107 len = c->remote_window;
2108 if (len > c->remote_maxpacket)
2109 len = c->remote_maxpacket;
2110 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2111 packet_put_int(c->remote_id);
2112 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2113 packet_put_string(buffer_ptr(&c->extended), len);
2114 packet_send();
2115 buffer_consume(&c->extended, len);
2116 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002117 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002118 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002119 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002120}
2121
Ben Lindstrome9c99912001-06-09 00:41:05 +00002122
2123/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002124
2125/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002126void
Damien Miller630d6f42002-01-22 23:17:30 +11002127channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002128{
Damien Miller34132e52000-01-14 15:45:46 +11002129 int id;
Damien Miller95def091999-11-25 00:26:21 +11002130 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002131 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002132 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002133
Damien Miller95def091999-11-25 00:26:21 +11002134 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002135 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002136 c = channel_lookup(id);
2137 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002138 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139
Damien Miller95def091999-11-25 00:26:21 +11002140 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002141 if (c->type != SSH_CHANNEL_OPEN &&
2142 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002143 return;
2144
Damien Miller95def091999-11-25 00:26:21 +11002145 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002146 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002147
Damien Millera04ad492004-01-21 11:02:09 +11002148 /*
2149 * Ignore data for protocol > 1.3 if output end is no longer open.
2150 * For protocol 2 the sending side is reducing its window as it sends
2151 * data, so we must 'fake' consumption of the data in order to ensure
2152 * that window updates are sent back. Otherwise the connection might
2153 * deadlock.
2154 */
2155 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2156 if (compat20) {
2157 c->local_window -= data_len;
2158 c->local_consumed += data_len;
2159 }
Damien Millera04ad492004-01-21 11:02:09 +11002160 return;
2161 }
2162
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002163 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002164 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002165 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002166 c->self, data_len, c->local_maxpacket);
2167 }
2168 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002169 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002170 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002171 return;
2172 }
2173 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002174 }
Damien Millerd27b9472005-12-13 19:29:02 +11002175 if (c->datagram)
2176 buffer_put_string(&c->output, data, data_len);
2177 else
2178 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002179 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002180}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002181
Damien Millerd79b4242006-03-31 23:11:44 +11002182/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002183void
Damien Miller630d6f42002-01-22 23:17:30 +11002184channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002185{
2186 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002187 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002188 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002189 Channel *c;
2190
2191 /* Get the channel number and verify it. */
2192 id = packet_get_int();
2193 c = channel_lookup(id);
2194
2195 if (c == NULL)
2196 packet_disconnect("Received extended_data for bad channel %d.", id);
2197 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002198 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002199 return;
2200 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002201 if (c->flags & CHAN_EOF_RCVD) {
2202 if (datafellows & SSH_BUG_EXTEOF)
2203 debug("channel %d: accepting ext data after eof", id);
2204 else
2205 packet_disconnect("Received extended_data after EOF "
2206 "on channel %d.", id);
2207 }
Damien Miller33b13562000-04-04 14:38:59 +10002208 tcode = packet_get_int();
2209 if (c->efd == -1 ||
2210 c->extended_usage != CHAN_EXTENDED_WRITE ||
2211 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002212 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002213 return;
2214 }
2215 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002216 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002217 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002218 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002219 c->self, data_len, c->local_window);
2220 xfree(data);
2221 return;
2222 }
Damien Millerd3444942000-09-30 14:20:03 +11002223 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002224 c->local_window -= data_len;
2225 buffer_append(&c->extended, data, data_len);
2226 xfree(data);
2227}
2228
Damien Millerd79b4242006-03-31 23:11:44 +11002229/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002230void
Damien Miller630d6f42002-01-22 23:17:30 +11002231channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002232{
2233 int id;
2234 Channel *c;
2235
Damien Millerb38eff82000-04-01 11:09:21 +10002236 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002237 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002238 c = channel_lookup(id);
2239 if (c == NULL)
2240 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2241 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002242
2243 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002244 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002245 debug("channel %d: FORCE input drain", c->self);
2246 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002247 if (buffer_len(&c->input) == 0)
2248 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002249 }
2250
Damien Millerb38eff82000-04-01 11:09:21 +10002251}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002252
Damien Millerd79b4242006-03-31 23:11:44 +11002253/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002254void
Damien Miller630d6f42002-01-22 23:17:30 +11002255channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002256{
Damien Millerb38eff82000-04-01 11:09:21 +10002257 int id;
2258 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002259
Damien Millerb38eff82000-04-01 11:09:21 +10002260 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002261 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002262 c = channel_lookup(id);
2263 if (c == NULL)
2264 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002265
2266 /*
2267 * Send a confirmation that we have closed the channel and no more
2268 * data is coming for it.
2269 */
Damien Miller95def091999-11-25 00:26:21 +11002270 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002271 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002272 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002273
Damien Miller5428f641999-11-25 11:54:57 +11002274 /*
2275 * If the channel is in closed state, we have sent a close request,
2276 * and the other side will eventually respond with a confirmation.
2277 * Thus, we cannot free the channel here, because then there would be
2278 * no-one to receive the confirmation. The channel gets freed when
2279 * the confirmation arrives.
2280 */
Damien Millerb38eff82000-04-01 11:09:21 +10002281 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002282 /*
2283 * Not a closed channel - mark it as draining, which will
2284 * cause it to be freed later.
2285 */
Damien Miller76765c02002-01-22 23:21:15 +11002286 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002287 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002288 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002289}
2290
Damien Millerb38eff82000-04-01 11:09:21 +10002291/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002292/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002293void
Damien Miller630d6f42002-01-22 23:17:30 +11002294channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295{
Damien Millerb38eff82000-04-01 11:09:21 +10002296 int id = packet_get_int();
2297 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002298
Damien Miller48b03fc2002-01-22 23:11:40 +11002299 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002300 if (c == NULL)
2301 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2302 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303}
2304
Damien Millerd79b4242006-03-31 23:11:44 +11002305/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002306void
Damien Miller630d6f42002-01-22 23:17:30 +11002307channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002308{
2309 int id = packet_get_int();
2310 Channel *c = channel_lookup(id);
2311
Damien Miller48b03fc2002-01-22 23:11:40 +11002312 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002313 if (c == NULL)
2314 packet_disconnect("Received close confirmation for "
2315 "out-of-range channel %d.", id);
2316 if (c->type != SSH_CHANNEL_CLOSED)
2317 packet_disconnect("Received close confirmation for "
2318 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002319 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002320}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002321
Damien Millerd79b4242006-03-31 23:11:44 +11002322/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002323void
Damien Miller630d6f42002-01-22 23:17:30 +11002324channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002325{
Damien Millerb38eff82000-04-01 11:09:21 +10002326 int id, remote_id;
2327 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002328
Damien Millerb38eff82000-04-01 11:09:21 +10002329 id = packet_get_int();
2330 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002331
Damien Millerb38eff82000-04-01 11:09:21 +10002332 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2333 packet_disconnect("Received open confirmation for "
2334 "non-opening channel %d.", id);
2335 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002336 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002337 c->remote_id = remote_id;
2338 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002339
2340 if (compat20) {
2341 c->remote_window = packet_get_int();
2342 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002343 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002344 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002345 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002346 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002347 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002348 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002349 c->remote_window, c->remote_maxpacket);
2350 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002351 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002352}
2353
Ben Lindstrombba81212001-06-25 05:01:22 +00002354static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002355reason2txt(int reason)
2356{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002357 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002358 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2359 return "administratively prohibited";
2360 case SSH2_OPEN_CONNECT_FAILED:
2361 return "connect failed";
2362 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2363 return "unknown channel type";
2364 case SSH2_OPEN_RESOURCE_SHORTAGE:
2365 return "resource shortage";
2366 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002367 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002368}
2369
Damien Millerd79b4242006-03-31 23:11:44 +11002370/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002371void
Damien Miller630d6f42002-01-22 23:17:30 +11002372channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002373{
Kevin Steves12057502001-02-05 14:54:34 +00002374 int id, reason;
2375 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002376 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002377
Damien Millerb38eff82000-04-01 11:09:21 +10002378 id = packet_get_int();
2379 c = channel_lookup(id);
2380
2381 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2382 packet_disconnect("Received open failure for "
2383 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002384 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002385 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002386 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002387 msg = packet_get_string(NULL);
2388 lang = packet_get_string(NULL);
2389 }
Damien Miller996acd22003-04-09 20:59:48 +10002390 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002391 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002392 if (msg != NULL)
2393 xfree(msg);
2394 if (lang != NULL)
2395 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002396 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002397 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002398 /* Schedule the channel for cleanup/deletion. */
2399 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002400}
2401
Damien Millerd79b4242006-03-31 23:11:44 +11002402/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002403void
Damien Miller630d6f42002-01-22 23:17:30 +11002404channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002405{
2406 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002407 int id;
2408 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002409
2410 if (!compat20)
2411 return;
2412
2413 /* Get the channel number and verify it. */
2414 id = packet_get_int();
2415 c = channel_lookup(id);
2416
Damien Millerd47c62a2005-12-13 19:33:57 +11002417 if (c == NULL) {
2418 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002419 return;
2420 }
2421 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002422 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002423 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002424 c->remote_window += adjust;
2425}
2426
Damien Millerd79b4242006-03-31 23:11:44 +11002427/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002428void
Damien Miller630d6f42002-01-22 23:17:30 +11002429channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002430{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002431 Channel *c = NULL;
2432 u_short host_port;
2433 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002434 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002435
Ben Lindstrome9c99912001-06-09 00:41:05 +00002436 remote_id = packet_get_int();
2437 host = packet_get_string(NULL);
2438 host_port = packet_get_int();
2439
2440 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2441 originator_string = packet_get_string(NULL);
2442 } else {
2443 originator_string = xstrdup("unknown (remote did not supply name)");
2444 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002445 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002446 c = channel_connect_to(host, host_port,
2447 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002448 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002449 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002450 if (c == NULL) {
2451 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2452 packet_put_int(remote_id);
2453 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002454 } else
2455 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002456}
2457
Damien Millerb84886b2008-05-19 15:05:07 +10002458/* ARGSUSED */
2459void
2460channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2461{
2462 Channel *c;
2463 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002464 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002465
2466 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002467 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002468
Damien Miller16a73072008-12-08 09:55:25 +11002469 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002470 packet_check_eom();
2471
Damien Miller16a73072008-12-08 09:55:25 +11002472 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002473
Damien Miller16a73072008-12-08 09:55:25 +11002474 if ((c = channel_lookup(id)) == NULL) {
2475 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002476 return;
2477 }
2478 ;
2479 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2480 return;
2481 cc->cb(type, c, cc->ctx);
2482 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2483 bzero(cc, sizeof(*cc));
2484 xfree(cc);
2485}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002486
Ben Lindstrome9c99912001-06-09 00:41:05 +00002487/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002488
Ben Lindstrom908afed2001-10-03 17:34:59 +00002489void
2490channel_set_af(int af)
2491{
2492 IPv4or6 = af;
2493}
2494
Damien Millerb16461c2002-01-22 23:29:22 +11002495static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002496channel_setup_fwd_listener(int type, const char *listen_addr,
2497 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002498 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002499{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002500 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002501 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002502 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002503 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002504 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002505 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506
Damien Millerb16461c2002-01-22 23:29:22 +11002507 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2508 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002509 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002510
Damien Millerb16461c2002-01-22 23:29:22 +11002511 if (host == NULL) {
2512 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002513 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002514 }
Damien Miller9576ac42009-01-28 16:30:33 +11002515 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002516 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002517 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002518 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002519
Damien Miller5428f641999-11-25 11:54:57 +11002520 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002521 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002522 * specified address or wildcard. On the client, a specified bind
2523 * address will always override gateway_ports. On the server, a
2524 * gateway_ports of 1 (``yes'') will override the client's
2525 * specification and force a wildcard bind, whereas a value of 2
2526 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002527 * asked for.
2528 *
2529 * Special-case listen_addrs are:
2530 *
2531 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2532 * "" (empty string), "*" -> wildcard v4/v6
2533 * "localhost" -> loopback v4/v6
2534 */
2535 addr = NULL;
2536 if (listen_addr == NULL) {
2537 /* No address specified: default to gateway_ports setting */
2538 if (gateway_ports)
2539 wildcard = 1;
2540 } else if (gateway_ports || is_client) {
2541 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002542 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002543 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2544 (!is_client && gateway_ports == 1))
2545 wildcard = 1;
2546 else if (strcmp(listen_addr, "localhost") != 0)
2547 addr = listen_addr;
2548 }
2549
2550 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2551 type, wildcard, (addr == NULL) ? "NULL" : addr);
2552
2553 /*
Damien Miller34132e52000-01-14 15:45:46 +11002554 * getaddrinfo returns a loopback address if the hostname is
2555 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002556 */
Damien Miller34132e52000-01-14 15:45:46 +11002557 memset(&hints, 0, sizeof(hints));
2558 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002559 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002560 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002561 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002562 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2563 if (addr == NULL) {
2564 /* This really shouldn't happen */
2565 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002566 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002567 } else {
Damien Millera7270302005-07-06 09:36:05 +10002568 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002569 "getaddrinfo(%.64s): %s", addr,
2570 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002571 }
Damien Millera7270302005-07-06 09:36:05 +10002572 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002573 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002574 if (allocated_listen_port != NULL)
2575 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002576 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002577 switch (ai->ai_family) {
2578 case AF_INET:
2579 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2580 sin_port;
2581 break;
2582 case AF_INET6:
2583 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2584 sin6_port;
2585 break;
2586 default:
Damien Miller34132e52000-01-14 15:45:46 +11002587 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002588 }
2589 /*
2590 * If allocating a port for -R forwards, then use the
2591 * same port for all address families.
2592 */
2593 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2594 allocated_listen_port != NULL && *allocated_listen_port > 0)
2595 *lport_p = htons(*allocated_listen_port);
2596
Damien Miller34132e52000-01-14 15:45:46 +11002597 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2598 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002599 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002600 continue;
2601 }
2602 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002603 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002604 if (sock < 0) {
2605 /* this is no error since kernel may not support ipv6 */
2606 verbose("socket: %.100s", strerror(errno));
2607 continue;
2608 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002609
2610 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002611 if (ai->ai_family == AF_INET6)
2612 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002613
Damien Miller4bf648f2009-02-14 16:28:21 +11002614 debug("Local forwarding listening on %s port %s.",
2615 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002616
Damien Miller34132e52000-01-14 15:45:46 +11002617 /* Bind the socket to the address. */
2618 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2619 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002620 if (!ai->ai_next)
2621 error("bind: %.100s", strerror(errno));
2622 else
2623 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002624
Damien Miller34132e52000-01-14 15:45:46 +11002625 close(sock);
2626 continue;
2627 }
2628 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002629 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002630 error("listen: %.100s", strerror(errno));
2631 close(sock);
2632 continue;
2633 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002634
2635 /*
2636 * listen_port == 0 requests a dynamically allocated port -
2637 * record what we got.
2638 */
2639 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2640 allocated_listen_port != NULL &&
2641 *allocated_listen_port == 0) {
2642 *allocated_listen_port = get_sock_port(sock, 1);
2643 debug("Allocated listen port %d",
2644 *allocated_listen_port);
2645 }
2646
Damien Miller34132e52000-01-14 15:45:46 +11002647 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002648 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002649 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002650 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002651 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002652 c->host_port = port_to_connect;
2653 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002654 success = 1;
2655 }
2656 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002657 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002658 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002659 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002660 return success;
Damien Miller95def091999-11-25 00:26:21 +11002661}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002662
Darren Tuckere7066df2004-05-24 10:18:05 +10002663int
2664channel_cancel_rport_listener(const char *host, u_short port)
2665{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002666 u_int i;
2667 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002668
Darren Tucker47eede72005-03-14 23:08:12 +11002669 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002670 Channel *c = channels[i];
2671
2672 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002673 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002674 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002675 channel_free(c);
2676 found = 1;
2677 }
2678 }
2679
2680 return (found);
2681}
2682
Damien Millerb16461c2002-01-22 23:29:22 +11002683/* protocol local port fwd, used by ssh (and sshd in v1) */
2684int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002685channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002686 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2687{
2688 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002689 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002690 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002691}
2692
2693/* protocol v2 remote port fwd, used by sshd */
2694int
2695channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002696 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002697{
2698 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002699 listen_address, listen_port, allocated_listen_port,
2700 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002701}
2702
Damien Miller5428f641999-11-25 11:54:57 +11002703/*
2704 * Initiate forwarding of connections to port "port" on remote host through
2705 * the secure channel to host:port from local side.
2706 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002707
Darren Tuckere7d4b192006-07-12 22:17:10 +10002708int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002709channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002710 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002711{
Damien Millerdff50992002-01-22 23:16:32 +11002712 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002713
Damien Miller95def091999-11-25 00:26:21 +11002714 /* Record locally that connection to this host/port is permitted. */
2715 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2716 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002717
Damien Miller95def091999-11-25 00:26:21 +11002718 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002719 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002720 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002721 if (listen_host == NULL) {
2722 if (datafellows & SSH_BUG_RFWD_ADDR)
2723 address_to_bind = "127.0.0.1";
2724 else
2725 address_to_bind = "localhost";
2726 } else if (*listen_host == '\0' ||
2727 strcmp(listen_host, "*") == 0) {
2728 if (datafellows & SSH_BUG_RFWD_ADDR)
2729 address_to_bind = "0.0.0.0";
2730 else
2731 address_to_bind = "";
2732 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002733 address_to_bind = listen_host;
2734
Damien Miller33b13562000-04-04 14:38:59 +10002735 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2736 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002737 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002738 packet_put_cstring(address_to_bind);
2739 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002740 packet_send();
2741 packet_write_wait();
2742 /* Assume that server accepts the request */
2743 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002744 } else {
2745 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002746 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002747 packet_put_cstring(host_to_connect);
2748 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002749 packet_send();
2750 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002751
2752 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002753 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002754 switch (type) {
2755 case SSH_SMSG_SUCCESS:
2756 success = 1;
2757 break;
2758 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002759 break;
2760 default:
2761 /* Unknown packet */
2762 packet_disconnect("Protocol error for port forward request:"
2763 "received packet type %d.", type);
2764 }
2765 }
2766 if (success) {
2767 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2768 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2769 permitted_opens[num_permitted_opens].listen_port = listen_port;
2770 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002771 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002772 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002773}
2774
Damien Miller5428f641999-11-25 11:54:57 +11002775/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002776 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002777 * local side.
2778 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002779void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002780channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002781{
2782 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002783
2784 if (!compat20)
2785 return;
2786
2787 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002788 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002789 permitted_opens[i].listen_port == port)
2790 break;
2791 }
2792 if (i >= num_permitted_opens) {
2793 debug("%s: requested forward not found", __func__);
2794 return;
2795 }
2796 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2797 packet_put_cstring("cancel-tcpip-forward");
2798 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002799 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002800 packet_put_int(port);
2801 packet_send();
2802
2803 permitted_opens[i].listen_port = 0;
2804 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002805 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002806 permitted_opens[i].host_to_connect = NULL;
2807}
2808
2809/*
Damien Miller5428f641999-11-25 11:54:57 +11002810 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2811 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002812 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002813 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002814int
Damien Millere247cc42000-05-07 12:03:14 +10002815channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002816{
Damien Milleraae6c611999-12-06 11:47:28 +11002817 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002818 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002819 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002820
Damien Miller95def091999-11-25 00:26:21 +11002821 /* Get arguments from the packet. */
2822 port = packet_get_int();
2823 hostname = packet_get_string(NULL);
2824 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002825
Damien Millerbac2d8a2000-09-05 16:13:06 +11002826#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002827 /*
2828 * Check that an unprivileged user is not trying to forward a
2829 * privileged port.
2830 */
Damien Miller95def091999-11-25 00:26:21 +11002831 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002832 packet_disconnect(
2833 "Requested forwarding of port %d but user is not root.",
2834 port);
2835 if (host_port == 0)
2836 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002837#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002838
Damien Miller0bc1bd82000-11-13 22:57:25 +11002839 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002840 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002841 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002842
2843 /* Free the argument string. */
2844 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002845
2846 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002847}
2848
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002849/*
2850 * Permits opening to any host/port if permitted_opens[] is empty. This is
2851 * usually called by the server, because the user could connect to any port
2852 * anyway, and the server has no way to know but to trust the client anyway.
2853 */
2854void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002855channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002856{
2857 if (num_permitted_opens == 0)
2858 all_opens_permitted = 1;
2859}
2860
Ben Lindstroma3700052001-04-05 23:26:32 +00002861void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002862channel_add_permitted_opens(char *host, int port)
2863{
2864 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002865 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002866 debug("allow port forwarding to host %s port %d", host, port);
2867
2868 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2869 permitted_opens[num_permitted_opens].port_to_connect = port;
2870 num_permitted_opens++;
2871
2872 all_opens_permitted = 0;
2873}
2874
Damien Millera765cf42006-07-24 14:08:13 +10002875int
Damien Miller9b439df2006-07-24 14:04:00 +10002876channel_add_adm_permitted_opens(char *host, int port)
2877{
2878 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2879 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002880 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002881
2882 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2883 = xstrdup(host);
2884 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002885 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002886}
2887
2888void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002889channel_clear_permitted_opens(void)
2890{
2891 int i;
2892
2893 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002894 if (permitted_opens[i].host_to_connect != NULL)
2895 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002896 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002897}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002898
Damien Miller9b439df2006-07-24 14:04:00 +10002899void
2900channel_clear_adm_permitted_opens(void)
2901{
2902 int i;
2903
2904 for (i = 0; i < num_adm_permitted_opens; i++)
2905 if (permitted_adm_opens[i].host_to_connect != NULL)
2906 xfree(permitted_adm_opens[i].host_to_connect);
2907 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002908}
2909
Darren Tuckere7140f22008-06-10 23:01:51 +10002910void
2911channel_print_adm_permitted_opens(void)
2912{
Damien Miller6ef17492008-07-16 22:42:06 +10002913 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10002914
Damien Millerb53d8a12009-01-28 16:13:04 +11002915 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11002916 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11002917 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11002918 return;
2919 }
Darren Tuckere7140f22008-06-10 23:01:51 +10002920 for (i = 0; i < num_adm_permitted_opens; i++)
2921 if (permitted_adm_opens[i].host_to_connect != NULL)
2922 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2923 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11002924 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10002925}
2926
Damien Millerbd740252008-05-19 15:37:09 +10002927/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002928static int
Damien Millerbd740252008-05-19 15:37:09 +10002929connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002930{
Damien Millerbd740252008-05-19 15:37:09 +10002931 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002932 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002933
Damien Millerbd740252008-05-19 15:37:09 +10002934 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2935 if (cctx->ai->ai_family != AF_INET &&
2936 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002937 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002938 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2939 ntop, sizeof(ntop), strport, sizeof(strport),
2940 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2941 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002942 continue;
2943 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11002944 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
2945 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10002946 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002947 error("socket: %.100s", strerror(errno));
2948 else
2949 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002950 continue;
2951 }
Damien Miller232711f2004-06-15 10:35:30 +10002952 if (set_nonblock(sock) == -1)
2953 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002954 if (connect(sock, cctx->ai->ai_addr,
2955 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2956 debug("connect_next: host %.100s ([%.100s]:%s): "
2957 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002958 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002959 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002960 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002961 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002962 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002963 }
Damien Millerbd740252008-05-19 15:37:09 +10002964 debug("connect_next: host %.100s ([%.100s]:%s) "
2965 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2966 cctx->ai = cctx->ai->ai_next;
2967 set_nodelay(sock);
2968 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002969 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002970 return -1;
2971}
Damien Millerb38eff82000-04-01 11:09:21 +10002972
Damien Millerbd740252008-05-19 15:37:09 +10002973static void
2974channel_connect_ctx_free(struct channel_connect *cctx)
2975{
2976 xfree(cctx->host);
2977 if (cctx->aitop)
2978 freeaddrinfo(cctx->aitop);
2979 bzero(cctx, sizeof(*cctx));
2980 cctx->host = NULL;
2981 cctx->ai = cctx->aitop = NULL;
2982}
2983
2984/* Return CONNECTING channel to remote host, port */
2985static Channel *
2986connect_to(const char *host, u_short port, char *ctype, char *rname)
2987{
2988 struct addrinfo hints;
2989 int gaierr;
2990 int sock = -1;
2991 char strport[NI_MAXSERV];
2992 struct channel_connect cctx;
2993 Channel *c;
2994
Damien Miller2bcb8662008-07-12 17:12:29 +10002995 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10002996 memset(&hints, 0, sizeof(hints));
2997 hints.ai_family = IPv4or6;
2998 hints.ai_socktype = SOCK_STREAM;
2999 snprintf(strport, sizeof strport, "%d", port);
3000 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3001 error("connect_to %.100s: unknown host (%s)", host,
3002 ssh_gai_strerror(gaierr));
3003 return NULL;
3004 }
3005
3006 cctx.host = xstrdup(host);
3007 cctx.port = port;
3008 cctx.ai = cctx.aitop;
3009
3010 if ((sock = connect_next(&cctx)) == -1) {
3011 error("connect to %.100s port %d failed: %s",
3012 host, port, strerror(errno));
3013 channel_connect_ctx_free(&cctx);
3014 return NULL;
3015 }
3016 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3017 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3018 c->connect_ctx = cctx;
3019 return c;
3020}
3021
3022Channel *
3023channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3024{
3025 int i;
3026
3027 for (i = 0; i < num_permitted_opens; i++) {
3028 if (permitted_opens[i].host_to_connect != NULL &&
3029 permitted_opens[i].listen_port == listen_port) {
3030 return connect_to(
3031 permitted_opens[i].host_to_connect,
3032 permitted_opens[i].port_to_connect, ctype, rname);
3033 }
3034 }
3035 error("WARNING: Server requests forwarding for unknown listen_port %d",
3036 listen_port);
3037 return NULL;
3038}
3039
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003040/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003041Channel *
3042channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003043{
Damien Miller9b439df2006-07-24 14:04:00 +10003044 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003045
3046 permit = all_opens_permitted;
3047 if (!permit) {
3048 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003049 if (permitted_opens[i].host_to_connect != NULL &&
3050 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003051 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3052 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003053 }
Damien Miller9b439df2006-07-24 14:04:00 +10003054
3055 if (num_adm_permitted_opens > 0) {
3056 permit_adm = 0;
3057 for (i = 0; i < num_adm_permitted_opens; i++)
3058 if (permitted_adm_opens[i].host_to_connect != NULL &&
3059 permitted_adm_opens[i].port_to_connect == port &&
3060 strcmp(permitted_adm_opens[i].host_to_connect, host)
3061 == 0)
3062 permit_adm = 1;
3063 }
3064
3065 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003066 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003067 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003068 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003069 }
Damien Millerbd740252008-05-19 15:37:09 +10003070 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003071}
3072
Damien Miller0e220db2004-06-15 10:34:08 +10003073void
3074channel_send_window_changes(void)
3075{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003076 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003077 struct winsize ws;
3078
3079 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003080 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003081 channels[i]->type != SSH_CHANNEL_OPEN)
3082 continue;
3083 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3084 continue;
3085 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003086 packet_put_int((u_int)ws.ws_col);
3087 packet_put_int((u_int)ws.ws_row);
3088 packet_put_int((u_int)ws.ws_xpixel);
3089 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003090 packet_send();
3091 }
3092}
3093
Ben Lindstrome9c99912001-06-09 00:41:05 +00003094/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003095
Damien Miller5428f641999-11-25 11:54:57 +11003096/*
3097 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003098 * Returns 0 and a suitable display number for the DISPLAY variable
3099 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003100 */
Kevin Steves366298c2001-12-19 17:58:01 +00003101int
Damien Miller95c249f2002-02-05 12:11:34 +11003102x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003103 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003104{
Damien Millere7378562001-12-21 14:58:35 +11003105 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003106 int display_number, sock;
3107 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003108 struct addrinfo hints, *ai, *aitop;
3109 char strport[NI_MAXSERV];
3110 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003111
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003112 if (chanids == NULL)
3113 return -1;
3114
Damien Millera34a28b1999-12-14 10:47:15 +11003115 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003116 display_number < MAX_DISPLAYS;
3117 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003118 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003119 memset(&hints, 0, sizeof(hints));
3120 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003121 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003122 hints.ai_socktype = SOCK_STREAM;
3123 snprintf(strport, sizeof strport, "%d", port);
3124 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003125 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003126 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003127 }
Damien Miller34132e52000-01-14 15:45:46 +11003128 for (ai = aitop; ai; ai = ai->ai_next) {
3129 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3130 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003131 sock = socket(ai->ai_family, ai->ai_socktype,
3132 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003133 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003134 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003135 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003136 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003137 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003138 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003139 debug("x11_create_display_inet: Socket family %d not supported",
3140 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003141 continue;
3142 }
Damien Miller34132e52000-01-14 15:45:46 +11003143 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003144 if (ai->ai_family == AF_INET6)
3145 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003146 if (x11_use_localhost)
3147 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003148 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003149 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003150 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003151
Damien Miller34132e52000-01-14 15:45:46 +11003152 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003153 close(socks[n]);
3154 }
3155 num_socks = 0;
3156 break;
3157 }
3158 socks[num_socks++] = sock;
3159 if (num_socks == NUM_SOCKS)
3160 break;
Damien Miller95def091999-11-25 00:26:21 +11003161 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003162 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003163 if (num_socks > 0)
3164 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003165 }
Damien Miller95def091999-11-25 00:26:21 +11003166 if (display_number >= MAX_DISPLAYS) {
3167 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003168 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003169 }
Damien Miller95def091999-11-25 00:26:21 +11003170 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003171 for (n = 0; n < num_socks; n++) {
3172 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003173 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003174 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003175 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003176 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003177 }
Damien Miller95def091999-11-25 00:26:21 +11003178 }
Damien Miller34132e52000-01-14 15:45:46 +11003179
Damien Miller34132e52000-01-14 15:45:46 +11003180 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003181 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003182 for (n = 0; n < num_socks; n++) {
3183 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003184 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003185 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3186 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003187 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003188 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003189 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003190 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003191 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003192
Kevin Steves366298c2001-12-19 17:58:01 +00003193 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003194 *display_numberp = display_number;
3195 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003196}
3197
Ben Lindstrombba81212001-06-25 05:01:22 +00003198static int
Damien Miller819dbb62009-01-21 16:46:26 +11003199connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003200{
Damien Miller95def091999-11-25 00:26:21 +11003201 int sock;
3202 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003203
Damien Miller3afe3752001-12-21 12:39:51 +11003204 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3205 if (sock < 0)
3206 error("socket: %.100s", strerror(errno));
3207 memset(&addr, 0, sizeof(addr));
3208 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003209 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003210 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003211 return sock;
3212 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003213 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3214 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003215}
3216
Damien Miller819dbb62009-01-21 16:46:26 +11003217static int
3218connect_local_xsocket(u_int dnr)
3219{
3220 char buf[1024];
3221 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3222 return connect_local_xsocket_path(buf);
3223}
3224
Damien Millerbd483e72000-04-30 10:00:53 +10003225int
3226x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003227{
Damien Miller57c4e872006-03-31 23:11:07 +11003228 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003229 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003230 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003231 struct addrinfo hints, *ai, *aitop;
3232 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003233 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003234
Damien Miller95def091999-11-25 00:26:21 +11003235 /* Try to open a socket for the local X server. */
3236 display = getenv("DISPLAY");
3237 if (!display) {
3238 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003239 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003240 }
Damien Miller5428f641999-11-25 11:54:57 +11003241 /*
3242 * Now we decode the value of the DISPLAY variable and make a
3243 * connection to the real X server.
3244 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003245
Damien Miller819dbb62009-01-21 16:46:26 +11003246 /* Check if the display is from launchd. */
3247#ifdef __APPLE__
3248 if (strncmp(display, "/tmp/launch", 11) == 0) {
3249 sock = connect_local_xsocket_path(display);
3250 if (sock < 0)
3251 return -1;
3252
3253 /* OK, we now have a connection to the display. */
3254 return sock;
3255 }
3256#endif
Damien Miller5428f641999-11-25 11:54:57 +11003257 /*
3258 * Check if it is a unix domain socket. Unix domain displays are in
3259 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3260 */
Damien Miller95def091999-11-25 00:26:21 +11003261 if (strncmp(display, "unix:", 5) == 0 ||
3262 display[0] == ':') {
3263 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003264 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003265 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003266 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003267 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003268 }
3269 /* Create a socket. */
3270 sock = connect_local_xsocket(display_number);
3271 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003272 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003273
3274 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003275 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003276 }
Damien Miller5428f641999-11-25 11:54:57 +11003277 /*
3278 * Connect to an inet socket. The DISPLAY value is supposedly
3279 * hostname:d[.s], where hostname may also be numeric IP address.
3280 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003281 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003282 cp = strchr(buf, ':');
3283 if (!cp) {
3284 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003285 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003286 }
Damien Miller95def091999-11-25 00:26:21 +11003287 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003288 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003289 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003290 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003291 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003292 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003293 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003294
Damien Miller34132e52000-01-14 15:45:46 +11003295 /* Look up the host address */
3296 memset(&hints, 0, sizeof(hints));
3297 hints.ai_family = IPv4or6;
3298 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003299 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003300 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003301 error("%.100s: unknown host. (%s)", buf,
3302 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003303 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003304 }
Damien Miller34132e52000-01-14 15:45:46 +11003305 for (ai = aitop; ai; ai = ai->ai_next) {
3306 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003307 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003308 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003309 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003310 continue;
3311 }
3312 /* Connect it to the display. */
3313 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003314 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003315 6000 + display_number, strerror(errno));
3316 close(sock);
3317 continue;
3318 }
3319 /* Success */
3320 break;
Damien Miller34132e52000-01-14 15:45:46 +11003321 }
Damien Miller34132e52000-01-14 15:45:46 +11003322 freeaddrinfo(aitop);
3323 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003324 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003325 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003326 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003327 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003328 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003329 return sock;
3330}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003331
Damien Millerbd483e72000-04-30 10:00:53 +10003332/*
3333 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3334 * the remote channel number. We should do whatever we want, and respond
3335 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3336 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003337
Damien Miller8473dd82006-07-24 14:08:32 +10003338/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003339void
Damien Miller630d6f42002-01-22 23:17:30 +11003340x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003341{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003342 Channel *c = NULL;
3343 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003344 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003345
3346 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003347
3348 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003349
3350 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003351 remote_host = packet_get_string(NULL);
3352 } else {
3353 remote_host = xstrdup("unknown (remote did not supply name)");
3354 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003355 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003356
3357 /* Obtain a connection to the real X display. */
3358 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003359 if (sock != -1) {
3360 /* Allocate a channel for this connection. */
3361 c = channel_new("connected x11 socket",
3362 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3363 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003364 c->remote_id = remote_id;
3365 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003366 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003367 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003368 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003369 /* Send refusal to the remote host. */
3370 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003371 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003372 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003373 /* Send a confirmation to the remote host. */
3374 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003375 packet_put_int(remote_id);
3376 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003377 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003378 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003379}
3380
Damien Miller69b69aa2000-10-28 14:19:58 +11003381/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003382/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003383void
Damien Miller630d6f42002-01-22 23:17:30 +11003384deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003385{
3386 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003387
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003388 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003389 case SSH_SMSG_AGENT_OPEN:
3390 error("Warning: ssh server tried agent forwarding.");
3391 break;
3392 case SSH_SMSG_X11_OPEN:
3393 error("Warning: ssh server tried X11 forwarding.");
3394 break;
3395 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003396 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003397 break;
3398 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003399 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003400 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3401 packet_put_int(rchan);
3402 packet_send();
3403}
3404
Damien Miller5428f641999-11-25 11:54:57 +11003405/*
3406 * Requests forwarding of X11 connections, generates fake authentication
3407 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003408 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003409 */
Damien Miller4af51302000-04-16 11:18:38 +10003410void
Damien Miller17e7ed02005-06-17 12:54:33 +10003411x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003412 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003413{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003414 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003415 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003416 char *new_data;
3417 int screen_number;
3418 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003419 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003420
Damien Millerf92c0792005-07-06 09:45:26 +10003421 if (x11_saved_display == NULL)
3422 x11_saved_display = xstrdup(disp);
3423 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003424 error("x11_request_forwarding_with_spoofing: different "
3425 "$DISPLAY already forwarded");
3426 return;
3427 }
3428
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003429 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003430 if (cp)
3431 cp = strchr(cp, '.');
3432 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003433 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003434 else
3435 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003436
Damien Miller13390022005-07-06 09:44:19 +10003437 if (x11_saved_proto == NULL) {
3438 /* Save protocol name. */
3439 x11_saved_proto = xstrdup(proto);
3440 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003441 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003442 * of the same length.
3443 */
3444 x11_saved_data = xmalloc(data_len);
3445 x11_fake_data = xmalloc(data_len);
3446 for (i = 0; i < data_len; i++) {
3447 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3448 fatal("x11_request_forwarding: bad "
3449 "authentication data: %.100s", data);
3450 if (i % 4 == 0)
3451 rnd = arc4random();
3452 x11_saved_data[i] = value;
3453 x11_fake_data[i] = rnd & 0xff;
3454 rnd >>= 8;
3455 }
3456 x11_saved_data_len = data_len;
3457 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003458 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003459
Damien Miller95def091999-11-25 00:26:21 +11003460 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003461 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003462
Damien Miller95def091999-11-25 00:26:21 +11003463 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003464 if (compat20) {
3465 channel_request_start(client_session_id, "x11-req", 0);
3466 packet_put_char(0); /* XXX bool single connection */
3467 } else {
3468 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3469 }
3470 packet_put_cstring(proto);
3471 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003472 packet_put_int(screen_number);
3473 packet_send();
3474 packet_write_wait();
3475 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003476}
3477
Ben Lindstrome9c99912001-06-09 00:41:05 +00003478
3479/* -- agent forwarding */
3480
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003481/* Sends a message to the server to request authentication fd forwarding. */
3482
Damien Miller4af51302000-04-16 11:18:38 +10003483void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003484auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003485{
Damien Miller95def091999-11-25 00:26:21 +11003486 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3487 packet_send();
3488 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003489}