blob: 884c14c992799c4bf0ec44057939f0af169127ba [file] [log] [blame]
Darren Tucker34e314d2010-01-08 17:03:46 +11001/* $OpenBSD: channels.c,v 1.297 2009/10/28 16:38:18 reyk 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>
Damien Millerb8fe89c2006-07-24 14:51:00 +100056#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100057#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100058#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100059#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110060#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100061#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100062#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerb84886b2008-05-19 15:05:07 +100064#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100065#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "ssh1.h"
68#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "log.h"
71#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100072#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000075#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100076#include "key.h"
77#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110078#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Ben Lindstrome9c99912001-06-09 00:41:05 +000080/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Pointer to an array containing all allocated channels. The array is
84 * dynamically extended as needed.
85 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000086static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller5428f641999-11-25 11:54:57 +110088/*
89 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000090 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110091 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100092static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller5428f641999-11-25 11:54:57 +110094/*
95 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000096 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110097 */
Damien Miller5e953212001-01-30 09:14:00 +110098static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Ben Lindstrome9c99912001-06-09 00:41:05 +0000101/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Miller5428f641999-11-25 11:54:57 +1100103/*
104 * Data structure for storing which hosts are permitted for forward requests.
105 * The local sides of any remote forwards are stored in this array to prevent
106 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
107 * network (which might be behind a firewall).
108 */
Damien Miller95def091999-11-25 00:26:21 +1100109typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000110 char *host_to_connect; /* Connect to 'host'. */
111 u_short port_to_connect; /* Connect to 'port'. */
112 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113} ForwardPermission;
114
Damien Miller9b439df2006-07-24 14:04:00 +1000115/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000117
Damien Miller9b439df2006-07-24 14:04:00 +1000118/* List of all permitted host/port pairs to connect by the admin. */
119static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
120
121/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000123
124/* Number of permitted host/port pair in the array permitted by the admin. */
125static int num_adm_permitted_opens = 0;
126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * If this is true, all opens are permitted. This is the case on the server
129 * on which we have to trust the client anyway, and the user could do
130 * anything after logging in anyway.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132static int all_opens_permitted = 0;
133
Ben Lindstrome9c99912001-06-09 00:41:05 +0000134
135/* -- X11 forwarding */
136
137/* Maximum number of fake X11 displays to try. */
138#define MAX_DISPLAYS 1000
139
Damien Miller13390022005-07-06 09:44:19 +1000140/* Saved X11 local (client) display. */
141static char *x11_saved_display = NULL;
142
Ben Lindstrome9c99912001-06-09 00:41:05 +0000143/* Saved X11 authentication protocol name. */
144static char *x11_saved_proto = NULL;
145
146/* Saved X11 authentication data. This is the real data. */
147static char *x11_saved_data = NULL;
148static u_int x11_saved_data_len = 0;
149
150/*
151 * Fake X11 authentication data. This is what the server will be sending us;
152 * we should replace any occurrences of this by the real data.
153 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100154static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000155static u_int x11_fake_data_len;
156
157
158/* -- agent forwarding */
159
160#define NUM_SOCKS 10
161
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000162/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000163static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000164
Darren Tucker34e314d2010-01-08 17:03:46 +1100165/* Set the routing domain a.k.a. VRF */
166static int channel_rdomain = -1;
167
Ben Lindstrome9c99912001-06-09 00:41:05 +0000168/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000169static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000170
Damien Millerbd740252008-05-19 15:37:09 +1000171/* non-blocking connect helpers */
172static int connect_next(struct channel_connect *);
173static void channel_connect_ctx_free(struct channel_connect *);
174
Ben Lindstrome9c99912001-06-09 00:41:05 +0000175/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000176
177Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100178channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000179{
180 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000181
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000182 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100183 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000184 return NULL;
185 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000186 c = channels[id];
187 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100188 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000189 return NULL;
190 }
191 return c;
192}
193
Damien Miller5428f641999-11-25 11:54:57 +1100194/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100195 * Returns the channel if it is allowed to receive protocol messages.
196 * Private channels, like listening sockets, may not receive messages.
197 */
198Channel *
199channel_lookup(int id)
200{
201 Channel *c;
202
203 if ((c = channel_by_id(id)) == NULL)
204 return (NULL);
205
Damien Millerd62f2ca2006-03-26 13:57:41 +1100206 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100207 case SSH_CHANNEL_X11_OPEN:
208 case SSH_CHANNEL_LARVAL:
209 case SSH_CHANNEL_CONNECTING:
210 case SSH_CHANNEL_DYNAMIC:
211 case SSH_CHANNEL_OPENING:
212 case SSH_CHANNEL_OPEN:
213 case SSH_CHANNEL_INPUT_DRAINING:
214 case SSH_CHANNEL_OUTPUT_DRAINING:
215 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100216 }
217 logit("Non-public channel %d, type %d.", id, c->type);
218 return (NULL);
219}
220
221/*
Damien Millere247cc42000-05-07 12:03:14 +1000222 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000223 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100224 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000225static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100226channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000227 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228{
Damien Miller95def091999-11-25 00:26:21 +1100229 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100230 channel_max_fd = MAX(channel_max_fd, rfd);
231 channel_max_fd = MAX(channel_max_fd, wfd);
232 channel_max_fd = MAX(channel_max_fd, efd);
233
Damien Miller5428f641999-11-25 11:54:57 +1100234 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000235
Damien Miller6f83b8e2000-05-02 09:23:45 +1000236 c->rfd = rfd;
237 c->wfd = wfd;
238 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000239 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000240 c->efd = efd;
241 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100242
Darren Tuckered3cdc02008-06-16 23:29:18 +1000243 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000244 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000245 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100246
Damien Miller69b69aa2000-10-28 14:19:58 +1100247 /* enable nonblocking mode */
248 if (nonblock) {
249 if (rfd != -1)
250 set_nonblock(rfd);
251 if (wfd != -1)
252 set_nonblock(wfd);
253 if (efd != -1)
254 set_nonblock(efd);
255 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000256}
257
258/*
259 * Allocate a new channel object and set its type and socket. This will cause
260 * remote_name to be freed.
261 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000262Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000263channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000264 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000266 int found;
267 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000268 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Do initial allocation if this is the first call. */
271 if (channels_alloc == 0) {
272 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100273 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100274 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000275 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100276 }
277 /* Try to find a free slot where to put the new channel. */
278 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000279 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100280 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000281 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100282 break;
283 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000284 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100285 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100286 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000287 if (channels_alloc > 10000)
288 fatal("channel_new: internal error: channels_alloc %d "
289 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100290 channels = xrealloc(channels, channels_alloc + 10,
291 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000292 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100293 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100294 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000295 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100296 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000297 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100298 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100299 buffer_init(&c->input);
300 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000301 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100302 c->path = NULL;
Damien Miller5144df92002-01-22 23:28:45 +1100303 c->ostate = CHAN_OUTPUT_OPEN;
304 c->istate = CHAN_INPUT_OPEN;
305 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000306 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100307 c->self = found;
308 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000309 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000310 c->local_window = window;
311 c->local_window_max = window;
312 c->local_consumed = 0;
313 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100314 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000315 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000316 c->remote_window = 0;
317 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000318 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100319 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000320 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100321 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000322 c->open_confirm = NULL;
323 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000324 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100325 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000326 c->filter_ctx = NULL;
327 c->filter_cleanup = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000328 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100329 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000330 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000332
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000333static int
334channel_find_maxfd(void)
335{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000336 u_int i;
337 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000338 Channel *c;
339
340 for (i = 0; i < channels_alloc; i++) {
341 c = channels[i];
342 if (c != NULL) {
343 max = MAX(max, c->rfd);
344 max = MAX(max, c->wfd);
345 max = MAX(max, c->efd);
346 }
347 }
348 return max;
349}
350
351int
352channel_close_fd(int *fdp)
353{
354 int ret = 0, fd = *fdp;
355
356 if (fd != -1) {
357 ret = close(fd);
358 *fdp = -1;
359 if (fd == channel_max_fd)
360 channel_max_fd = channel_find_maxfd();
361 }
362 return ret;
363}
364
Damien Miller6f83b8e2000-05-02 09:23:45 +1000365/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000366static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000367channel_close_fds(Channel *c)
368{
Damien Miller0e220db2004-06-15 10:34:08 +1000369 debug3("channel %d: close_fds r %d w %d e %d c %d",
370 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000371
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000372 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000373 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000374 channel_close_fd(&c->rfd);
375 channel_close_fd(&c->wfd);
376 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000377}
378
379/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000380void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000381channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000383 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000384 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000385 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000386
387 for (n = 0, i = 0; i < channels_alloc; i++)
388 if (channels[i])
389 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000390 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000391 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000392
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000393 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000394 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000395 xfree(s);
396
Damien Miller6f83b8e2000-05-02 09:23:45 +1000397 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000398 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000399 if (c->ctl_fd != -1)
400 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000401 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000402 buffer_free(&c->input);
403 buffer_free(&c->output);
404 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 if (c->remote_name) {
406 xfree(c->remote_name);
407 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100408 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100409 if (c->path) {
410 xfree(c->path);
411 c->path = NULL;
412 }
Damien Millerb84886b2008-05-19 15:05:07 +1000413 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
414 if (cc->abandon_cb != NULL)
415 cc->abandon_cb(c, cc->ctx);
416 TAILQ_REMOVE(&c->status_confirms, cc, entry);
417 bzero(cc, sizeof(*cc));
418 xfree(cc);
419 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000420 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
421 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000422 channels[c->self] = NULL;
423 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424}
425
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000427channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000428{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000429 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000430
Ben Lindstrom601e4362001-06-21 03:19:23 +0000431 for (i = 0; i < channels_alloc; i++)
432 if (channels[i] != NULL)
433 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434}
435
436/*
437 * Closes the sockets/fds of all channels. This is used to close extra file
438 * descriptors after a fork.
439 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000440void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000441channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000442{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000443 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000444
445 for (i = 0; i < channels_alloc; i++)
446 if (channels[i] != NULL)
447 channel_close_fds(channels[i]);
448}
449
450/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000451 * Stop listening to channels.
452 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000453void
454channel_stop_listening(void)
455{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000456 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000457 Channel *c;
458
459 for (i = 0; i < channels_alloc; i++) {
460 c = channels[i];
461 if (c != NULL) {
462 switch (c->type) {
463 case SSH_CHANNEL_AUTH_SOCKET:
464 case SSH_CHANNEL_PORT_LISTENER:
465 case SSH_CHANNEL_RPORT_LISTENER:
466 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000467 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000468 channel_free(c);
469 break;
470 }
471 }
472 }
473}
474
475/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000476 * Returns true if no channel has too much buffered data, and false if one or
477 * more channel is overfull.
478 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000479int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000480channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000481{
482 u_int i;
483 Channel *c;
484
485 for (i = 0; i < channels_alloc; i++) {
486 c = channels[i];
487 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000488#if 0
489 if (!compat20 &&
490 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100491 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000492 c->self, buffer_len(&c->input));
493 return 0;
494 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000495#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000496 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000497 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000498 c->self, buffer_len(&c->output),
499 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500 return 0;
501 }
502 }
503 }
504 return 1;
505}
506
507/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000508int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000509channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000510{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000511 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000512 Channel *c;
513
514 for (i = 0; i < channels_alloc; i++) {
515 c = channels[i];
516 if (c == NULL)
517 continue;
518 switch (c->type) {
519 case SSH_CHANNEL_X11_LISTENER:
520 case SSH_CHANNEL_PORT_LISTENER:
521 case SSH_CHANNEL_RPORT_LISTENER:
522 case SSH_CHANNEL_CLOSED:
523 case SSH_CHANNEL_AUTH_SOCKET:
524 case SSH_CHANNEL_DYNAMIC:
525 case SSH_CHANNEL_CONNECTING:
526 case SSH_CHANNEL_ZOMBIE:
527 continue;
528 case SSH_CHANNEL_LARVAL:
529 if (!compat20)
530 fatal("cannot happen: SSH_CHANNEL_LARVAL");
531 continue;
532 case SSH_CHANNEL_OPENING:
533 case SSH_CHANNEL_OPEN:
534 case SSH_CHANNEL_X11_OPEN:
535 return 1;
536 case SSH_CHANNEL_INPUT_DRAINING:
537 case SSH_CHANNEL_OUTPUT_DRAINING:
538 if (!compat13)
539 fatal("cannot happen: OUT_DRAIN");
540 return 1;
541 default:
542 fatal("channel_still_open: bad channel type %d", c->type);
543 /* NOTREACHED */
544 }
545 }
546 return 0;
547}
548
549/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000550int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000551channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000552{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000553 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000554 Channel *c;
555
556 for (i = 0; i < channels_alloc; i++) {
557 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000558 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559 continue;
560 switch (c->type) {
561 case SSH_CHANNEL_CLOSED:
562 case SSH_CHANNEL_DYNAMIC:
563 case SSH_CHANNEL_X11_LISTENER:
564 case SSH_CHANNEL_PORT_LISTENER:
565 case SSH_CHANNEL_RPORT_LISTENER:
566 case SSH_CHANNEL_OPENING:
567 case SSH_CHANNEL_CONNECTING:
568 case SSH_CHANNEL_ZOMBIE:
569 continue;
570 case SSH_CHANNEL_LARVAL:
571 case SSH_CHANNEL_AUTH_SOCKET:
572 case SSH_CHANNEL_OPEN:
573 case SSH_CHANNEL_X11_OPEN:
574 return i;
575 case SSH_CHANNEL_INPUT_DRAINING:
576 case SSH_CHANNEL_OUTPUT_DRAINING:
577 if (!compat13)
578 fatal("cannot happen: OUT_DRAIN");
579 return i;
580 default:
581 fatal("channel_find_open: bad channel type %d", c->type);
582 /* NOTREACHED */
583 }
584 }
585 return -1;
586}
587
588
589/*
590 * Returns a message describing the currently open forwarded connections,
591 * suitable for sending to the client. The message contains crlf pairs for
592 * newlines.
593 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000594char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000595channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000596{
597 Buffer buffer;
598 Channel *c;
599 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000600 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000601
602 buffer_init(&buffer);
603 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
604 buffer_append(&buffer, buf, strlen(buf));
605 for (i = 0; i < channels_alloc; i++) {
606 c = channels[i];
607 if (c == NULL)
608 continue;
609 switch (c->type) {
610 case SSH_CHANNEL_X11_LISTENER:
611 case SSH_CHANNEL_PORT_LISTENER:
612 case SSH_CHANNEL_RPORT_LISTENER:
613 case SSH_CHANNEL_CLOSED:
614 case SSH_CHANNEL_AUTH_SOCKET:
615 case SSH_CHANNEL_ZOMBIE:
616 continue;
617 case SSH_CHANNEL_LARVAL:
618 case SSH_CHANNEL_OPENING:
619 case SSH_CHANNEL_CONNECTING:
620 case SSH_CHANNEL_DYNAMIC:
621 case SSH_CHANNEL_OPEN:
622 case SSH_CHANNEL_X11_OPEN:
623 case SSH_CHANNEL_INPUT_DRAINING:
624 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000625 snprintf(buf, sizeof buf,
626 " #%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 +0000627 c->self, c->remote_name,
628 c->type, c->remote_id,
629 c->istate, buffer_len(&c->input),
630 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000631 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632 buffer_append(&buffer, buf, strlen(buf));
633 continue;
634 default:
635 fatal("channel_open_message: bad channel type %d", c->type);
636 /* NOTREACHED */
637 }
638 }
639 buffer_append(&buffer, "\0", 1);
640 cp = xstrdup(buffer_ptr(&buffer));
641 buffer_free(&buffer);
642 return cp;
643}
644
645void
646channel_send_open(int id)
647{
648 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000649
Ben Lindstrome9c99912001-06-09 00:41:05 +0000650 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000651 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000652 return;
653 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000654 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000655 packet_start(SSH2_MSG_CHANNEL_OPEN);
656 packet_put_cstring(c->ctype);
657 packet_put_int(c->self);
658 packet_put_int(c->local_window);
659 packet_put_int(c->local_maxpacket);
660 packet_send();
661}
662
663void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000664channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000666 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000667
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000669 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670 return;
671 }
Damien Miller0e220db2004-06-15 10:34:08 +1000672 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673 packet_start(SSH2_MSG_CHANNEL_REQUEST);
674 packet_put_int(c->remote_id);
675 packet_put_cstring(service);
676 packet_put_char(wantconfirm);
677}
Damien Miller4f7becb2006-03-26 14:10:14 +1100678
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679void
Damien Millerb84886b2008-05-19 15:05:07 +1000680channel_register_status_confirm(int id, channel_confirm_cb *cb,
681 channel_confirm_abandon_cb *abandon_cb, void *ctx)
682{
683 struct channel_confirm *cc;
684 Channel *c;
685
686 if ((c = channel_lookup(id)) == NULL)
687 fatal("channel_register_expect: %d: bad id", id);
688
689 cc = xmalloc(sizeof(*cc));
690 cc->cb = cb;
691 cc->abandon_cb = abandon_cb;
692 cc->ctx = ctx;
693 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
694}
695
696void
697channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000698{
699 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000700
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100702 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703 return;
704 }
Damien Millerb84886b2008-05-19 15:05:07 +1000705 c->open_confirm = fn;
706 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707}
Damien Miller4f7becb2006-03-26 14:10:14 +1100708
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709void
Damien Miller39eda6e2005-11-05 14:52:50 +1100710channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711{
Damien Millerd47c62a2005-12-13 19:33:57 +1100712 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000713
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000715 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716 return;
717 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000718 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100719 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720}
Damien Miller4f7becb2006-03-26 14:10:14 +1100721
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722void
723channel_cancel_cleanup(int id)
724{
Damien Millerd47c62a2005-12-13 19:33:57 +1100725 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000726
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000728 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729 return;
730 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000731 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100732 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733}
Damien Miller4f7becb2006-03-26 14:10:14 +1100734
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735void
Damien Miller077b2382005-12-31 16:22:32 +1100736channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000737 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738{
739 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000740
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000742 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000743 return;
744 }
Damien Miller077b2382005-12-31 16:22:32 +1100745 c->input_filter = ifn;
746 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000747 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000748 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749}
750
751void
752channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000753 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754{
755 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000756
Ben Lindstrome9c99912001-06-09 00:41:05 +0000757 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
758 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000759 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100761 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
763 packet_put_int(c->remote_id);
764 packet_put_int(c->local_window);
765 packet_send();
766}
767
Damien Miller5428f641999-11-25 11:54:57 +1100768/*
Damien Millerb38eff82000-04-01 11:09:21 +1000769 * 'channel_pre*' are called just before select() to add any bits relevant to
770 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100771 */
Damien Millerb38eff82000-04-01 11:09:21 +1000772/*
773 * 'channel_post*': perform any appropriate operations for channels which
774 * have events pending.
775 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100776typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000777chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
778chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
779
Damien Miller8473dd82006-07-24 14:08:32 +1000780/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000781static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100782channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000783{
784 FD_SET(c->sock, readset);
785}
786
Damien Miller8473dd82006-07-24 14:08:32 +1000787/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100789channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000790{
791 debug3("channel %d: waiting for connection", c->self);
792 FD_SET(c->sock, writeset);
793}
794
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100796channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000797{
798 if (buffer_len(&c->input) < packet_get_maxsize())
799 FD_SET(c->sock, readset);
800 if (buffer_len(&c->output) > 0)
801 FD_SET(c->sock, writeset);
802}
803
Ben Lindstrombba81212001-06-25 05:01:22 +0000804static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100805channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000806{
Damien Millerde6987c2002-01-22 23:20:40 +1100807 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000808
Damien Miller33b13562000-04-04 14:38:59 +1000809 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100810 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000811 buffer_len(&c->input) < limit &&
812 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000813 FD_SET(c->rfd, readset);
814 if (c->ostate == CHAN_OUTPUT_OPEN ||
815 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
816 if (buffer_len(&c->output) > 0) {
817 FD_SET(c->wfd, writeset);
818 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000819 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000820 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
821 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000822 else
823 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000824 }
825 }
826 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000827 if (compat20 && c->efd != -1 &&
828 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000829 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
830 buffer_len(&c->extended) > 0)
831 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000832 else if (!(c->flags & CHAN_EOF_SENT) &&
833 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000834 buffer_len(&c->extended) < c->remote_window)
835 FD_SET(c->efd, readset);
836 }
Damien Miller0e220db2004-06-15 10:34:08 +1000837 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000838 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000839 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
840 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000841}
842
Damien Miller8473dd82006-07-24 14:08:32 +1000843/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000844static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100845channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000846{
847 if (buffer_len(&c->input) == 0) {
848 packet_start(SSH_MSG_CHANNEL_CLOSE);
849 packet_put_int(c->remote_id);
850 packet_send();
851 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000852 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000853 }
854}
855
Damien Miller8473dd82006-07-24 14:08:32 +1000856/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000857static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100858channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000859{
860 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000861 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000862 else
Damien Millerb38eff82000-04-01 11:09:21 +1000863 FD_SET(c->sock, writeset);
864}
865
866/*
867 * This is a special state for X11 authentication spoofing. An opened X11
868 * connection (when authentication spoofing is being done) remains in this
869 * state until the first packet has been completely read. The authentication
870 * data in that packet is then substituted by the real data if it matches the
871 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000872 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000873 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000874 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000876x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000877{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000878 u_char *ucp;
879 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000880
881 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000883 return 0;
884
885 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100886 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000887 if (ucp[0] == 0x42) { /* Byte order MSB first. */
888 proto_len = 256 * ucp[6] + ucp[7];
889 data_len = 256 * ucp[8] + ucp[9];
890 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
891 proto_len = ucp[6] + 256 * ucp[7];
892 data_len = ucp[8] + 256 * ucp[9];
893 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000894 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100895 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000896 return -1;
897 }
898
899 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000900 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000901 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
902 return 0;
903
904 /* Check if authentication protocol matches. */
905 if (proto_len != strlen(x11_saved_proto) ||
906 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000907 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000908 return -1;
909 }
910 /* Check if authentication data matches our fake data. */
911 if (data_len != x11_fake_data_len ||
912 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
913 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000914 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000915 return -1;
916 }
917 /* Check fake data length */
918 if (x11_fake_data_len != x11_saved_data_len) {
919 error("X11 fake_data_len %d != saved_data_len %d",
920 x11_fake_data_len, x11_saved_data_len);
921 return -1;
922 }
923 /*
924 * Received authentication protocol and data match
925 * our fake data. Substitute the fake data with real
926 * data.
927 */
928 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
929 x11_saved_data, x11_saved_data_len);
930 return 1;
931}
932
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100934channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000935{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000936 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000937
Damien Millerb38eff82000-04-01 11:09:21 +1000938 if (ret == 1) {
939 /* Start normal processing for the channel. */
940 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000941 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000942 } else if (ret == -1) {
943 /*
944 * We have received an X11 connection that has bad
945 * authentication information.
946 */
Damien Miller996acd22003-04-09 20:59:48 +1000947 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000948 buffer_clear(&c->input);
949 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000950 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000951 c->sock = -1;
952 c->type = SSH_CHANNEL_CLOSED;
953 packet_start(SSH_MSG_CHANNEL_CLOSE);
954 packet_put_int(c->remote_id);
955 packet_send();
956 }
957}
958
Ben Lindstrombba81212001-06-25 05:01:22 +0000959static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100960channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000961{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000962 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000963
964 /* c->force_drain = 1; */
965
Damien Millerb38eff82000-04-01 11:09:21 +1000966 if (ret == 1) {
967 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100968 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000969 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000970 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000971 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100972 chan_read_failed(c);
973 buffer_clear(&c->input);
974 chan_ibuf_empty(c);
975 buffer_clear(&c->output);
976 /* for proto v1, the peer will send an IEOF */
977 if (compat20)
978 chan_write_failed(c);
979 else
980 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000981 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000982 }
983}
984
Ben Lindstromb3921512001-04-11 15:57:50 +0000985/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000986/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000987static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100988channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000989{
Damien Millera10f5612002-09-12 09:49:15 +1000990 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +1100991 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100992 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000993 struct {
994 u_int8_t version;
995 u_int8_t command;
996 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000997 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000998 } s4_req, s4_rsp;
999
Ben Lindstromb3921512001-04-11 15:57:50 +00001000 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001001
1002 have = buffer_len(&c->input);
1003 len = sizeof(s4_req);
1004 if (have < len)
1005 return 0;
1006 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001007
1008 need = 1;
1009 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1010 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1011 debug2("channel %d: socks4a request", c->self);
1012 /* ... and needs an extra string (the hostname) */
1013 need = 2;
1014 }
1015 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001016 for (found = 0, i = len; i < have; i++) {
1017 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001018 found++;
1019 if (found == need)
1020 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001021 }
1022 if (i > 1024) {
1023 /* the peer is probably sending garbage */
1024 debug("channel %d: decode socks4: too long",
1025 c->self);
1026 return -1;
1027 }
1028 }
Damien Miller1781f532009-01-28 16:24:41 +11001029 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001030 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001031 buffer_get(&c->input, (char *)&s4_req.version, 1);
1032 buffer_get(&c->input, (char *)&s4_req.command, 1);
1033 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001034 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001035 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001036 p = buffer_ptr(&c->input);
1037 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001038 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001039 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001040 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001041 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001042 c->self, len, have);
1043 strlcpy(username, p, sizeof(username));
1044 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001045
Damien Millera1c1b6c2009-01-28 16:29:49 +11001046 if (c->path != NULL) {
1047 xfree(c->path);
1048 c->path = NULL;
1049 }
Damien Miller1781f532009-01-28 16:24:41 +11001050 if (need == 1) { /* SOCKS4: one string */
1051 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001052 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001053 } else { /* SOCKS4A: two strings */
1054 have = buffer_len(&c->input);
1055 p = buffer_ptr(&c->input);
1056 len = strlen(p);
1057 debug2("channel %d: decode socks4a: host %s/%d",
1058 c->self, p, len);
1059 len++; /* trailing '\0' */
1060 if (len > have)
1061 fatal("channel %d: decode socks4a: len %d > have %d",
1062 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001063 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001064 error("channel %d: hostname \"%.100s\" too long",
1065 c->self, p);
1066 return -1;
1067 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001068 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001069 buffer_consume(&c->input, len);
1070 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001071 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001072
Damien Millerfbdeece2003-09-02 22:52:31 +10001073 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001074 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001075
Ben Lindstromb3921512001-04-11 15:57:50 +00001076 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001077 debug("channel %d: cannot handle: %s cn %d",
1078 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001079 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001080 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001081 s4_rsp.version = 0; /* vn: 0 for reply */
1082 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001083 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001084 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001085 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001086 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001087}
1088
Darren Tucker46471c92003-07-03 13:55:19 +10001089/* try to decode a socks5 header */
1090#define SSH_SOCKS5_AUTHDONE 0x1000
1091#define SSH_SOCKS5_NOAUTH 0x00
1092#define SSH_SOCKS5_IPV4 0x01
1093#define SSH_SOCKS5_DOMAIN 0x03
1094#define SSH_SOCKS5_IPV6 0x04
1095#define SSH_SOCKS5_CONNECT 0x01
1096#define SSH_SOCKS5_SUCCESS 0x00
1097
Damien Miller8473dd82006-07-24 14:08:32 +10001098/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001099static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001100channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001101{
1102 struct {
1103 u_int8_t version;
1104 u_int8_t command;
1105 u_int8_t reserved;
1106 u_int8_t atyp;
1107 } s5_req, s5_rsp;
1108 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001109 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001110 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001111
1112 debug2("channel %d: decode socks5", c->self);
1113 p = buffer_ptr(&c->input);
1114 if (p[0] != 0x05)
1115 return -1;
1116 have = buffer_len(&c->input);
1117 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1118 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001119 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001120 return 0;
1121 nmethods = p[1];
1122 if (have < nmethods + 2)
1123 return 0;
1124 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001125 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001126 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001127 found = 1;
1128 break;
1129 }
1130 }
1131 if (!found) {
1132 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1133 c->self);
1134 return -1;
1135 }
1136 buffer_consume(&c->input, nmethods + 2);
1137 buffer_put_char(&c->output, 0x05); /* version */
1138 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1139 FD_SET(c->sock, writeset);
1140 c->flags |= SSH_SOCKS5_AUTHDONE;
1141 debug2("channel %d: socks5 auth done", c->self);
1142 return 0; /* need more */
1143 }
1144 debug2("channel %d: socks5 post auth", c->self);
1145 if (have < sizeof(s5_req)+1)
1146 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001147 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001148 if (s5_req.version != 0x05 ||
1149 s5_req.command != SSH_SOCKS5_CONNECT ||
1150 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001151 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001152 return -1;
1153 }
Darren Tucker47eede72005-03-14 23:08:12 +11001154 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001155 case SSH_SOCKS5_IPV4:
1156 addrlen = 4;
1157 af = AF_INET;
1158 break;
1159 case SSH_SOCKS5_DOMAIN:
1160 addrlen = p[sizeof(s5_req)];
1161 af = -1;
1162 break;
1163 case SSH_SOCKS5_IPV6:
1164 addrlen = 16;
1165 af = AF_INET6;
1166 break;
1167 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001168 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001169 return -1;
1170 }
Damien Miller0f077072006-07-10 22:21:02 +10001171 need = sizeof(s5_req) + addrlen + 2;
1172 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1173 need++;
1174 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001175 return 0;
1176 buffer_consume(&c->input, sizeof(s5_req));
1177 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1178 buffer_consume(&c->input, 1); /* host string length */
1179 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1180 buffer_get(&c->input, (char *)&dest_port, 2);
1181 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001182 if (c->path != NULL) {
1183 xfree(c->path);
1184 c->path = NULL;
1185 }
1186 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001187 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001188 error("channel %d: dynamic request: socks5 hostname "
1189 "\"%.100s\" too long", c->self, dest_addr);
1190 return -1;
1191 }
1192 c->path = xstrdup(dest_addr);
1193 } else {
1194 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1195 return -1;
1196 c->path = xstrdup(ntop);
1197 }
Darren Tucker46471c92003-07-03 13:55:19 +10001198 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001199
Damien Millerfbdeece2003-09-02 22:52:31 +10001200 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001201 c->self, c->path, c->host_port, s5_req.command);
1202
1203 s5_rsp.version = 0x05;
1204 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1205 s5_rsp.reserved = 0; /* ignored */
1206 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1207 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1208 dest_port = 0; /* ignored */
1209
Damien Millera0fdce92006-03-26 14:28:50 +11001210 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1211 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1212 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001213 return 1;
1214}
1215
Ben Lindstromb3921512001-04-11 15:57:50 +00001216/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001217static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001218channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001219{
1220 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001221 u_int have;
1222 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001223
1224 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001225 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001226 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001227 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001228 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001229 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001230 /* need more */
1231 FD_SET(c->sock, readset);
1232 return;
1233 }
1234 /* try to guess the protocol */
1235 p = buffer_ptr(&c->input);
1236 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001237 case 0x04:
1238 ret = channel_decode_socks4(c, readset, writeset);
1239 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001240 case 0x05:
1241 ret = channel_decode_socks5(c, readset, writeset);
1242 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001243 default:
1244 ret = -1;
1245 break;
1246 }
1247 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001248 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001249 } else if (ret == 0) {
1250 debug2("channel %d: pre_dynamic: need more", c->self);
1251 /* need more */
1252 FD_SET(c->sock, readset);
1253 } else {
1254 /* switch to the next state */
1255 c->type = SSH_CHANNEL_OPENING;
1256 port_open_helper(c, "direct-tcpip");
1257 }
1258}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001259
Damien Millerb38eff82000-04-01 11:09:21 +10001260/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001261/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001262static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001263channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001264{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001265 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001266 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001267 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001268 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001269 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001270 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001271
1272 if (FD_ISSET(c->sock, readset)) {
1273 debug("X11 connection requested.");
1274 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001275 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001276 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001277 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001278 channel_close_fd(&c->sock);
1279 chan_mark_dead(c);
1280 }
Damien Millerb38eff82000-04-01 11:09:21 +10001281 if (newsock < 0) {
1282 error("accept: %.100s", strerror(errno));
1283 return;
1284 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001285 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001286 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001287 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001288 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001289 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001290
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001291 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001292 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001293 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001294 if (compat20) {
1295 packet_start(SSH2_MSG_CHANNEL_OPEN);
1296 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001297 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001298 packet_put_int(nc->local_window_max);
1299 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001300 /* originator ipaddr and port */
1301 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001302 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001303 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001304 } else {
1305 packet_put_int(remote_port);
1306 }
Damien Millerbd483e72000-04-30 10:00:53 +10001307 packet_send();
1308 } else {
1309 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001310 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001311 if (packet_get_protocol_flags() &
1312 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001313 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001314 packet_send();
1315 }
Damien Millerd83ff352001-01-30 09:19:34 +11001316 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001317 }
1318}
1319
Ben Lindstrombba81212001-06-25 05:01:22 +00001320static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001321port_open_helper(Channel *c, char *rtype)
1322{
1323 int direct;
1324 char buf[1024];
1325 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001326 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001327
1328 direct = (strcmp(rtype, "direct-tcpip") == 0);
1329
1330 snprintf(buf, sizeof buf,
1331 "%s: listening port %d for %.100s port %d, "
1332 "connect from %.200s port %d",
1333 rtype, c->listening_port, c->path, c->host_port,
1334 remote_ipaddr, remote_port);
1335
1336 xfree(c->remote_name);
1337 c->remote_name = xstrdup(buf);
1338
1339 if (compat20) {
1340 packet_start(SSH2_MSG_CHANNEL_OPEN);
1341 packet_put_cstring(rtype);
1342 packet_put_int(c->self);
1343 packet_put_int(c->local_window_max);
1344 packet_put_int(c->local_maxpacket);
1345 if (direct) {
1346 /* target host, port */
1347 packet_put_cstring(c->path);
1348 packet_put_int(c->host_port);
1349 } else {
1350 /* listen address, port */
1351 packet_put_cstring(c->path);
1352 packet_put_int(c->listening_port);
1353 }
1354 /* originator host and port */
1355 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001356 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001357 packet_send();
1358 } else {
1359 packet_start(SSH_MSG_PORT_OPEN);
1360 packet_put_int(c->self);
1361 packet_put_cstring(c->path);
1362 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001363 if (packet_get_protocol_flags() &
1364 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001365 packet_put_cstring(c->remote_name);
1366 packet_send();
1367 }
1368 xfree(remote_ipaddr);
1369}
1370
Damien Miller5e7fd072005-11-05 14:53:39 +11001371static void
1372channel_set_reuseaddr(int fd)
1373{
1374 int on = 1;
1375
1376 /*
1377 * Set socket options.
1378 * Allow local port reuse in TIME_WAIT.
1379 */
1380 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1381 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1382}
1383
Damien Millerb38eff82000-04-01 11:09:21 +10001384/*
1385 * This socket is listening for connections to a forwarded TCP/IP port.
1386 */
Damien Miller8473dd82006-07-24 14:08:32 +10001387/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001388static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001389channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001390{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001391 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001392 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001393 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001394 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001395 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001396
Damien Millerb38eff82000-04-01 11:09:21 +10001397 if (FD_ISSET(c->sock, readset)) {
1398 debug("Connection to port %d forwarding "
1399 "to %.100s port %d requested.",
1400 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001401
Damien Miller4623a752001-10-10 15:03:58 +10001402 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1403 nextstate = SSH_CHANNEL_OPENING;
1404 rtype = "forwarded-tcpip";
1405 } else {
1406 if (c->host_port == 0) {
1407 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001408 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001409 } else {
1410 nextstate = SSH_CHANNEL_OPENING;
1411 rtype = "direct-tcpip";
1412 }
1413 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001414
Damien Millerb38eff82000-04-01 11:09:21 +10001415 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001416 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001417 if (newsock < 0) {
1418 error("accept: %.100s", strerror(errno));
1419 return;
1420 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001421 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001422 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1423 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001424 nc->listening_port = c->listening_port;
1425 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001426 if (c->path != NULL)
1427 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001428
Damien Miller4623a752001-10-10 15:03:58 +10001429 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1430 /*
1431 * do not call the channel_post handler until
1432 * this flag has been reset by a pre-handler.
1433 * otherwise the FD_ISSET calls might overflow
1434 */
1435 nc->delayed = 1;
1436 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001437 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001438 }
Damien Millerb38eff82000-04-01 11:09:21 +10001439 }
1440}
1441
1442/*
1443 * This is the authentication agent socket listening for connections from
1444 * clients.
1445 */
Damien Miller8473dd82006-07-24 14:08:32 +10001446/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001447static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001448channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001449{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001450 Channel *nc;
1451 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001452 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001453 socklen_t addrlen;
1454
1455 if (FD_ISSET(c->sock, readset)) {
1456 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001457 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001458 if (newsock < 0) {
1459 error("accept from auth socket: %.100s", strerror(errno));
1460 return;
1461 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001462 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001463 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1464 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001465 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001466 if (compat20) {
1467 packet_start(SSH2_MSG_CHANNEL_OPEN);
1468 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001469 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001470 packet_put_int(c->local_window_max);
1471 packet_put_int(c->local_maxpacket);
1472 } else {
1473 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001474 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001475 }
Damien Millerb38eff82000-04-01 11:09:21 +10001476 packet_send();
1477 }
1478}
1479
Damien Miller8473dd82006-07-24 14:08:32 +10001480/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001481static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001482channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001483{
Damien Millerbd740252008-05-19 15:37:09 +10001484 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001485 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001486
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001487 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001488 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001489 err = errno;
1490 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001491 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001492 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001493 debug("channel %d: connected to %s port %d",
1494 c->self, c->connect_ctx.host, c->connect_ctx.port);
1495 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001496 c->type = SSH_CHANNEL_OPEN;
1497 if (compat20) {
1498 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1499 packet_put_int(c->remote_id);
1500 packet_put_int(c->self);
1501 packet_put_int(c->local_window);
1502 packet_put_int(c->local_maxpacket);
1503 } else {
1504 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1505 packet_put_int(c->remote_id);
1506 packet_put_int(c->self);
1507 }
1508 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001509 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001510 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001511 /* Try next address, if any */
1512 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1513 close(c->sock);
1514 c->sock = c->rfd = c->wfd = sock;
1515 channel_max_fd = channel_find_maxfd();
1516 return;
1517 }
1518 /* Exhausted all addresses */
1519 error("connect_to %.100s port %d: failed.",
1520 c->connect_ctx.host, c->connect_ctx.port);
1521 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001522 if (compat20) {
1523 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1524 packet_put_int(c->remote_id);
1525 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1526 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1527 packet_put_cstring(strerror(err));
1528 packet_put_cstring("");
1529 }
1530 } else {
1531 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1532 packet_put_int(c->remote_id);
1533 }
1534 chan_mark_dead(c);
1535 }
1536 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001537 }
1538}
1539
Damien Miller8473dd82006-07-24 14:08:32 +10001540/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001541static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001542channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001543{
Darren Tucker11327cc2005-03-14 23:22:25 +11001544 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001545 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001546
Damien Miller835284b2007-06-11 13:03:16 +10001547 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1548 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001549 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001550 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001551 if (len < 0 && (errno == EINTR ||
1552 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001553 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001554#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001555 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001556#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001557 if ((!c->isatty && len <= 0) ||
1558 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001559#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001560 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001561 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001562 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001563 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001564 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001565 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001566 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001567 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001568 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001569 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001570 } else {
1571 chan_read_failed(c);
1572 }
1573 return -1;
1574 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001575 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001576 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001577 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001578 chan_read_failed(c);
1579 }
Damien Millerd27b9472005-12-13 19:29:02 +11001580 } else if (c->datagram) {
1581 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001582 } else {
1583 buffer_append(&c->input, buf, len);
1584 }
Damien Millerb38eff82000-04-01 11:09:21 +10001585 }
1586 return 1;
1587}
Damien Miller4f7becb2006-03-26 14:10:14 +11001588
Damien Miller8473dd82006-07-24 14:08:32 +10001589/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001590static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001591channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001592{
Ben Lindstrome229b252001-03-05 06:28:06 +00001593 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001594 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001595 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001596 int len;
1597
1598 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001599 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001600 FD_ISSET(c->wfd, writeset) &&
1601 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001602 if (c->output_filter != NULL) {
1603 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1604 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001605 if (c->type != SSH_CHANNEL_OPEN)
1606 chan_mark_dead(c);
1607 else
1608 chan_write_failed(c);
1609 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001610 }
1611 } else if (c->datagram) {
1612 buf = data = buffer_get_string(&c->output, &dlen);
1613 } else {
1614 buf = data = buffer_ptr(&c->output);
1615 dlen = buffer_len(&c->output);
1616 }
1617
Damien Millerd27b9472005-12-13 19:29:02 +11001618 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001619 /* ignore truncated writes, datagrams might get lost */
1620 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001621 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001622 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001623 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1624 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001625 return 1;
1626 if (len <= 0) {
1627 if (c->type != SSH_CHANNEL_OPEN)
1628 chan_mark_dead(c);
1629 else
1630 chan_write_failed(c);
1631 return -1;
1632 }
1633 return 1;
1634 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001635#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001636 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001637 if (compat20 && c->wfd_isatty)
1638 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001639#endif
Damien Miller077b2382005-12-31 16:22:32 +11001640
1641 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001642 if (len < 0 &&
1643 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001644 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001645 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001646 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001647 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001648 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001649 return -1;
1650 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001651 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001652 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001653 c->type = SSH_CHANNEL_INPUT_DRAINING;
1654 } else {
1655 chan_write_failed(c);
1656 }
1657 return -1;
1658 }
Darren Tucker3980b632009-08-28 11:02:37 +10001659#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001660 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001661 if (tcgetattr(c->wfd, &tio) == 0 &&
1662 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1663 /*
1664 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001665 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001666 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001667 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001668 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001669 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001670 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001671 }
1672 }
Darren Tucker3980b632009-08-28 11:02:37 +10001673#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001674 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001675 if (compat20 && len > 0) {
1676 c->local_consumed += len;
1677 }
1678 }
1679 return 1;
1680}
Damien Miller4f7becb2006-03-26 14:10:14 +11001681
Ben Lindstrombba81212001-06-25 05:01:22 +00001682static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001683channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001684{
Darren Tucker11327cc2005-03-14 23:22:25 +11001685 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001686 int len;
1687
Damien Miller1383bd82000-04-06 12:32:37 +10001688/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001689 if (c->efd != -1) {
1690 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1691 FD_ISSET(c->efd, writeset) &&
1692 buffer_len(&c->extended) > 0) {
1693 len = write(c->efd, buffer_ptr(&c->extended),
1694 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001695 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001696 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001697 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1698 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001699 return 1;
1700 if (len <= 0) {
1701 debug2("channel %d: closing write-efd %d",
1702 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001703 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001704 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001705 buffer_consume(&c->extended, len);
1706 c->local_consumed += len;
1707 }
1708 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001709 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001710 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001711 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001712 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001713 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1714 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001715 return 1;
1716 if (len <= 0) {
1717 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001718 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001719 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001720 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001721 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001722 }
Damien Miller33b13562000-04-04 14:38:59 +10001723 }
1724 }
1725 return 1;
1726}
Damien Miller4f7becb2006-03-26 14:10:14 +11001727
Damien Miller8473dd82006-07-24 14:08:32 +10001728/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001729static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001730channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001731{
1732 char buf[16];
1733 int len;
1734
1735 /* Monitor control fd to detect if the slave client exits */
1736 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1737 len = read(c->ctl_fd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001738 if (len < 0 &&
1739 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller0e220db2004-06-15 10:34:08 +10001740 return 1;
1741 if (len <= 0) {
1742 debug2("channel %d: ctl read<=0", c->self);
1743 if (c->type != SSH_CHANNEL_OPEN) {
1744 debug2("channel %d: not open", c->self);
1745 chan_mark_dead(c);
1746 return -1;
1747 } else {
1748 chan_read_failed(c);
1749 chan_write_failed(c);
1750 }
1751 return -1;
1752 } else
1753 fatal("%s: unexpected data on ctl fd", __func__);
1754 }
1755 return 1;
1756}
Damien Miller4f7becb2006-03-26 14:10:14 +11001757
Damien Miller0e220db2004-06-15 10:34:08 +10001758static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001759channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001760{
Ben Lindstromb3921512001-04-11 15:57:50 +00001761 if (c->type == SSH_CHANNEL_OPEN &&
1762 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001763 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001764 c->local_maxpacket*3) ||
1765 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001766 c->local_consumed > 0) {
1767 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1768 packet_put_int(c->remote_id);
1769 packet_put_int(c->local_consumed);
1770 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001771 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001772 c->self, c->local_window,
1773 c->local_consumed);
1774 c->local_window += c->local_consumed;
1775 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001776 }
1777 return 1;
1778}
1779
Ben Lindstrombba81212001-06-25 05:01:22 +00001780static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001781channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001782{
Damien Miller4623a752001-10-10 15:03:58 +10001783 if (c->delayed)
1784 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001785 channel_handle_rfd(c, readset, writeset);
1786 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001787 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001788 return;
Damien Miller33b13562000-04-04 14:38:59 +10001789 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001790 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001791 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001792}
1793
Damien Miller8473dd82006-07-24 14:08:32 +10001794/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001795static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001796channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001797{
1798 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001799
Damien Millerb38eff82000-04-01 11:09:21 +10001800 /* Send buffered output data to the socket. */
1801 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1802 len = write(c->sock, buffer_ptr(&c->output),
1803 buffer_len(&c->output));
1804 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001805 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001806 else
1807 buffer_consume(&c->output, len);
1808 }
1809}
1810
Ben Lindstrombba81212001-06-25 05:01:22 +00001811static void
Damien Miller33b13562000-04-04 14:38:59 +10001812channel_handler_init_20(void)
1813{
Damien Millerde6987c2002-01-22 23:20:40 +11001814 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001815 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001816 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001817 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001818 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001819 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001820 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001821 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001822
Damien Millerde6987c2002-01-22 23:20:40 +11001823 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001824 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001825 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001826 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001827 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001828 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001829 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001830}
1831
Ben Lindstrombba81212001-06-25 05:01:22 +00001832static void
Damien Millerb38eff82000-04-01 11:09:21 +10001833channel_handler_init_13(void)
1834{
1835 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1836 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1837 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1838 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1839 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1840 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1841 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
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 Millerb38eff82000-04-01 11:09:21 +10001844
Damien Millerde6987c2002-01-22 23:20:40 +11001845 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001846 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1847 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1848 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1849 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
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 Millerb38eff82000-04-01 11:09:21 +10001852}
1853
Ben Lindstrombba81212001-06-25 05:01:22 +00001854static void
Damien Millerb38eff82000-04-01 11:09:21 +10001855channel_handler_init_15(void)
1856{
Damien Millerde6987c2002-01-22 23:20:40 +11001857 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001858 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001859 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;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001862 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001863 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001864
1865 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1866 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1867 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001868 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001869 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001870 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001871}
1872
Ben Lindstrombba81212001-06-25 05:01:22 +00001873static void
Damien Millerb38eff82000-04-01 11:09:21 +10001874channel_handler_init(void)
1875{
1876 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001877
Damien Miller9f0f5c62001-12-21 14:45:46 +11001878 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001879 channel_pre[i] = NULL;
1880 channel_post[i] = NULL;
1881 }
Damien Miller33b13562000-04-04 14:38:59 +10001882 if (compat20)
1883 channel_handler_init_20();
1884 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001885 channel_handler_init_13();
1886 else
1887 channel_handler_init_15();
1888}
1889
Damien Miller3ec27592001-10-12 11:35:04 +10001890/* gc dead channels */
1891static void
1892channel_garbage_collect(Channel *c)
1893{
1894 if (c == NULL)
1895 return;
1896 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001897 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001898 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001899 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001900 c->detach_user(c->self, NULL);
1901 /* if we still have a callback */
1902 if (c->detach_user != NULL)
1903 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001904 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001905 }
1906 if (!chan_is_dead(c, 1))
1907 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001908 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001909 channel_free(c);
1910}
1911
Ben Lindstrombba81212001-06-25 05:01:22 +00001912static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001913channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001914{
1915 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001916 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001917 Channel *c;
1918
1919 if (!did_init) {
1920 channel_handler_init();
1921 did_init = 1;
1922 }
1923 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001924 c = channels[i];
1925 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001926 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001927 if (ftab[c->type] != NULL)
1928 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001929 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001930 }
1931}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001932
Ben Lindstrome9c99912001-06-09 00:41:05 +00001933/*
1934 * Allocate/update select bitmasks and add any bits relevant to channels in
1935 * select bitmasks.
1936 */
Damien Miller4af51302000-04-16 11:18:38 +10001937void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001938channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001939 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001940{
Damien Miller36812092006-03-26 14:22:47 +11001941 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001942
1943 n = MAX(*maxfdp, channel_max_fd);
1944
Damien Miller36812092006-03-26 14:22:47 +11001945 nfdset = howmany(n+1, NFDBITS);
1946 /* Explicitly test here, because xrealloc isn't always called */
1947 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1948 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1949 sz = nfdset * sizeof(fd_mask);
1950
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001951 /* perhaps check sz < nalloc/2 and shrink? */
1952 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001953 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1954 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001955 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001956 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001957 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001958 memset(*readsetp, 0, sz);
1959 memset(*writesetp, 0, sz);
1960
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001961 if (!rekeying)
1962 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001963}
1964
Ben Lindstrome9c99912001-06-09 00:41:05 +00001965/*
1966 * After select, perform any appropriate operations for channels which have
1967 * events pending.
1968 */
Damien Miller4af51302000-04-16 11:18:38 +10001969void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001970channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001971{
Damien Millerb38eff82000-04-01 11:09:21 +10001972 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001973}
1974
Ben Lindstrome9c99912001-06-09 00:41:05 +00001975
Damien Miller5e953212001-01-30 09:14:00 +11001976/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001977void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001978channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001979{
Damien Millerb38eff82000-04-01 11:09:21 +10001980 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001981 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982
Damien Miller95def091999-11-25 00:26:21 +11001983 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001984 c = channels[i];
1985 if (c == NULL)
1986 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001987
Ben Lindstrome9c99912001-06-09 00:41:05 +00001988 /*
1989 * We are only interested in channels that can have buffered
1990 * incoming data.
1991 */
Damien Miller34132e52000-01-14 15:45:46 +11001992 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001993 if (c->type != SSH_CHANNEL_OPEN &&
1994 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001995 continue;
1996 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001997 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001998 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001999 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002000 if (compat20 &&
2001 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002002 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002003 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002004 continue;
2005 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002006
Damien Miller95def091999-11-25 00:26:21 +11002007 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002008 if ((c->istate == CHAN_INPUT_OPEN ||
2009 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2010 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002011 if (c->datagram) {
2012 if (len > 0) {
2013 u_char *data;
2014 u_int dlen;
2015
2016 data = buffer_get_string(&c->input,
2017 &dlen);
2018 packet_start(SSH2_MSG_CHANNEL_DATA);
2019 packet_put_int(c->remote_id);
2020 packet_put_string(data, dlen);
2021 packet_send();
2022 c->remote_window -= dlen + 4;
2023 xfree(data);
2024 }
2025 continue;
2026 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002027 /*
2028 * Send some data for the other side over the secure
2029 * connection.
2030 */
Damien Miller33b13562000-04-04 14:38:59 +10002031 if (compat20) {
2032 if (len > c->remote_window)
2033 len = c->remote_window;
2034 if (len > c->remote_maxpacket)
2035 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002036 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002037 if (packet_is_interactive()) {
2038 if (len > 1024)
2039 len = 512;
2040 } else {
2041 /* Keep the packets at reasonable size. */
2042 if (len > packet_get_maxsize()/2)
2043 len = packet_get_maxsize()/2;
2044 }
Damien Miller95def091999-11-25 00:26:21 +11002045 }
Damien Millerb38eff82000-04-01 11:09:21 +10002046 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002047 packet_start(compat20 ?
2048 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002049 packet_put_int(c->remote_id);
2050 packet_put_string(buffer_ptr(&c->input), len);
2051 packet_send();
2052 buffer_consume(&c->input, len);
2053 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002054 }
2055 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002056 if (compat13)
2057 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002058 /*
2059 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002060 * tell peer, that we will not send more data: send IEOF.
2061 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002062 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002063 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002064 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2065 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002066 else
2067 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002068 }
Damien Miller33b13562000-04-04 14:38:59 +10002069 /* Send extended data, i.e. stderr */
2070 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002071 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002072 c->remote_window > 0 &&
2073 (len = buffer_len(&c->extended)) > 0 &&
2074 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002075 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002076 c->self, c->remote_window, buffer_len(&c->extended),
2077 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002078 if (len > c->remote_window)
2079 len = c->remote_window;
2080 if (len > c->remote_maxpacket)
2081 len = c->remote_maxpacket;
2082 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2083 packet_put_int(c->remote_id);
2084 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2085 packet_put_string(buffer_ptr(&c->extended), len);
2086 packet_send();
2087 buffer_consume(&c->extended, len);
2088 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002089 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002090 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002091 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002092}
2093
Ben Lindstrome9c99912001-06-09 00:41:05 +00002094
2095/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002096
2097/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002098void
Damien Miller630d6f42002-01-22 23:17:30 +11002099channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002100{
Damien Miller34132e52000-01-14 15:45:46 +11002101 int id;
Damien Miller95def091999-11-25 00:26:21 +11002102 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002103 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002104 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002105
Damien Miller95def091999-11-25 00:26:21 +11002106 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002107 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002108 c = channel_lookup(id);
2109 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002110 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002111
Damien Miller95def091999-11-25 00:26:21 +11002112 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002113 if (c->type != SSH_CHANNEL_OPEN &&
2114 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002115 return;
2116
Damien Miller95def091999-11-25 00:26:21 +11002117 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002118 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002119
Damien Millera04ad492004-01-21 11:02:09 +11002120 /*
2121 * Ignore data for protocol > 1.3 if output end is no longer open.
2122 * For protocol 2 the sending side is reducing its window as it sends
2123 * data, so we must 'fake' consumption of the data in order to ensure
2124 * that window updates are sent back. Otherwise the connection might
2125 * deadlock.
2126 */
2127 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2128 if (compat20) {
2129 c->local_window -= data_len;
2130 c->local_consumed += data_len;
2131 }
Damien Millera04ad492004-01-21 11:02:09 +11002132 return;
2133 }
2134
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002135 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002136 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002137 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002138 c->self, data_len, c->local_maxpacket);
2139 }
2140 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002141 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002142 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002143 return;
2144 }
2145 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002146 }
Damien Millerd27b9472005-12-13 19:29:02 +11002147 if (c->datagram)
2148 buffer_put_string(&c->output, data, data_len);
2149 else
2150 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002151 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002152}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002153
Damien Millerd79b4242006-03-31 23:11:44 +11002154/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002155void
Damien Miller630d6f42002-01-22 23:17:30 +11002156channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002157{
2158 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002159 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002160 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002161 Channel *c;
2162
2163 /* Get the channel number and verify it. */
2164 id = packet_get_int();
2165 c = channel_lookup(id);
2166
2167 if (c == NULL)
2168 packet_disconnect("Received extended_data for bad channel %d.", id);
2169 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002170 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002171 return;
2172 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002173 if (c->flags & CHAN_EOF_RCVD) {
2174 if (datafellows & SSH_BUG_EXTEOF)
2175 debug("channel %d: accepting ext data after eof", id);
2176 else
2177 packet_disconnect("Received extended_data after EOF "
2178 "on channel %d.", id);
2179 }
Damien Miller33b13562000-04-04 14:38:59 +10002180 tcode = packet_get_int();
2181 if (c->efd == -1 ||
2182 c->extended_usage != CHAN_EXTENDED_WRITE ||
2183 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002184 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002185 return;
2186 }
2187 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002188 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002189 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002190 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002191 c->self, data_len, c->local_window);
2192 xfree(data);
2193 return;
2194 }
Damien Millerd3444942000-09-30 14:20:03 +11002195 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002196 c->local_window -= data_len;
2197 buffer_append(&c->extended, data, data_len);
2198 xfree(data);
2199}
2200
Damien Millerd79b4242006-03-31 23:11:44 +11002201/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002202void
Damien Miller630d6f42002-01-22 23:17:30 +11002203channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002204{
2205 int id;
2206 Channel *c;
2207
Damien Millerb38eff82000-04-01 11:09:21 +10002208 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002209 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002210 c = channel_lookup(id);
2211 if (c == NULL)
2212 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2213 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002214
2215 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002216 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002217 debug("channel %d: FORCE input drain", c->self);
2218 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002219 if (buffer_len(&c->input) == 0)
2220 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002221 }
2222
Damien Millerb38eff82000-04-01 11:09:21 +10002223}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002224
Damien Millerd79b4242006-03-31 23:11:44 +11002225/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002226void
Damien Miller630d6f42002-01-22 23:17:30 +11002227channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002228{
Damien Millerb38eff82000-04-01 11:09:21 +10002229 int id;
2230 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002231
Damien Millerb38eff82000-04-01 11:09:21 +10002232 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002233 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002234 c = channel_lookup(id);
2235 if (c == NULL)
2236 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002237
2238 /*
2239 * Send a confirmation that we have closed the channel and no more
2240 * data is coming for it.
2241 */
Damien Miller95def091999-11-25 00:26:21 +11002242 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002243 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002244 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002245
Damien Miller5428f641999-11-25 11:54:57 +11002246 /*
2247 * If the channel is in closed state, we have sent a close request,
2248 * and the other side will eventually respond with a confirmation.
2249 * Thus, we cannot free the channel here, because then there would be
2250 * no-one to receive the confirmation. The channel gets freed when
2251 * the confirmation arrives.
2252 */
Damien Millerb38eff82000-04-01 11:09:21 +10002253 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002254 /*
2255 * Not a closed channel - mark it as draining, which will
2256 * cause it to be freed later.
2257 */
Damien Miller76765c02002-01-22 23:21:15 +11002258 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002259 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002260 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002261}
2262
Damien Millerb38eff82000-04-01 11:09:21 +10002263/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002264/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002265void
Damien Miller630d6f42002-01-22 23:17:30 +11002266channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267{
Damien Millerb38eff82000-04-01 11:09:21 +10002268 int id = packet_get_int();
2269 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002270
Damien Miller48b03fc2002-01-22 23:11:40 +11002271 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002272 if (c == NULL)
2273 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2274 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002275}
2276
Damien Millerd79b4242006-03-31 23:11:44 +11002277/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002278void
Damien Miller630d6f42002-01-22 23:17:30 +11002279channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002280{
2281 int id = packet_get_int();
2282 Channel *c = channel_lookup(id);
2283
Damien Miller48b03fc2002-01-22 23:11:40 +11002284 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002285 if (c == NULL)
2286 packet_disconnect("Received close confirmation for "
2287 "out-of-range channel %d.", id);
2288 if (c->type != SSH_CHANNEL_CLOSED)
2289 packet_disconnect("Received close confirmation for "
2290 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002291 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002292}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002293
Damien Millerd79b4242006-03-31 23:11:44 +11002294/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002295void
Damien Miller630d6f42002-01-22 23:17:30 +11002296channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002297{
Damien Millerb38eff82000-04-01 11:09:21 +10002298 int id, remote_id;
2299 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002300
Damien Millerb38eff82000-04-01 11:09:21 +10002301 id = packet_get_int();
2302 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303
Damien Millerb38eff82000-04-01 11:09:21 +10002304 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2305 packet_disconnect("Received open confirmation for "
2306 "non-opening channel %d.", id);
2307 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002308 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002309 c->remote_id = remote_id;
2310 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002311
2312 if (compat20) {
2313 c->remote_window = packet_get_int();
2314 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002315 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002316 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002317 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002318 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002319 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002320 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002321 c->remote_window, c->remote_maxpacket);
2322 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002323 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002324}
2325
Ben Lindstrombba81212001-06-25 05:01:22 +00002326static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002327reason2txt(int reason)
2328{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002329 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002330 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2331 return "administratively prohibited";
2332 case SSH2_OPEN_CONNECT_FAILED:
2333 return "connect failed";
2334 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2335 return "unknown channel type";
2336 case SSH2_OPEN_RESOURCE_SHORTAGE:
2337 return "resource shortage";
2338 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002339 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002340}
2341
Damien Millerd79b4242006-03-31 23:11:44 +11002342/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002343void
Damien Miller630d6f42002-01-22 23:17:30 +11002344channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002345{
Kevin Steves12057502001-02-05 14:54:34 +00002346 int id, reason;
2347 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002348 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002349
Damien Millerb38eff82000-04-01 11:09:21 +10002350 id = packet_get_int();
2351 c = channel_lookup(id);
2352
2353 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2354 packet_disconnect("Received open failure for "
2355 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002356 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002357 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002358 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002359 msg = packet_get_string(NULL);
2360 lang = packet_get_string(NULL);
2361 }
Damien Miller996acd22003-04-09 20:59:48 +10002362 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002363 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002364 if (msg != NULL)
2365 xfree(msg);
2366 if (lang != NULL)
2367 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002368 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002369 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002370 /* Schedule the channel for cleanup/deletion. */
2371 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002372}
2373
Damien Millerd79b4242006-03-31 23:11:44 +11002374/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002375void
Damien Miller630d6f42002-01-22 23:17:30 +11002376channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002377{
2378 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002379 int id;
2380 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002381
2382 if (!compat20)
2383 return;
2384
2385 /* Get the channel number and verify it. */
2386 id = packet_get_int();
2387 c = channel_lookup(id);
2388
Damien Millerd47c62a2005-12-13 19:33:57 +11002389 if (c == NULL) {
2390 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002391 return;
2392 }
2393 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002394 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002395 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002396 c->remote_window += adjust;
2397}
2398
Damien Millerd79b4242006-03-31 23:11:44 +11002399/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002400void
Damien Miller630d6f42002-01-22 23:17:30 +11002401channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002402{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002403 Channel *c = NULL;
2404 u_short host_port;
2405 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002406 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002407
Ben Lindstrome9c99912001-06-09 00:41:05 +00002408 remote_id = packet_get_int();
2409 host = packet_get_string(NULL);
2410 host_port = packet_get_int();
2411
2412 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2413 originator_string = packet_get_string(NULL);
2414 } else {
2415 originator_string = xstrdup("unknown (remote did not supply name)");
2416 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002417 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002418 c = channel_connect_to(host, host_port,
2419 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002420 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002421 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002422 if (c == NULL) {
2423 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2424 packet_put_int(remote_id);
2425 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002426 } else
2427 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002428}
2429
Damien Millerb84886b2008-05-19 15:05:07 +10002430/* ARGSUSED */
2431void
2432channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2433{
2434 Channel *c;
2435 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002436 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002437
2438 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002439 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002440
Damien Miller16a73072008-12-08 09:55:25 +11002441 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002442 packet_check_eom();
2443
Damien Miller16a73072008-12-08 09:55:25 +11002444 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002445
Damien Miller16a73072008-12-08 09:55:25 +11002446 if ((c = channel_lookup(id)) == NULL) {
2447 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002448 return;
2449 }
2450 ;
2451 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2452 return;
2453 cc->cb(type, c, cc->ctx);
2454 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2455 bzero(cc, sizeof(*cc));
2456 xfree(cc);
2457}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002458
Ben Lindstrome9c99912001-06-09 00:41:05 +00002459/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002460
Ben Lindstrom908afed2001-10-03 17:34:59 +00002461void
2462channel_set_af(int af)
2463{
2464 IPv4or6 = af;
2465}
2466
Darren Tucker34e314d2010-01-08 17:03:46 +11002467void
2468channel_set_rdomain(int rdomain)
2469{
2470 channel_rdomain = rdomain;
2471}
2472
Damien Millerb16461c2002-01-22 23:29:22 +11002473static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002474channel_setup_fwd_listener(int type, const char *listen_addr,
2475 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002476 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002477{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002478 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002479 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002480 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002481 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002482 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002483 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002484
Damien Millerb16461c2002-01-22 23:29:22 +11002485 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2486 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002487 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002488
Damien Millerb16461c2002-01-22 23:29:22 +11002489 if (host == NULL) {
2490 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002491 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002492 }
Damien Miller9576ac42009-01-28 16:30:33 +11002493 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002494 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002495 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002496 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002497
Damien Miller5428f641999-11-25 11:54:57 +11002498 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002499 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002500 * specified address or wildcard. On the client, a specified bind
2501 * address will always override gateway_ports. On the server, a
2502 * gateway_ports of 1 (``yes'') will override the client's
2503 * specification and force a wildcard bind, whereas a value of 2
2504 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002505 * asked for.
2506 *
2507 * Special-case listen_addrs are:
2508 *
2509 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2510 * "" (empty string), "*" -> wildcard v4/v6
2511 * "localhost" -> loopback v4/v6
2512 */
2513 addr = NULL;
2514 if (listen_addr == NULL) {
2515 /* No address specified: default to gateway_ports setting */
2516 if (gateway_ports)
2517 wildcard = 1;
2518 } else if (gateway_ports || is_client) {
2519 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002520 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002521 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2522 (!is_client && gateway_ports == 1))
2523 wildcard = 1;
2524 else if (strcmp(listen_addr, "localhost") != 0)
2525 addr = listen_addr;
2526 }
2527
2528 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2529 type, wildcard, (addr == NULL) ? "NULL" : addr);
2530
2531 /*
Damien Miller34132e52000-01-14 15:45:46 +11002532 * getaddrinfo returns a loopback address if the hostname is
2533 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002534 */
Damien Miller34132e52000-01-14 15:45:46 +11002535 memset(&hints, 0, sizeof(hints));
2536 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002537 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002538 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002539 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002540 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2541 if (addr == NULL) {
2542 /* This really shouldn't happen */
2543 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002544 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002545 } else {
Damien Millera7270302005-07-06 09:36:05 +10002546 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002547 "getaddrinfo(%.64s): %s", addr,
2548 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002549 }
Damien Millera7270302005-07-06 09:36:05 +10002550 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002551 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002552 if (allocated_listen_port != NULL)
2553 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002554 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002555 switch (ai->ai_family) {
2556 case AF_INET:
2557 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2558 sin_port;
2559 break;
2560 case AF_INET6:
2561 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2562 sin6_port;
2563 break;
2564 default:
Damien Miller34132e52000-01-14 15:45:46 +11002565 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002566 }
2567 /*
2568 * If allocating a port for -R forwards, then use the
2569 * same port for all address families.
2570 */
2571 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2572 allocated_listen_port != NULL && *allocated_listen_port > 0)
2573 *lport_p = htons(*allocated_listen_port);
2574
Damien Miller34132e52000-01-14 15:45:46 +11002575 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2576 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002577 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002578 continue;
2579 }
2580 /* Create a port to listen for the host. */
Darren Tucker34e314d2010-01-08 17:03:46 +11002581 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
2582 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11002583 if (sock < 0) {
2584 /* this is no error since kernel may not support ipv6 */
2585 verbose("socket: %.100s", strerror(errno));
2586 continue;
2587 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002588
2589 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002590 if (ai->ai_family == AF_INET6)
2591 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002592
Damien Miller4bf648f2009-02-14 16:28:21 +11002593 debug("Local forwarding listening on %s port %s.",
2594 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002595
Damien Miller34132e52000-01-14 15:45:46 +11002596 /* Bind the socket to the address. */
2597 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2598 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002599 if (!ai->ai_next)
2600 error("bind: %.100s", strerror(errno));
2601 else
2602 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002603
Damien Miller34132e52000-01-14 15:45:46 +11002604 close(sock);
2605 continue;
2606 }
2607 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002608 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002609 error("listen: %.100s", strerror(errno));
2610 close(sock);
2611 continue;
2612 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002613
2614 /*
2615 * listen_port == 0 requests a dynamically allocated port -
2616 * record what we got.
2617 */
2618 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2619 allocated_listen_port != NULL &&
2620 *allocated_listen_port == 0) {
2621 *allocated_listen_port = get_sock_port(sock, 1);
2622 debug("Allocated listen port %d",
2623 *allocated_listen_port);
2624 }
2625
Damien Miller34132e52000-01-14 15:45:46 +11002626 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002627 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002628 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002629 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002630 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002631 c->host_port = port_to_connect;
2632 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002633 success = 1;
2634 }
2635 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002636 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002637 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002638 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002639 return success;
Damien Miller95def091999-11-25 00:26:21 +11002640}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002641
Darren Tuckere7066df2004-05-24 10:18:05 +10002642int
2643channel_cancel_rport_listener(const char *host, u_short port)
2644{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002645 u_int i;
2646 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002647
Darren Tucker47eede72005-03-14 23:08:12 +11002648 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002649 Channel *c = channels[i];
2650
2651 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002652 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002653 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002654 channel_free(c);
2655 found = 1;
2656 }
2657 }
2658
2659 return (found);
2660}
2661
Damien Millerb16461c2002-01-22 23:29:22 +11002662/* protocol local port fwd, used by ssh (and sshd in v1) */
2663int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002664channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002665 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2666{
2667 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002668 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002669 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002670}
2671
2672/* protocol v2 remote port fwd, used by sshd */
2673int
2674channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002675 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002676{
2677 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002678 listen_address, listen_port, allocated_listen_port,
2679 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002680}
2681
Damien Miller5428f641999-11-25 11:54:57 +11002682/*
2683 * Initiate forwarding of connections to port "port" on remote host through
2684 * the secure channel to host:port from local side.
2685 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002686
Darren Tuckere7d4b192006-07-12 22:17:10 +10002687int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002688channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002689 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002690{
Damien Millerdff50992002-01-22 23:16:32 +11002691 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002692
Damien Miller95def091999-11-25 00:26:21 +11002693 /* Record locally that connection to this host/port is permitted. */
2694 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2695 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002696
Damien Miller95def091999-11-25 00:26:21 +11002697 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002698 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002699 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002700 if (listen_host == NULL) {
2701 if (datafellows & SSH_BUG_RFWD_ADDR)
2702 address_to_bind = "127.0.0.1";
2703 else
2704 address_to_bind = "localhost";
2705 } else if (*listen_host == '\0' ||
2706 strcmp(listen_host, "*") == 0) {
2707 if (datafellows & SSH_BUG_RFWD_ADDR)
2708 address_to_bind = "0.0.0.0";
2709 else
2710 address_to_bind = "";
2711 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002712 address_to_bind = listen_host;
2713
Damien Miller33b13562000-04-04 14:38:59 +10002714 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2715 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002716 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002717 packet_put_cstring(address_to_bind);
2718 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002719 packet_send();
2720 packet_write_wait();
2721 /* Assume that server accepts the request */
2722 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002723 } else {
2724 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002725 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002726 packet_put_cstring(host_to_connect);
2727 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002728 packet_send();
2729 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002730
2731 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002732 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002733 switch (type) {
2734 case SSH_SMSG_SUCCESS:
2735 success = 1;
2736 break;
2737 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002738 break;
2739 default:
2740 /* Unknown packet */
2741 packet_disconnect("Protocol error for port forward request:"
2742 "received packet type %d.", type);
2743 }
2744 }
2745 if (success) {
2746 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2747 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2748 permitted_opens[num_permitted_opens].listen_port = listen_port;
2749 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002750 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002751 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752}
2753
Damien Miller5428f641999-11-25 11:54:57 +11002754/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002755 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002756 * local side.
2757 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002758void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002759channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002760{
2761 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002762
2763 if (!compat20)
2764 return;
2765
2766 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002767 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002768 permitted_opens[i].listen_port == port)
2769 break;
2770 }
2771 if (i >= num_permitted_opens) {
2772 debug("%s: requested forward not found", __func__);
2773 return;
2774 }
2775 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2776 packet_put_cstring("cancel-tcpip-forward");
2777 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002778 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002779 packet_put_int(port);
2780 packet_send();
2781
2782 permitted_opens[i].listen_port = 0;
2783 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002784 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002785 permitted_opens[i].host_to_connect = NULL;
2786}
2787
2788/*
Damien Miller5428f641999-11-25 11:54:57 +11002789 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2790 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002791 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002792 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002793int
Damien Millere247cc42000-05-07 12:03:14 +10002794channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002795{
Damien Milleraae6c611999-12-06 11:47:28 +11002796 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002797 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002798 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002799
Damien Miller95def091999-11-25 00:26:21 +11002800 /* Get arguments from the packet. */
2801 port = packet_get_int();
2802 hostname = packet_get_string(NULL);
2803 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002804
Damien Millerbac2d8a2000-09-05 16:13:06 +11002805#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002806 /*
2807 * Check that an unprivileged user is not trying to forward a
2808 * privileged port.
2809 */
Damien Miller95def091999-11-25 00:26:21 +11002810 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002811 packet_disconnect(
2812 "Requested forwarding of port %d but user is not root.",
2813 port);
2814 if (host_port == 0)
2815 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002816#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002817
Damien Miller0bc1bd82000-11-13 22:57:25 +11002818 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002819 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002820 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002821
2822 /* Free the argument string. */
2823 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002824
2825 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002826}
2827
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002828/*
2829 * Permits opening to any host/port if permitted_opens[] is empty. This is
2830 * usually called by the server, because the user could connect to any port
2831 * anyway, and the server has no way to know but to trust the client anyway.
2832 */
2833void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002834channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002835{
2836 if (num_permitted_opens == 0)
2837 all_opens_permitted = 1;
2838}
2839
Ben Lindstroma3700052001-04-05 23:26:32 +00002840void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002841channel_add_permitted_opens(char *host, int port)
2842{
2843 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002844 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002845 debug("allow port forwarding to host %s port %d", host, port);
2846
2847 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2848 permitted_opens[num_permitted_opens].port_to_connect = port;
2849 num_permitted_opens++;
2850
2851 all_opens_permitted = 0;
2852}
2853
Damien Millera765cf42006-07-24 14:08:13 +10002854int
Damien Miller9b439df2006-07-24 14:04:00 +10002855channel_add_adm_permitted_opens(char *host, int port)
2856{
2857 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2858 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002859 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002860
2861 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2862 = xstrdup(host);
2863 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002864 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002865}
2866
2867void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002868channel_clear_permitted_opens(void)
2869{
2870 int i;
2871
2872 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002873 if (permitted_opens[i].host_to_connect != NULL)
2874 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002875 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002876}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002877
Damien Miller9b439df2006-07-24 14:04:00 +10002878void
2879channel_clear_adm_permitted_opens(void)
2880{
2881 int i;
2882
2883 for (i = 0; i < num_adm_permitted_opens; i++)
2884 if (permitted_adm_opens[i].host_to_connect != NULL)
2885 xfree(permitted_adm_opens[i].host_to_connect);
2886 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002887}
2888
Darren Tuckere7140f22008-06-10 23:01:51 +10002889void
2890channel_print_adm_permitted_opens(void)
2891{
Damien Miller6ef17492008-07-16 22:42:06 +10002892 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10002893
Damien Millerb53d8a12009-01-28 16:13:04 +11002894 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11002895 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11002896 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11002897 return;
2898 }
Darren Tuckere7140f22008-06-10 23:01:51 +10002899 for (i = 0; i < num_adm_permitted_opens; i++)
2900 if (permitted_adm_opens[i].host_to_connect != NULL)
2901 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2902 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11002903 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10002904}
2905
Damien Millerbd740252008-05-19 15:37:09 +10002906/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002907static int
Damien Millerbd740252008-05-19 15:37:09 +10002908connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002909{
Damien Millerbd740252008-05-19 15:37:09 +10002910 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002911 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002912
Damien Millerbd740252008-05-19 15:37:09 +10002913 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2914 if (cctx->ai->ai_family != AF_INET &&
2915 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002916 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002917 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2918 ntop, sizeof(ntop), strport, sizeof(strport),
2919 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2920 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002921 continue;
2922 }
Darren Tucker34e314d2010-01-08 17:03:46 +11002923 if ((sock = socket_rdomain(cctx->ai->ai_family,
2924 cctx->ai->ai_socktype, cctx->ai->ai_protocol,
2925 channel_rdomain)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10002926 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002927 error("socket: %.100s", strerror(errno));
2928 else
2929 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002930 continue;
2931 }
Damien Miller232711f2004-06-15 10:35:30 +10002932 if (set_nonblock(sock) == -1)
2933 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002934 if (connect(sock, cctx->ai->ai_addr,
2935 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2936 debug("connect_next: host %.100s ([%.100s]:%s): "
2937 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002938 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002939 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002940 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002941 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002942 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002943 }
Damien Millerbd740252008-05-19 15:37:09 +10002944 debug("connect_next: host %.100s ([%.100s]:%s) "
2945 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2946 cctx->ai = cctx->ai->ai_next;
2947 set_nodelay(sock);
2948 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002949 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002950 return -1;
2951}
Damien Millerb38eff82000-04-01 11:09:21 +10002952
Damien Millerbd740252008-05-19 15:37:09 +10002953static void
2954channel_connect_ctx_free(struct channel_connect *cctx)
2955{
2956 xfree(cctx->host);
2957 if (cctx->aitop)
2958 freeaddrinfo(cctx->aitop);
2959 bzero(cctx, sizeof(*cctx));
2960 cctx->host = NULL;
2961 cctx->ai = cctx->aitop = NULL;
2962}
2963
2964/* Return CONNECTING channel to remote host, port */
2965static Channel *
2966connect_to(const char *host, u_short port, char *ctype, char *rname)
2967{
2968 struct addrinfo hints;
2969 int gaierr;
2970 int sock = -1;
2971 char strport[NI_MAXSERV];
2972 struct channel_connect cctx;
2973 Channel *c;
2974
Damien Miller2bcb8662008-07-12 17:12:29 +10002975 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10002976 memset(&hints, 0, sizeof(hints));
2977 hints.ai_family = IPv4or6;
2978 hints.ai_socktype = SOCK_STREAM;
2979 snprintf(strport, sizeof strport, "%d", port);
2980 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2981 error("connect_to %.100s: unknown host (%s)", host,
2982 ssh_gai_strerror(gaierr));
2983 return NULL;
2984 }
2985
2986 cctx.host = xstrdup(host);
2987 cctx.port = port;
2988 cctx.ai = cctx.aitop;
2989
2990 if ((sock = connect_next(&cctx)) == -1) {
2991 error("connect to %.100s port %d failed: %s",
2992 host, port, strerror(errno));
2993 channel_connect_ctx_free(&cctx);
2994 return NULL;
2995 }
2996 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
2997 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
2998 c->connect_ctx = cctx;
2999 return c;
3000}
3001
3002Channel *
3003channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3004{
3005 int i;
3006
3007 for (i = 0; i < num_permitted_opens; i++) {
3008 if (permitted_opens[i].host_to_connect != NULL &&
3009 permitted_opens[i].listen_port == listen_port) {
3010 return connect_to(
3011 permitted_opens[i].host_to_connect,
3012 permitted_opens[i].port_to_connect, ctype, rname);
3013 }
3014 }
3015 error("WARNING: Server requests forwarding for unknown listen_port %d",
3016 listen_port);
3017 return NULL;
3018}
3019
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003020/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003021Channel *
3022channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003023{
Damien Miller9b439df2006-07-24 14:04:00 +10003024 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003025
3026 permit = all_opens_permitted;
3027 if (!permit) {
3028 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003029 if (permitted_opens[i].host_to_connect != NULL &&
3030 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003031 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3032 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003033 }
Damien Miller9b439df2006-07-24 14:04:00 +10003034
3035 if (num_adm_permitted_opens > 0) {
3036 permit_adm = 0;
3037 for (i = 0; i < num_adm_permitted_opens; i++)
3038 if (permitted_adm_opens[i].host_to_connect != NULL &&
3039 permitted_adm_opens[i].port_to_connect == port &&
3040 strcmp(permitted_adm_opens[i].host_to_connect, host)
3041 == 0)
3042 permit_adm = 1;
3043 }
3044
3045 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003046 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003047 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003048 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003049 }
Damien Millerbd740252008-05-19 15:37:09 +10003050 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003051}
3052
Damien Miller0e220db2004-06-15 10:34:08 +10003053void
3054channel_send_window_changes(void)
3055{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003056 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003057 struct winsize ws;
3058
3059 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003060 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003061 channels[i]->type != SSH_CHANNEL_OPEN)
3062 continue;
3063 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3064 continue;
3065 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003066 packet_put_int((u_int)ws.ws_col);
3067 packet_put_int((u_int)ws.ws_row);
3068 packet_put_int((u_int)ws.ws_xpixel);
3069 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003070 packet_send();
3071 }
3072}
3073
Ben Lindstrome9c99912001-06-09 00:41:05 +00003074/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003075
Damien Miller5428f641999-11-25 11:54:57 +11003076/*
3077 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003078 * Returns 0 and a suitable display number for the DISPLAY variable
3079 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003080 */
Kevin Steves366298c2001-12-19 17:58:01 +00003081int
Damien Miller95c249f2002-02-05 12:11:34 +11003082x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003083 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003084{
Damien Millere7378562001-12-21 14:58:35 +11003085 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003086 int display_number, sock;
3087 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003088 struct addrinfo hints, *ai, *aitop;
3089 char strport[NI_MAXSERV];
3090 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003091
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003092 if (chanids == NULL)
3093 return -1;
3094
Damien Millera34a28b1999-12-14 10:47:15 +11003095 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003096 display_number < MAX_DISPLAYS;
3097 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003098 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003099 memset(&hints, 0, sizeof(hints));
3100 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003101 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003102 hints.ai_socktype = SOCK_STREAM;
3103 snprintf(strport, sizeof strport, "%d", port);
3104 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003105 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003106 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003107 }
Damien Miller34132e52000-01-14 15:45:46 +11003108 for (ai = aitop; ai; ai = ai->ai_next) {
3109 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3110 continue;
Darren Tucker34e314d2010-01-08 17:03:46 +11003111 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3112 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003113 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003114 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003115 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003116 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003117 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003118 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003119 debug("x11_create_display_inet: Socket family %d not supported",
3120 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003121 continue;
3122 }
Damien Miller34132e52000-01-14 15:45:46 +11003123 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003124 if (ai->ai_family == AF_INET6)
3125 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003126 if (x11_use_localhost)
3127 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003128 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003129 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003130 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003131
Damien Miller34132e52000-01-14 15:45:46 +11003132 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003133 close(socks[n]);
3134 }
3135 num_socks = 0;
3136 break;
3137 }
3138 socks[num_socks++] = sock;
3139 if (num_socks == NUM_SOCKS)
3140 break;
Damien Miller95def091999-11-25 00:26:21 +11003141 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003142 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003143 if (num_socks > 0)
3144 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003145 }
Damien Miller95def091999-11-25 00:26:21 +11003146 if (display_number >= MAX_DISPLAYS) {
3147 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003148 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149 }
Damien Miller95def091999-11-25 00:26:21 +11003150 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003151 for (n = 0; n < num_socks; n++) {
3152 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003153 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003154 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003155 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003156 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003157 }
Damien Miller95def091999-11-25 00:26:21 +11003158 }
Damien Miller34132e52000-01-14 15:45:46 +11003159
Damien Miller34132e52000-01-14 15:45:46 +11003160 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003161 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003162 for (n = 0; n < num_socks; n++) {
3163 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003164 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003165 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3166 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003167 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003168 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003169 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003170 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003171 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003172
Kevin Steves366298c2001-12-19 17:58:01 +00003173 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003174 *display_numberp = display_number;
3175 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003176}
3177
Ben Lindstrombba81212001-06-25 05:01:22 +00003178static int
Damien Miller819dbb62009-01-21 16:46:26 +11003179connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003180{
Damien Miller95def091999-11-25 00:26:21 +11003181 int sock;
3182 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003183
Damien Miller3afe3752001-12-21 12:39:51 +11003184 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3185 if (sock < 0)
3186 error("socket: %.100s", strerror(errno));
3187 memset(&addr, 0, sizeof(addr));
3188 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003189 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003190 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003191 return sock;
3192 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003193 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3194 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003195}
3196
Damien Miller819dbb62009-01-21 16:46:26 +11003197static int
3198connect_local_xsocket(u_int dnr)
3199{
3200 char buf[1024];
3201 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3202 return connect_local_xsocket_path(buf);
3203}
3204
Damien Millerbd483e72000-04-30 10:00:53 +10003205int
3206x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003207{
Damien Miller57c4e872006-03-31 23:11:07 +11003208 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003209 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003210 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003211 struct addrinfo hints, *ai, *aitop;
3212 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003213 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003214
Damien Miller95def091999-11-25 00:26:21 +11003215 /* Try to open a socket for the local X server. */
3216 display = getenv("DISPLAY");
3217 if (!display) {
3218 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003219 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003220 }
Damien Miller5428f641999-11-25 11:54:57 +11003221 /*
3222 * Now we decode the value of the DISPLAY variable and make a
3223 * connection to the real X server.
3224 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003225
Damien Miller819dbb62009-01-21 16:46:26 +11003226 /* Check if the display is from launchd. */
3227#ifdef __APPLE__
3228 if (strncmp(display, "/tmp/launch", 11) == 0) {
3229 sock = connect_local_xsocket_path(display);
3230 if (sock < 0)
3231 return -1;
3232
3233 /* OK, we now have a connection to the display. */
3234 return sock;
3235 }
3236#endif
Damien Miller5428f641999-11-25 11:54:57 +11003237 /*
3238 * Check if it is a unix domain socket. Unix domain displays are in
3239 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3240 */
Damien Miller95def091999-11-25 00:26:21 +11003241 if (strncmp(display, "unix:", 5) == 0 ||
3242 display[0] == ':') {
3243 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003244 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003245 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003246 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003247 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003248 }
3249 /* Create a socket. */
3250 sock = connect_local_xsocket(display_number);
3251 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003252 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003253
3254 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003255 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003256 }
Damien Miller5428f641999-11-25 11:54:57 +11003257 /*
3258 * Connect to an inet socket. The DISPLAY value is supposedly
3259 * hostname:d[.s], where hostname may also be numeric IP address.
3260 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003261 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003262 cp = strchr(buf, ':');
3263 if (!cp) {
3264 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003265 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003266 }
Damien Miller95def091999-11-25 00:26:21 +11003267 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003268 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003269 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003270 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003271 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003272 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003273 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003274
Damien Miller34132e52000-01-14 15:45:46 +11003275 /* Look up the host address */
3276 memset(&hints, 0, sizeof(hints));
3277 hints.ai_family = IPv4or6;
3278 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003279 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003280 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003281 error("%.100s: unknown host. (%s)", buf,
3282 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003283 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003284 }
Damien Miller34132e52000-01-14 15:45:46 +11003285 for (ai = aitop; ai; ai = ai->ai_next) {
3286 /* Create a socket. */
Darren Tucker34e314d2010-01-08 17:03:46 +11003287 sock = socket_rdomain(ai->ai_family, ai->ai_socktype,
3288 ai->ai_protocol, channel_rdomain);
Damien Miller34132e52000-01-14 15:45:46 +11003289 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003290 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003291 continue;
3292 }
3293 /* Connect it to the display. */
3294 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003295 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003296 6000 + display_number, strerror(errno));
3297 close(sock);
3298 continue;
3299 }
3300 /* Success */
3301 break;
Damien Miller34132e52000-01-14 15:45:46 +11003302 }
Damien Miller34132e52000-01-14 15:45:46 +11003303 freeaddrinfo(aitop);
3304 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003305 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003306 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003307 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003308 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003309 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003310 return sock;
3311}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003312
Damien Millerbd483e72000-04-30 10:00:53 +10003313/*
3314 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3315 * the remote channel number. We should do whatever we want, and respond
3316 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3317 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003318
Damien Miller8473dd82006-07-24 14:08:32 +10003319/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003320void
Damien Miller630d6f42002-01-22 23:17:30 +11003321x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003322{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003323 Channel *c = NULL;
3324 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003325 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003326
3327 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003328
3329 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003330
3331 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003332 remote_host = packet_get_string(NULL);
3333 } else {
3334 remote_host = xstrdup("unknown (remote did not supply name)");
3335 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003336 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003337
3338 /* Obtain a connection to the real X display. */
3339 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003340 if (sock != -1) {
3341 /* Allocate a channel for this connection. */
3342 c = channel_new("connected x11 socket",
3343 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3344 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003345 c->remote_id = remote_id;
3346 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003347 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003348 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003349 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003350 /* Send refusal to the remote host. */
3351 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003352 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003353 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003354 /* Send a confirmation to the remote host. */
3355 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003356 packet_put_int(remote_id);
3357 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003358 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003359 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003360}
3361
Damien Miller69b69aa2000-10-28 14:19:58 +11003362/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003363/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003364void
Damien Miller630d6f42002-01-22 23:17:30 +11003365deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003366{
3367 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003368
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003369 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003370 case SSH_SMSG_AGENT_OPEN:
3371 error("Warning: ssh server tried agent forwarding.");
3372 break;
3373 case SSH_SMSG_X11_OPEN:
3374 error("Warning: ssh server tried X11 forwarding.");
3375 break;
3376 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003377 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003378 break;
3379 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003380 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003381 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3382 packet_put_int(rchan);
3383 packet_send();
3384}
3385
Damien Miller5428f641999-11-25 11:54:57 +11003386/*
3387 * Requests forwarding of X11 connections, generates fake authentication
3388 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003389 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003390 */
Damien Miller4af51302000-04-16 11:18:38 +10003391void
Damien Miller17e7ed02005-06-17 12:54:33 +10003392x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003393 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003394{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003395 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003396 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003397 char *new_data;
3398 int screen_number;
3399 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003400 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003401
Damien Millerf92c0792005-07-06 09:45:26 +10003402 if (x11_saved_display == NULL)
3403 x11_saved_display = xstrdup(disp);
3404 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003405 error("x11_request_forwarding_with_spoofing: different "
3406 "$DISPLAY already forwarded");
3407 return;
3408 }
3409
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003410 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003411 if (cp)
3412 cp = strchr(cp, '.');
3413 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003414 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003415 else
3416 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003417
Damien Miller13390022005-07-06 09:44:19 +10003418 if (x11_saved_proto == NULL) {
3419 /* Save protocol name. */
3420 x11_saved_proto = xstrdup(proto);
3421 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003422 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003423 * of the same length.
3424 */
3425 x11_saved_data = xmalloc(data_len);
3426 x11_fake_data = xmalloc(data_len);
3427 for (i = 0; i < data_len; i++) {
3428 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3429 fatal("x11_request_forwarding: bad "
3430 "authentication data: %.100s", data);
3431 if (i % 4 == 0)
3432 rnd = arc4random();
3433 x11_saved_data[i] = value;
3434 x11_fake_data[i] = rnd & 0xff;
3435 rnd >>= 8;
3436 }
3437 x11_saved_data_len = data_len;
3438 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003439 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003440
Damien Miller95def091999-11-25 00:26:21 +11003441 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003442 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003443
Damien Miller95def091999-11-25 00:26:21 +11003444 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003445 if (compat20) {
3446 channel_request_start(client_session_id, "x11-req", 0);
3447 packet_put_char(0); /* XXX bool single connection */
3448 } else {
3449 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3450 }
3451 packet_put_cstring(proto);
3452 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003453 packet_put_int(screen_number);
3454 packet_send();
3455 packet_write_wait();
3456 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003457}
3458
Ben Lindstrome9c99912001-06-09 00:41:05 +00003459
3460/* -- agent forwarding */
3461
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003462/* Sends a message to the server to request authentication fd forwarding. */
3463
Damien Miller4af51302000-04-16 11:18:38 +10003464void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003465auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003466{
Damien Miller95def091999-11-25 00:26:21 +11003467 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3468 packet_send();
3469 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003470}