blob: c539990f64bb1a23fed2c97539aace8fd5fa1860 [file] [log] [blame]
Darren Tucker2fb66ca2008-06-13 04:49:33 +10001/* $OpenBSD: channels.c,v 1.279 2008/06/12 03:40:52 djm 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,
224 int extusage, int nonblock)
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
Damien Miller79438cc2001-02-16 12:34:57 +1100240 /* XXX ugly hack: nonblock is only set by the server */
241 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000242 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100243 c->isatty = 1;
244 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000245 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100246 c->self, c->wfd);
247 }
248 } else {
249 c->isatty = 0;
250 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000251 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100252
Damien Miller69b69aa2000-10-28 14:19:58 +1100253 /* enable nonblocking mode */
254 if (nonblock) {
255 if (rfd != -1)
256 set_nonblock(rfd);
257 if (wfd != -1)
258 set_nonblock(wfd);
259 if (efd != -1)
260 set_nonblock(efd);
261 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262}
263
264/*
265 * Allocate a new channel object and set its type and socket. This will cause
266 * remote_name to be freed.
267 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000268Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000269channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000270 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000271{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000272 int found;
273 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000274 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275
Damien Miller95def091999-11-25 00:26:21 +1100276 /* Do initial allocation if this is the first call. */
277 if (channels_alloc == 0) {
278 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100279 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100280 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000281 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100282 }
283 /* Try to find a free slot where to put the new channel. */
284 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000285 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000287 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100288 break;
289 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000290 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100291 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100292 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000293 if (channels_alloc > 10000)
294 fatal("channel_new: internal error: channels_alloc %d "
295 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100296 channels = xrealloc(channels, channels_alloc + 10,
297 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000298 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100299 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100300 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000301 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100302 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000303 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100304 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100305 buffer_init(&c->input);
306 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000307 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100308 c->ostate = CHAN_OUTPUT_OPEN;
309 c->istate = CHAN_INPUT_OPEN;
310 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100311 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100312 c->self = found;
313 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000314 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000315 c->local_window = window;
316 c->local_window_max = window;
317 c->local_consumed = 0;
318 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100319 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000320 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000321 c->remote_window = 0;
322 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000323 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100324 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000325 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100326 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000327 c->open_confirm = NULL;
328 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000329 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100330 c->output_filter = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000331 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100332 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000333 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000335
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000336static int
337channel_find_maxfd(void)
338{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000339 u_int i;
340 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000341 Channel *c;
342
343 for (i = 0; i < channels_alloc; i++) {
344 c = channels[i];
345 if (c != NULL) {
346 max = MAX(max, c->rfd);
347 max = MAX(max, c->wfd);
348 max = MAX(max, c->efd);
349 }
350 }
351 return max;
352}
353
354int
355channel_close_fd(int *fdp)
356{
357 int ret = 0, fd = *fdp;
358
359 if (fd != -1) {
360 ret = close(fd);
361 *fdp = -1;
362 if (fd == channel_max_fd)
363 channel_max_fd = channel_find_maxfd();
364 }
365 return ret;
366}
367
Damien Miller6f83b8e2000-05-02 09:23:45 +1000368/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000369static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000370channel_close_fds(Channel *c)
371{
Damien Miller0e220db2004-06-15 10:34:08 +1000372 debug3("channel %d: close_fds r %d w %d e %d c %d",
373 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000374
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000375 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000376 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000377 channel_close_fd(&c->rfd);
378 channel_close_fd(&c->wfd);
379 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000380}
381
382/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000383void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000384channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000386 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000387 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000388 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000389
390 for (n = 0, i = 0; i < channels_alloc; i++)
391 if (channels[i])
392 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000393 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000394 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000395
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000396 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000397 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000398 xfree(s);
399
Damien Miller6f83b8e2000-05-02 09:23:45 +1000400 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000401 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000402 if (c->ctl_fd != -1)
403 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000404 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 buffer_free(&c->input);
406 buffer_free(&c->output);
407 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 if (c->remote_name) {
409 xfree(c->remote_name);
410 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100411 }
Damien Millerb84886b2008-05-19 15:05:07 +1000412 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
413 if (cc->abandon_cb != NULL)
414 cc->abandon_cb(c, cc->ctx);
415 TAILQ_REMOVE(&c->status_confirms, cc, entry);
416 bzero(cc, sizeof(*cc));
417 xfree(cc);
418 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000419 channels[c->self] = NULL;
420 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421}
422
Ben Lindstrome9c99912001-06-09 00:41:05 +0000423void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000424channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000425{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000426 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000427
Ben Lindstrom601e4362001-06-21 03:19:23 +0000428 for (i = 0; i < channels_alloc; i++)
429 if (channels[i] != NULL)
430 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000431}
432
433/*
434 * Closes the sockets/fds of all channels. This is used to close extra file
435 * descriptors after a fork.
436 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000438channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000439{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000440 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441
442 for (i = 0; i < channels_alloc; i++)
443 if (channels[i] != NULL)
444 channel_close_fds(channels[i]);
445}
446
447/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000448 * Stop listening to channels.
449 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000450void
451channel_stop_listening(void)
452{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000453 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000454 Channel *c;
455
456 for (i = 0; i < channels_alloc; i++) {
457 c = channels[i];
458 if (c != NULL) {
459 switch (c->type) {
460 case SSH_CHANNEL_AUTH_SOCKET:
461 case SSH_CHANNEL_PORT_LISTENER:
462 case SSH_CHANNEL_RPORT_LISTENER:
463 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000464 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000465 channel_free(c);
466 break;
467 }
468 }
469 }
470}
471
472/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000473 * Returns true if no channel has too much buffered data, and false if one or
474 * more channel is overfull.
475 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000476int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000477channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000478{
479 u_int i;
480 Channel *c;
481
482 for (i = 0; i < channels_alloc; i++) {
483 c = channels[i];
484 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000485#if 0
486 if (!compat20 &&
487 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100488 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000489 c->self, buffer_len(&c->input));
490 return 0;
491 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000492#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000493 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000494 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000495 c->self, buffer_len(&c->output),
496 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000497 return 0;
498 }
499 }
500 }
501 return 1;
502}
503
504/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000505int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000506channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000507{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000508 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000509 Channel *c;
510
511 for (i = 0; i < channels_alloc; i++) {
512 c = channels[i];
513 if (c == NULL)
514 continue;
515 switch (c->type) {
516 case SSH_CHANNEL_X11_LISTENER:
517 case SSH_CHANNEL_PORT_LISTENER:
518 case SSH_CHANNEL_RPORT_LISTENER:
519 case SSH_CHANNEL_CLOSED:
520 case SSH_CHANNEL_AUTH_SOCKET:
521 case SSH_CHANNEL_DYNAMIC:
522 case SSH_CHANNEL_CONNECTING:
523 case SSH_CHANNEL_ZOMBIE:
524 continue;
525 case SSH_CHANNEL_LARVAL:
526 if (!compat20)
527 fatal("cannot happen: SSH_CHANNEL_LARVAL");
528 continue;
529 case SSH_CHANNEL_OPENING:
530 case SSH_CHANNEL_OPEN:
531 case SSH_CHANNEL_X11_OPEN:
532 return 1;
533 case SSH_CHANNEL_INPUT_DRAINING:
534 case SSH_CHANNEL_OUTPUT_DRAINING:
535 if (!compat13)
536 fatal("cannot happen: OUT_DRAIN");
537 return 1;
538 default:
539 fatal("channel_still_open: bad channel type %d", c->type);
540 /* NOTREACHED */
541 }
542 }
543 return 0;
544}
545
546/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000547int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000548channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000549{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000550 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000551 Channel *c;
552
553 for (i = 0; i < channels_alloc; i++) {
554 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000555 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000556 continue;
557 switch (c->type) {
558 case SSH_CHANNEL_CLOSED:
559 case SSH_CHANNEL_DYNAMIC:
560 case SSH_CHANNEL_X11_LISTENER:
561 case SSH_CHANNEL_PORT_LISTENER:
562 case SSH_CHANNEL_RPORT_LISTENER:
563 case SSH_CHANNEL_OPENING:
564 case SSH_CHANNEL_CONNECTING:
565 case SSH_CHANNEL_ZOMBIE:
566 continue;
567 case SSH_CHANNEL_LARVAL:
568 case SSH_CHANNEL_AUTH_SOCKET:
569 case SSH_CHANNEL_OPEN:
570 case SSH_CHANNEL_X11_OPEN:
571 return i;
572 case SSH_CHANNEL_INPUT_DRAINING:
573 case SSH_CHANNEL_OUTPUT_DRAINING:
574 if (!compat13)
575 fatal("cannot happen: OUT_DRAIN");
576 return i;
577 default:
578 fatal("channel_find_open: bad channel type %d", c->type);
579 /* NOTREACHED */
580 }
581 }
582 return -1;
583}
584
585
586/*
587 * Returns a message describing the currently open forwarded connections,
588 * suitable for sending to the client. The message contains crlf pairs for
589 * newlines.
590 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000591char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000592channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000593{
594 Buffer buffer;
595 Channel *c;
596 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000597 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000598
599 buffer_init(&buffer);
600 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
601 buffer_append(&buffer, buf, strlen(buf));
602 for (i = 0; i < channels_alloc; i++) {
603 c = channels[i];
604 if (c == NULL)
605 continue;
606 switch (c->type) {
607 case SSH_CHANNEL_X11_LISTENER:
608 case SSH_CHANNEL_PORT_LISTENER:
609 case SSH_CHANNEL_RPORT_LISTENER:
610 case SSH_CHANNEL_CLOSED:
611 case SSH_CHANNEL_AUTH_SOCKET:
612 case SSH_CHANNEL_ZOMBIE:
613 continue;
614 case SSH_CHANNEL_LARVAL:
615 case SSH_CHANNEL_OPENING:
616 case SSH_CHANNEL_CONNECTING:
617 case SSH_CHANNEL_DYNAMIC:
618 case SSH_CHANNEL_OPEN:
619 case SSH_CHANNEL_X11_OPEN:
620 case SSH_CHANNEL_INPUT_DRAINING:
621 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000622 snprintf(buf, sizeof buf,
623 " #%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 +0000624 c->self, c->remote_name,
625 c->type, c->remote_id,
626 c->istate, buffer_len(&c->input),
627 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000628 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000629 buffer_append(&buffer, buf, strlen(buf));
630 continue;
631 default:
632 fatal("channel_open_message: bad channel type %d", c->type);
633 /* NOTREACHED */
634 }
635 }
636 buffer_append(&buffer, "\0", 1);
637 cp = xstrdup(buffer_ptr(&buffer));
638 buffer_free(&buffer);
639 return cp;
640}
641
642void
643channel_send_open(int id)
644{
645 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000646
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000648 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649 return;
650 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000651 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000652 packet_start(SSH2_MSG_CHANNEL_OPEN);
653 packet_put_cstring(c->ctype);
654 packet_put_int(c->self);
655 packet_put_int(c->local_window);
656 packet_put_int(c->local_maxpacket);
657 packet_send();
658}
659
660void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000661channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000663 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000664
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000666 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 return;
668 }
Damien Miller0e220db2004-06-15 10:34:08 +1000669 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000670 packet_start(SSH2_MSG_CHANNEL_REQUEST);
671 packet_put_int(c->remote_id);
672 packet_put_cstring(service);
673 packet_put_char(wantconfirm);
674}
Damien Miller4f7becb2006-03-26 14:10:14 +1100675
Ben Lindstrome9c99912001-06-09 00:41:05 +0000676void
Damien Millerb84886b2008-05-19 15:05:07 +1000677channel_register_status_confirm(int id, channel_confirm_cb *cb,
678 channel_confirm_abandon_cb *abandon_cb, void *ctx)
679{
680 struct channel_confirm *cc;
681 Channel *c;
682
683 if ((c = channel_lookup(id)) == NULL)
684 fatal("channel_register_expect: %d: bad id", id);
685
686 cc = xmalloc(sizeof(*cc));
687 cc->cb = cb;
688 cc->abandon_cb = abandon_cb;
689 cc->ctx = ctx;
690 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
691}
692
693void
694channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000695{
696 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000697
Ben Lindstrome9c99912001-06-09 00:41:05 +0000698 if (c == NULL) {
Damien Millerb84886b2008-05-19 15:05:07 +1000699 logit("channel_register_open_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000700 return;
701 }
Damien Millerb84886b2008-05-19 15:05:07 +1000702 c->open_confirm = fn;
703 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000704}
Damien Miller4f7becb2006-03-26 14:10:14 +1100705
Ben Lindstrome9c99912001-06-09 00:41:05 +0000706void
Damien Miller39eda6e2005-11-05 14:52:50 +1100707channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708{
Damien Millerd47c62a2005-12-13 19:33:57 +1100709 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000710
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000712 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713 return;
714 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000715 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100716 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000717}
Damien Miller4f7becb2006-03-26 14:10:14 +1100718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719void
720channel_cancel_cleanup(int id)
721{
Damien Millerd47c62a2005-12-13 19:33:57 +1100722 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000723
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000725 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726 return;
727 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000728 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100729 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730}
Damien Miller4f7becb2006-03-26 14:10:14 +1100731
Ben Lindstrome9c99912001-06-09 00:41:05 +0000732void
Damien Miller077b2382005-12-31 16:22:32 +1100733channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000734 channel_outfilter_fn *ofn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735{
736 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000737
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000739 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740 return;
741 }
Damien Miller077b2382005-12-31 16:22:32 +1100742 c->input_filter = ifn;
743 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000744 c->filter_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745}
746
747void
748channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100749 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750{
751 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000752
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
754 fatal("channel_activate for non-larval channel %d.", id);
755 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
756 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100757 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
759 packet_put_int(c->remote_id);
760 packet_put_int(c->local_window);
761 packet_send();
762}
763
Damien Miller5428f641999-11-25 11:54:57 +1100764/*
Damien Millerb38eff82000-04-01 11:09:21 +1000765 * 'channel_pre*' are called just before select() to add any bits relevant to
766 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100767 */
Damien Millerb38eff82000-04-01 11:09:21 +1000768/*
769 * 'channel_post*': perform any appropriate operations for channels which
770 * have events pending.
771 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100772typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000773chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
774chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
775
Damien Miller8473dd82006-07-24 14:08:32 +1000776/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000777static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100778channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000779{
780 FD_SET(c->sock, readset);
781}
782
Damien Miller8473dd82006-07-24 14:08:32 +1000783/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000784static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100785channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000786{
787 debug3("channel %d: waiting for connection", c->self);
788 FD_SET(c->sock, writeset);
789}
790
Ben Lindstrombba81212001-06-25 05:01:22 +0000791static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100792channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000793{
794 if (buffer_len(&c->input) < packet_get_maxsize())
795 FD_SET(c->sock, readset);
796 if (buffer_len(&c->output) > 0)
797 FD_SET(c->sock, writeset);
798}
799
Ben Lindstrombba81212001-06-25 05:01:22 +0000800static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100801channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000802{
Damien Millerde6987c2002-01-22 23:20:40 +1100803 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000804
Damien Miller33b13562000-04-04 14:38:59 +1000805 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100806 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000807 buffer_len(&c->input) < limit &&
808 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000809 FD_SET(c->rfd, readset);
810 if (c->ostate == CHAN_OUTPUT_OPEN ||
811 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
812 if (buffer_len(&c->output) > 0) {
813 FD_SET(c->wfd, writeset);
814 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000815 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000816 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
817 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000818 else
819 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000820 }
821 }
822 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000823 if (compat20 && c->efd != -1 &&
824 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000825 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
826 buffer_len(&c->extended) > 0)
827 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000828 else if (!(c->flags & CHAN_EOF_SENT) &&
829 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000830 buffer_len(&c->extended) < c->remote_window)
831 FD_SET(c->efd, readset);
832 }
Damien Miller0e220db2004-06-15 10:34:08 +1000833 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000834 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000835 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
836 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000837}
838
Damien Miller8473dd82006-07-24 14:08:32 +1000839/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000840static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100841channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000842{
843 if (buffer_len(&c->input) == 0) {
844 packet_start(SSH_MSG_CHANNEL_CLOSE);
845 packet_put_int(c->remote_id);
846 packet_send();
847 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000848 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000849 }
850}
851
Damien Miller8473dd82006-07-24 14:08:32 +1000852/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000853static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100854channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000855{
856 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000857 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000858 else
Damien Millerb38eff82000-04-01 11:09:21 +1000859 FD_SET(c->sock, writeset);
860}
861
862/*
863 * This is a special state for X11 authentication spoofing. An opened X11
864 * connection (when authentication spoofing is being done) remains in this
865 * state until the first packet has been completely read. The authentication
866 * data in that packet is then substituted by the real data if it matches the
867 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000868 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000869 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000870 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000871static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000872x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000873{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000874 u_char *ucp;
875 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000876
877 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000878 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000879 return 0;
880
881 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100882 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000883 if (ucp[0] == 0x42) { /* Byte order MSB first. */
884 proto_len = 256 * ucp[6] + ucp[7];
885 data_len = 256 * ucp[8] + ucp[9];
886 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
887 proto_len = ucp[6] + 256 * ucp[7];
888 data_len = ucp[8] + 256 * ucp[9];
889 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000890 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100891 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000892 return -1;
893 }
894
895 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000896 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000897 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
898 return 0;
899
900 /* Check if authentication protocol matches. */
901 if (proto_len != strlen(x11_saved_proto) ||
902 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000903 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000904 return -1;
905 }
906 /* Check if authentication data matches our fake data. */
907 if (data_len != x11_fake_data_len ||
908 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
909 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000910 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000911 return -1;
912 }
913 /* Check fake data length */
914 if (x11_fake_data_len != x11_saved_data_len) {
915 error("X11 fake_data_len %d != saved_data_len %d",
916 x11_fake_data_len, x11_saved_data_len);
917 return -1;
918 }
919 /*
920 * Received authentication protocol and data match
921 * our fake data. Substitute the fake data with real
922 * data.
923 */
924 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
925 x11_saved_data, x11_saved_data_len);
926 return 1;
927}
928
Ben Lindstrombba81212001-06-25 05:01:22 +0000929static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100930channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000931{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000932 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000933
Damien Millerb38eff82000-04-01 11:09:21 +1000934 if (ret == 1) {
935 /* Start normal processing for the channel. */
936 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000937 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000938 } else if (ret == -1) {
939 /*
940 * We have received an X11 connection that has bad
941 * authentication information.
942 */
Damien Miller996acd22003-04-09 20:59:48 +1000943 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000944 buffer_clear(&c->input);
945 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000946 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000947 c->sock = -1;
948 c->type = SSH_CHANNEL_CLOSED;
949 packet_start(SSH_MSG_CHANNEL_CLOSE);
950 packet_put_int(c->remote_id);
951 packet_send();
952 }
953}
954
Ben Lindstrombba81212001-06-25 05:01:22 +0000955static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100956channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000957{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000958 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000959
960 /* c->force_drain = 1; */
961
Damien Millerb38eff82000-04-01 11:09:21 +1000962 if (ret == 1) {
963 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100964 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000965 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000966 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000967 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100968 chan_read_failed(c);
969 buffer_clear(&c->input);
970 chan_ibuf_empty(c);
971 buffer_clear(&c->output);
972 /* for proto v1, the peer will send an IEOF */
973 if (compat20)
974 chan_write_failed(c);
975 else
976 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000977 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000978 }
979}
980
Ben Lindstromb3921512001-04-11 15:57:50 +0000981/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000982/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000983static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100984channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985{
Damien Millera10f5612002-09-12 09:49:15 +1000986 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000987 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100988 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000989 struct {
990 u_int8_t version;
991 u_int8_t command;
992 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000993 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000994 } s4_req, s4_rsp;
995
Ben Lindstromb3921512001-04-11 15:57:50 +0000996 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000997
998 have = buffer_len(&c->input);
999 len = sizeof(s4_req);
1000 if (have < len)
1001 return 0;
1002 p = buffer_ptr(&c->input);
1003 for (found = 0, i = len; i < have; i++) {
1004 if (p[i] == '\0') {
1005 found = 1;
1006 break;
1007 }
1008 if (i > 1024) {
1009 /* the peer is probably sending garbage */
1010 debug("channel %d: decode socks4: too long",
1011 c->self);
1012 return -1;
1013 }
1014 }
1015 if (!found)
1016 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001017 buffer_get(&c->input, (char *)&s4_req.version, 1);
1018 buffer_get(&c->input, (char *)&s4_req.command, 1);
1019 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001020 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001021 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001022 p = buffer_ptr(&c->input);
1023 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001024 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001025 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001026 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001027 c->self, len, have);
1028 strlcpy(username, p, sizeof(username));
1029 buffer_consume(&c->input, len);
1030 buffer_consume(&c->input, 1); /* trailing '\0' */
1031
Ben Lindstromb3921512001-04-11 15:57:50 +00001032 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001033 strlcpy(c->path, host, sizeof(c->path));
1034 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001035
Damien Millerfbdeece2003-09-02 22:52:31 +10001036 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001037 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001038
Ben Lindstromb3921512001-04-11 15:57:50 +00001039 if (s4_req.command != 1) {
1040 debug("channel %d: cannot handle: socks4 cn %d",
1041 c->self, s4_req.command);
1042 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001043 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001044 s4_rsp.version = 0; /* vn: 0 for reply */
1045 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001046 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001047 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001048 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001049 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001050}
1051
Darren Tucker46471c92003-07-03 13:55:19 +10001052/* try to decode a socks5 header */
1053#define SSH_SOCKS5_AUTHDONE 0x1000
1054#define SSH_SOCKS5_NOAUTH 0x00
1055#define SSH_SOCKS5_IPV4 0x01
1056#define SSH_SOCKS5_DOMAIN 0x03
1057#define SSH_SOCKS5_IPV6 0x04
1058#define SSH_SOCKS5_CONNECT 0x01
1059#define SSH_SOCKS5_SUCCESS 0x00
1060
Damien Miller8473dd82006-07-24 14:08:32 +10001061/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001062static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001063channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001064{
1065 struct {
1066 u_int8_t version;
1067 u_int8_t command;
1068 u_int8_t reserved;
1069 u_int8_t atyp;
1070 } s5_req, s5_rsp;
1071 u_int16_t dest_port;
1072 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001073 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001074
1075 debug2("channel %d: decode socks5", c->self);
1076 p = buffer_ptr(&c->input);
1077 if (p[0] != 0x05)
1078 return -1;
1079 have = buffer_len(&c->input);
1080 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1081 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001082 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001083 return 0;
1084 nmethods = p[1];
1085 if (have < nmethods + 2)
1086 return 0;
1087 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001088 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001089 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001090 found = 1;
1091 break;
1092 }
1093 }
1094 if (!found) {
1095 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1096 c->self);
1097 return -1;
1098 }
1099 buffer_consume(&c->input, nmethods + 2);
1100 buffer_put_char(&c->output, 0x05); /* version */
1101 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1102 FD_SET(c->sock, writeset);
1103 c->flags |= SSH_SOCKS5_AUTHDONE;
1104 debug2("channel %d: socks5 auth done", c->self);
1105 return 0; /* need more */
1106 }
1107 debug2("channel %d: socks5 post auth", c->self);
1108 if (have < sizeof(s5_req)+1)
1109 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001110 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001111 if (s5_req.version != 0x05 ||
1112 s5_req.command != SSH_SOCKS5_CONNECT ||
1113 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001114 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001115 return -1;
1116 }
Darren Tucker47eede72005-03-14 23:08:12 +11001117 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001118 case SSH_SOCKS5_IPV4:
1119 addrlen = 4;
1120 af = AF_INET;
1121 break;
1122 case SSH_SOCKS5_DOMAIN:
1123 addrlen = p[sizeof(s5_req)];
1124 af = -1;
1125 break;
1126 case SSH_SOCKS5_IPV6:
1127 addrlen = 16;
1128 af = AF_INET6;
1129 break;
1130 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001131 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001132 return -1;
1133 }
Damien Miller0f077072006-07-10 22:21:02 +10001134 need = sizeof(s5_req) + addrlen + 2;
1135 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1136 need++;
1137 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001138 return 0;
1139 buffer_consume(&c->input, sizeof(s5_req));
1140 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1141 buffer_consume(&c->input, 1); /* host string length */
1142 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1143 buffer_get(&c->input, (char *)&dest_port, 2);
1144 dest_addr[addrlen] = '\0';
1145 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001146 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001147 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1148 return -1;
1149 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001150
Damien Millerfbdeece2003-09-02 22:52:31 +10001151 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001152 c->self, c->path, c->host_port, s5_req.command);
1153
1154 s5_rsp.version = 0x05;
1155 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1156 s5_rsp.reserved = 0; /* ignored */
1157 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1158 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1159 dest_port = 0; /* ignored */
1160
Damien Millera0fdce92006-03-26 14:28:50 +11001161 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1162 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1163 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001164 return 1;
1165}
1166
Ben Lindstromb3921512001-04-11 15:57:50 +00001167/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001168static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001169channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001170{
1171 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001172 u_int have;
1173 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001174
1175 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001176 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001177 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001178 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001179 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001180 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001181 /* need more */
1182 FD_SET(c->sock, readset);
1183 return;
1184 }
1185 /* try to guess the protocol */
1186 p = buffer_ptr(&c->input);
1187 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001188 case 0x04:
1189 ret = channel_decode_socks4(c, readset, writeset);
1190 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001191 case 0x05:
1192 ret = channel_decode_socks5(c, readset, writeset);
1193 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001194 default:
1195 ret = -1;
1196 break;
1197 }
1198 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001199 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001200 } else if (ret == 0) {
1201 debug2("channel %d: pre_dynamic: need more", c->self);
1202 /* need more */
1203 FD_SET(c->sock, readset);
1204 } else {
1205 /* switch to the next state */
1206 c->type = SSH_CHANNEL_OPENING;
1207 port_open_helper(c, "direct-tcpip");
1208 }
1209}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001210
Damien Millerb38eff82000-04-01 11:09:21 +10001211/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001212/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001213static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001214channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001215{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001216 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001217 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001218 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001219 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001220 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001221 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001222
1223 if (FD_ISSET(c->sock, readset)) {
1224 debug("X11 connection requested.");
1225 addrlen = sizeof(addr);
1226 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001227 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001228 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001229 channel_close_fd(&c->sock);
1230 chan_mark_dead(c);
1231 }
Damien Millerb38eff82000-04-01 11:09:21 +10001232 if (newsock < 0) {
1233 error("accept: %.100s", strerror(errno));
1234 return;
1235 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001236 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001237 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001238 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001239 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001240 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001241
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001242 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001243 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001244 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001245 if (compat20) {
1246 packet_start(SSH2_MSG_CHANNEL_OPEN);
1247 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001248 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001249 packet_put_int(nc->local_window_max);
1250 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001251 /* originator ipaddr and port */
1252 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001253 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001254 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001255 } else {
1256 packet_put_int(remote_port);
1257 }
Damien Millerbd483e72000-04-30 10:00:53 +10001258 packet_send();
1259 } else {
1260 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001261 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001262 if (packet_get_protocol_flags() &
1263 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001264 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001265 packet_send();
1266 }
Damien Millerd83ff352001-01-30 09:19:34 +11001267 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001268 }
1269}
1270
Ben Lindstrombba81212001-06-25 05:01:22 +00001271static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001272port_open_helper(Channel *c, char *rtype)
1273{
1274 int direct;
1275 char buf[1024];
1276 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001277 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001278
1279 direct = (strcmp(rtype, "direct-tcpip") == 0);
1280
1281 snprintf(buf, sizeof buf,
1282 "%s: listening port %d for %.100s port %d, "
1283 "connect from %.200s port %d",
1284 rtype, c->listening_port, c->path, c->host_port,
1285 remote_ipaddr, remote_port);
1286
1287 xfree(c->remote_name);
1288 c->remote_name = xstrdup(buf);
1289
1290 if (compat20) {
1291 packet_start(SSH2_MSG_CHANNEL_OPEN);
1292 packet_put_cstring(rtype);
1293 packet_put_int(c->self);
1294 packet_put_int(c->local_window_max);
1295 packet_put_int(c->local_maxpacket);
1296 if (direct) {
1297 /* target host, port */
1298 packet_put_cstring(c->path);
1299 packet_put_int(c->host_port);
1300 } else {
1301 /* listen address, port */
1302 packet_put_cstring(c->path);
1303 packet_put_int(c->listening_port);
1304 }
1305 /* originator host and port */
1306 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001307 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001308 packet_send();
1309 } else {
1310 packet_start(SSH_MSG_PORT_OPEN);
1311 packet_put_int(c->self);
1312 packet_put_cstring(c->path);
1313 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001314 if (packet_get_protocol_flags() &
1315 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001316 packet_put_cstring(c->remote_name);
1317 packet_send();
1318 }
1319 xfree(remote_ipaddr);
1320}
1321
Damien Miller5e7fd072005-11-05 14:53:39 +11001322static void
1323channel_set_reuseaddr(int fd)
1324{
1325 int on = 1;
1326
1327 /*
1328 * Set socket options.
1329 * Allow local port reuse in TIME_WAIT.
1330 */
1331 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1332 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1333}
1334
Damien Millerb38eff82000-04-01 11:09:21 +10001335/*
1336 * This socket is listening for connections to a forwarded TCP/IP port.
1337 */
Damien Miller8473dd82006-07-24 14:08:32 +10001338/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001339static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001340channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001341{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001342 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001343 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001344 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001345 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001346 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001347
Damien Millerb38eff82000-04-01 11:09:21 +10001348 if (FD_ISSET(c->sock, readset)) {
1349 debug("Connection to port %d forwarding "
1350 "to %.100s port %d requested.",
1351 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001352
Damien Miller4623a752001-10-10 15:03:58 +10001353 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1354 nextstate = SSH_CHANNEL_OPENING;
1355 rtype = "forwarded-tcpip";
1356 } else {
1357 if (c->host_port == 0) {
1358 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001359 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001360 } else {
1361 nextstate = SSH_CHANNEL_OPENING;
1362 rtype = "direct-tcpip";
1363 }
1364 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001365
Damien Millerb38eff82000-04-01 11:09:21 +10001366 addrlen = sizeof(addr);
1367 newsock = accept(c->sock, &addr, &addrlen);
1368 if (newsock < 0) {
1369 error("accept: %.100s", strerror(errno));
1370 return;
1371 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001372 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001373 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1374 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001375 nc->listening_port = c->listening_port;
1376 nc->host_port = c->host_port;
1377 strlcpy(nc->path, c->path, sizeof(nc->path));
1378
Damien Miller4623a752001-10-10 15:03:58 +10001379 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1380 /*
1381 * do not call the channel_post handler until
1382 * this flag has been reset by a pre-handler.
1383 * otherwise the FD_ISSET calls might overflow
1384 */
1385 nc->delayed = 1;
1386 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001387 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001388 }
Damien Millerb38eff82000-04-01 11:09:21 +10001389 }
1390}
1391
1392/*
1393 * This is the authentication agent socket listening for connections from
1394 * clients.
1395 */
Damien Miller8473dd82006-07-24 14:08:32 +10001396/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001397static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001398channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001399{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001400 Channel *nc;
1401 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001402 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001403 socklen_t addrlen;
1404
1405 if (FD_ISSET(c->sock, readset)) {
1406 addrlen = sizeof(addr);
1407 newsock = accept(c->sock, &addr, &addrlen);
1408 if (newsock < 0) {
1409 error("accept from auth socket: %.100s", strerror(errno));
1410 return;
1411 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001412 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001413 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1414 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001415 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001416 if (compat20) {
1417 packet_start(SSH2_MSG_CHANNEL_OPEN);
1418 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001419 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001420 packet_put_int(c->local_window_max);
1421 packet_put_int(c->local_maxpacket);
1422 } else {
1423 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001424 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001425 }
Damien Millerb38eff82000-04-01 11:09:21 +10001426 packet_send();
1427 }
1428}
1429
Damien Miller8473dd82006-07-24 14:08:32 +10001430/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001431static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001432channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001433{
Damien Millerbd740252008-05-19 15:37:09 +10001434 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001435 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001436
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001437 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001438 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001439 err = errno;
1440 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001441 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001442 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001443 debug("channel %d: connected to %s port %d",
1444 c->self, c->connect_ctx.host, c->connect_ctx.port);
1445 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001446 c->type = SSH_CHANNEL_OPEN;
1447 if (compat20) {
1448 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1449 packet_put_int(c->remote_id);
1450 packet_put_int(c->self);
1451 packet_put_int(c->local_window);
1452 packet_put_int(c->local_maxpacket);
1453 } else {
1454 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1455 packet_put_int(c->remote_id);
1456 packet_put_int(c->self);
1457 }
1458 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001459 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001460 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001461 /* Try next address, if any */
1462 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1463 close(c->sock);
1464 c->sock = c->rfd = c->wfd = sock;
1465 channel_max_fd = channel_find_maxfd();
1466 return;
1467 }
1468 /* Exhausted all addresses */
1469 error("connect_to %.100s port %d: failed.",
1470 c->connect_ctx.host, c->connect_ctx.port);
1471 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001472 if (compat20) {
1473 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1474 packet_put_int(c->remote_id);
1475 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1476 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1477 packet_put_cstring(strerror(err));
1478 packet_put_cstring("");
1479 }
1480 } else {
1481 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1482 packet_put_int(c->remote_id);
1483 }
1484 chan_mark_dead(c);
1485 }
1486 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001487 }
1488}
1489
Damien Miller8473dd82006-07-24 14:08:32 +10001490/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001491static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001492channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001493{
Darren Tucker11327cc2005-03-14 23:22:25 +11001494 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001495 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001496
Damien Miller835284b2007-06-11 13:03:16 +10001497 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1498 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001499 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001500 len = read(c->rfd, buf, sizeof(buf));
Damien Miller835284b2007-06-11 13:03:16 +10001501 if (len < 0 && (errno == EINTR || (errno == EAGAIN && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001502 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001503#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001504 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001505#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001506 if ((!c->isatty && len <= 0) ||
1507 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001508#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001509 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001510 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001511 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001512 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001513 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001514 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001515 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001516 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001517 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001518 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001519 } else {
1520 chan_read_failed(c);
1521 }
1522 return -1;
1523 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001524 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001525 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001526 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001527 chan_read_failed(c);
1528 }
Damien Millerd27b9472005-12-13 19:29:02 +11001529 } else if (c->datagram) {
1530 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001531 } else {
1532 buffer_append(&c->input, buf, len);
1533 }
Damien Millerb38eff82000-04-01 11:09:21 +10001534 }
1535 return 1;
1536}
Damien Miller4f7becb2006-03-26 14:10:14 +11001537
Damien Miller8473dd82006-07-24 14:08:32 +10001538/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001539static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001540channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001541{
Ben Lindstrome229b252001-03-05 06:28:06 +00001542 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001543 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001544 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001545 int len;
1546
1547 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001548 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001549 FD_ISSET(c->wfd, writeset) &&
1550 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001551 if (c->output_filter != NULL) {
1552 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1553 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001554 if (c->type != SSH_CHANNEL_OPEN)
1555 chan_mark_dead(c);
1556 else
1557 chan_write_failed(c);
1558 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001559 }
1560 } else if (c->datagram) {
1561 buf = data = buffer_get_string(&c->output, &dlen);
1562 } else {
1563 buf = data = buffer_ptr(&c->output);
1564 dlen = buffer_len(&c->output);
1565 }
1566
Damien Millerd27b9472005-12-13 19:29:02 +11001567 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001568 /* ignore truncated writes, datagrams might get lost */
1569 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001570 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001571 xfree(data);
1572 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1573 return 1;
1574 if (len <= 0) {
1575 if (c->type != SSH_CHANNEL_OPEN)
1576 chan_mark_dead(c);
1577 else
1578 chan_write_failed(c);
1579 return -1;
1580 }
1581 return 1;
1582 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001583#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001584 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001585 if (compat20 && c->wfd_isatty)
1586 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001587#endif
Damien Miller077b2382005-12-31 16:22:32 +11001588
1589 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001590 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1591 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001592 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001593 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001594 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001595 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001596 return -1;
1597 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001598 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001599 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001600 c->type = SSH_CHANNEL_INPUT_DRAINING;
1601 } else {
1602 chan_write_failed(c);
1603 }
1604 return -1;
1605 }
Damien Miller077b2382005-12-31 16:22:32 +11001606 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001607 if (tcgetattr(c->wfd, &tio) == 0 &&
1608 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1609 /*
1610 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001611 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001612 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001613 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001614 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001615 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001616 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001617 }
1618 }
Damien Millerb38eff82000-04-01 11:09:21 +10001619 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001620 if (compat20 && len > 0) {
1621 c->local_consumed += len;
1622 }
1623 }
1624 return 1;
1625}
Damien Miller4f7becb2006-03-26 14:10:14 +11001626
Ben Lindstrombba81212001-06-25 05:01:22 +00001627static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001628channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001629{
Darren Tucker11327cc2005-03-14 23:22:25 +11001630 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001631 int len;
1632
Damien Miller1383bd82000-04-06 12:32:37 +10001633/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001634 if (c->efd != -1) {
1635 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1636 FD_ISSET(c->efd, writeset) &&
1637 buffer_len(&c->extended) > 0) {
1638 len = write(c->efd, buffer_ptr(&c->extended),
1639 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001640 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001641 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001642 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1643 return 1;
1644 if (len <= 0) {
1645 debug2("channel %d: closing write-efd %d",
1646 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001647 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001648 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001649 buffer_consume(&c->extended, len);
1650 c->local_consumed += len;
1651 }
1652 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001653 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001654 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001655 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001656 c->self, len, c->efd);
Damien Millere42bd242007-01-29 10:16:28 +11001657 if (len < 0 && (errno == EINTR ||
1658 (errno == EAGAIN && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001659 return 1;
1660 if (len <= 0) {
1661 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001662 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001663 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001664 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001665 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001666 }
Damien Miller33b13562000-04-04 14:38:59 +10001667 }
1668 }
1669 return 1;
1670}
Damien Miller4f7becb2006-03-26 14:10:14 +11001671
Damien Miller8473dd82006-07-24 14:08:32 +10001672/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001673static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001674channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001675{
1676 char buf[16];
1677 int len;
1678
1679 /* Monitor control fd to detect if the slave client exits */
1680 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1681 len = read(c->ctl_fd, buf, sizeof(buf));
1682 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1683 return 1;
1684 if (len <= 0) {
1685 debug2("channel %d: ctl read<=0", c->self);
1686 if (c->type != SSH_CHANNEL_OPEN) {
1687 debug2("channel %d: not open", c->self);
1688 chan_mark_dead(c);
1689 return -1;
1690 } else {
1691 chan_read_failed(c);
1692 chan_write_failed(c);
1693 }
1694 return -1;
1695 } else
1696 fatal("%s: unexpected data on ctl fd", __func__);
1697 }
1698 return 1;
1699}
Damien Miller4f7becb2006-03-26 14:10:14 +11001700
Damien Miller0e220db2004-06-15 10:34:08 +10001701static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001702channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001703{
Ben Lindstromb3921512001-04-11 15:57:50 +00001704 if (c->type == SSH_CHANNEL_OPEN &&
1705 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001706 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001707 c->local_maxpacket*3) ||
1708 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001709 c->local_consumed > 0) {
1710 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1711 packet_put_int(c->remote_id);
1712 packet_put_int(c->local_consumed);
1713 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001714 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001715 c->self, c->local_window,
1716 c->local_consumed);
1717 c->local_window += c->local_consumed;
1718 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001719 }
1720 return 1;
1721}
1722
Ben Lindstrombba81212001-06-25 05:01:22 +00001723static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001724channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001725{
Damien Miller4623a752001-10-10 15:03:58 +10001726 if (c->delayed)
1727 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001728 channel_handle_rfd(c, readset, writeset);
1729 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001730 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001731 return;
Damien Miller33b13562000-04-04 14:38:59 +10001732 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001733 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001734 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001735}
1736
Damien Miller8473dd82006-07-24 14:08:32 +10001737/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001738static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001739channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001740{
1741 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001742
Damien Millerb38eff82000-04-01 11:09:21 +10001743 /* Send buffered output data to the socket. */
1744 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1745 len = write(c->sock, buffer_ptr(&c->output),
1746 buffer_len(&c->output));
1747 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001748 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001749 else
1750 buffer_consume(&c->output, len);
1751 }
1752}
1753
Ben Lindstrombba81212001-06-25 05:01:22 +00001754static void
Damien Miller33b13562000-04-04 14:38:59 +10001755channel_handler_init_20(void)
1756{
Damien Millerde6987c2002-01-22 23:20:40 +11001757 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001758 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001759 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001760 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001761 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001762 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001763 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001764 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001765
Damien Millerde6987c2002-01-22 23:20:40 +11001766 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001767 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001768 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001769 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001770 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001771 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001772 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001773}
1774
Ben Lindstrombba81212001-06-25 05:01:22 +00001775static void
Damien Millerb38eff82000-04-01 11:09:21 +10001776channel_handler_init_13(void)
1777{
1778 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1779 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1780 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1781 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1782 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1783 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1784 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001785 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001786 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001787
Damien Millerde6987c2002-01-22 23:20:40 +11001788 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001789 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1790 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1791 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1792 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001793 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001794 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001795}
1796
Ben Lindstrombba81212001-06-25 05:01:22 +00001797static void
Damien Millerb38eff82000-04-01 11:09:21 +10001798channel_handler_init_15(void)
1799{
Damien Millerde6987c2002-01-22 23:20:40 +11001800 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001801 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001802 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1803 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1804 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001805 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001806 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001807
1808 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1809 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1810 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001811 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001812 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001813 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001814}
1815
Ben Lindstrombba81212001-06-25 05:01:22 +00001816static void
Damien Millerb38eff82000-04-01 11:09:21 +10001817channel_handler_init(void)
1818{
1819 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001820
Damien Miller9f0f5c62001-12-21 14:45:46 +11001821 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001822 channel_pre[i] = NULL;
1823 channel_post[i] = NULL;
1824 }
Damien Miller33b13562000-04-04 14:38:59 +10001825 if (compat20)
1826 channel_handler_init_20();
1827 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001828 channel_handler_init_13();
1829 else
1830 channel_handler_init_15();
1831}
1832
Damien Miller3ec27592001-10-12 11:35:04 +10001833/* gc dead channels */
1834static void
1835channel_garbage_collect(Channel *c)
1836{
1837 if (c == NULL)
1838 return;
1839 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001840 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001841 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001842 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001843 c->detach_user(c->self, NULL);
1844 /* if we still have a callback */
1845 if (c->detach_user != NULL)
1846 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001847 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001848 }
1849 if (!chan_is_dead(c, 1))
1850 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001851 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001852 channel_free(c);
1853}
1854
Ben Lindstrombba81212001-06-25 05:01:22 +00001855static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001856channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001857{
1858 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001859 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001860 Channel *c;
1861
1862 if (!did_init) {
1863 channel_handler_init();
1864 did_init = 1;
1865 }
1866 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001867 c = channels[i];
1868 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001869 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001870 if (ftab[c->type] != NULL)
1871 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001872 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001873 }
1874}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001875
Ben Lindstrome9c99912001-06-09 00:41:05 +00001876/*
1877 * Allocate/update select bitmasks and add any bits relevant to channels in
1878 * select bitmasks.
1879 */
Damien Miller4af51302000-04-16 11:18:38 +10001880void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001881channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001882 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001883{
Damien Miller36812092006-03-26 14:22:47 +11001884 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001885
1886 n = MAX(*maxfdp, channel_max_fd);
1887
Damien Miller36812092006-03-26 14:22:47 +11001888 nfdset = howmany(n+1, NFDBITS);
1889 /* Explicitly test here, because xrealloc isn't always called */
1890 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1891 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1892 sz = nfdset * sizeof(fd_mask);
1893
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001894 /* perhaps check sz < nalloc/2 and shrink? */
1895 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001896 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1897 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001898 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001899 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001900 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001901 memset(*readsetp, 0, sz);
1902 memset(*writesetp, 0, sz);
1903
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001904 if (!rekeying)
1905 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001906}
1907
Ben Lindstrome9c99912001-06-09 00:41:05 +00001908/*
1909 * After select, perform any appropriate operations for channels which have
1910 * events pending.
1911 */
Damien Miller4af51302000-04-16 11:18:38 +10001912void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001913channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001914{
Damien Millerb38eff82000-04-01 11:09:21 +10001915 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001916}
1917
Ben Lindstrome9c99912001-06-09 00:41:05 +00001918
Damien Miller5e953212001-01-30 09:14:00 +11001919/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001920void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001921channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001922{
Damien Millerb38eff82000-04-01 11:09:21 +10001923 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001924 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001925
Damien Miller95def091999-11-25 00:26:21 +11001926 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001927 c = channels[i];
1928 if (c == NULL)
1929 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001930
Ben Lindstrome9c99912001-06-09 00:41:05 +00001931 /*
1932 * We are only interested in channels that can have buffered
1933 * incoming data.
1934 */
Damien Miller34132e52000-01-14 15:45:46 +11001935 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001936 if (c->type != SSH_CHANNEL_OPEN &&
1937 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001938 continue;
1939 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001940 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001941 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001942 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001943 if (compat20 &&
1944 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001945 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001946 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001947 continue;
1948 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001949
Damien Miller95def091999-11-25 00:26:21 +11001950 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001951 if ((c->istate == CHAN_INPUT_OPEN ||
1952 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1953 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001954 if (c->datagram) {
1955 if (len > 0) {
1956 u_char *data;
1957 u_int dlen;
1958
1959 data = buffer_get_string(&c->input,
1960 &dlen);
1961 packet_start(SSH2_MSG_CHANNEL_DATA);
1962 packet_put_int(c->remote_id);
1963 packet_put_string(data, dlen);
1964 packet_send();
1965 c->remote_window -= dlen + 4;
1966 xfree(data);
1967 }
1968 continue;
1969 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001970 /*
1971 * Send some data for the other side over the secure
1972 * connection.
1973 */
Damien Miller33b13562000-04-04 14:38:59 +10001974 if (compat20) {
1975 if (len > c->remote_window)
1976 len = c->remote_window;
1977 if (len > c->remote_maxpacket)
1978 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001979 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001980 if (packet_is_interactive()) {
1981 if (len > 1024)
1982 len = 512;
1983 } else {
1984 /* Keep the packets at reasonable size. */
1985 if (len > packet_get_maxsize()/2)
1986 len = packet_get_maxsize()/2;
1987 }
Damien Miller95def091999-11-25 00:26:21 +11001988 }
Damien Millerb38eff82000-04-01 11:09:21 +10001989 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001990 packet_start(compat20 ?
1991 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001992 packet_put_int(c->remote_id);
1993 packet_put_string(buffer_ptr(&c->input), len);
1994 packet_send();
1995 buffer_consume(&c->input, len);
1996 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001997 }
1998 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001999 if (compat13)
2000 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002001 /*
2002 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002003 * tell peer, that we will not send more data: send IEOF.
2004 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002005 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002006 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002007 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2008 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002009 else
2010 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002011 }
Damien Miller33b13562000-04-04 14:38:59 +10002012 /* Send extended data, i.e. stderr */
2013 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002014 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002015 c->remote_window > 0 &&
2016 (len = buffer_len(&c->extended)) > 0 &&
2017 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002018 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002019 c->self, c->remote_window, buffer_len(&c->extended),
2020 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002021 if (len > c->remote_window)
2022 len = c->remote_window;
2023 if (len > c->remote_maxpacket)
2024 len = c->remote_maxpacket;
2025 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2026 packet_put_int(c->remote_id);
2027 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2028 packet_put_string(buffer_ptr(&c->extended), len);
2029 packet_send();
2030 buffer_consume(&c->extended, len);
2031 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002032 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002033 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002034 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002035}
2036
Ben Lindstrome9c99912001-06-09 00:41:05 +00002037
2038/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002039
2040/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002041void
Damien Miller630d6f42002-01-22 23:17:30 +11002042channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002043{
Damien Miller34132e52000-01-14 15:45:46 +11002044 int id;
Damien Miller95def091999-11-25 00:26:21 +11002045 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002046 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002047 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002048
Damien Miller95def091999-11-25 00:26:21 +11002049 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002050 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002051 c = channel_lookup(id);
2052 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002053 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002054
Damien Miller95def091999-11-25 00:26:21 +11002055 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002056 if (c->type != SSH_CHANNEL_OPEN &&
2057 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002058 return;
2059
Damien Miller95def091999-11-25 00:26:21 +11002060 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002061 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002062
Damien Millera04ad492004-01-21 11:02:09 +11002063 /*
2064 * Ignore data for protocol > 1.3 if output end is no longer open.
2065 * For protocol 2 the sending side is reducing its window as it sends
2066 * data, so we must 'fake' consumption of the data in order to ensure
2067 * that window updates are sent back. Otherwise the connection might
2068 * deadlock.
2069 */
2070 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2071 if (compat20) {
2072 c->local_window -= data_len;
2073 c->local_consumed += data_len;
2074 }
Damien Millera04ad492004-01-21 11:02:09 +11002075 return;
2076 }
2077
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002078 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002079 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002080 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002081 c->self, data_len, c->local_maxpacket);
2082 }
2083 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002084 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002085 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002086 return;
2087 }
2088 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002089 }
Damien Millerd27b9472005-12-13 19:29:02 +11002090 if (c->datagram)
2091 buffer_put_string(&c->output, data, data_len);
2092 else
2093 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002094 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002095}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002096
Damien Millerd79b4242006-03-31 23:11:44 +11002097/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002098void
Damien Miller630d6f42002-01-22 23:17:30 +11002099channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002100{
2101 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002102 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002103 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002104 Channel *c;
2105
2106 /* Get the channel number and verify it. */
2107 id = packet_get_int();
2108 c = channel_lookup(id);
2109
2110 if (c == NULL)
2111 packet_disconnect("Received extended_data for bad channel %d.", id);
2112 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002113 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002114 return;
2115 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002116 if (c->flags & CHAN_EOF_RCVD) {
2117 if (datafellows & SSH_BUG_EXTEOF)
2118 debug("channel %d: accepting ext data after eof", id);
2119 else
2120 packet_disconnect("Received extended_data after EOF "
2121 "on channel %d.", id);
2122 }
Damien Miller33b13562000-04-04 14:38:59 +10002123 tcode = packet_get_int();
2124 if (c->efd == -1 ||
2125 c->extended_usage != CHAN_EXTENDED_WRITE ||
2126 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002127 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002128 return;
2129 }
2130 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002131 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002132 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002133 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002134 c->self, data_len, c->local_window);
2135 xfree(data);
2136 return;
2137 }
Damien Millerd3444942000-09-30 14:20:03 +11002138 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002139 c->local_window -= data_len;
2140 buffer_append(&c->extended, data, data_len);
2141 xfree(data);
2142}
2143
Damien Millerd79b4242006-03-31 23:11:44 +11002144/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002145void
Damien Miller630d6f42002-01-22 23:17:30 +11002146channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002147{
2148 int id;
2149 Channel *c;
2150
Damien Millerb38eff82000-04-01 11:09:21 +10002151 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002152 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002153 c = channel_lookup(id);
2154 if (c == NULL)
2155 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2156 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002157
2158 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002159 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002160 debug("channel %d: FORCE input drain", c->self);
2161 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002162 if (buffer_len(&c->input) == 0)
2163 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002164 }
2165
Damien Millerb38eff82000-04-01 11:09:21 +10002166}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167
Damien Millerd79b4242006-03-31 23:11:44 +11002168/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002169void
Damien Miller630d6f42002-01-22 23:17:30 +11002170channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171{
Damien Millerb38eff82000-04-01 11:09:21 +10002172 int id;
2173 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002174
Damien Millerb38eff82000-04-01 11:09:21 +10002175 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002176 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002177 c = channel_lookup(id);
2178 if (c == NULL)
2179 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002180
2181 /*
2182 * Send a confirmation that we have closed the channel and no more
2183 * data is coming for it.
2184 */
Damien Miller95def091999-11-25 00:26:21 +11002185 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002186 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002187 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002188
Damien Miller5428f641999-11-25 11:54:57 +11002189 /*
2190 * If the channel is in closed state, we have sent a close request,
2191 * and the other side will eventually respond with a confirmation.
2192 * Thus, we cannot free the channel here, because then there would be
2193 * no-one to receive the confirmation. The channel gets freed when
2194 * the confirmation arrives.
2195 */
Damien Millerb38eff82000-04-01 11:09:21 +10002196 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002197 /*
2198 * Not a closed channel - mark it as draining, which will
2199 * cause it to be freed later.
2200 */
Damien Miller76765c02002-01-22 23:21:15 +11002201 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002202 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002203 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002204}
2205
Damien Millerb38eff82000-04-01 11:09:21 +10002206/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002207/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002208void
Damien Miller630d6f42002-01-22 23:17:30 +11002209channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002210{
Damien Millerb38eff82000-04-01 11:09:21 +10002211 int id = packet_get_int();
2212 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002213
Damien Miller48b03fc2002-01-22 23:11:40 +11002214 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002215 if (c == NULL)
2216 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2217 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002218}
2219
Damien Millerd79b4242006-03-31 23:11:44 +11002220/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002221void
Damien Miller630d6f42002-01-22 23:17:30 +11002222channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002223{
2224 int id = packet_get_int();
2225 Channel *c = channel_lookup(id);
2226
Damien Miller48b03fc2002-01-22 23:11:40 +11002227 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002228 if (c == NULL)
2229 packet_disconnect("Received close confirmation for "
2230 "out-of-range channel %d.", id);
2231 if (c->type != SSH_CHANNEL_CLOSED)
2232 packet_disconnect("Received close confirmation for "
2233 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002234 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002235}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002236
Damien Millerd79b4242006-03-31 23:11:44 +11002237/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002238void
Damien Miller630d6f42002-01-22 23:17:30 +11002239channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240{
Damien Millerb38eff82000-04-01 11:09:21 +10002241 int id, remote_id;
2242 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002243
Damien Millerb38eff82000-04-01 11:09:21 +10002244 id = packet_get_int();
2245 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002246
Damien Millerb38eff82000-04-01 11:09:21 +10002247 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2248 packet_disconnect("Received open confirmation for "
2249 "non-opening channel %d.", id);
2250 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002251 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002252 c->remote_id = remote_id;
2253 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002254
2255 if (compat20) {
2256 c->remote_window = packet_get_int();
2257 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002258 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002259 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002260 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002261 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002262 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002263 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002264 c->remote_window, c->remote_maxpacket);
2265 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002266 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267}
2268
Ben Lindstrombba81212001-06-25 05:01:22 +00002269static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002270reason2txt(int reason)
2271{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002272 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002273 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2274 return "administratively prohibited";
2275 case SSH2_OPEN_CONNECT_FAILED:
2276 return "connect failed";
2277 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2278 return "unknown channel type";
2279 case SSH2_OPEN_RESOURCE_SHORTAGE:
2280 return "resource shortage";
2281 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002282 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002283}
2284
Damien Millerd79b4242006-03-31 23:11:44 +11002285/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002286void
Damien Miller630d6f42002-01-22 23:17:30 +11002287channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002288{
Kevin Steves12057502001-02-05 14:54:34 +00002289 int id, reason;
2290 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002291 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002292
Damien Millerb38eff82000-04-01 11:09:21 +10002293 id = packet_get_int();
2294 c = channel_lookup(id);
2295
2296 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2297 packet_disconnect("Received open failure for "
2298 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002299 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002300 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002301 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002302 msg = packet_get_string(NULL);
2303 lang = packet_get_string(NULL);
2304 }
Damien Miller996acd22003-04-09 20:59:48 +10002305 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002306 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002307 if (msg != NULL)
2308 xfree(msg);
2309 if (lang != NULL)
2310 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002311 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002312 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002313 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002314 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002315}
2316
Damien Millerd79b4242006-03-31 23:11:44 +11002317/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002318void
Damien Miller630d6f42002-01-22 23:17:30 +11002319channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002320{
2321 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002322 int id;
2323 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002324
2325 if (!compat20)
2326 return;
2327
2328 /* Get the channel number and verify it. */
2329 id = packet_get_int();
2330 c = channel_lookup(id);
2331
Damien Millerd47c62a2005-12-13 19:33:57 +11002332 if (c == NULL) {
2333 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002334 return;
2335 }
2336 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002337 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002338 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002339 c->remote_window += adjust;
2340}
2341
Damien Millerd79b4242006-03-31 23:11:44 +11002342/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002343void
Damien Miller630d6f42002-01-22 23:17:30 +11002344channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002345{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002346 Channel *c = NULL;
2347 u_short host_port;
2348 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002349 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002350
Ben Lindstrome9c99912001-06-09 00:41:05 +00002351 remote_id = packet_get_int();
2352 host = packet_get_string(NULL);
2353 host_port = packet_get_int();
2354
2355 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2356 originator_string = packet_get_string(NULL);
2357 } else {
2358 originator_string = xstrdup("unknown (remote did not supply name)");
2359 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002360 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002361 c = channel_connect_to(host, host_port,
2362 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002363 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002364 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002365 if (c == NULL) {
2366 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2367 packet_put_int(remote_id);
2368 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002369 } else
2370 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002371}
2372
Damien Millerb84886b2008-05-19 15:05:07 +10002373/* ARGSUSED */
2374void
2375channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2376{
2377 Channel *c;
2378 struct channel_confirm *cc;
2379 int remote_id;
2380
2381 /* Reset keepalive timeout */
2382 keep_alive_timeouts = 0;
2383
2384 remote_id = packet_get_int();
2385 packet_check_eom();
2386
2387 debug2("channel_input_confirm: type %d id %d", type, remote_id);
2388
2389 if ((c = channel_lookup(remote_id)) == NULL) {
2390 logit("channel_input_success_failure: %d: unknown", remote_id);
2391 return;
2392 }
2393 ;
2394 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2395 return;
2396 cc->cb(type, c, cc->ctx);
2397 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2398 bzero(cc, sizeof(*cc));
2399 xfree(cc);
2400}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002401
Ben Lindstrome9c99912001-06-09 00:41:05 +00002402/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002403
Ben Lindstrom908afed2001-10-03 17:34:59 +00002404void
2405channel_set_af(int af)
2406{
2407 IPv4or6 = af;
2408}
2409
Damien Millerb16461c2002-01-22 23:29:22 +11002410static int
2411channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2412 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002413{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002414 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002415 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002416 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002417 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002418 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002419
Damien Millerb16461c2002-01-22 23:29:22 +11002420 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2421 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002422 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002423
Damien Millerb16461c2002-01-22 23:29:22 +11002424 if (host == NULL) {
2425 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002426 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002427 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002428 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002429 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002430 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002431 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432
Damien Miller5428f641999-11-25 11:54:57 +11002433 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002434 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002435 * specified address or wildcard. On the client, a specified bind
2436 * address will always override gateway_ports. On the server, a
2437 * gateway_ports of 1 (``yes'') will override the client's
2438 * specification and force a wildcard bind, whereas a value of 2
2439 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002440 * asked for.
2441 *
2442 * Special-case listen_addrs are:
2443 *
2444 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2445 * "" (empty string), "*" -> wildcard v4/v6
2446 * "localhost" -> loopback v4/v6
2447 */
2448 addr = NULL;
2449 if (listen_addr == NULL) {
2450 /* No address specified: default to gateway_ports setting */
2451 if (gateway_ports)
2452 wildcard = 1;
2453 } else if (gateway_ports || is_client) {
2454 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002455 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002456 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2457 (!is_client && gateway_ports == 1))
2458 wildcard = 1;
2459 else if (strcmp(listen_addr, "localhost") != 0)
2460 addr = listen_addr;
2461 }
2462
2463 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2464 type, wildcard, (addr == NULL) ? "NULL" : addr);
2465
2466 /*
Damien Miller34132e52000-01-14 15:45:46 +11002467 * getaddrinfo returns a loopback address if the hostname is
2468 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002469 */
Damien Miller34132e52000-01-14 15:45:46 +11002470 memset(&hints, 0, sizeof(hints));
2471 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002472 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002473 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002474 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002475 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2476 if (addr == NULL) {
2477 /* This really shouldn't happen */
2478 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002479 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002480 } else {
Damien Millera7270302005-07-06 09:36:05 +10002481 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002482 "getaddrinfo(%.64s): %s", addr,
2483 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002484 }
Damien Millera7270302005-07-06 09:36:05 +10002485 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002486 }
Damien Miller5428f641999-11-25 11:54:57 +11002487
Damien Miller34132e52000-01-14 15:45:46 +11002488 for (ai = aitop; ai; ai = ai->ai_next) {
2489 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2490 continue;
2491 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2492 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002493 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002494 continue;
2495 }
2496 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002497 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002498 if (sock < 0) {
2499 /* this is no error since kernel may not support ipv6 */
2500 verbose("socket: %.100s", strerror(errno));
2501 continue;
2502 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002503
2504 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002505
Damien Miller34132e52000-01-14 15:45:46 +11002506 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002507
Damien Miller34132e52000-01-14 15:45:46 +11002508 /* Bind the socket to the address. */
2509 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2510 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002511 if (!ai->ai_next)
2512 error("bind: %.100s", strerror(errno));
2513 else
2514 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002515
Damien Miller34132e52000-01-14 15:45:46 +11002516 close(sock);
2517 continue;
2518 }
2519 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002520 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002521 error("listen: %.100s", strerror(errno));
2522 close(sock);
2523 continue;
2524 }
2525 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002526 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002527 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002528 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002529 strlcpy(c->path, host, sizeof(c->path));
2530 c->host_port = port_to_connect;
2531 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002532 success = 1;
2533 }
2534 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002535 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002536 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002537 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002538 return success;
Damien Miller95def091999-11-25 00:26:21 +11002539}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002540
Darren Tuckere7066df2004-05-24 10:18:05 +10002541int
2542channel_cancel_rport_listener(const char *host, u_short port)
2543{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002544 u_int i;
2545 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002546
Darren Tucker47eede72005-03-14 23:08:12 +11002547 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002548 Channel *c = channels[i];
2549
2550 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2551 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002552 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002553 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002554 channel_free(c);
2555 found = 1;
2556 }
2557 }
2558
2559 return (found);
2560}
2561
Damien Millerb16461c2002-01-22 23:29:22 +11002562/* protocol local port fwd, used by ssh (and sshd in v1) */
2563int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002564channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002565 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2566{
2567 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002568 listen_host, listen_port, host_to_connect, port_to_connect,
2569 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002570}
2571
2572/* protocol v2 remote port fwd, used by sshd */
2573int
2574channel_setup_remote_fwd_listener(const char *listen_address,
2575 u_short listen_port, int gateway_ports)
2576{
2577 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2578 listen_address, listen_port, NULL, 0, gateway_ports);
2579}
2580
Damien Miller5428f641999-11-25 11:54:57 +11002581/*
2582 * Initiate forwarding of connections to port "port" on remote host through
2583 * the secure channel to host:port from local side.
2584 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002585
Darren Tuckere7d4b192006-07-12 22:17:10 +10002586int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002587channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002588 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002589{
Damien Millerdff50992002-01-22 23:16:32 +11002590 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002591
Damien Miller95def091999-11-25 00:26:21 +11002592 /* Record locally that connection to this host/port is permitted. */
2593 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2594 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002595
Damien Miller95def091999-11-25 00:26:21 +11002596 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002597 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002598 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002599 if (listen_host == NULL) {
2600 if (datafellows & SSH_BUG_RFWD_ADDR)
2601 address_to_bind = "127.0.0.1";
2602 else
2603 address_to_bind = "localhost";
2604 } else if (*listen_host == '\0' ||
2605 strcmp(listen_host, "*") == 0) {
2606 if (datafellows & SSH_BUG_RFWD_ADDR)
2607 address_to_bind = "0.0.0.0";
2608 else
2609 address_to_bind = "";
2610 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002611 address_to_bind = listen_host;
2612
Damien Miller33b13562000-04-04 14:38:59 +10002613 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2614 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002615 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002616 packet_put_cstring(address_to_bind);
2617 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002618 packet_send();
2619 packet_write_wait();
2620 /* Assume that server accepts the request */
2621 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002622 } else {
2623 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002624 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002625 packet_put_cstring(host_to_connect);
2626 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002627 packet_send();
2628 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002629
2630 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002631 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002632 switch (type) {
2633 case SSH_SMSG_SUCCESS:
2634 success = 1;
2635 break;
2636 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002637 break;
2638 default:
2639 /* Unknown packet */
2640 packet_disconnect("Protocol error for port forward request:"
2641 "received packet type %d.", type);
2642 }
2643 }
2644 if (success) {
2645 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2646 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2647 permitted_opens[num_permitted_opens].listen_port = listen_port;
2648 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002649 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002650 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002651}
2652
Damien Miller5428f641999-11-25 11:54:57 +11002653/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002654 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002655 * local side.
2656 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002657void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002658channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002659{
2660 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002661
2662 if (!compat20)
2663 return;
2664
2665 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002666 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002667 permitted_opens[i].listen_port == port)
2668 break;
2669 }
2670 if (i >= num_permitted_opens) {
2671 debug("%s: requested forward not found", __func__);
2672 return;
2673 }
2674 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2675 packet_put_cstring("cancel-tcpip-forward");
2676 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002677 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002678 packet_put_int(port);
2679 packet_send();
2680
2681 permitted_opens[i].listen_port = 0;
2682 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002683 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002684 permitted_opens[i].host_to_connect = NULL;
2685}
2686
2687/*
Damien Miller5428f641999-11-25 11:54:57 +11002688 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2689 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002690 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002691 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002692int
Damien Millere247cc42000-05-07 12:03:14 +10002693channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002694{
Damien Milleraae6c611999-12-06 11:47:28 +11002695 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002696 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002697 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002698
Damien Miller95def091999-11-25 00:26:21 +11002699 /* Get arguments from the packet. */
2700 port = packet_get_int();
2701 hostname = packet_get_string(NULL);
2702 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002703
Damien Millerbac2d8a2000-09-05 16:13:06 +11002704#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002705 /*
2706 * Check that an unprivileged user is not trying to forward a
2707 * privileged port.
2708 */
Damien Miller95def091999-11-25 00:26:21 +11002709 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002710 packet_disconnect(
2711 "Requested forwarding of port %d but user is not root.",
2712 port);
2713 if (host_port == 0)
2714 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002715#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002716
Damien Miller0bc1bd82000-11-13 22:57:25 +11002717 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002718 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002719 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002720
2721 /* Free the argument string. */
2722 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002723
2724 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002725}
2726
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002727/*
2728 * Permits opening to any host/port if permitted_opens[] is empty. This is
2729 * usually called by the server, because the user could connect to any port
2730 * anyway, and the server has no way to know but to trust the client anyway.
2731 */
2732void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002733channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002734{
2735 if (num_permitted_opens == 0)
2736 all_opens_permitted = 1;
2737}
2738
Ben Lindstroma3700052001-04-05 23:26:32 +00002739void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002740channel_add_permitted_opens(char *host, int port)
2741{
2742 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002743 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002744 debug("allow port forwarding to host %s port %d", host, port);
2745
2746 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2747 permitted_opens[num_permitted_opens].port_to_connect = port;
2748 num_permitted_opens++;
2749
2750 all_opens_permitted = 0;
2751}
2752
Damien Millera765cf42006-07-24 14:08:13 +10002753int
Damien Miller9b439df2006-07-24 14:04:00 +10002754channel_add_adm_permitted_opens(char *host, int port)
2755{
2756 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2757 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002758 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002759
2760 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2761 = xstrdup(host);
2762 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002763 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002764}
2765
2766void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002767channel_clear_permitted_opens(void)
2768{
2769 int i;
2770
2771 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002772 if (permitted_opens[i].host_to_connect != NULL)
2773 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002774 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002775}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002776
Damien Miller9b439df2006-07-24 14:04:00 +10002777void
2778channel_clear_adm_permitted_opens(void)
2779{
2780 int i;
2781
2782 for (i = 0; i < num_adm_permitted_opens; i++)
2783 if (permitted_adm_opens[i].host_to_connect != NULL)
2784 xfree(permitted_adm_opens[i].host_to_connect);
2785 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002786}
2787
Darren Tuckere7140f22008-06-10 23:01:51 +10002788void
2789channel_print_adm_permitted_opens(void)
2790{
2791 static int i;
2792
2793 for (i = 0; i < num_adm_permitted_opens; i++)
2794 if (permitted_adm_opens[i].host_to_connect != NULL)
2795 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
2796 permitted_adm_opens[i].port_to_connect);
2797}
2798
Damien Millerbd740252008-05-19 15:37:09 +10002799/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00002800static int
Damien Millerbd740252008-05-19 15:37:09 +10002801connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002802{
Damien Millerbd740252008-05-19 15:37:09 +10002803 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11002804 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11002805
Damien Millerbd740252008-05-19 15:37:09 +10002806 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
2807 if (cctx->ai->ai_family != AF_INET &&
2808 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11002809 continue;
Damien Millerbd740252008-05-19 15:37:09 +10002810 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
2811 ntop, sizeof(ntop), strport, sizeof(strport),
2812 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2813 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002814 continue;
2815 }
Damien Millerbd740252008-05-19 15:37:09 +10002816 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
2817 cctx->ai->ai_protocol)) == -1) {
2818 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11002819 error("socket: %.100s", strerror(errno));
2820 else
2821 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002822 continue;
2823 }
Damien Miller232711f2004-06-15 10:35:30 +10002824 if (set_nonblock(sock) == -1)
2825 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10002826 if (connect(sock, cctx->ai->ai_addr,
2827 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
2828 debug("connect_next: host %.100s ([%.100s]:%s): "
2829 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002830 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10002831 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11002832 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10002833 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00002834 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002835 }
Damien Millerbd740252008-05-19 15:37:09 +10002836 debug("connect_next: host %.100s ([%.100s]:%s) "
2837 "in progress, fd=%d", cctx->host, ntop, strport, sock);
2838 cctx->ai = cctx->ai->ai_next;
2839 set_nodelay(sock);
2840 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11002841 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002842 return -1;
2843}
Damien Millerb38eff82000-04-01 11:09:21 +10002844
Damien Millerbd740252008-05-19 15:37:09 +10002845static void
2846channel_connect_ctx_free(struct channel_connect *cctx)
2847{
2848 xfree(cctx->host);
2849 if (cctx->aitop)
2850 freeaddrinfo(cctx->aitop);
2851 bzero(cctx, sizeof(*cctx));
2852 cctx->host = NULL;
2853 cctx->ai = cctx->aitop = NULL;
2854}
2855
2856/* Return CONNECTING channel to remote host, port */
2857static Channel *
2858connect_to(const char *host, u_short port, char *ctype, char *rname)
2859{
2860 struct addrinfo hints;
2861 int gaierr;
2862 int sock = -1;
2863 char strport[NI_MAXSERV];
2864 struct channel_connect cctx;
2865 Channel *c;
2866
2867 memset(&hints, 0, sizeof(hints));
2868 hints.ai_family = IPv4or6;
2869 hints.ai_socktype = SOCK_STREAM;
2870 snprintf(strport, sizeof strport, "%d", port);
2871 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
2872 error("connect_to %.100s: unknown host (%s)", host,
2873 ssh_gai_strerror(gaierr));
2874 return NULL;
2875 }
2876
2877 cctx.host = xstrdup(host);
2878 cctx.port = port;
2879 cctx.ai = cctx.aitop;
2880
2881 if ((sock = connect_next(&cctx)) == -1) {
2882 error("connect to %.100s port %d failed: %s",
2883 host, port, strerror(errno));
2884 channel_connect_ctx_free(&cctx);
2885 return NULL;
2886 }
2887 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
2888 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
2889 c->connect_ctx = cctx;
2890 return c;
2891}
2892
2893Channel *
2894channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
2895{
2896 int i;
2897
2898 for (i = 0; i < num_permitted_opens; i++) {
2899 if (permitted_opens[i].host_to_connect != NULL &&
2900 permitted_opens[i].listen_port == listen_port) {
2901 return connect_to(
2902 permitted_opens[i].host_to_connect,
2903 permitted_opens[i].port_to_connect, ctype, rname);
2904 }
2905 }
2906 error("WARNING: Server requests forwarding for unknown listen_port %d",
2907 listen_port);
2908 return NULL;
2909}
2910
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002911/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10002912Channel *
2913channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002914{
Damien Miller9b439df2006-07-24 14:04:00 +10002915 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002916
2917 permit = all_opens_permitted;
2918 if (!permit) {
2919 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002920 if (permitted_opens[i].host_to_connect != NULL &&
2921 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002922 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2923 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002924 }
Damien Miller9b439df2006-07-24 14:04:00 +10002925
2926 if (num_adm_permitted_opens > 0) {
2927 permit_adm = 0;
2928 for (i = 0; i < num_adm_permitted_opens; i++)
2929 if (permitted_adm_opens[i].host_to_connect != NULL &&
2930 permitted_adm_opens[i].port_to_connect == port &&
2931 strcmp(permitted_adm_opens[i].host_to_connect, host)
2932 == 0)
2933 permit_adm = 1;
2934 }
2935
2936 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10002937 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002938 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10002939 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002940 }
Damien Millerbd740252008-05-19 15:37:09 +10002941 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002942}
2943
Damien Miller0e220db2004-06-15 10:34:08 +10002944void
2945channel_send_window_changes(void)
2946{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002947 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002948 struct winsize ws;
2949
2950 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002951 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002952 channels[i]->type != SSH_CHANNEL_OPEN)
2953 continue;
2954 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2955 continue;
2956 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002957 packet_put_int((u_int)ws.ws_col);
2958 packet_put_int((u_int)ws.ws_row);
2959 packet_put_int((u_int)ws.ws_xpixel);
2960 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002961 packet_send();
2962 }
2963}
2964
Ben Lindstrome9c99912001-06-09 00:41:05 +00002965/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002966
Damien Miller5428f641999-11-25 11:54:57 +11002967/*
2968 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002969 * Returns 0 and a suitable display number for the DISPLAY variable
2970 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002971 */
Kevin Steves366298c2001-12-19 17:58:01 +00002972int
Damien Miller95c249f2002-02-05 12:11:34 +11002973x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002974 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002975{
Damien Millere7378562001-12-21 14:58:35 +11002976 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002977 int display_number, sock;
2978 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002979 struct addrinfo hints, *ai, *aitop;
2980 char strport[NI_MAXSERV];
2981 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002982
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002983 if (chanids == NULL)
2984 return -1;
2985
Damien Millera34a28b1999-12-14 10:47:15 +11002986 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002987 display_number < MAX_DISPLAYS;
2988 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002989 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002990 memset(&hints, 0, sizeof(hints));
2991 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002992 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002993 hints.ai_socktype = SOCK_STREAM;
2994 snprintf(strport, sizeof strport, "%d", port);
2995 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11002996 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002997 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002998 }
Damien Miller34132e52000-01-14 15:45:46 +11002999 for (ai = aitop; ai; ai = ai->ai_next) {
3000 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3001 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10003002 sock = socket(ai->ai_family, ai->ai_socktype,
3003 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003004 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003005 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003006 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003007 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003008 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003009 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003010 debug("x11_create_display_inet: Socket family %d not supported",
3011 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003012 continue;
3013 }
Damien Miller34132e52000-01-14 15:45:46 +11003014 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00003015#ifdef IPV6_V6ONLY
3016 if (ai->ai_family == AF_INET6) {
3017 int on = 1;
3018 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
3019 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
3020 }
3021#endif
Damien Miller4401e452008-06-12 06:05:12 +10003022 if (x11_use_localhost)
3023 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003024 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003025 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003026 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003027
Damien Miller34132e52000-01-14 15:45:46 +11003028 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003029 close(socks[n]);
3030 }
3031 num_socks = 0;
3032 break;
3033 }
3034 socks[num_socks++] = sock;
3035 if (num_socks == NUM_SOCKS)
3036 break;
Damien Miller95def091999-11-25 00:26:21 +11003037 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003038 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003039 if (num_socks > 0)
3040 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003041 }
Damien Miller95def091999-11-25 00:26:21 +11003042 if (display_number >= MAX_DISPLAYS) {
3043 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003044 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003045 }
Damien Miller95def091999-11-25 00:26:21 +11003046 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003047 for (n = 0; n < num_socks; n++) {
3048 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003049 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003050 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003051 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003052 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003053 }
Damien Miller95def091999-11-25 00:26:21 +11003054 }
Damien Miller34132e52000-01-14 15:45:46 +11003055
Damien Miller34132e52000-01-14 15:45:46 +11003056 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003057 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003058 for (n = 0; n < num_socks; n++) {
3059 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003060 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003061 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3062 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003063 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003064 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003065 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003066 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003067 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003068
Kevin Steves366298c2001-12-19 17:58:01 +00003069 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003070 *display_numberp = display_number;
3071 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003072}
3073
Ben Lindstrombba81212001-06-25 05:01:22 +00003074static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00003075connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003076{
Damien Miller95def091999-11-25 00:26:21 +11003077 int sock;
3078 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003079
Damien Miller3afe3752001-12-21 12:39:51 +11003080 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3081 if (sock < 0)
3082 error("socket: %.100s", strerror(errno));
3083 memset(&addr, 0, sizeof(addr));
3084 addr.sun_family = AF_UNIX;
3085 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11003086 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003087 return sock;
3088 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003089 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3090 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003091}
3092
Damien Millerbd483e72000-04-30 10:00:53 +10003093int
3094x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003095{
Damien Miller57c4e872006-03-31 23:11:07 +11003096 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003097 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003098 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003099 struct addrinfo hints, *ai, *aitop;
3100 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003101 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003102
Damien Miller95def091999-11-25 00:26:21 +11003103 /* Try to open a socket for the local X server. */
3104 display = getenv("DISPLAY");
3105 if (!display) {
3106 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003107 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003108 }
Damien Miller5428f641999-11-25 11:54:57 +11003109 /*
3110 * Now we decode the value of the DISPLAY variable and make a
3111 * connection to the real X server.
3112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003113
Damien Miller5428f641999-11-25 11:54:57 +11003114 /*
3115 * Check if it is a unix domain socket. Unix domain displays are in
3116 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3117 */
Damien Miller95def091999-11-25 00:26:21 +11003118 if (strncmp(display, "unix:", 5) == 0 ||
3119 display[0] == ':') {
3120 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003121 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003122 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003123 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003124 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003125 }
3126 /* Create a socket. */
3127 sock = connect_local_xsocket(display_number);
3128 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003129 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003130
3131 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003132 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003133 }
Damien Miller5428f641999-11-25 11:54:57 +11003134 /*
3135 * Connect to an inet socket. The DISPLAY value is supposedly
3136 * hostname:d[.s], where hostname may also be numeric IP address.
3137 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003138 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003139 cp = strchr(buf, ':');
3140 if (!cp) {
3141 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003142 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003143 }
Damien Miller95def091999-11-25 00:26:21 +11003144 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003145 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003146 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003147 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003148 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003149 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003150 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003151
Damien Miller34132e52000-01-14 15:45:46 +11003152 /* Look up the host address */
3153 memset(&hints, 0, sizeof(hints));
3154 hints.ai_family = IPv4or6;
3155 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003156 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003157 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003158 error("%.100s: unknown host. (%s)", buf,
3159 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003160 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003161 }
Damien Miller34132e52000-01-14 15:45:46 +11003162 for (ai = aitop; ai; ai = ai->ai_next) {
3163 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10003164 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003165 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003166 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003167 continue;
3168 }
3169 /* Connect it to the display. */
3170 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003171 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003172 6000 + display_number, strerror(errno));
3173 close(sock);
3174 continue;
3175 }
3176 /* Success */
3177 break;
Damien Miller34132e52000-01-14 15:45:46 +11003178 }
Damien Miller34132e52000-01-14 15:45:46 +11003179 freeaddrinfo(aitop);
3180 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003181 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003182 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003183 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003184 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003185 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003186 return sock;
3187}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003188
Damien Millerbd483e72000-04-30 10:00:53 +10003189/*
3190 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3191 * the remote channel number. We should do whatever we want, and respond
3192 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3193 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003194
Damien Miller8473dd82006-07-24 14:08:32 +10003195/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003196void
Damien Miller630d6f42002-01-22 23:17:30 +11003197x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003198{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003199 Channel *c = NULL;
3200 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003201 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003202
3203 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003204
3205 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003206
3207 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003208 remote_host = packet_get_string(NULL);
3209 } else {
3210 remote_host = xstrdup("unknown (remote did not supply name)");
3211 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003212 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003213
3214 /* Obtain a connection to the real X display. */
3215 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003216 if (sock != -1) {
3217 /* Allocate a channel for this connection. */
3218 c = channel_new("connected x11 socket",
3219 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3220 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003221 c->remote_id = remote_id;
3222 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003223 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003224 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003225 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003226 /* Send refusal to the remote host. */
3227 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003228 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003229 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003230 /* Send a confirmation to the remote host. */
3231 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003232 packet_put_int(remote_id);
3233 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003234 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003235 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003236}
3237
Damien Miller69b69aa2000-10-28 14:19:58 +11003238/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003239/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003240void
Damien Miller630d6f42002-01-22 23:17:30 +11003241deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003242{
3243 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003244
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003245 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003246 case SSH_SMSG_AGENT_OPEN:
3247 error("Warning: ssh server tried agent forwarding.");
3248 break;
3249 case SSH_SMSG_X11_OPEN:
3250 error("Warning: ssh server tried X11 forwarding.");
3251 break;
3252 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003253 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003254 break;
3255 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003256 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003257 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3258 packet_put_int(rchan);
3259 packet_send();
3260}
3261
Damien Miller5428f641999-11-25 11:54:57 +11003262/*
3263 * Requests forwarding of X11 connections, generates fake authentication
3264 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003265 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003266 */
Damien Miller4af51302000-04-16 11:18:38 +10003267void
Damien Miller17e7ed02005-06-17 12:54:33 +10003268x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003269 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003270{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003271 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003272 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003273 char *new_data;
3274 int screen_number;
3275 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003276 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003277
Damien Millerf92c0792005-07-06 09:45:26 +10003278 if (x11_saved_display == NULL)
3279 x11_saved_display = xstrdup(disp);
3280 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003281 error("x11_request_forwarding_with_spoofing: different "
3282 "$DISPLAY already forwarded");
3283 return;
3284 }
3285
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003286 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003287 if (cp)
3288 cp = strchr(cp, '.');
3289 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003290 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003291 else
3292 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003293
Damien Miller13390022005-07-06 09:44:19 +10003294 if (x11_saved_proto == NULL) {
3295 /* Save protocol name. */
3296 x11_saved_proto = xstrdup(proto);
3297 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003298 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003299 * of the same length.
3300 */
3301 x11_saved_data = xmalloc(data_len);
3302 x11_fake_data = xmalloc(data_len);
3303 for (i = 0; i < data_len; i++) {
3304 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3305 fatal("x11_request_forwarding: bad "
3306 "authentication data: %.100s", data);
3307 if (i % 4 == 0)
3308 rnd = arc4random();
3309 x11_saved_data[i] = value;
3310 x11_fake_data[i] = rnd & 0xff;
3311 rnd >>= 8;
3312 }
3313 x11_saved_data_len = data_len;
3314 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003315 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003316
Damien Miller95def091999-11-25 00:26:21 +11003317 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003318 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003319
Damien Miller95def091999-11-25 00:26:21 +11003320 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003321 if (compat20) {
3322 channel_request_start(client_session_id, "x11-req", 0);
3323 packet_put_char(0); /* XXX bool single connection */
3324 } else {
3325 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3326 }
3327 packet_put_cstring(proto);
3328 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003329 packet_put_int(screen_number);
3330 packet_send();
3331 packet_write_wait();
3332 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003333}
3334
Ben Lindstrome9c99912001-06-09 00:41:05 +00003335
3336/* -- agent forwarding */
3337
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003338/* Sends a message to the server to request authentication fd forwarding. */
3339
Damien Miller4af51302000-04-16 11:18:38 +10003340void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003341auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003342{
Damien Miller95def091999-11-25 00:26:21 +11003343 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3344 packet_send();
3345 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003346}