blob: 7f0aaadf680dc80a4abfc09e542e2485df9f854c [file] [log] [blame]
Darren Tuckered3cdc02008-06-16 23:29:18 +10001/* $OpenBSD: channels.c,v 1.282 2008/06/16 13:22:53 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
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
Ben Lindstrome9c99912001-06-09 00:41:05 +0000165/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000167
Damien Millerbd740252008-05-19 15:37:09 +1000168/* non-blocking connect helpers */
169static int connect_next(struct channel_connect *);
170static void channel_connect_ctx_free(struct channel_connect *);
171
Ben Lindstrome9c99912001-06-09 00:41:05 +0000172/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000173
174Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100175channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000176{
177 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000178
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000179 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100180 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000181 return NULL;
182 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000183 c = channels[id];
184 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100185 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000186 return NULL;
187 }
188 return c;
189}
190
Damien Miller5428f641999-11-25 11:54:57 +1100191/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100192 * Returns the channel if it is allowed to receive protocol messages.
193 * Private channels, like listening sockets, may not receive messages.
194 */
195Channel *
196channel_lookup(int id)
197{
198 Channel *c;
199
200 if ((c = channel_by_id(id)) == NULL)
201 return (NULL);
202
Damien Millerd62f2ca2006-03-26 13:57:41 +1100203 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100204 case SSH_CHANNEL_X11_OPEN:
205 case SSH_CHANNEL_LARVAL:
206 case SSH_CHANNEL_CONNECTING:
207 case SSH_CHANNEL_DYNAMIC:
208 case SSH_CHANNEL_OPENING:
209 case SSH_CHANNEL_OPEN:
210 case SSH_CHANNEL_INPUT_DRAINING:
211 case SSH_CHANNEL_OUTPUT_DRAINING:
212 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100213 }
214 logit("Non-public channel %d, type %d.", id, c->type);
215 return (NULL);
216}
217
218/*
Damien Millere247cc42000-05-07 12:03:14 +1000219 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000220 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100221 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000222static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100223channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000224 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225{
Damien Miller95def091999-11-25 00:26:21 +1100226 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100227 channel_max_fd = MAX(channel_max_fd, rfd);
228 channel_max_fd = MAX(channel_max_fd, wfd);
229 channel_max_fd = MAX(channel_max_fd, efd);
230
Damien Miller5428f641999-11-25 11:54:57 +1100231 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000232
Damien Miller6f83b8e2000-05-02 09:23:45 +1000233 c->rfd = rfd;
234 c->wfd = wfd;
235 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000236 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000237 c->efd = efd;
238 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100239
Darren Tuckered3cdc02008-06-16 23:29:18 +1000240 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000241 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000242 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100243
Damien Miller69b69aa2000-10-28 14:19:58 +1100244 /* enable nonblocking mode */
245 if (nonblock) {
246 if (rfd != -1)
247 set_nonblock(rfd);
248 if (wfd != -1)
249 set_nonblock(wfd);
250 if (efd != -1)
251 set_nonblock(efd);
252 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253}
254
255/*
256 * Allocate a new channel object and set its type and socket. This will cause
257 * remote_name to be freed.
258 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000259Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000260channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000261 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000263 int found;
264 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Do initial allocation if this is the first call. */
268 if (channels_alloc == 0) {
269 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100270 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100271 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000272 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100273 }
274 /* Try to find a free slot where to put the new channel. */
275 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000276 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000278 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100279 break;
280 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000281 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100282 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100283 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000284 if (channels_alloc > 10000)
285 fatal("channel_new: internal error: channels_alloc %d "
286 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100287 channels = xrealloc(channels, channels_alloc + 10,
288 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000289 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100290 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100291 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000292 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100293 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100295 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100296 buffer_init(&c->input);
297 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100299 c->ostate = CHAN_OUTPUT_OPEN;
300 c->istate = CHAN_INPUT_OPEN;
301 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000302 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100303 c->self = found;
304 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000305 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000306 c->local_window = window;
307 c->local_window_max = window;
308 c->local_consumed = 0;
309 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100310 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000311 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000312 c->remote_window = 0;
313 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000314 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100315 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000316 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100317 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000318 c->open_confirm = NULL;
319 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000320 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100321 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000322 c->filter_ctx = NULL;
323 c->filter_cleanup = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000324 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100325 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000326 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000328
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000329static int
330channel_find_maxfd(void)
331{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000332 u_int i;
333 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000334 Channel *c;
335
336 for (i = 0; i < channels_alloc; i++) {
337 c = channels[i];
338 if (c != NULL) {
339 max = MAX(max, c->rfd);
340 max = MAX(max, c->wfd);
341 max = MAX(max, c->efd);
342 }
343 }
344 return max;
345}
346
347int
348channel_close_fd(int *fdp)
349{
350 int ret = 0, fd = *fdp;
351
352 if (fd != -1) {
353 ret = close(fd);
354 *fdp = -1;
355 if (fd == channel_max_fd)
356 channel_max_fd = channel_find_maxfd();
357 }
358 return ret;
359}
360
Damien Miller6f83b8e2000-05-02 09:23:45 +1000361/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000362static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000363channel_close_fds(Channel *c)
364{
Damien Miller0e220db2004-06-15 10:34:08 +1000365 debug3("channel %d: close_fds r %d w %d e %d c %d",
366 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000367
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000368 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000369 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000370 channel_close_fd(&c->rfd);
371 channel_close_fd(&c->wfd);
372 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000373}
374
375/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000376void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000377channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000378{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000379 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000380 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000381 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000382
383 for (n = 0, i = 0; i < channels_alloc; i++)
384 if (channels[i])
385 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000386 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000387 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000388
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000390 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000391 xfree(s);
392
Damien Miller6f83b8e2000-05-02 09:23:45 +1000393 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000394 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000395 if (c->ctl_fd != -1)
396 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000397 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000398 buffer_free(&c->input);
399 buffer_free(&c->output);
400 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000401 if (c->remote_name) {
402 xfree(c->remote_name);
403 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100404 }
Damien Millerb84886b2008-05-19 15:05:07 +1000405 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
406 if (cc->abandon_cb != NULL)
407 cc->abandon_cb(c, cc->ctx);
408 TAILQ_REMOVE(&c->status_confirms, cc, entry);
409 bzero(cc, sizeof(*cc));
410 xfree(cc);
411 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000412 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
413 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000414 channels[c->self] = NULL;
415 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416}
417
Ben Lindstrome9c99912001-06-09 00:41:05 +0000418void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000419channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000420{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000421 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000422
Ben Lindstrom601e4362001-06-21 03:19:23 +0000423 for (i = 0; i < channels_alloc; i++)
424 if (channels[i] != NULL)
425 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000426}
427
428/*
429 * Closes the sockets/fds of all channels. This is used to close extra file
430 * descriptors after a fork.
431 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000433channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000435 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000436
437 for (i = 0; i < channels_alloc; i++)
438 if (channels[i] != NULL)
439 channel_close_fds(channels[i]);
440}
441
442/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000443 * Stop listening to channels.
444 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000445void
446channel_stop_listening(void)
447{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000448 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000449 Channel *c;
450
451 for (i = 0; i < channels_alloc; i++) {
452 c = channels[i];
453 if (c != NULL) {
454 switch (c->type) {
455 case SSH_CHANNEL_AUTH_SOCKET:
456 case SSH_CHANNEL_PORT_LISTENER:
457 case SSH_CHANNEL_RPORT_LISTENER:
458 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000459 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460 channel_free(c);
461 break;
462 }
463 }
464 }
465}
466
467/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000468 * Returns true if no channel has too much buffered data, and false if one or
469 * more channel is overfull.
470 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000471int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000472channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000473{
474 u_int i;
475 Channel *c;
476
477 for (i = 0; i < channels_alloc; i++) {
478 c = channels[i];
479 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000480#if 0
481 if (!compat20 &&
482 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100483 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000484 c->self, buffer_len(&c->input));
485 return 0;
486 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000487#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000489 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000490 c->self, buffer_len(&c->output),
491 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000492 return 0;
493 }
494 }
495 }
496 return 1;
497}
498
499/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000501channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000502{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000503 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000504 Channel *c;
505
506 for (i = 0; i < channels_alloc; i++) {
507 c = channels[i];
508 if (c == NULL)
509 continue;
510 switch (c->type) {
511 case SSH_CHANNEL_X11_LISTENER:
512 case SSH_CHANNEL_PORT_LISTENER:
513 case SSH_CHANNEL_RPORT_LISTENER:
514 case SSH_CHANNEL_CLOSED:
515 case SSH_CHANNEL_AUTH_SOCKET:
516 case SSH_CHANNEL_DYNAMIC:
517 case SSH_CHANNEL_CONNECTING:
518 case SSH_CHANNEL_ZOMBIE:
519 continue;
520 case SSH_CHANNEL_LARVAL:
521 if (!compat20)
522 fatal("cannot happen: SSH_CHANNEL_LARVAL");
523 continue;
524 case SSH_CHANNEL_OPENING:
525 case SSH_CHANNEL_OPEN:
526 case SSH_CHANNEL_X11_OPEN:
527 return 1;
528 case SSH_CHANNEL_INPUT_DRAINING:
529 case SSH_CHANNEL_OUTPUT_DRAINING:
530 if (!compat13)
531 fatal("cannot happen: OUT_DRAIN");
532 return 1;
533 default:
534 fatal("channel_still_open: bad channel type %d", c->type);
535 /* NOTREACHED */
536 }
537 }
538 return 0;
539}
540
541/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000542int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000543channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000544{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000545 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000546 Channel *c;
547
548 for (i = 0; i < channels_alloc; i++) {
549 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000550 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000551 continue;
552 switch (c->type) {
553 case SSH_CHANNEL_CLOSED:
554 case SSH_CHANNEL_DYNAMIC:
555 case SSH_CHANNEL_X11_LISTENER:
556 case SSH_CHANNEL_PORT_LISTENER:
557 case SSH_CHANNEL_RPORT_LISTENER:
558 case SSH_CHANNEL_OPENING:
559 case SSH_CHANNEL_CONNECTING:
560 case SSH_CHANNEL_ZOMBIE:
561 continue;
562 case SSH_CHANNEL_LARVAL:
563 case SSH_CHANNEL_AUTH_SOCKET:
564 case SSH_CHANNEL_OPEN:
565 case SSH_CHANNEL_X11_OPEN:
566 return i;
567 case SSH_CHANNEL_INPUT_DRAINING:
568 case SSH_CHANNEL_OUTPUT_DRAINING:
569 if (!compat13)
570 fatal("cannot happen: OUT_DRAIN");
571 return i;
572 default:
573 fatal("channel_find_open: bad channel type %d", c->type);
574 /* NOTREACHED */
575 }
576 }
577 return -1;
578}
579
580
581/*
582 * Returns a message describing the currently open forwarded connections,
583 * suitable for sending to the client. The message contains crlf pairs for
584 * newlines.
585 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000586char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000587channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000588{
589 Buffer buffer;
590 Channel *c;
591 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000592 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000593
594 buffer_init(&buffer);
595 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
596 buffer_append(&buffer, buf, strlen(buf));
597 for (i = 0; i < channels_alloc; i++) {
598 c = channels[i];
599 if (c == NULL)
600 continue;
601 switch (c->type) {
602 case SSH_CHANNEL_X11_LISTENER:
603 case SSH_CHANNEL_PORT_LISTENER:
604 case SSH_CHANNEL_RPORT_LISTENER:
605 case SSH_CHANNEL_CLOSED:
606 case SSH_CHANNEL_AUTH_SOCKET:
607 case SSH_CHANNEL_ZOMBIE:
608 continue;
609 case SSH_CHANNEL_LARVAL:
610 case SSH_CHANNEL_OPENING:
611 case SSH_CHANNEL_CONNECTING:
612 case SSH_CHANNEL_DYNAMIC:
613 case SSH_CHANNEL_OPEN:
614 case SSH_CHANNEL_X11_OPEN:
615 case SSH_CHANNEL_INPUT_DRAINING:
616 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000617 snprintf(buf, sizeof buf,
618 " #%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 +0000619 c->self, c->remote_name,
620 c->type, c->remote_id,
621 c->istate, buffer_len(&c->input),
622 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000623 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000624 buffer_append(&buffer, buf, strlen(buf));
625 continue;
626 default:
627 fatal("channel_open_message: bad channel type %d", c->type);
628 /* NOTREACHED */
629 }
630 }
631 buffer_append(&buffer, "\0", 1);
632 cp = xstrdup(buffer_ptr(&buffer));
633 buffer_free(&buffer);
634 return cp;
635}
636
637void
638channel_send_open(int id)
639{
640 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000641
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000643 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644 return;
645 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000646 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 packet_start(SSH2_MSG_CHANNEL_OPEN);
648 packet_put_cstring(c->ctype);
649 packet_put_int(c->self);
650 packet_put_int(c->local_window);
651 packet_put_int(c->local_maxpacket);
652 packet_send();
653}
654
655void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000656channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000658 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000659
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000661 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 return;
663 }
Damien Miller0e220db2004-06-15 10:34:08 +1000664 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 packet_start(SSH2_MSG_CHANNEL_REQUEST);
666 packet_put_int(c->remote_id);
667 packet_put_cstring(service);
668 packet_put_char(wantconfirm);
669}
Damien Miller4f7becb2006-03-26 14:10:14 +1100670
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671void
Damien Millerb84886b2008-05-19 15:05:07 +1000672channel_register_status_confirm(int id, channel_confirm_cb *cb,
673 channel_confirm_abandon_cb *abandon_cb, void *ctx)
674{
675 struct channel_confirm *cc;
676 Channel *c;
677
678 if ((c = channel_lookup(id)) == NULL)
679 fatal("channel_register_expect: %d: bad id", id);
680
681 cc = xmalloc(sizeof(*cc));
682 cc->cb = cb;
683 cc->abandon_cb = abandon_cb;
684 cc->ctx = ctx;
685 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
686}
687
688void
689channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690{
691 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000692
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 if (c == NULL) {
Damien Millerb84886b2008-05-19 15:05:07 +1000694 logit("channel_register_open_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000695 return;
696 }
Damien Millerb84886b2008-05-19 15:05:07 +1000697 c->open_confirm = fn;
698 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699}
Damien Miller4f7becb2006-03-26 14:10:14 +1100700
Ben Lindstrome9c99912001-06-09 00:41:05 +0000701void
Damien Miller39eda6e2005-11-05 14:52:50 +1100702channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703{
Damien Millerd47c62a2005-12-13 19:33:57 +1100704 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000705
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000707 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 return;
709 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000710 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100711 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712}
Damien Miller4f7becb2006-03-26 14:10:14 +1100713
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714void
715channel_cancel_cleanup(int id)
716{
Damien Millerd47c62a2005-12-13 19:33:57 +1100717 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000720 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 return;
722 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000723 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100724 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000725}
Damien Miller4f7becb2006-03-26 14:10:14 +1100726
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727void
Damien Miller077b2382005-12-31 16:22:32 +1100728channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000729 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730{
731 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000732
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000734 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735 return;
736 }
Damien Miller077b2382005-12-31 16:22:32 +1100737 c->input_filter = ifn;
738 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000739 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000740 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000741}
742
743void
744channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000745 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746{
747 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000748
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
750 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000751 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100753 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
755 packet_put_int(c->remote_id);
756 packet_put_int(c->local_window);
757 packet_send();
758}
759
Damien Miller5428f641999-11-25 11:54:57 +1100760/*
Damien Millerb38eff82000-04-01 11:09:21 +1000761 * 'channel_pre*' are called just before select() to add any bits relevant to
762 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100763 */
Damien Millerb38eff82000-04-01 11:09:21 +1000764/*
765 * 'channel_post*': perform any appropriate operations for channels which
766 * have events pending.
767 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100768typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000769chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
770chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
771
Damien Miller8473dd82006-07-24 14:08:32 +1000772/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000773static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100774channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000775{
776 FD_SET(c->sock, readset);
777}
778
Damien Miller8473dd82006-07-24 14:08:32 +1000779/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000780static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100781channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000782{
783 debug3("channel %d: waiting for connection", c->self);
784 FD_SET(c->sock, writeset);
785}
786
Ben Lindstrombba81212001-06-25 05:01:22 +0000787static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100788channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000789{
790 if (buffer_len(&c->input) < packet_get_maxsize())
791 FD_SET(c->sock, readset);
792 if (buffer_len(&c->output) > 0)
793 FD_SET(c->sock, writeset);
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100797channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000798{
Damien Millerde6987c2002-01-22 23:20:40 +1100799 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000800
Damien Miller33b13562000-04-04 14:38:59 +1000801 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100802 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000803 buffer_len(&c->input) < limit &&
804 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000805 FD_SET(c->rfd, readset);
806 if (c->ostate == CHAN_OUTPUT_OPEN ||
807 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
808 if (buffer_len(&c->output) > 0) {
809 FD_SET(c->wfd, writeset);
810 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000811 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000812 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
813 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000814 else
815 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000816 }
817 }
818 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000819 if (compat20 && c->efd != -1 &&
820 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000821 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
822 buffer_len(&c->extended) > 0)
823 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000824 else if (!(c->flags & CHAN_EOF_SENT) &&
825 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000826 buffer_len(&c->extended) < c->remote_window)
827 FD_SET(c->efd, readset);
828 }
Damien Miller0e220db2004-06-15 10:34:08 +1000829 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000830 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000831 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
832 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000833}
834
Damien Miller8473dd82006-07-24 14:08:32 +1000835/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100837channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
839 if (buffer_len(&c->input) == 0) {
840 packet_start(SSH_MSG_CHANNEL_CLOSE);
841 packet_put_int(c->remote_id);
842 packet_send();
843 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000844 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000845 }
846}
847
Damien Miller8473dd82006-07-24 14:08:32 +1000848/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100850channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000851{
852 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000853 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000854 else
Damien Millerb38eff82000-04-01 11:09:21 +1000855 FD_SET(c->sock, writeset);
856}
857
858/*
859 * This is a special state for X11 authentication spoofing. An opened X11
860 * connection (when authentication spoofing is being done) remains in this
861 * state until the first packet has been completely read. The authentication
862 * data in that packet is then substituted by the real data if it matches the
863 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000864 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000865 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000866 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000867static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000868x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000869{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000870 u_char *ucp;
871 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000872
873 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000874 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000875 return 0;
876
877 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100878 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000879 if (ucp[0] == 0x42) { /* Byte order MSB first. */
880 proto_len = 256 * ucp[6] + ucp[7];
881 data_len = 256 * ucp[8] + ucp[9];
882 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
883 proto_len = ucp[6] + 256 * ucp[7];
884 data_len = ucp[8] + 256 * ucp[9];
885 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000886 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100887 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000888 return -1;
889 }
890
891 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000892 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000893 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
894 return 0;
895
896 /* Check if authentication protocol matches. */
897 if (proto_len != strlen(x11_saved_proto) ||
898 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000899 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000900 return -1;
901 }
902 /* Check if authentication data matches our fake data. */
903 if (data_len != x11_fake_data_len ||
904 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
905 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000906 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000907 return -1;
908 }
909 /* Check fake data length */
910 if (x11_fake_data_len != x11_saved_data_len) {
911 error("X11 fake_data_len %d != saved_data_len %d",
912 x11_fake_data_len, x11_saved_data_len);
913 return -1;
914 }
915 /*
916 * Received authentication protocol and data match
917 * our fake data. Substitute the fake data with real
918 * data.
919 */
920 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
921 x11_saved_data, x11_saved_data_len);
922 return 1;
923}
924
Ben Lindstrombba81212001-06-25 05:01:22 +0000925static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100926channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000927{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000928 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000929
Damien Millerb38eff82000-04-01 11:09:21 +1000930 if (ret == 1) {
931 /* Start normal processing for the channel. */
932 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000933 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000934 } else if (ret == -1) {
935 /*
936 * We have received an X11 connection that has bad
937 * authentication information.
938 */
Damien Miller996acd22003-04-09 20:59:48 +1000939 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000940 buffer_clear(&c->input);
941 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000942 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000943 c->sock = -1;
944 c->type = SSH_CHANNEL_CLOSED;
945 packet_start(SSH_MSG_CHANNEL_CLOSE);
946 packet_put_int(c->remote_id);
947 packet_send();
948 }
949}
950
Ben Lindstrombba81212001-06-25 05:01:22 +0000951static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100952channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000953{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000954 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000955
956 /* c->force_drain = 1; */
957
Damien Millerb38eff82000-04-01 11:09:21 +1000958 if (ret == 1) {
959 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100960 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000961 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000963 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100964 chan_read_failed(c);
965 buffer_clear(&c->input);
966 chan_ibuf_empty(c);
967 buffer_clear(&c->output);
968 /* for proto v1, the peer will send an IEOF */
969 if (compat20)
970 chan_write_failed(c);
971 else
972 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000973 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000974 }
975}
976
Ben Lindstromb3921512001-04-11 15:57:50 +0000977/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000978/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000979static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100980channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000981{
Damien Millera10f5612002-09-12 09:49:15 +1000982 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000983 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100984 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985 struct {
986 u_int8_t version;
987 u_int8_t command;
988 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000989 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 } s4_req, s4_rsp;
991
Ben Lindstromb3921512001-04-11 15:57:50 +0000992 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000993
994 have = buffer_len(&c->input);
995 len = sizeof(s4_req);
996 if (have < len)
997 return 0;
998 p = buffer_ptr(&c->input);
999 for (found = 0, i = len; i < have; i++) {
1000 if (p[i] == '\0') {
1001 found = 1;
1002 break;
1003 }
1004 if (i > 1024) {
1005 /* the peer is probably sending garbage */
1006 debug("channel %d: decode socks4: too long",
1007 c->self);
1008 return -1;
1009 }
1010 }
1011 if (!found)
1012 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001013 buffer_get(&c->input, (char *)&s4_req.version, 1);
1014 buffer_get(&c->input, (char *)&s4_req.command, 1);
1015 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001016 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001017 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001018 p = buffer_ptr(&c->input);
1019 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001020 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001021 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001022 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001023 c->self, len, have);
1024 strlcpy(username, p, sizeof(username));
1025 buffer_consume(&c->input, len);
1026 buffer_consume(&c->input, 1); /* trailing '\0' */
1027
Ben Lindstromb3921512001-04-11 15:57:50 +00001028 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001029 strlcpy(c->path, host, sizeof(c->path));
1030 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001031
Damien Millerfbdeece2003-09-02 22:52:31 +10001032 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001033 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001034
Ben Lindstromb3921512001-04-11 15:57:50 +00001035 if (s4_req.command != 1) {
1036 debug("channel %d: cannot handle: socks4 cn %d",
1037 c->self, s4_req.command);
1038 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001039 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001040 s4_rsp.version = 0; /* vn: 0 for reply */
1041 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001042 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001043 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001044 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001045 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001046}
1047
Darren Tucker46471c92003-07-03 13:55:19 +10001048/* try to decode a socks5 header */
1049#define SSH_SOCKS5_AUTHDONE 0x1000
1050#define SSH_SOCKS5_NOAUTH 0x00
1051#define SSH_SOCKS5_IPV4 0x01
1052#define SSH_SOCKS5_DOMAIN 0x03
1053#define SSH_SOCKS5_IPV6 0x04
1054#define SSH_SOCKS5_CONNECT 0x01
1055#define SSH_SOCKS5_SUCCESS 0x00
1056
Damien Miller8473dd82006-07-24 14:08:32 +10001057/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001058static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001059channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001060{
1061 struct {
1062 u_int8_t version;
1063 u_int8_t command;
1064 u_int8_t reserved;
1065 u_int8_t atyp;
1066 } s5_req, s5_rsp;
1067 u_int16_t dest_port;
1068 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001069 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001070
1071 debug2("channel %d: decode socks5", c->self);
1072 p = buffer_ptr(&c->input);
1073 if (p[0] != 0x05)
1074 return -1;
1075 have = buffer_len(&c->input);
1076 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1077 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001078 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001079 return 0;
1080 nmethods = p[1];
1081 if (have < nmethods + 2)
1082 return 0;
1083 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001084 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001085 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001086 found = 1;
1087 break;
1088 }
1089 }
1090 if (!found) {
1091 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1092 c->self);
1093 return -1;
1094 }
1095 buffer_consume(&c->input, nmethods + 2);
1096 buffer_put_char(&c->output, 0x05); /* version */
1097 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1098 FD_SET(c->sock, writeset);
1099 c->flags |= SSH_SOCKS5_AUTHDONE;
1100 debug2("channel %d: socks5 auth done", c->self);
1101 return 0; /* need more */
1102 }
1103 debug2("channel %d: socks5 post auth", c->self);
1104 if (have < sizeof(s5_req)+1)
1105 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001106 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001107 if (s5_req.version != 0x05 ||
1108 s5_req.command != SSH_SOCKS5_CONNECT ||
1109 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001110 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001111 return -1;
1112 }
Darren Tucker47eede72005-03-14 23:08:12 +11001113 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001114 case SSH_SOCKS5_IPV4:
1115 addrlen = 4;
1116 af = AF_INET;
1117 break;
1118 case SSH_SOCKS5_DOMAIN:
1119 addrlen = p[sizeof(s5_req)];
1120 af = -1;
1121 break;
1122 case SSH_SOCKS5_IPV6:
1123 addrlen = 16;
1124 af = AF_INET6;
1125 break;
1126 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001127 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001128 return -1;
1129 }
Damien Miller0f077072006-07-10 22:21:02 +10001130 need = sizeof(s5_req) + addrlen + 2;
1131 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1132 need++;
1133 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001134 return 0;
1135 buffer_consume(&c->input, sizeof(s5_req));
1136 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1137 buffer_consume(&c->input, 1); /* host string length */
1138 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1139 buffer_get(&c->input, (char *)&dest_port, 2);
1140 dest_addr[addrlen] = '\0';
1141 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001142 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001143 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1144 return -1;
1145 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001146
Damien Millerfbdeece2003-09-02 22:52:31 +10001147 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001148 c->self, c->path, c->host_port, s5_req.command);
1149
1150 s5_rsp.version = 0x05;
1151 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1152 s5_rsp.reserved = 0; /* ignored */
1153 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1154 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1155 dest_port = 0; /* ignored */
1156
Damien Millera0fdce92006-03-26 14:28:50 +11001157 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1158 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1159 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001160 return 1;
1161}
1162
Ben Lindstromb3921512001-04-11 15:57:50 +00001163/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001164static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001165channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001166{
1167 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001168 u_int have;
1169 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001170
1171 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001172 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001173 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001174 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001175 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001176 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001177 /* need more */
1178 FD_SET(c->sock, readset);
1179 return;
1180 }
1181 /* try to guess the protocol */
1182 p = buffer_ptr(&c->input);
1183 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001184 case 0x04:
1185 ret = channel_decode_socks4(c, readset, writeset);
1186 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001187 case 0x05:
1188 ret = channel_decode_socks5(c, readset, writeset);
1189 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001190 default:
1191 ret = -1;
1192 break;
1193 }
1194 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001195 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001196 } else if (ret == 0) {
1197 debug2("channel %d: pre_dynamic: need more", c->self);
1198 /* need more */
1199 FD_SET(c->sock, readset);
1200 } else {
1201 /* switch to the next state */
1202 c->type = SSH_CHANNEL_OPENING;
1203 port_open_helper(c, "direct-tcpip");
1204 }
1205}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001206
Damien Millerb38eff82000-04-01 11:09:21 +10001207/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001208/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001209static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001210channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001211{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001212 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001213 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001214 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001215 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001216 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001217 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001218
1219 if (FD_ISSET(c->sock, readset)) {
1220 debug("X11 connection requested.");
1221 addrlen = sizeof(addr);
1222 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001223 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001224 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001225 channel_close_fd(&c->sock);
1226 chan_mark_dead(c);
1227 }
Damien Millerb38eff82000-04-01 11:09:21 +10001228 if (newsock < 0) {
1229 error("accept: %.100s", strerror(errno));
1230 return;
1231 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001232 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001233 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001234 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001235 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001236 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001237
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001238 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001239 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001240 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001241 if (compat20) {
1242 packet_start(SSH2_MSG_CHANNEL_OPEN);
1243 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001244 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001245 packet_put_int(nc->local_window_max);
1246 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001247 /* originator ipaddr and port */
1248 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001249 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001250 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001251 } else {
1252 packet_put_int(remote_port);
1253 }
Damien Millerbd483e72000-04-30 10:00:53 +10001254 packet_send();
1255 } else {
1256 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001257 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001258 if (packet_get_protocol_flags() &
1259 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001260 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001261 packet_send();
1262 }
Damien Millerd83ff352001-01-30 09:19:34 +11001263 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001264 }
1265}
1266
Ben Lindstrombba81212001-06-25 05:01:22 +00001267static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001268port_open_helper(Channel *c, char *rtype)
1269{
1270 int direct;
1271 char buf[1024];
1272 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001273 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001274
1275 direct = (strcmp(rtype, "direct-tcpip") == 0);
1276
1277 snprintf(buf, sizeof buf,
1278 "%s: listening port %d for %.100s port %d, "
1279 "connect from %.200s port %d",
1280 rtype, c->listening_port, c->path, c->host_port,
1281 remote_ipaddr, remote_port);
1282
1283 xfree(c->remote_name);
1284 c->remote_name = xstrdup(buf);
1285
1286 if (compat20) {
1287 packet_start(SSH2_MSG_CHANNEL_OPEN);
1288 packet_put_cstring(rtype);
1289 packet_put_int(c->self);
1290 packet_put_int(c->local_window_max);
1291 packet_put_int(c->local_maxpacket);
1292 if (direct) {
1293 /* target host, port */
1294 packet_put_cstring(c->path);
1295 packet_put_int(c->host_port);
1296 } else {
1297 /* listen address, port */
1298 packet_put_cstring(c->path);
1299 packet_put_int(c->listening_port);
1300 }
1301 /* originator host and port */
1302 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001303 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001304 packet_send();
1305 } else {
1306 packet_start(SSH_MSG_PORT_OPEN);
1307 packet_put_int(c->self);
1308 packet_put_cstring(c->path);
1309 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001310 if (packet_get_protocol_flags() &
1311 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001312 packet_put_cstring(c->remote_name);
1313 packet_send();
1314 }
1315 xfree(remote_ipaddr);
1316}
1317
Damien Miller5e7fd072005-11-05 14:53:39 +11001318static void
1319channel_set_reuseaddr(int fd)
1320{
1321 int on = 1;
1322
1323 /*
1324 * Set socket options.
1325 * Allow local port reuse in TIME_WAIT.
1326 */
1327 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1328 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1329}
1330
Damien Millerb38eff82000-04-01 11:09:21 +10001331/*
1332 * This socket is listening for connections to a forwarded TCP/IP port.
1333 */
Damien Miller8473dd82006-07-24 14:08:32 +10001334/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001335static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001336channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001337{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001338 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001339 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001340 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001341 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001342 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001343
Damien Millerb38eff82000-04-01 11:09:21 +10001344 if (FD_ISSET(c->sock, readset)) {
1345 debug("Connection to port %d forwarding "
1346 "to %.100s port %d requested.",
1347 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001348
Damien Miller4623a752001-10-10 15:03:58 +10001349 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1350 nextstate = SSH_CHANNEL_OPENING;
1351 rtype = "forwarded-tcpip";
1352 } else {
1353 if (c->host_port == 0) {
1354 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001355 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001356 } else {
1357 nextstate = SSH_CHANNEL_OPENING;
1358 rtype = "direct-tcpip";
1359 }
1360 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001361
Damien Millerb38eff82000-04-01 11:09:21 +10001362 addrlen = sizeof(addr);
1363 newsock = accept(c->sock, &addr, &addrlen);
1364 if (newsock < 0) {
1365 error("accept: %.100s", strerror(errno));
1366 return;
1367 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001368 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001369 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1370 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001371 nc->listening_port = c->listening_port;
1372 nc->host_port = c->host_port;
1373 strlcpy(nc->path, c->path, sizeof(nc->path));
1374
Damien Miller4623a752001-10-10 15:03:58 +10001375 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1376 /*
1377 * do not call the channel_post handler until
1378 * this flag has been reset by a pre-handler.
1379 * otherwise the FD_ISSET calls might overflow
1380 */
1381 nc->delayed = 1;
1382 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001383 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001384 }
Damien Millerb38eff82000-04-01 11:09:21 +10001385 }
1386}
1387
1388/*
1389 * This is the authentication agent socket listening for connections from
1390 * clients.
1391 */
Damien Miller8473dd82006-07-24 14:08:32 +10001392/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001393static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001394channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001395{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001396 Channel *nc;
1397 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001398 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001399 socklen_t addrlen;
1400
1401 if (FD_ISSET(c->sock, readset)) {
1402 addrlen = sizeof(addr);
1403 newsock = accept(c->sock, &addr, &addrlen);
1404 if (newsock < 0) {
1405 error("accept from auth socket: %.100s", strerror(errno));
1406 return;
1407 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001408 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001409 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1410 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001411 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001412 if (compat20) {
1413 packet_start(SSH2_MSG_CHANNEL_OPEN);
1414 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001415 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001416 packet_put_int(c->local_window_max);
1417 packet_put_int(c->local_maxpacket);
1418 } else {
1419 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001420 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001421 }
Damien Millerb38eff82000-04-01 11:09:21 +10001422 packet_send();
1423 }
1424}
1425
Damien Miller8473dd82006-07-24 14:08:32 +10001426/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001427static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001428channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001429{
Damien Millerbd740252008-05-19 15:37:09 +10001430 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001431 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001432
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001433 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001434 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001435 err = errno;
1436 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001437 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001438 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001439 debug("channel %d: connected to %s port %d",
1440 c->self, c->connect_ctx.host, c->connect_ctx.port);
1441 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001442 c->type = SSH_CHANNEL_OPEN;
1443 if (compat20) {
1444 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1445 packet_put_int(c->remote_id);
1446 packet_put_int(c->self);
1447 packet_put_int(c->local_window);
1448 packet_put_int(c->local_maxpacket);
1449 } else {
1450 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1451 packet_put_int(c->remote_id);
1452 packet_put_int(c->self);
1453 }
1454 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001455 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001456 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001457 /* Try next address, if any */
1458 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1459 close(c->sock);
1460 c->sock = c->rfd = c->wfd = sock;
1461 channel_max_fd = channel_find_maxfd();
1462 return;
1463 }
1464 /* Exhausted all addresses */
1465 error("connect_to %.100s port %d: failed.",
1466 c->connect_ctx.host, c->connect_ctx.port);
1467 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001468 if (compat20) {
1469 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1470 packet_put_int(c->remote_id);
1471 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1472 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1473 packet_put_cstring(strerror(err));
1474 packet_put_cstring("");
1475 }
1476 } else {
1477 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1478 packet_put_int(c->remote_id);
1479 }
1480 chan_mark_dead(c);
1481 }
1482 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001483 }
1484}
1485
Damien Miller8473dd82006-07-24 14:08:32 +10001486/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001487static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001488channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001489{
Darren Tucker11327cc2005-03-14 23:22:25 +11001490 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001491 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001492
Damien Miller835284b2007-06-11 13:03:16 +10001493 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1494 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001495 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001496 len = read(c->rfd, buf, sizeof(buf));
Damien Miller835284b2007-06-11 13:03:16 +10001497 if (len < 0 && (errno == EINTR || (errno == EAGAIN && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001498 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001499#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001500 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001501#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001502 if ((!c->isatty && len <= 0) ||
1503 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001504#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001505 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001506 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001507 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001508 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001509 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001510 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001511 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001512 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001513 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001514 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001515 } else {
1516 chan_read_failed(c);
1517 }
1518 return -1;
1519 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001520 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001521 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001522 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001523 chan_read_failed(c);
1524 }
Damien Millerd27b9472005-12-13 19:29:02 +11001525 } else if (c->datagram) {
1526 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001527 } else {
1528 buffer_append(&c->input, buf, len);
1529 }
Damien Millerb38eff82000-04-01 11:09:21 +10001530 }
1531 return 1;
1532}
Damien Miller4f7becb2006-03-26 14:10:14 +11001533
Damien Miller8473dd82006-07-24 14:08:32 +10001534/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001535static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001536channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001537{
Ben Lindstrome229b252001-03-05 06:28:06 +00001538 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001539 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001540 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001541 int len;
1542
1543 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001544 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001545 FD_ISSET(c->wfd, writeset) &&
1546 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001547 if (c->output_filter != NULL) {
1548 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1549 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001550 if (c->type != SSH_CHANNEL_OPEN)
1551 chan_mark_dead(c);
1552 else
1553 chan_write_failed(c);
1554 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001555 }
1556 } else if (c->datagram) {
1557 buf = data = buffer_get_string(&c->output, &dlen);
1558 } else {
1559 buf = data = buffer_ptr(&c->output);
1560 dlen = buffer_len(&c->output);
1561 }
1562
Damien Millerd27b9472005-12-13 19:29:02 +11001563 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001564 /* ignore truncated writes, datagrams might get lost */
1565 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001566 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001567 xfree(data);
1568 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1569 return 1;
1570 if (len <= 0) {
1571 if (c->type != SSH_CHANNEL_OPEN)
1572 chan_mark_dead(c);
1573 else
1574 chan_write_failed(c);
1575 return -1;
1576 }
1577 return 1;
1578 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001579#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001580 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001581 if (compat20 && c->wfd_isatty)
1582 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001583#endif
Damien Miller077b2382005-12-31 16:22:32 +11001584
1585 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001586 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1587 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001588 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001589 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001590 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001591 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001592 return -1;
1593 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001594 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001595 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001596 c->type = SSH_CHANNEL_INPUT_DRAINING;
1597 } else {
1598 chan_write_failed(c);
1599 }
1600 return -1;
1601 }
Damien Miller077b2382005-12-31 16:22:32 +11001602 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001603 if (tcgetattr(c->wfd, &tio) == 0 &&
1604 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1605 /*
1606 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001607 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001608 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001609 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001610 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001611 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001612 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001613 }
1614 }
Damien Millerb38eff82000-04-01 11:09:21 +10001615 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001616 if (compat20 && len > 0) {
1617 c->local_consumed += len;
1618 }
1619 }
1620 return 1;
1621}
Damien Miller4f7becb2006-03-26 14:10:14 +11001622
Ben Lindstrombba81212001-06-25 05:01:22 +00001623static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001624channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001625{
Darren Tucker11327cc2005-03-14 23:22:25 +11001626 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001627 int len;
1628
Damien Miller1383bd82000-04-06 12:32:37 +10001629/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001630 if (c->efd != -1) {
1631 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1632 FD_ISSET(c->efd, writeset) &&
1633 buffer_len(&c->extended) > 0) {
1634 len = write(c->efd, buffer_ptr(&c->extended),
1635 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001636 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001637 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001638 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1639 return 1;
1640 if (len <= 0) {
1641 debug2("channel %d: closing write-efd %d",
1642 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001643 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001644 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001645 buffer_consume(&c->extended, len);
1646 c->local_consumed += len;
1647 }
1648 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001649 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001650 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001651 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001652 c->self, len, c->efd);
Damien Millere42bd242007-01-29 10:16:28 +11001653 if (len < 0 && (errno == EINTR ||
1654 (errno == EAGAIN && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001655 return 1;
1656 if (len <= 0) {
1657 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001658 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001659 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001660 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001661 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001662 }
Damien Miller33b13562000-04-04 14:38:59 +10001663 }
1664 }
1665 return 1;
1666}
Damien Miller4f7becb2006-03-26 14:10:14 +11001667
Damien Miller8473dd82006-07-24 14:08:32 +10001668/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001669static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001670channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001671{
1672 char buf[16];
1673 int len;
1674
1675 /* Monitor control fd to detect if the slave client exits */
1676 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1677 len = read(c->ctl_fd, buf, sizeof(buf));
1678 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1679 return 1;
1680 if (len <= 0) {
1681 debug2("channel %d: ctl read<=0", c->self);
1682 if (c->type != SSH_CHANNEL_OPEN) {
1683 debug2("channel %d: not open", c->self);
1684 chan_mark_dead(c);
1685 return -1;
1686 } else {
1687 chan_read_failed(c);
1688 chan_write_failed(c);
1689 }
1690 return -1;
1691 } else
1692 fatal("%s: unexpected data on ctl fd", __func__);
1693 }
1694 return 1;
1695}
Damien Miller4f7becb2006-03-26 14:10:14 +11001696
Damien Miller0e220db2004-06-15 10:34:08 +10001697static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001698channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001699{
Ben Lindstromb3921512001-04-11 15:57:50 +00001700 if (c->type == SSH_CHANNEL_OPEN &&
1701 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001702 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001703 c->local_maxpacket*3) ||
1704 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001705 c->local_consumed > 0) {
1706 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1707 packet_put_int(c->remote_id);
1708 packet_put_int(c->local_consumed);
1709 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001710 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001711 c->self, c->local_window,
1712 c->local_consumed);
1713 c->local_window += c->local_consumed;
1714 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001715 }
1716 return 1;
1717}
1718
Ben Lindstrombba81212001-06-25 05:01:22 +00001719static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001720channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001721{
Damien Miller4623a752001-10-10 15:03:58 +10001722 if (c->delayed)
1723 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001724 channel_handle_rfd(c, readset, writeset);
1725 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001726 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001727 return;
Damien Miller33b13562000-04-04 14:38:59 +10001728 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001729 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001730 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001731}
1732
Damien Miller8473dd82006-07-24 14:08:32 +10001733/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001734static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001735channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001736{
1737 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001738
Damien Millerb38eff82000-04-01 11:09:21 +10001739 /* Send buffered output data to the socket. */
1740 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1741 len = write(c->sock, buffer_ptr(&c->output),
1742 buffer_len(&c->output));
1743 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001744 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001745 else
1746 buffer_consume(&c->output, len);
1747 }
1748}
1749
Ben Lindstrombba81212001-06-25 05:01:22 +00001750static void
Damien Miller33b13562000-04-04 14:38:59 +10001751channel_handler_init_20(void)
1752{
Damien Millerde6987c2002-01-22 23:20:40 +11001753 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001754 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001755 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001756 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001757 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001758 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001759 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001760 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001761
Damien Millerde6987c2002-01-22 23:20:40 +11001762 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001763 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001764 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001765 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001766 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001767 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001768 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001769}
1770
Ben Lindstrombba81212001-06-25 05:01:22 +00001771static void
Damien Millerb38eff82000-04-01 11:09:21 +10001772channel_handler_init_13(void)
1773{
1774 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1775 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1776 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1777 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1778 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1779 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1780 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001781 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001782 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001783
Damien Millerde6987c2002-01-22 23:20:40 +11001784 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001785 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1786 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1787 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1788 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001789 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001790 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001791}
1792
Ben Lindstrombba81212001-06-25 05:01:22 +00001793static void
Damien Millerb38eff82000-04-01 11:09:21 +10001794channel_handler_init_15(void)
1795{
Damien Millerde6987c2002-01-22 23:20:40 +11001796 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001797 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001798 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1799 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1800 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001801 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001802 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001803
1804 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1805 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1806 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001807 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001808 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001809 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001810}
1811
Ben Lindstrombba81212001-06-25 05:01:22 +00001812static void
Damien Millerb38eff82000-04-01 11:09:21 +10001813channel_handler_init(void)
1814{
1815 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001816
Damien Miller9f0f5c62001-12-21 14:45:46 +11001817 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001818 channel_pre[i] = NULL;
1819 channel_post[i] = NULL;
1820 }
Damien Miller33b13562000-04-04 14:38:59 +10001821 if (compat20)
1822 channel_handler_init_20();
1823 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001824 channel_handler_init_13();
1825 else
1826 channel_handler_init_15();
1827}
1828
Damien Miller3ec27592001-10-12 11:35:04 +10001829/* gc dead channels */
1830static void
1831channel_garbage_collect(Channel *c)
1832{
1833 if (c == NULL)
1834 return;
1835 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001836 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001837 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001838 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001839 c->detach_user(c->self, NULL);
1840 /* if we still have a callback */
1841 if (c->detach_user != NULL)
1842 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001843 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001844 }
1845 if (!chan_is_dead(c, 1))
1846 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001847 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001848 channel_free(c);
1849}
1850
Ben Lindstrombba81212001-06-25 05:01:22 +00001851static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001852channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001853{
1854 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001855 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001856 Channel *c;
1857
1858 if (!did_init) {
1859 channel_handler_init();
1860 did_init = 1;
1861 }
1862 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001863 c = channels[i];
1864 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001865 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001866 if (ftab[c->type] != NULL)
1867 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001868 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001869 }
1870}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871
Ben Lindstrome9c99912001-06-09 00:41:05 +00001872/*
1873 * Allocate/update select bitmasks and add any bits relevant to channels in
1874 * select bitmasks.
1875 */
Damien Miller4af51302000-04-16 11:18:38 +10001876void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001877channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001878 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001879{
Damien Miller36812092006-03-26 14:22:47 +11001880 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001881
1882 n = MAX(*maxfdp, channel_max_fd);
1883
Damien Miller36812092006-03-26 14:22:47 +11001884 nfdset = howmany(n+1, NFDBITS);
1885 /* Explicitly test here, because xrealloc isn't always called */
1886 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1887 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1888 sz = nfdset * sizeof(fd_mask);
1889
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001890 /* perhaps check sz < nalloc/2 and shrink? */
1891 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001892 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1893 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001894 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001895 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001896 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001897 memset(*readsetp, 0, sz);
1898 memset(*writesetp, 0, sz);
1899
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001900 if (!rekeying)
1901 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001902}
1903
Ben Lindstrome9c99912001-06-09 00:41:05 +00001904/*
1905 * After select, perform any appropriate operations for channels which have
1906 * events pending.
1907 */
Damien Miller4af51302000-04-16 11:18:38 +10001908void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001909channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001910{
Damien Millerb38eff82000-04-01 11:09:21 +10001911 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001912}
1913
Ben Lindstrome9c99912001-06-09 00:41:05 +00001914
Damien Miller5e953212001-01-30 09:14:00 +11001915/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001916void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001917channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001918{
Damien Millerb38eff82000-04-01 11:09:21 +10001919 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001920 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001921
Damien Miller95def091999-11-25 00:26:21 +11001922 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001923 c = channels[i];
1924 if (c == NULL)
1925 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001926
Ben Lindstrome9c99912001-06-09 00:41:05 +00001927 /*
1928 * We are only interested in channels that can have buffered
1929 * incoming data.
1930 */
Damien Miller34132e52000-01-14 15:45:46 +11001931 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001932 if (c->type != SSH_CHANNEL_OPEN &&
1933 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001934 continue;
1935 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001936 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001937 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001938 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001939 if (compat20 &&
1940 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001941 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001942 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001943 continue;
1944 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001945
Damien Miller95def091999-11-25 00:26:21 +11001946 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001947 if ((c->istate == CHAN_INPUT_OPEN ||
1948 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1949 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001950 if (c->datagram) {
1951 if (len > 0) {
1952 u_char *data;
1953 u_int dlen;
1954
1955 data = buffer_get_string(&c->input,
1956 &dlen);
1957 packet_start(SSH2_MSG_CHANNEL_DATA);
1958 packet_put_int(c->remote_id);
1959 packet_put_string(data, dlen);
1960 packet_send();
1961 c->remote_window -= dlen + 4;
1962 xfree(data);
1963 }
1964 continue;
1965 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001966 /*
1967 * Send some data for the other side over the secure
1968 * connection.
1969 */
Damien Miller33b13562000-04-04 14:38:59 +10001970 if (compat20) {
1971 if (len > c->remote_window)
1972 len = c->remote_window;
1973 if (len > c->remote_maxpacket)
1974 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001975 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001976 if (packet_is_interactive()) {
1977 if (len > 1024)
1978 len = 512;
1979 } else {
1980 /* Keep the packets at reasonable size. */
1981 if (len > packet_get_maxsize()/2)
1982 len = packet_get_maxsize()/2;
1983 }
Damien Miller95def091999-11-25 00:26:21 +11001984 }
Damien Millerb38eff82000-04-01 11:09:21 +10001985 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001986 packet_start(compat20 ?
1987 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001988 packet_put_int(c->remote_id);
1989 packet_put_string(buffer_ptr(&c->input), len);
1990 packet_send();
1991 buffer_consume(&c->input, len);
1992 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001993 }
1994 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001995 if (compat13)
1996 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001997 /*
1998 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001999 * tell peer, that we will not send more data: send IEOF.
2000 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002001 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002002 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002003 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2004 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002005 else
2006 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002007 }
Damien Miller33b13562000-04-04 14:38:59 +10002008 /* Send extended data, i.e. stderr */
2009 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002010 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002011 c->remote_window > 0 &&
2012 (len = buffer_len(&c->extended)) > 0 &&
2013 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002014 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002015 c->self, c->remote_window, buffer_len(&c->extended),
2016 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002017 if (len > c->remote_window)
2018 len = c->remote_window;
2019 if (len > c->remote_maxpacket)
2020 len = c->remote_maxpacket;
2021 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2022 packet_put_int(c->remote_id);
2023 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2024 packet_put_string(buffer_ptr(&c->extended), len);
2025 packet_send();
2026 buffer_consume(&c->extended, len);
2027 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002028 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002029 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002030 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002031}
2032
Ben Lindstrome9c99912001-06-09 00:41:05 +00002033
2034/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002035
2036/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002037void
Damien Miller630d6f42002-01-22 23:17:30 +11002038channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002039{
Damien Miller34132e52000-01-14 15:45:46 +11002040 int id;
Damien Miller95def091999-11-25 00:26:21 +11002041 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002042 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002043 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002044
Damien Miller95def091999-11-25 00:26:21 +11002045 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002046 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002047 c = channel_lookup(id);
2048 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002049 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002050
Damien Miller95def091999-11-25 00:26:21 +11002051 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002052 if (c->type != SSH_CHANNEL_OPEN &&
2053 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002054 return;
2055
Damien Miller95def091999-11-25 00:26:21 +11002056 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002057 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002058
Damien Millera04ad492004-01-21 11:02:09 +11002059 /*
2060 * Ignore data for protocol > 1.3 if output end is no longer open.
2061 * For protocol 2 the sending side is reducing its window as it sends
2062 * data, so we must 'fake' consumption of the data in order to ensure
2063 * that window updates are sent back. Otherwise the connection might
2064 * deadlock.
2065 */
2066 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2067 if (compat20) {
2068 c->local_window -= data_len;
2069 c->local_consumed += data_len;
2070 }
Damien Millera04ad492004-01-21 11:02:09 +11002071 return;
2072 }
2073
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002074 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002075 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002076 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002077 c->self, data_len, c->local_maxpacket);
2078 }
2079 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002080 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002081 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002082 return;
2083 }
2084 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002085 }
Damien Millerd27b9472005-12-13 19:29:02 +11002086 if (c->datagram)
2087 buffer_put_string(&c->output, data, data_len);
2088 else
2089 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002090 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002091}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002092
Damien Millerd79b4242006-03-31 23:11:44 +11002093/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002094void
Damien Miller630d6f42002-01-22 23:17:30 +11002095channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002096{
2097 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002098 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002099 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002100 Channel *c;
2101
2102 /* Get the channel number and verify it. */
2103 id = packet_get_int();
2104 c = channel_lookup(id);
2105
2106 if (c == NULL)
2107 packet_disconnect("Received extended_data for bad channel %d.", id);
2108 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002109 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002110 return;
2111 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002112 if (c->flags & CHAN_EOF_RCVD) {
2113 if (datafellows & SSH_BUG_EXTEOF)
2114 debug("channel %d: accepting ext data after eof", id);
2115 else
2116 packet_disconnect("Received extended_data after EOF "
2117 "on channel %d.", id);
2118 }
Damien Miller33b13562000-04-04 14:38:59 +10002119 tcode = packet_get_int();
2120 if (c->efd == -1 ||
2121 c->extended_usage != CHAN_EXTENDED_WRITE ||
2122 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002123 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002124 return;
2125 }
2126 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002127 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002128 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002129 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002130 c->self, data_len, c->local_window);
2131 xfree(data);
2132 return;
2133 }
Damien Millerd3444942000-09-30 14:20:03 +11002134 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002135 c->local_window -= data_len;
2136 buffer_append(&c->extended, data, data_len);
2137 xfree(data);
2138}
2139
Damien Millerd79b4242006-03-31 23:11:44 +11002140/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002141void
Damien Miller630d6f42002-01-22 23:17:30 +11002142channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002143{
2144 int id;
2145 Channel *c;
2146
Damien Millerb38eff82000-04-01 11:09:21 +10002147 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002148 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002149 c = channel_lookup(id);
2150 if (c == NULL)
2151 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2152 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002153
2154 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002155 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002156 debug("channel %d: FORCE input drain", c->self);
2157 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002158 if (buffer_len(&c->input) == 0)
2159 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002160 }
2161
Damien Millerb38eff82000-04-01 11:09:21 +10002162}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
Damien Millerd79b4242006-03-31 23:11:44 +11002164/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002165void
Damien Miller630d6f42002-01-22 23:17:30 +11002166channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167{
Damien Millerb38eff82000-04-01 11:09:21 +10002168 int id;
2169 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170
Damien Millerb38eff82000-04-01 11:09:21 +10002171 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002172 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002173 c = channel_lookup(id);
2174 if (c == NULL)
2175 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002176
2177 /*
2178 * Send a confirmation that we have closed the channel and no more
2179 * data is coming for it.
2180 */
Damien Miller95def091999-11-25 00:26:21 +11002181 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002182 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002183 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002184
Damien Miller5428f641999-11-25 11:54:57 +11002185 /*
2186 * If the channel is in closed state, we have sent a close request,
2187 * and the other side will eventually respond with a confirmation.
2188 * Thus, we cannot free the channel here, because then there would be
2189 * no-one to receive the confirmation. The channel gets freed when
2190 * the confirmation arrives.
2191 */
Damien Millerb38eff82000-04-01 11:09:21 +10002192 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002193 /*
2194 * Not a closed channel - mark it as draining, which will
2195 * cause it to be freed later.
2196 */
Damien Miller76765c02002-01-22 23:21:15 +11002197 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002198 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002199 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002200}
2201
Damien Millerb38eff82000-04-01 11:09:21 +10002202/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002203/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002204void
Damien Miller630d6f42002-01-22 23:17:30 +11002205channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002206{
Damien Millerb38eff82000-04-01 11:09:21 +10002207 int id = packet_get_int();
2208 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002209
Damien Miller48b03fc2002-01-22 23:11:40 +11002210 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002211 if (c == NULL)
2212 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2213 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002214}
2215
Damien Millerd79b4242006-03-31 23:11:44 +11002216/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002217void
Damien Miller630d6f42002-01-22 23:17:30 +11002218channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002219{
2220 int id = packet_get_int();
2221 Channel *c = channel_lookup(id);
2222
Damien Miller48b03fc2002-01-22 23:11:40 +11002223 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002224 if (c == NULL)
2225 packet_disconnect("Received close confirmation for "
2226 "out-of-range channel %d.", id);
2227 if (c->type != SSH_CHANNEL_CLOSED)
2228 packet_disconnect("Received close confirmation for "
2229 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002230 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002231}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002232
Damien Millerd79b4242006-03-31 23:11:44 +11002233/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002234void
Damien Miller630d6f42002-01-22 23:17:30 +11002235channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002236{
Damien Millerb38eff82000-04-01 11:09:21 +10002237 int id, remote_id;
2238 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002239
Damien Millerb38eff82000-04-01 11:09:21 +10002240 id = packet_get_int();
2241 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242
Damien Millerb38eff82000-04-01 11:09:21 +10002243 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2244 packet_disconnect("Received open confirmation for "
2245 "non-opening channel %d.", id);
2246 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002247 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002248 c->remote_id = remote_id;
2249 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002250
2251 if (compat20) {
2252 c->remote_window = packet_get_int();
2253 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002254 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002255 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002256 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002257 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002258 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002259 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002260 c->remote_window, c->remote_maxpacket);
2261 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002262 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002263}
2264
Ben Lindstrombba81212001-06-25 05:01:22 +00002265static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002266reason2txt(int reason)
2267{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002268 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002269 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2270 return "administratively prohibited";
2271 case SSH2_OPEN_CONNECT_FAILED:
2272 return "connect failed";
2273 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2274 return "unknown channel type";
2275 case SSH2_OPEN_RESOURCE_SHORTAGE:
2276 return "resource shortage";
2277 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002278 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002279}
2280
Damien Millerd79b4242006-03-31 23:11:44 +11002281/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002282void
Damien Miller630d6f42002-01-22 23:17:30 +11002283channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002284{
Kevin Steves12057502001-02-05 14:54:34 +00002285 int id, reason;
2286 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002287 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002288
Damien Millerb38eff82000-04-01 11:09:21 +10002289 id = packet_get_int();
2290 c = channel_lookup(id);
2291
2292 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2293 packet_disconnect("Received open failure for "
2294 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002295 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002296 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002297 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002298 msg = packet_get_string(NULL);
2299 lang = packet_get_string(NULL);
2300 }
Damien Miller996acd22003-04-09 20:59:48 +10002301 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002302 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002303 if (msg != NULL)
2304 xfree(msg);
2305 if (lang != NULL)
2306 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002307 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002308 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002309 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002310 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311}
2312
Damien Millerd79b4242006-03-31 23:11:44 +11002313/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002314void
Damien Miller630d6f42002-01-22 23:17:30 +11002315channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002316{
2317 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002318 int id;
2319 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002320
2321 if (!compat20)
2322 return;
2323
2324 /* Get the channel number and verify it. */
2325 id = packet_get_int();
2326 c = channel_lookup(id);
2327
Damien Millerd47c62a2005-12-13 19:33:57 +11002328 if (c == NULL) {
2329 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002330 return;
2331 }
2332 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002333 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002334 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002335 c->remote_window += adjust;
2336}
2337
Damien Millerd79b4242006-03-31 23:11:44 +11002338/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002339void
Damien Miller630d6f42002-01-22 23:17:30 +11002340channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002341{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002342 Channel *c = NULL;
2343 u_short host_port;
2344 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002345 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002346
Ben Lindstrome9c99912001-06-09 00:41:05 +00002347 remote_id = packet_get_int();
2348 host = packet_get_string(NULL);
2349 host_port = packet_get_int();
2350
2351 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2352 originator_string = packet_get_string(NULL);
2353 } else {
2354 originator_string = xstrdup("unknown (remote did not supply name)");
2355 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002356 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002357 c = channel_connect_to(host, host_port,
2358 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002359 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002360 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002361 if (c == NULL) {
2362 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2363 packet_put_int(remote_id);
2364 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002365 } else
2366 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002367}
2368
Damien Millerb84886b2008-05-19 15:05:07 +10002369/* ARGSUSED */
2370void
2371channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2372{
2373 Channel *c;
2374 struct channel_confirm *cc;
2375 int remote_id;
2376
2377 /* Reset keepalive timeout */
2378 keep_alive_timeouts = 0;
2379
2380 remote_id = packet_get_int();
2381 packet_check_eom();
2382
2383 debug2("channel_input_confirm: type %d id %d", type, remote_id);
2384
2385 if ((c = channel_lookup(remote_id)) == NULL) {
2386 logit("channel_input_success_failure: %d: unknown", remote_id);
2387 return;
2388 }
2389 ;
2390 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2391 return;
2392 cc->cb(type, c, cc->ctx);
2393 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2394 bzero(cc, sizeof(*cc));
2395 xfree(cc);
2396}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002397
Ben Lindstrome9c99912001-06-09 00:41:05 +00002398/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002399
Ben Lindstrom908afed2001-10-03 17:34:59 +00002400void
2401channel_set_af(int af)
2402{
2403 IPv4or6 = af;
2404}
2405
Damien Millerb16461c2002-01-22 23:29:22 +11002406static int
2407channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2408 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002409{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002410 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002411 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002412 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002413 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002414 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002415
Damien Millerb16461c2002-01-22 23:29:22 +11002416 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2417 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002418 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002419
Damien Millerb16461c2002-01-22 23:29:22 +11002420 if (host == NULL) {
2421 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002422 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002423 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002424 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002425 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002426 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002427 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002428
Damien Miller5428f641999-11-25 11:54:57 +11002429 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002430 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002431 * specified address or wildcard. On the client, a specified bind
2432 * address will always override gateway_ports. On the server, a
2433 * gateway_ports of 1 (``yes'') will override the client's
2434 * specification and force a wildcard bind, whereas a value of 2
2435 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002436 * asked for.
2437 *
2438 * Special-case listen_addrs are:
2439 *
2440 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2441 * "" (empty string), "*" -> wildcard v4/v6
2442 * "localhost" -> loopback v4/v6
2443 */
2444 addr = NULL;
2445 if (listen_addr == NULL) {
2446 /* No address specified: default to gateway_ports setting */
2447 if (gateway_ports)
2448 wildcard = 1;
2449 } else if (gateway_ports || is_client) {
2450 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002451 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002452 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2453 (!is_client && gateway_ports == 1))
2454 wildcard = 1;
2455 else if (strcmp(listen_addr, "localhost") != 0)
2456 addr = listen_addr;
2457 }
2458
2459 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2460 type, wildcard, (addr == NULL) ? "NULL" : addr);
2461
2462 /*
Damien Miller34132e52000-01-14 15:45:46 +11002463 * getaddrinfo returns a loopback address if the hostname is
2464 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002465 */
Damien Miller34132e52000-01-14 15:45:46 +11002466 memset(&hints, 0, sizeof(hints));
2467 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002468 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002469 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002470 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002471 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2472 if (addr == NULL) {
2473 /* This really shouldn't happen */
2474 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002475 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002476 } else {
Damien Millera7270302005-07-06 09:36:05 +10002477 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002478 "getaddrinfo(%.64s): %s", addr,
2479 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002480 }
Damien Millera7270302005-07-06 09:36:05 +10002481 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002482 }
Damien Miller5428f641999-11-25 11:54:57 +11002483
Damien Miller34132e52000-01-14 15:45:46 +11002484 for (ai = aitop; ai; ai = ai->ai_next) {
2485 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2486 continue;
2487 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2488 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002489 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002490 continue;
2491 }
2492 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002493 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002494 if (sock < 0) {
2495 /* this is no error since kernel may not support ipv6 */
2496 verbose("socket: %.100s", strerror(errno));
2497 continue;
2498 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002499
2500 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002501
Damien Miller34132e52000-01-14 15:45:46 +11002502 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002503
Damien Miller34132e52000-01-14 15:45:46 +11002504 /* Bind the socket to the address. */
2505 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2506 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002507 if (!ai->ai_next)
2508 error("bind: %.100s", strerror(errno));
2509 else
2510 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002511
Damien Miller34132e52000-01-14 15:45:46 +11002512 close(sock);
2513 continue;
2514 }
2515 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002516 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002517 error("listen: %.100s", strerror(errno));
2518 close(sock);
2519 continue;
2520 }
2521 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002522 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002523 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002524 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002525 strlcpy(c->path, host, sizeof(c->path));
2526 c->host_port = port_to_connect;
2527 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002528 success = 1;
2529 }
2530 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002531 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002532 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002533 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002534 return success;
Damien Miller95def091999-11-25 00:26:21 +11002535}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002536
Darren Tuckere7066df2004-05-24 10:18:05 +10002537int
2538channel_cancel_rport_listener(const char *host, u_short port)
2539{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002540 u_int i;
2541 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002542
Darren Tucker47eede72005-03-14 23:08:12 +11002543 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002544 Channel *c = channels[i];
2545
2546 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2547 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002548 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002549 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002550 channel_free(c);
2551 found = 1;
2552 }
2553 }
2554
2555 return (found);
2556}
2557
Damien Millerb16461c2002-01-22 23:29:22 +11002558/* protocol local port fwd, used by ssh (and sshd in v1) */
2559int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002560channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002561 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2562{
2563 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002564 listen_host, listen_port, host_to_connect, port_to_connect,
2565 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002566}
2567
2568/* protocol v2 remote port fwd, used by sshd */
2569int
2570channel_setup_remote_fwd_listener(const char *listen_address,
2571 u_short listen_port, int gateway_ports)
2572{
2573 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2574 listen_address, listen_port, NULL, 0, gateway_ports);
2575}
2576
Damien Miller5428f641999-11-25 11:54:57 +11002577/*
2578 * Initiate forwarding of connections to port "port" on remote host through
2579 * the secure channel to host:port from local side.
2580 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002581
Darren Tuckere7d4b192006-07-12 22:17:10 +10002582int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002583channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002584 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002585{
Damien Millerdff50992002-01-22 23:16:32 +11002586 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002587
Damien Miller95def091999-11-25 00:26:21 +11002588 /* Record locally that connection to this host/port is permitted. */
2589 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2590 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002591
Damien Miller95def091999-11-25 00:26:21 +11002592 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002593 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002594 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002595 if (listen_host == NULL) {
2596 if (datafellows & SSH_BUG_RFWD_ADDR)
2597 address_to_bind = "127.0.0.1";
2598 else
2599 address_to_bind = "localhost";
2600 } else if (*listen_host == '\0' ||
2601 strcmp(listen_host, "*") == 0) {
2602 if (datafellows & SSH_BUG_RFWD_ADDR)
2603 address_to_bind = "0.0.0.0";
2604 else
2605 address_to_bind = "";
2606 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002607 address_to_bind = listen_host;
2608
Damien Miller33b13562000-04-04 14:38:59 +10002609 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2610 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002611 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002612 packet_put_cstring(address_to_bind);
2613 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002614 packet_send();
2615 packet_write_wait();
2616 /* Assume that server accepts the request */
2617 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002618 } else {
2619 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002620 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002621 packet_put_cstring(host_to_connect);
2622 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002623 packet_send();
2624 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002625
2626 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002627 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002628 switch (type) {
2629 case SSH_SMSG_SUCCESS:
2630 success = 1;
2631 break;
2632 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002633 break;
2634 default:
2635 /* Unknown packet */
2636 packet_disconnect("Protocol error for port forward request:"
2637 "received packet type %d.", type);
2638 }
2639 }
2640 if (success) {
2641 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2642 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2643 permitted_opens[num_permitted_opens].listen_port = listen_port;
2644 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002645 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002646 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002647}
2648
Damien Miller5428f641999-11-25 11:54:57 +11002649/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002650 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002651 * local side.
2652 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002653void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002654channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002655{
2656 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002657
2658 if (!compat20)
2659 return;
2660
2661 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002662 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002663 permitted_opens[i].listen_port == port)
2664 break;
2665 }
2666 if (i >= num_permitted_opens) {
2667 debug("%s: requested forward not found", __func__);
2668 return;
2669 }
2670 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2671 packet_put_cstring("cancel-tcpip-forward");
2672 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002673 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002674 packet_put_int(port);
2675 packet_send();
2676
2677 permitted_opens[i].listen_port = 0;
2678 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002679 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002680 permitted_opens[i].host_to_connect = NULL;
2681}
2682
2683/*
Damien Miller5428f641999-11-25 11:54:57 +11002684 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2685 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002686 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002687 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002688int
Damien Millere247cc42000-05-07 12:03:14 +10002689channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002690{
Damien Milleraae6c611999-12-06 11:47:28 +11002691 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002692 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002693 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002694
Damien Miller95def091999-11-25 00:26:21 +11002695 /* Get arguments from the packet. */
2696 port = packet_get_int();
2697 hostname = packet_get_string(NULL);
2698 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002699
Damien Millerbac2d8a2000-09-05 16:13:06 +11002700#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002701 /*
2702 * Check that an unprivileged user is not trying to forward a
2703 * privileged port.
2704 */
Damien Miller95def091999-11-25 00:26:21 +11002705 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002706 packet_disconnect(
2707 "Requested forwarding of port %d but user is not root.",
2708 port);
2709 if (host_port == 0)
2710 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002711#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002712
Damien Miller0bc1bd82000-11-13 22:57:25 +11002713 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002714 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002715 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002716
2717 /* Free the argument string. */
2718 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002719
2720 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002721}
2722
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002723/*
2724 * Permits opening to any host/port if permitted_opens[] is empty. This is
2725 * usually called by the server, because the user could connect to any port
2726 * anyway, and the server has no way to know but to trust the client anyway.
2727 */
2728void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002729channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002730{
2731 if (num_permitted_opens == 0)
2732 all_opens_permitted = 1;
2733}
2734
Ben Lindstroma3700052001-04-05 23:26:32 +00002735void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002736channel_add_permitted_opens(char *host, int port)
2737{
2738 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002739 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002740 debug("allow port forwarding to host %s port %d", host, port);
2741
2742 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2743 permitted_opens[num_permitted_opens].port_to_connect = port;
2744 num_permitted_opens++;
2745
2746 all_opens_permitted = 0;
2747}
2748
Damien Millera765cf42006-07-24 14:08:13 +10002749int
Damien Miller9b439df2006-07-24 14:04:00 +10002750channel_add_adm_permitted_opens(char *host, int port)
2751{
2752 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2753 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002754 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002755
2756 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2757 = xstrdup(host);
2758 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002759 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002760}
2761
2762void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002763channel_clear_permitted_opens(void)
2764{
2765 int i;
2766
2767 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002768 if (permitted_opens[i].host_to_connect != NULL)
2769 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002770 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002771}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002772
Damien Miller9b439df2006-07-24 14:04:00 +10002773void
2774channel_clear_adm_permitted_opens(void)
2775{
2776 int i;
2777
2778 for (i = 0; i < num_adm_permitted_opens; i++)
2779 if (permitted_adm_opens[i].host_to_connect != NULL)
2780 xfree(permitted_adm_opens[i].host_to_connect);
2781 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002782}
2783
Darren Tuckere7140f22008-06-10 23:01:51 +10002784void
2785channel_print_adm_permitted_opens(void)
2786{
2787 static int i;
2788
2789 for (i = 0; i < num_adm_permitted_opens; i++)
2790 if (permitted_adm_opens[i].host_to_connect != NULL)
2791 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2792 permitted_adm_opens[i].port_to_connect);
2793}
2794
Damien Millerbd740252008-05-19 15:37:09 +10002795/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002796static int
Damien Millerbd740252008-05-19 15:37:09 +10002797connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002798{
Damien Millerbd740252008-05-19 15:37:09 +10002799 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002800 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002801
Damien Millerbd740252008-05-19 15:37:09 +10002802 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2803 if (cctx->ai->ai_family != AF_INET &&
2804 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002805 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002806 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2807 ntop, sizeof(ntop), strport, sizeof(strport),
2808 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2809 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002810 continue;
2811 }
Damien Millerbd740252008-05-19 15:37:09 +10002812 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
2813 cctx->ai->ai_protocol)) == -1) {
2814 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002815 error("socket: %.100s", strerror(errno));
2816 else
2817 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002818 continue;
2819 }
Damien Miller232711f2004-06-15 10:35:30 +10002820 if (set_nonblock(sock) == -1)
2821 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002822 if (connect(sock, cctx->ai->ai_addr,
2823 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2824 debug("connect_next: host %.100s ([%.100s]:%s): "
2825 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002826 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002827 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002828 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002829 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002830 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002831 }
Damien Millerbd740252008-05-19 15:37:09 +10002832 debug("connect_next: host %.100s ([%.100s]:%s) "
2833 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2834 cctx->ai = cctx->ai->ai_next;
2835 set_nodelay(sock);
2836 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002837 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002838 return -1;
2839}
Damien Millerb38eff82000-04-01 11:09:21 +10002840
Damien Millerbd740252008-05-19 15:37:09 +10002841static void
2842channel_connect_ctx_free(struct channel_connect *cctx)
2843{
2844 xfree(cctx->host);
2845 if (cctx->aitop)
2846 freeaddrinfo(cctx->aitop);
2847 bzero(cctx, sizeof(*cctx));
2848 cctx->host = NULL;
2849 cctx->ai = cctx->aitop = NULL;
2850}
2851
2852/* Return CONNECTING channel to remote host, port */
2853static Channel *
2854connect_to(const char *host, u_short port, char *ctype, char *rname)
2855{
2856 struct addrinfo hints;
2857 int gaierr;
2858 int sock = -1;
2859 char strport[NI_MAXSERV];
2860 struct channel_connect cctx;
2861 Channel *c;
2862
2863 memset(&hints, 0, sizeof(hints));
2864 hints.ai_family = IPv4or6;
2865 hints.ai_socktype = SOCK_STREAM;
2866 snprintf(strport, sizeof strport, "%d", port);
2867 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2868 error("connect_to %.100s: unknown host (%s)", host,
2869 ssh_gai_strerror(gaierr));
2870 return NULL;
2871 }
2872
2873 cctx.host = xstrdup(host);
2874 cctx.port = port;
2875 cctx.ai = cctx.aitop;
2876
2877 if ((sock = connect_next(&cctx)) == -1) {
2878 error("connect to %.100s port %d failed: %s",
2879 host, port, strerror(errno));
2880 channel_connect_ctx_free(&cctx);
2881 return NULL;
2882 }
2883 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
2884 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
2885 c->connect_ctx = cctx;
2886 return c;
2887}
2888
2889Channel *
2890channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
2891{
2892 int i;
2893
2894 for (i = 0; i < num_permitted_opens; i++) {
2895 if (permitted_opens[i].host_to_connect != NULL &&
2896 permitted_opens[i].listen_port == listen_port) {
2897 return connect_to(
2898 permitted_opens[i].host_to_connect,
2899 permitted_opens[i].port_to_connect, ctype, rname);
2900 }
2901 }
2902 error("WARNING: Server requests forwarding for unknown listen_port %d",
2903 listen_port);
2904 return NULL;
2905}
2906
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002907/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10002908Channel *
2909channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002910{
Damien Miller9b439df2006-07-24 14:04:00 +10002911 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002912
2913 permit = all_opens_permitted;
2914 if (!permit) {
2915 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002916 if (permitted_opens[i].host_to_connect != NULL &&
2917 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002918 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2919 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002920 }
Damien Miller9b439df2006-07-24 14:04:00 +10002921
2922 if (num_adm_permitted_opens > 0) {
2923 permit_adm = 0;
2924 for (i = 0; i < num_adm_permitted_opens; i++)
2925 if (permitted_adm_opens[i].host_to_connect != NULL &&
2926 permitted_adm_opens[i].port_to_connect == port &&
2927 strcmp(permitted_adm_opens[i].host_to_connect, host)
2928 == 0)
2929 permit_adm = 1;
2930 }
2931
2932 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10002933 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002934 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10002935 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002936 }
Damien Millerbd740252008-05-19 15:37:09 +10002937 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002938}
2939
Damien Miller0e220db2004-06-15 10:34:08 +10002940void
2941channel_send_window_changes(void)
2942{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002943 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002944 struct winsize ws;
2945
2946 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002947 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002948 channels[i]->type != SSH_CHANNEL_OPEN)
2949 continue;
2950 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2951 continue;
2952 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002953 packet_put_int((u_int)ws.ws_col);
2954 packet_put_int((u_int)ws.ws_row);
2955 packet_put_int((u_int)ws.ws_xpixel);
2956 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002957 packet_send();
2958 }
2959}
2960
Ben Lindstrome9c99912001-06-09 00:41:05 +00002961/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002962
Damien Miller5428f641999-11-25 11:54:57 +11002963/*
2964 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002965 * Returns 0 and a suitable display number for the DISPLAY variable
2966 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002967 */
Kevin Steves366298c2001-12-19 17:58:01 +00002968int
Damien Miller95c249f2002-02-05 12:11:34 +11002969x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002970 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002971{
Damien Millere7378562001-12-21 14:58:35 +11002972 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002973 int display_number, sock;
2974 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002975 struct addrinfo hints, *ai, *aitop;
2976 char strport[NI_MAXSERV];
2977 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002978
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002979 if (chanids == NULL)
2980 return -1;
2981
Damien Millera34a28b1999-12-14 10:47:15 +11002982 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002983 display_number < MAX_DISPLAYS;
2984 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002985 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002986 memset(&hints, 0, sizeof(hints));
2987 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002988 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002989 hints.ai_socktype = SOCK_STREAM;
2990 snprintf(strport, sizeof strport, "%d", port);
2991 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11002992 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002993 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002994 }
Damien Miller34132e52000-01-14 15:45:46 +11002995 for (ai = aitop; ai; ai = ai->ai_next) {
2996 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2997 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002998 sock = socket(ai->ai_family, ai->ai_socktype,
2999 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003000 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003001 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003002 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003003 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003004 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003005 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003006 debug("x11_create_display_inet: Socket family %d not supported",
3007 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003008 continue;
3009 }
Damien Miller34132e52000-01-14 15:45:46 +11003010 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00003011#ifdef IPV6_V6ONLY
3012 if (ai->ai_family == AF_INET6) {
3013 int on = 1;
3014 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
3015 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
3016 }
3017#endif
Damien Miller4401e452008-06-12 06:05:12 +10003018 if (x11_use_localhost)
3019 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003020 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003021 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003022 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003023
Damien Miller34132e52000-01-14 15:45:46 +11003024 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003025 close(socks[n]);
3026 }
3027 num_socks = 0;
3028 break;
3029 }
3030 socks[num_socks++] = sock;
3031 if (num_socks == NUM_SOCKS)
3032 break;
Damien Miller95def091999-11-25 00:26:21 +11003033 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003034 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003035 if (num_socks > 0)
3036 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003037 }
Damien Miller95def091999-11-25 00:26:21 +11003038 if (display_number >= MAX_DISPLAYS) {
3039 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003040 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003041 }
Damien Miller95def091999-11-25 00:26:21 +11003042 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003043 for (n = 0; n < num_socks; n++) {
3044 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003045 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003046 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003047 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003048 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003049 }
Damien Miller95def091999-11-25 00:26:21 +11003050 }
Damien Miller34132e52000-01-14 15:45:46 +11003051
Damien Miller34132e52000-01-14 15:45:46 +11003052 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003053 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003054 for (n = 0; n < num_socks; n++) {
3055 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003056 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003057 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3058 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003059 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003060 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003061 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003062 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003063 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003064
Kevin Steves366298c2001-12-19 17:58:01 +00003065 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003066 *display_numberp = display_number;
3067 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003068}
3069
Ben Lindstrombba81212001-06-25 05:01:22 +00003070static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00003071connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003072{
Damien Miller95def091999-11-25 00:26:21 +11003073 int sock;
3074 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003075
Damien Miller3afe3752001-12-21 12:39:51 +11003076 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3077 if (sock < 0)
3078 error("socket: %.100s", strerror(errno));
3079 memset(&addr, 0, sizeof(addr));
3080 addr.sun_family = AF_UNIX;
3081 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11003082 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003083 return sock;
3084 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003085 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3086 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003087}
3088
Damien Millerbd483e72000-04-30 10:00:53 +10003089int
3090x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003091{
Damien Miller57c4e872006-03-31 23:11:07 +11003092 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003093 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003094 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003095 struct addrinfo hints, *ai, *aitop;
3096 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003097 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003098
Damien Miller95def091999-11-25 00:26:21 +11003099 /* Try to open a socket for the local X server. */
3100 display = getenv("DISPLAY");
3101 if (!display) {
3102 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003103 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003104 }
Damien Miller5428f641999-11-25 11:54:57 +11003105 /*
3106 * Now we decode the value of the DISPLAY variable and make a
3107 * connection to the real X server.
3108 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003109
Damien Miller5428f641999-11-25 11:54:57 +11003110 /*
3111 * Check if it is a unix domain socket. Unix domain displays are in
3112 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3113 */
Damien Miller95def091999-11-25 00:26:21 +11003114 if (strncmp(display, "unix:", 5) == 0 ||
3115 display[0] == ':') {
3116 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003117 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003118 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003119 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003120 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003121 }
3122 /* Create a socket. */
3123 sock = connect_local_xsocket(display_number);
3124 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003125 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003126
3127 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003128 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003129 }
Damien Miller5428f641999-11-25 11:54:57 +11003130 /*
3131 * Connect to an inet socket. The DISPLAY value is supposedly
3132 * hostname:d[.s], where hostname may also be numeric IP address.
3133 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003134 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003135 cp = strchr(buf, ':');
3136 if (!cp) {
3137 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003138 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003139 }
Damien Miller95def091999-11-25 00:26:21 +11003140 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003141 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003142 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003143 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003144 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003145 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003146 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003147
Damien Miller34132e52000-01-14 15:45:46 +11003148 /* Look up the host address */
3149 memset(&hints, 0, sizeof(hints));
3150 hints.ai_family = IPv4or6;
3151 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003152 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003153 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003154 error("%.100s: unknown host. (%s)", buf,
3155 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003156 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003157 }
Damien Miller34132e52000-01-14 15:45:46 +11003158 for (ai = aitop; ai; ai = ai->ai_next) {
3159 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10003160 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003161 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003162 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003163 continue;
3164 }
3165 /* Connect it to the display. */
3166 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003167 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003168 6000 + display_number, strerror(errno));
3169 close(sock);
3170 continue;
3171 }
3172 /* Success */
3173 break;
Damien Miller34132e52000-01-14 15:45:46 +11003174 }
Damien Miller34132e52000-01-14 15:45:46 +11003175 freeaddrinfo(aitop);
3176 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003177 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003178 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003179 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003180 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003181 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003182 return sock;
3183}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003184
Damien Millerbd483e72000-04-30 10:00:53 +10003185/*
3186 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3187 * the remote channel number. We should do whatever we want, and respond
3188 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3189 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003190
Damien Miller8473dd82006-07-24 14:08:32 +10003191/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003192void
Damien Miller630d6f42002-01-22 23:17:30 +11003193x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003194{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003195 Channel *c = NULL;
3196 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003197 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003198
3199 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003200
3201 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003202
3203 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003204 remote_host = packet_get_string(NULL);
3205 } else {
3206 remote_host = xstrdup("unknown (remote did not supply name)");
3207 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003208 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003209
3210 /* Obtain a connection to the real X display. */
3211 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003212 if (sock != -1) {
3213 /* Allocate a channel for this connection. */
3214 c = channel_new("connected x11 socket",
3215 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3216 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003217 c->remote_id = remote_id;
3218 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003219 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003220 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003221 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003222 /* Send refusal to the remote host. */
3223 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003224 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003225 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003226 /* Send a confirmation to the remote host. */
3227 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003228 packet_put_int(remote_id);
3229 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003230 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003231 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003232}
3233
Damien Miller69b69aa2000-10-28 14:19:58 +11003234/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003235/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003236void
Damien Miller630d6f42002-01-22 23:17:30 +11003237deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003238{
3239 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003240
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003241 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003242 case SSH_SMSG_AGENT_OPEN:
3243 error("Warning: ssh server tried agent forwarding.");
3244 break;
3245 case SSH_SMSG_X11_OPEN:
3246 error("Warning: ssh server tried X11 forwarding.");
3247 break;
3248 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003249 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003250 break;
3251 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003252 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003253 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3254 packet_put_int(rchan);
3255 packet_send();
3256}
3257
Damien Miller5428f641999-11-25 11:54:57 +11003258/*
3259 * Requests forwarding of X11 connections, generates fake authentication
3260 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003261 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003262 */
Damien Miller4af51302000-04-16 11:18:38 +10003263void
Damien Miller17e7ed02005-06-17 12:54:33 +10003264x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003265 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003266{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003267 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003268 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003269 char *new_data;
3270 int screen_number;
3271 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003272 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003273
Damien Millerf92c0792005-07-06 09:45:26 +10003274 if (x11_saved_display == NULL)
3275 x11_saved_display = xstrdup(disp);
3276 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003277 error("x11_request_forwarding_with_spoofing: different "
3278 "$DISPLAY already forwarded");
3279 return;
3280 }
3281
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003282 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003283 if (cp)
3284 cp = strchr(cp, '.');
3285 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003286 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003287 else
3288 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003289
Damien Miller13390022005-07-06 09:44:19 +10003290 if (x11_saved_proto == NULL) {
3291 /* Save protocol name. */
3292 x11_saved_proto = xstrdup(proto);
3293 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003294 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003295 * of the same length.
3296 */
3297 x11_saved_data = xmalloc(data_len);
3298 x11_fake_data = xmalloc(data_len);
3299 for (i = 0; i < data_len; i++) {
3300 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3301 fatal("x11_request_forwarding: bad "
3302 "authentication data: %.100s", data);
3303 if (i % 4 == 0)
3304 rnd = arc4random();
3305 x11_saved_data[i] = value;
3306 x11_fake_data[i] = rnd & 0xff;
3307 rnd >>= 8;
3308 }
3309 x11_saved_data_len = data_len;
3310 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003311 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003312
Damien Miller95def091999-11-25 00:26:21 +11003313 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003314 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003315
Damien Miller95def091999-11-25 00:26:21 +11003316 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003317 if (compat20) {
3318 channel_request_start(client_session_id, "x11-req", 0);
3319 packet_put_char(0); /* XXX bool single connection */
3320 } else {
3321 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3322 }
3323 packet_put_cstring(proto);
3324 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003325 packet_put_int(screen_number);
3326 packet_send();
3327 packet_write_wait();
3328 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003329}
3330
Ben Lindstrome9c99912001-06-09 00:41:05 +00003331
3332/* -- agent forwarding */
3333
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003334/* Sends a message to the server to request authentication fd forwarding. */
3335
Damien Miller4af51302000-04-16 11:18:38 +10003336void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003337auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003338{
Damien Miller95def091999-11-25 00:26:21 +11003339 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3340 packet_send();
3341 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003342}