blob: 12db962ded18dd4e0414402ec8f89ed9b83ae2a8 [file] [log] [blame]
Damien Miller37f1c082013-04-23 15:20:43 +10001/* $OpenBSD: channels.c,v 1.320 2013/04/06 16:07:00 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110061#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100062#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100063#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerb84886b2008-05-19 15:05:07 +100065#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "log.h"
72#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100077#include "key.h"
78#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110079#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
86 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100093static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000097 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110098 */
Damien Miller5e953212001-01-30 09:14:00 +110099static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
109 */
Damien Miller95def091999-11-25 00:26:21 +1100110typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000111 char *host_to_connect; /* Connect to 'host'. */
112 u_short port_to_connect; /* Connect to 'port'. */
113 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114} ForwardPermission;
115
Damien Miller9b439df2006-07-24 14:04:00 +1000116/* List of all permitted host/port pairs to connect by the user. */
Damien Miller232cfb12010-06-26 09:50:30 +1000117static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000118
Damien Miller9b439df2006-07-24 14:04:00 +1000119/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000120static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000121
122/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000124
125/* Number of permitted host/port pair in the array permitted by the admin. */
126static int num_adm_permitted_opens = 0;
127
Darren Tucker1338b9e2011-10-02 18:57:35 +1100128/* special-case port number meaning allow any port */
129#define FWD_PERMIT_ANY_PORT 0
130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
132 * If this is true, all opens are permitted. This is the case on the server
133 * on which we have to trust the client anyway, and the user could do
134 * anything after logging in anyway.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136static int all_opens_permitted = 0;
137
Ben Lindstrome9c99912001-06-09 00:41:05 +0000138
139/* -- X11 forwarding */
140
141/* Maximum number of fake X11 displays to try. */
142#define MAX_DISPLAYS 1000
143
Damien Miller13390022005-07-06 09:44:19 +1000144/* Saved X11 local (client) display. */
145static char *x11_saved_display = NULL;
146
Ben Lindstrome9c99912001-06-09 00:41:05 +0000147/* Saved X11 authentication protocol name. */
148static char *x11_saved_proto = NULL;
149
150/* Saved X11 authentication data. This is the real data. */
151static char *x11_saved_data = NULL;
152static u_int x11_saved_data_len = 0;
153
154/*
155 * Fake X11 authentication data. This is what the server will be sending us;
156 * we should replace any occurrences of this by the real data.
157 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100158static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000159static u_int x11_fake_data_len;
160
161
162/* -- agent forwarding */
163
164#define NUM_SOCKS 10
165
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000166/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000167static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000168
Ben Lindstrome9c99912001-06-09 00:41:05 +0000169/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000171
Damien Millerbd740252008-05-19 15:37:09 +1000172/* non-blocking connect helpers */
173static int connect_next(struct channel_connect *);
174static void channel_connect_ctx_free(struct channel_connect *);
175
Ben Lindstrome9c99912001-06-09 00:41:05 +0000176/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000177
178Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100179channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000180{
181 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000182
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000183 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100184 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000185 return NULL;
186 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000187 c = channels[id];
188 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100189 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000190 return NULL;
191 }
192 return c;
193}
194
Damien Miller5428f641999-11-25 11:54:57 +1100195/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100196 * Returns the channel if it is allowed to receive protocol messages.
197 * Private channels, like listening sockets, may not receive messages.
198 */
199Channel *
200channel_lookup(int id)
201{
202 Channel *c;
203
204 if ((c = channel_by_id(id)) == NULL)
205 return (NULL);
206
Damien Millerd62f2ca2006-03-26 13:57:41 +1100207 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100208 case SSH_CHANNEL_X11_OPEN:
209 case SSH_CHANNEL_LARVAL:
210 case SSH_CHANNEL_CONNECTING:
211 case SSH_CHANNEL_DYNAMIC:
212 case SSH_CHANNEL_OPENING:
213 case SSH_CHANNEL_OPEN:
214 case SSH_CHANNEL_INPUT_DRAINING:
215 case SSH_CHANNEL_OUTPUT_DRAINING:
216 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100217 }
218 logit("Non-public channel %d, type %d.", id, c->type);
219 return (NULL);
220}
221
222/*
Damien Millere247cc42000-05-07 12:03:14 +1000223 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000224 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100225 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000226static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100227channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000228 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229{
Damien Miller95def091999-11-25 00:26:21 +1100230 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100231 channel_max_fd = MAX(channel_max_fd, rfd);
232 channel_max_fd = MAX(channel_max_fd, wfd);
233 channel_max_fd = MAX(channel_max_fd, efd);
234
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100235 if (rfd != -1)
236 fcntl(rfd, F_SETFD, FD_CLOEXEC);
237 if (wfd != -1 && wfd != rfd)
238 fcntl(wfd, F_SETFD, FD_CLOEXEC);
239 if (efd != -1 && efd != rfd && efd != wfd)
240 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000241
Damien Miller6f83b8e2000-05-02 09:23:45 +1000242 c->rfd = rfd;
243 c->wfd = wfd;
244 c->sock = (rfd == wfd) ? rfd : -1;
245 c->efd = efd;
246 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100247
Darren Tuckered3cdc02008-06-16 23:29:18 +1000248 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000249 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000250 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100251
Damien Miller69b69aa2000-10-28 14:19:58 +1100252 /* enable nonblocking mode */
253 if (nonblock) {
254 if (rfd != -1)
255 set_nonblock(rfd);
256 if (wfd != -1)
257 set_nonblock(wfd);
258 if (efd != -1)
259 set_nonblock(efd);
260 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000261}
262
263/*
264 * Allocate a new channel object and set its type and socket. This will cause
265 * remote_name to be freed.
266 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000267Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000268channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000269 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000270{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000271 int found;
272 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000273 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Do initial allocation if this is the first call. */
276 if (channels_alloc == 0) {
277 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100278 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100279 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000280 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100281 }
282 /* Try to find a free slot where to put the new channel. */
283 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000284 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100285 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000286 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100287 break;
288 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000289 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100290 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100291 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000292 if (channels_alloc > 10000)
293 fatal("channel_new: internal error: channels_alloc %d "
294 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100295 channels = xrealloc(channels, channels_alloc + 10,
296 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000297 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100298 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100299 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000300 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100301 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000302 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100303 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100304 buffer_init(&c->input);
305 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000306 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100307 c->path = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000308 c->listening_addr = NULL;
309 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100310 c->ostate = CHAN_OUTPUT_OPEN;
311 c->istate = CHAN_INPUT_OPEN;
312 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000313 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Millera6508752012-04-22 11:21:10 +1000314 c->notbefore = 0;
Damien Miller95def091999-11-25 00:26:21 +1100315 c->self = found;
316 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000317 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000318 c->local_window = window;
319 c->local_window_max = window;
320 c->local_consumed = 0;
321 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100322 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000323 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000324 c->remote_window = 0;
325 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000326 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100327 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000328 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100329 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000330 c->open_confirm = NULL;
331 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000332 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100333 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000334 c->filter_ctx = NULL;
335 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100336 c->ctl_chan = -1;
337 c->mux_rcb = NULL;
338 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000339 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100340 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000341 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100342 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000343 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000345
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000346static int
347channel_find_maxfd(void)
348{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000349 u_int i;
350 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000351 Channel *c;
352
353 for (i = 0; i < channels_alloc; i++) {
354 c = channels[i];
355 if (c != NULL) {
356 max = MAX(max, c->rfd);
357 max = MAX(max, c->wfd);
358 max = MAX(max, c->efd);
359 }
360 }
361 return max;
362}
363
364int
365channel_close_fd(int *fdp)
366{
367 int ret = 0, fd = *fdp;
368
369 if (fd != -1) {
370 ret = close(fd);
371 *fdp = -1;
372 if (fd == channel_max_fd)
373 channel_max_fd = channel_find_maxfd();
374 }
375 return ret;
376}
377
Damien Miller6f83b8e2000-05-02 09:23:45 +1000378/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000379static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000380channel_close_fds(Channel *c)
381{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000382 channel_close_fd(&c->sock);
383 channel_close_fd(&c->rfd);
384 channel_close_fd(&c->wfd);
385 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000386}
387
388/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000389void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000390channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000392 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000393 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000394 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000395
396 for (n = 0, i = 0; i < channels_alloc; i++)
397 if (channels[i])
398 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000399 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000400 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000401
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000402 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000403 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000404 xfree(s);
405
Damien Miller6f83b8e2000-05-02 09:23:45 +1000406 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000407 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000408 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000409 buffer_free(&c->input);
410 buffer_free(&c->output);
411 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000412 if (c->remote_name) {
413 xfree(c->remote_name);
414 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100415 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100416 if (c->path) {
417 xfree(c->path);
418 c->path = NULL;
419 }
Damien Millerf6dff7c2011-09-22 21:38:52 +1000420 if (c->listening_addr) {
421 xfree(c->listening_addr);
422 c->listening_addr = NULL;
423 }
Damien Millerb84886b2008-05-19 15:05:07 +1000424 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
425 if (cc->abandon_cb != NULL)
426 cc->abandon_cb(c, cc->ctx);
427 TAILQ_REMOVE(&c->status_confirms, cc, entry);
428 bzero(cc, sizeof(*cc));
429 xfree(cc);
430 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000431 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
432 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000433 channels[c->self] = NULL;
434 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435}
436
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000438channel_free_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
Ben Lindstrom601e4362001-06-21 03:19:23 +0000442 for (i = 0; i < channels_alloc; i++)
443 if (channels[i] != NULL)
444 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445}
446
447/*
448 * Closes the sockets/fds of all channels. This is used to close extra file
449 * descriptors after a fork.
450 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000452channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000453{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000454 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000455
456 for (i = 0; i < channels_alloc; i++)
457 if (channels[i] != NULL)
458 channel_close_fds(channels[i]);
459}
460
461/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000462 * Stop listening to channels.
463 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000464void
465channel_stop_listening(void)
466{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000467 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000468 Channel *c;
469
470 for (i = 0; i < channels_alloc; i++) {
471 c = channels[i];
472 if (c != NULL) {
473 switch (c->type) {
474 case SSH_CHANNEL_AUTH_SOCKET:
475 case SSH_CHANNEL_PORT_LISTENER:
476 case SSH_CHANNEL_RPORT_LISTENER:
477 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000478 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000479 channel_free(c);
480 break;
481 }
482 }
483 }
484}
485
486/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000487 * Returns true if no channel has too much buffered data, and false if one or
488 * more channel is overfull.
489 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000490int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000491channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000492{
493 u_int i;
494 Channel *c;
495
496 for (i = 0; i < channels_alloc; i++) {
497 c = channels[i];
498 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000499#if 0
500 if (!compat20 &&
501 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100502 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000503 c->self, buffer_len(&c->input));
504 return 0;
505 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000506#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000507 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000508 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000509 c->self, buffer_len(&c->output),
510 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000511 return 0;
512 }
513 }
514 }
515 return 1;
516}
517
518/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000519int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000520channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000521{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000522 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000523 Channel *c;
524
525 for (i = 0; i < channels_alloc; i++) {
526 c = channels[i];
527 if (c == NULL)
528 continue;
529 switch (c->type) {
530 case SSH_CHANNEL_X11_LISTENER:
531 case SSH_CHANNEL_PORT_LISTENER:
532 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100533 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000534 case SSH_CHANNEL_CLOSED:
535 case SSH_CHANNEL_AUTH_SOCKET:
536 case SSH_CHANNEL_DYNAMIC:
537 case SSH_CHANNEL_CONNECTING:
538 case SSH_CHANNEL_ZOMBIE:
539 continue;
540 case SSH_CHANNEL_LARVAL:
541 if (!compat20)
542 fatal("cannot happen: SSH_CHANNEL_LARVAL");
543 continue;
544 case SSH_CHANNEL_OPENING:
545 case SSH_CHANNEL_OPEN:
546 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100547 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000548 return 1;
549 case SSH_CHANNEL_INPUT_DRAINING:
550 case SSH_CHANNEL_OUTPUT_DRAINING:
551 if (!compat13)
552 fatal("cannot happen: OUT_DRAIN");
553 return 1;
554 default:
555 fatal("channel_still_open: bad channel type %d", c->type);
556 /* NOTREACHED */
557 }
558 }
559 return 0;
560}
561
562/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000564channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000565{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000566 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000567 Channel *c;
568
569 for (i = 0; i < channels_alloc; i++) {
570 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000571 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000572 continue;
573 switch (c->type) {
574 case SSH_CHANNEL_CLOSED:
575 case SSH_CHANNEL_DYNAMIC:
576 case SSH_CHANNEL_X11_LISTENER:
577 case SSH_CHANNEL_PORT_LISTENER:
578 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100579 case SSH_CHANNEL_MUX_LISTENER:
580 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000581 case SSH_CHANNEL_OPENING:
582 case SSH_CHANNEL_CONNECTING:
583 case SSH_CHANNEL_ZOMBIE:
584 continue;
585 case SSH_CHANNEL_LARVAL:
586 case SSH_CHANNEL_AUTH_SOCKET:
587 case SSH_CHANNEL_OPEN:
588 case SSH_CHANNEL_X11_OPEN:
589 return i;
590 case SSH_CHANNEL_INPUT_DRAINING:
591 case SSH_CHANNEL_OUTPUT_DRAINING:
592 if (!compat13)
593 fatal("cannot happen: OUT_DRAIN");
594 return i;
595 default:
596 fatal("channel_find_open: bad channel type %d", c->type);
597 /* NOTREACHED */
598 }
599 }
600 return -1;
601}
602
603
604/*
605 * Returns a message describing the currently open forwarded connections,
606 * suitable for sending to the client. The message contains crlf pairs for
607 * newlines.
608 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000609char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000610channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611{
612 Buffer buffer;
613 Channel *c;
614 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000615 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000616
617 buffer_init(&buffer);
618 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
619 buffer_append(&buffer, buf, strlen(buf));
620 for (i = 0; i < channels_alloc; i++) {
621 c = channels[i];
622 if (c == NULL)
623 continue;
624 switch (c->type) {
625 case SSH_CHANNEL_X11_LISTENER:
626 case SSH_CHANNEL_PORT_LISTENER:
627 case SSH_CHANNEL_RPORT_LISTENER:
628 case SSH_CHANNEL_CLOSED:
629 case SSH_CHANNEL_AUTH_SOCKET:
630 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100631 case SSH_CHANNEL_MUX_CLIENT:
632 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633 continue;
634 case SSH_CHANNEL_LARVAL:
635 case SSH_CHANNEL_OPENING:
636 case SSH_CHANNEL_CONNECTING:
637 case SSH_CHANNEL_DYNAMIC:
638 case SSH_CHANNEL_OPEN:
639 case SSH_CHANNEL_X11_OPEN:
640 case SSH_CHANNEL_INPUT_DRAINING:
641 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000642 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100643 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cc %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644 c->self, c->remote_name,
645 c->type, c->remote_id,
646 c->istate, buffer_len(&c->input),
647 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100648 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649 buffer_append(&buffer, buf, strlen(buf));
650 continue;
651 default:
652 fatal("channel_open_message: bad channel type %d", c->type);
653 /* NOTREACHED */
654 }
655 }
656 buffer_append(&buffer, "\0", 1);
657 cp = xstrdup(buffer_ptr(&buffer));
658 buffer_free(&buffer);
659 return cp;
660}
661
662void
663channel_send_open(int id)
664{
665 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000666
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000668 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000669 return;
670 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000671 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672 packet_start(SSH2_MSG_CHANNEL_OPEN);
673 packet_put_cstring(c->ctype);
674 packet_put_int(c->self);
675 packet_put_int(c->local_window);
676 packet_put_int(c->local_maxpacket);
677 packet_send();
678}
679
680void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000681channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000683 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000684
Ben Lindstrome9c99912001-06-09 00:41:05 +0000685 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000686 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000687 return;
688 }
Damien Miller0e220db2004-06-15 10:34:08 +1000689 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690 packet_start(SSH2_MSG_CHANNEL_REQUEST);
691 packet_put_int(c->remote_id);
692 packet_put_cstring(service);
693 packet_put_char(wantconfirm);
694}
Damien Miller4f7becb2006-03-26 14:10:14 +1100695
Ben Lindstrome9c99912001-06-09 00:41:05 +0000696void
Damien Millerb84886b2008-05-19 15:05:07 +1000697channel_register_status_confirm(int id, channel_confirm_cb *cb,
698 channel_confirm_abandon_cb *abandon_cb, void *ctx)
699{
700 struct channel_confirm *cc;
701 Channel *c;
702
703 if ((c = channel_lookup(id)) == NULL)
704 fatal("channel_register_expect: %d: bad id", id);
705
706 cc = xmalloc(sizeof(*cc));
707 cc->cb = cb;
708 cc->abandon_cb = abandon_cb;
709 cc->ctx = ctx;
710 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
711}
712
713void
Damien Millerd530f5f2010-05-21 14:57:10 +1000714channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000715{
716 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000717
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100719 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720 return;
721 }
Damien Millerb84886b2008-05-19 15:05:07 +1000722 c->open_confirm = fn;
723 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724}
Damien Miller4f7becb2006-03-26 14:10:14 +1100725
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726void
Damien Miller39eda6e2005-11-05 14:52:50 +1100727channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000728{
Damien Millerd47c62a2005-12-13 19:33:57 +1100729 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000730
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000732 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733 return;
734 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000735 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100736 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737}
Damien Miller4f7becb2006-03-26 14:10:14 +1100738
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739void
740channel_cancel_cleanup(int id)
741{
Damien Millerd47c62a2005-12-13 19:33:57 +1100742 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000743
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000745 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746 return;
747 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000748 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100749 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750}
Damien Miller4f7becb2006-03-26 14:10:14 +1100751
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752void
Damien Miller077b2382005-12-31 16:22:32 +1100753channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000754 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000755{
756 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000757
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000759 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760 return;
761 }
Damien Miller077b2382005-12-31 16:22:32 +1100762 c->input_filter = ifn;
763 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000764 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000765 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766}
767
768void
769channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000770 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771{
772 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000773
Ben Lindstrome9c99912001-06-09 00:41:05 +0000774 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
775 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000776 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000777 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100778 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000779 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
780 packet_put_int(c->remote_id);
781 packet_put_int(c->local_window);
782 packet_send();
783}
784
Damien Miller5428f641999-11-25 11:54:57 +1100785/*
Damien Millerb38eff82000-04-01 11:09:21 +1000786 * 'channel_pre*' are called just before select() to add any bits relevant to
787 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100788 */
Damien Millerb38eff82000-04-01 11:09:21 +1000789/*
790 * 'channel_post*': perform any appropriate operations for channels which
791 * have events pending.
792 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100793typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000794chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
795chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
796
Damien Miller8473dd82006-07-24 14:08:32 +1000797/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000798static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100799channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000800{
801 FD_SET(c->sock, readset);
802}
803
Damien Miller8473dd82006-07-24 14:08:32 +1000804/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000805static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100806channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000807{
808 debug3("channel %d: waiting for connection", c->self);
809 FD_SET(c->sock, writeset);
810}
811
Ben Lindstrombba81212001-06-25 05:01:22 +0000812static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100813channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000814{
815 if (buffer_len(&c->input) < packet_get_maxsize())
816 FD_SET(c->sock, readset);
817 if (buffer_len(&c->output) > 0)
818 FD_SET(c->sock, writeset);
819}
820
Ben Lindstrombba81212001-06-25 05:01:22 +0000821static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100822channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000823{
Damien Millerde6987c2002-01-22 23:20:40 +1100824 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000825
Damien Miller33b13562000-04-04 14:38:59 +1000826 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100827 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000828 buffer_len(&c->input) < limit &&
829 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000830 FD_SET(c->rfd, readset);
831 if (c->ostate == CHAN_OUTPUT_OPEN ||
832 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
833 if (buffer_len(&c->output) > 0) {
834 FD_SET(c->wfd, writeset);
835 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000836 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000837 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
838 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000839 else
840 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000841 }
842 }
843 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000844 if (compat20 && c->efd != -1 &&
845 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000846 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
847 buffer_len(&c->extended) > 0)
848 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000849 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
850 (c->extended_usage == CHAN_EXTENDED_READ ||
851 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000852 buffer_len(&c->extended) < c->remote_window)
853 FD_SET(c->efd, readset);
854 }
Damien Miller0e220db2004-06-15 10:34:08 +1000855 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000856}
857
Damien Miller8473dd82006-07-24 14:08:32 +1000858/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000859static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100860channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000861{
862 if (buffer_len(&c->input) == 0) {
863 packet_start(SSH_MSG_CHANNEL_CLOSE);
864 packet_put_int(c->remote_id);
865 packet_send();
866 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000867 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000868 }
869}
870
Damien Miller8473dd82006-07-24 14:08:32 +1000871/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000872static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100873channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000874{
875 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000876 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000877 else
Damien Millerb38eff82000-04-01 11:09:21 +1000878 FD_SET(c->sock, writeset);
879}
880
881/*
882 * This is a special state for X11 authentication spoofing. An opened X11
883 * connection (when authentication spoofing is being done) remains in this
884 * state until the first packet has been completely read. The authentication
885 * data in that packet is then substituted by the real data if it matches the
886 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000887 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000888 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000889 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000890static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000891x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000892{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000893 u_char *ucp;
894 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000895
896 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000897 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000898 return 0;
899
900 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100901 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000902 if (ucp[0] == 0x42) { /* Byte order MSB first. */
903 proto_len = 256 * ucp[6] + ucp[7];
904 data_len = 256 * ucp[8] + ucp[9];
905 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
906 proto_len = ucp[6] + 256 * ucp[7];
907 data_len = ucp[8] + 256 * ucp[9];
908 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000909 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100910 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000911 return -1;
912 }
913
914 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000915 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000916 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
917 return 0;
918
919 /* Check if authentication protocol matches. */
920 if (proto_len != strlen(x11_saved_proto) ||
921 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000922 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000923 return -1;
924 }
925 /* Check if authentication data matches our fake data. */
926 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000927 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000928 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000929 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000930 return -1;
931 }
932 /* Check fake data length */
933 if (x11_fake_data_len != x11_saved_data_len) {
934 error("X11 fake_data_len %d != saved_data_len %d",
935 x11_fake_data_len, x11_saved_data_len);
936 return -1;
937 }
938 /*
939 * Received authentication protocol and data match
940 * our fake data. Substitute the fake data with real
941 * data.
942 */
943 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
944 x11_saved_data, x11_saved_data_len);
945 return 1;
946}
947
Ben Lindstrombba81212001-06-25 05:01:22 +0000948static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100949channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000950{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000951 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000952
Damien Millerb38eff82000-04-01 11:09:21 +1000953 if (ret == 1) {
954 /* Start normal processing for the channel. */
955 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000956 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000957 } else if (ret == -1) {
958 /*
959 * We have received an X11 connection that has bad
960 * authentication information.
961 */
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000963 buffer_clear(&c->input);
964 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000965 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000966 c->sock = -1;
967 c->type = SSH_CHANNEL_CLOSED;
968 packet_start(SSH_MSG_CHANNEL_CLOSE);
969 packet_put_int(c->remote_id);
970 packet_send();
971 }
972}
973
Ben Lindstrombba81212001-06-25 05:01:22 +0000974static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100975channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000976{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000977 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000978
979 /* c->force_drain = 1; */
980
Damien Millerb38eff82000-04-01 11:09:21 +1000981 if (ret == 1) {
982 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100983 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000984 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000985 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000986 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100987 chan_read_failed(c);
988 buffer_clear(&c->input);
989 chan_ibuf_empty(c);
990 buffer_clear(&c->output);
991 /* for proto v1, the peer will send an IEOF */
992 if (compat20)
993 chan_write_failed(c);
994 else
995 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000996 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000997 }
998}
999
Damien Millere1537f92010-01-26 13:26:22 +11001000static void
1001channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1002{
Damien Millerd530f5f2010-05-21 14:57:10 +10001003 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001004 buffer_check_alloc(&c->input, CHAN_RBUF))
1005 FD_SET(c->rfd, readset);
1006 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1007 /* clear buffer immediately (discard any partial packet) */
1008 buffer_clear(&c->input);
1009 chan_ibuf_empty(c);
1010 /* Start output drain. XXX just kill chan? */
1011 chan_rcvd_oclose(c);
1012 }
1013 if (c->ostate == CHAN_OUTPUT_OPEN ||
1014 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1015 if (buffer_len(&c->output) > 0)
1016 FD_SET(c->wfd, writeset);
1017 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1018 chan_obuf_empty(c);
1019 }
1020}
1021
Ben Lindstromb3921512001-04-11 15:57:50 +00001022/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001023/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001024static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001025channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001026{
Damien Millera10f5612002-09-12 09:49:15 +10001027 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001028 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001029 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001030 struct {
1031 u_int8_t version;
1032 u_int8_t command;
1033 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001034 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001035 } s4_req, s4_rsp;
1036
Ben Lindstromb3921512001-04-11 15:57:50 +00001037 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001038
1039 have = buffer_len(&c->input);
1040 len = sizeof(s4_req);
1041 if (have < len)
1042 return 0;
1043 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001044
1045 need = 1;
1046 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1047 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1048 debug2("channel %d: socks4a request", c->self);
1049 /* ... and needs an extra string (the hostname) */
1050 need = 2;
1051 }
1052 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001053 for (found = 0, i = len; i < have; i++) {
1054 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001055 found++;
1056 if (found == need)
1057 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001058 }
1059 if (i > 1024) {
1060 /* the peer is probably sending garbage */
1061 debug("channel %d: decode socks4: too long",
1062 c->self);
1063 return -1;
1064 }
1065 }
Damien Miller1781f532009-01-28 16:24:41 +11001066 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001067 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001068 buffer_get(&c->input, (char *)&s4_req.version, 1);
1069 buffer_get(&c->input, (char *)&s4_req.command, 1);
1070 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001071 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001072 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001073 p = buffer_ptr(&c->input);
1074 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001075 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001076 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001077 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001078 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001079 c->self, len, have);
1080 strlcpy(username, p, sizeof(username));
1081 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001082
Damien Millera1c1b6c2009-01-28 16:29:49 +11001083 if (c->path != NULL) {
1084 xfree(c->path);
1085 c->path = NULL;
1086 }
Damien Miller1781f532009-01-28 16:24:41 +11001087 if (need == 1) { /* SOCKS4: one string */
1088 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001089 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001090 } else { /* SOCKS4A: two strings */
1091 have = buffer_len(&c->input);
1092 p = buffer_ptr(&c->input);
1093 len = strlen(p);
1094 debug2("channel %d: decode socks4a: host %s/%d",
1095 c->self, p, len);
1096 len++; /* trailing '\0' */
1097 if (len > have)
1098 fatal("channel %d: decode socks4a: len %d > have %d",
1099 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001100 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001101 error("channel %d: hostname \"%.100s\" too long",
1102 c->self, p);
1103 return -1;
1104 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001105 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001106 buffer_consume(&c->input, len);
1107 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001109
Damien Millerfbdeece2003-09-02 22:52:31 +10001110 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001111 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001112
Ben Lindstromb3921512001-04-11 15:57:50 +00001113 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001114 debug("channel %d: cannot handle: %s cn %d",
1115 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001116 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001117 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001118 s4_rsp.version = 0; /* vn: 0 for reply */
1119 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001120 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001121 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001122 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001123 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001124}
1125
Darren Tucker46471c92003-07-03 13:55:19 +10001126/* try to decode a socks5 header */
1127#define SSH_SOCKS5_AUTHDONE 0x1000
1128#define SSH_SOCKS5_NOAUTH 0x00
1129#define SSH_SOCKS5_IPV4 0x01
1130#define SSH_SOCKS5_DOMAIN 0x03
1131#define SSH_SOCKS5_IPV6 0x04
1132#define SSH_SOCKS5_CONNECT 0x01
1133#define SSH_SOCKS5_SUCCESS 0x00
1134
Damien Miller8473dd82006-07-24 14:08:32 +10001135/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001136static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001137channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001138{
1139 struct {
1140 u_int8_t version;
1141 u_int8_t command;
1142 u_int8_t reserved;
1143 u_int8_t atyp;
1144 } s5_req, s5_rsp;
1145 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001146 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001147 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001148
1149 debug2("channel %d: decode socks5", c->self);
1150 p = buffer_ptr(&c->input);
1151 if (p[0] != 0x05)
1152 return -1;
1153 have = buffer_len(&c->input);
1154 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1155 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001156 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001157 return 0;
1158 nmethods = p[1];
1159 if (have < nmethods + 2)
1160 return 0;
1161 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001162 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001163 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001164 found = 1;
1165 break;
1166 }
1167 }
1168 if (!found) {
1169 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1170 c->self);
1171 return -1;
1172 }
1173 buffer_consume(&c->input, nmethods + 2);
1174 buffer_put_char(&c->output, 0x05); /* version */
1175 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1176 FD_SET(c->sock, writeset);
1177 c->flags |= SSH_SOCKS5_AUTHDONE;
1178 debug2("channel %d: socks5 auth done", c->self);
1179 return 0; /* need more */
1180 }
1181 debug2("channel %d: socks5 post auth", c->self);
1182 if (have < sizeof(s5_req)+1)
1183 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001184 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001185 if (s5_req.version != 0x05 ||
1186 s5_req.command != SSH_SOCKS5_CONNECT ||
1187 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001188 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001189 return -1;
1190 }
Darren Tucker47eede72005-03-14 23:08:12 +11001191 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001192 case SSH_SOCKS5_IPV4:
1193 addrlen = 4;
1194 af = AF_INET;
1195 break;
1196 case SSH_SOCKS5_DOMAIN:
1197 addrlen = p[sizeof(s5_req)];
1198 af = -1;
1199 break;
1200 case SSH_SOCKS5_IPV6:
1201 addrlen = 16;
1202 af = AF_INET6;
1203 break;
1204 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001205 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001206 return -1;
1207 }
Damien Miller0f077072006-07-10 22:21:02 +10001208 need = sizeof(s5_req) + addrlen + 2;
1209 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1210 need++;
1211 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001212 return 0;
1213 buffer_consume(&c->input, sizeof(s5_req));
1214 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1215 buffer_consume(&c->input, 1); /* host string length */
1216 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1217 buffer_get(&c->input, (char *)&dest_port, 2);
1218 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001219 if (c->path != NULL) {
1220 xfree(c->path);
1221 c->path = NULL;
1222 }
1223 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001224 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001225 error("channel %d: dynamic request: socks5 hostname "
1226 "\"%.100s\" too long", c->self, dest_addr);
1227 return -1;
1228 }
1229 c->path = xstrdup(dest_addr);
1230 } else {
1231 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1232 return -1;
1233 c->path = xstrdup(ntop);
1234 }
Darren Tucker46471c92003-07-03 13:55:19 +10001235 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001236
Damien Millerfbdeece2003-09-02 22:52:31 +10001237 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001238 c->self, c->path, c->host_port, s5_req.command);
1239
1240 s5_rsp.version = 0x05;
1241 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1242 s5_rsp.reserved = 0; /* ignored */
1243 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1244 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1245 dest_port = 0; /* ignored */
1246
Damien Millera0fdce92006-03-26 14:28:50 +11001247 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1248 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1249 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001250 return 1;
1251}
1252
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001253Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001254channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1255 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001256{
1257 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001258
1259 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1260 port_to_connect);
1261
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001262 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1263 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1264 0, "stdio-forward", /*nonblock*/0);
1265
1266 c->path = xstrdup(host_to_connect);
1267 c->host_port = port_to_connect;
1268 c->listening_port = 0;
1269 c->force_drain = 1;
1270
1271 channel_register_fds(c, in, out, -1, 0, 1, 0);
1272 port_open_helper(c, "direct-tcpip");
1273
1274 return c;
1275}
1276
Ben Lindstromb3921512001-04-11 15:57:50 +00001277/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001278static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001279channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001280{
1281 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001282 u_int have;
1283 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001284
1285 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001286 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001287 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001288 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001289 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001290 /* need more */
1291 FD_SET(c->sock, readset);
1292 return;
1293 }
1294 /* try to guess the protocol */
1295 p = buffer_ptr(&c->input);
1296 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001297 case 0x04:
1298 ret = channel_decode_socks4(c, readset, writeset);
1299 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001300 case 0x05:
1301 ret = channel_decode_socks5(c, readset, writeset);
1302 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001303 default:
1304 ret = -1;
1305 break;
1306 }
1307 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001308 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001309 } else if (ret == 0) {
1310 debug2("channel %d: pre_dynamic: need more", c->self);
1311 /* need more */
1312 FD_SET(c->sock, readset);
1313 } else {
1314 /* switch to the next state */
1315 c->type = SSH_CHANNEL_OPENING;
1316 port_open_helper(c, "direct-tcpip");
1317 }
1318}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001319
Damien Millerb38eff82000-04-01 11:09:21 +10001320/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001321/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001322static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001323channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001324{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001325 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001326 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001327 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001328 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001329 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001330 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001331
1332 if (FD_ISSET(c->sock, readset)) {
1333 debug("X11 connection requested.");
1334 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001335 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001336 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001337 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001338 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001339 channel_close_fd(&c->sock);
1340 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001341 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001342 }
Damien Millerb38eff82000-04-01 11:09:21 +10001343 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001344 if (errno != EINTR && errno != EWOULDBLOCK &&
1345 errno != ECONNABORTED)
1346 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001347 if (errno == EMFILE || errno == ENFILE)
1348 c->notbefore = time(NULL) + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001349 return;
1350 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001351 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001352 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001353 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001354 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001355 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001356
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001357 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001358 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001359 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001360 if (compat20) {
1361 packet_start(SSH2_MSG_CHANNEL_OPEN);
1362 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001363 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001364 packet_put_int(nc->local_window_max);
1365 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001366 /* originator ipaddr and port */
1367 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001368 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001369 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001370 } else {
1371 packet_put_int(remote_port);
1372 }
Damien Millerbd483e72000-04-30 10:00:53 +10001373 packet_send();
1374 } else {
1375 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001376 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001377 if (packet_get_protocol_flags() &
1378 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001379 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001380 packet_send();
1381 }
Damien Millerd83ff352001-01-30 09:19:34 +11001382 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001383 }
1384}
1385
Ben Lindstrombba81212001-06-25 05:01:22 +00001386static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001387port_open_helper(Channel *c, char *rtype)
1388{
1389 int direct;
1390 char buf[1024];
1391 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001392 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001393
Damien Millerd6369432010-02-02 17:02:07 +11001394 if (remote_port == -1) {
1395 /* Fake addr/port to appease peers that validate it (Tectia) */
1396 xfree(remote_ipaddr);
1397 remote_ipaddr = xstrdup("127.0.0.1");
1398 remote_port = 65535;
1399 }
1400
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001401 direct = (strcmp(rtype, "direct-tcpip") == 0);
1402
1403 snprintf(buf, sizeof buf,
1404 "%s: listening port %d for %.100s port %d, "
1405 "connect from %.200s port %d",
1406 rtype, c->listening_port, c->path, c->host_port,
1407 remote_ipaddr, remote_port);
1408
1409 xfree(c->remote_name);
1410 c->remote_name = xstrdup(buf);
1411
1412 if (compat20) {
1413 packet_start(SSH2_MSG_CHANNEL_OPEN);
1414 packet_put_cstring(rtype);
1415 packet_put_int(c->self);
1416 packet_put_int(c->local_window_max);
1417 packet_put_int(c->local_maxpacket);
1418 if (direct) {
1419 /* target host, port */
1420 packet_put_cstring(c->path);
1421 packet_put_int(c->host_port);
1422 } else {
1423 /* listen address, port */
1424 packet_put_cstring(c->path);
1425 packet_put_int(c->listening_port);
1426 }
1427 /* originator host and port */
1428 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001429 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001430 packet_send();
1431 } else {
1432 packet_start(SSH_MSG_PORT_OPEN);
1433 packet_put_int(c->self);
1434 packet_put_cstring(c->path);
1435 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001436 if (packet_get_protocol_flags() &
1437 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001438 packet_put_cstring(c->remote_name);
1439 packet_send();
1440 }
1441 xfree(remote_ipaddr);
1442}
1443
Damien Miller5e7fd072005-11-05 14:53:39 +11001444static void
1445channel_set_reuseaddr(int fd)
1446{
1447 int on = 1;
1448
1449 /*
1450 * Set socket options.
1451 * Allow local port reuse in TIME_WAIT.
1452 */
1453 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1454 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1455}
1456
Damien Millerb38eff82000-04-01 11:09:21 +10001457/*
1458 * This socket is listening for connections to a forwarded TCP/IP port.
1459 */
Damien Miller8473dd82006-07-24 14:08:32 +10001460/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001461static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001462channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001463{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001464 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001465 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001466 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001467 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001468 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001469
Damien Millerb38eff82000-04-01 11:09:21 +10001470 if (FD_ISSET(c->sock, readset)) {
1471 debug("Connection to port %d forwarding "
1472 "to %.100s port %d requested.",
1473 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001474
Damien Miller4623a752001-10-10 15:03:58 +10001475 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1476 nextstate = SSH_CHANNEL_OPENING;
1477 rtype = "forwarded-tcpip";
1478 } else {
1479 if (c->host_port == 0) {
1480 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001481 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001482 } else {
1483 nextstate = SSH_CHANNEL_OPENING;
1484 rtype = "direct-tcpip";
1485 }
1486 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001487
Damien Millerb38eff82000-04-01 11:09:21 +10001488 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001489 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001490 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001491 if (errno != EINTR && errno != EWOULDBLOCK &&
1492 errno != ECONNABORTED)
1493 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001494 if (errno == EMFILE || errno == ENFILE)
1495 c->notbefore = time(NULL) + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001496 return;
1497 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001498 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001499 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1500 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001501 nc->listening_port = c->listening_port;
1502 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001503 if (c->path != NULL)
1504 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001505
Darren Tucker876045b2010-01-08 17:08:00 +11001506 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001507 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001508 }
1509}
1510
1511/*
1512 * This is the authentication agent socket listening for connections from
1513 * clients.
1514 */
Damien Miller8473dd82006-07-24 14:08:32 +10001515/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001516static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001517channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001518{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001519 Channel *nc;
1520 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001521 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001522 socklen_t addrlen;
1523
1524 if (FD_ISSET(c->sock, readset)) {
1525 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001526 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001527 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001528 error("accept from auth socket: %.100s",
1529 strerror(errno));
1530 if (errno == EMFILE || errno == ENFILE)
1531 c->notbefore = time(NULL) + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001532 return;
1533 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001534 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001535 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1536 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001537 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001538 if (compat20) {
1539 packet_start(SSH2_MSG_CHANNEL_OPEN);
1540 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001541 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001542 packet_put_int(c->local_window_max);
1543 packet_put_int(c->local_maxpacket);
1544 } else {
1545 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001546 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001547 }
Damien Millerb38eff82000-04-01 11:09:21 +10001548 packet_send();
1549 }
1550}
1551
Damien Miller8473dd82006-07-24 14:08:32 +10001552/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001553static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001554channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001555{
Damien Millerbd740252008-05-19 15:37:09 +10001556 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001557 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001558
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001559 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001560 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001561 err = errno;
1562 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001563 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001564 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001565 debug("channel %d: connected to %s port %d",
1566 c->self, c->connect_ctx.host, c->connect_ctx.port);
1567 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001568 c->type = SSH_CHANNEL_OPEN;
1569 if (compat20) {
1570 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1571 packet_put_int(c->remote_id);
1572 packet_put_int(c->self);
1573 packet_put_int(c->local_window);
1574 packet_put_int(c->local_maxpacket);
1575 } else {
1576 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1577 packet_put_int(c->remote_id);
1578 packet_put_int(c->self);
1579 }
1580 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001581 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001582 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001583 /* Try next address, if any */
1584 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1585 close(c->sock);
1586 c->sock = c->rfd = c->wfd = sock;
1587 channel_max_fd = channel_find_maxfd();
1588 return;
1589 }
1590 /* Exhausted all addresses */
1591 error("connect_to %.100s port %d: failed.",
1592 c->connect_ctx.host, c->connect_ctx.port);
1593 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001594 if (compat20) {
1595 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1596 packet_put_int(c->remote_id);
1597 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1598 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1599 packet_put_cstring(strerror(err));
1600 packet_put_cstring("");
1601 }
1602 } else {
1603 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1604 packet_put_int(c->remote_id);
1605 }
1606 chan_mark_dead(c);
1607 }
1608 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001609 }
1610}
1611
Damien Miller8473dd82006-07-24 14:08:32 +10001612/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001613static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001614channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001615{
Darren Tucker11327cc2005-03-14 23:22:25 +11001616 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001617 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001618
Damien Miller835284b2007-06-11 13:03:16 +10001619 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1620 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001621 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001622 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001623 if (len < 0 && (errno == EINTR ||
1624 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001625 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001626#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001627 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001628#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001629 if ((!c->isatty && len <= 0) ||
1630 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001631#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001632 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001633 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001634 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001635 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001636 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001637 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001638 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001639 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001640 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001641 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001642 } else {
1643 chan_read_failed(c);
1644 }
1645 return -1;
1646 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001647 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001648 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001649 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001650 chan_read_failed(c);
1651 }
Damien Millerd27b9472005-12-13 19:29:02 +11001652 } else if (c->datagram) {
1653 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001654 } else {
1655 buffer_append(&c->input, buf, len);
1656 }
Damien Millerb38eff82000-04-01 11:09:21 +10001657 }
1658 return 1;
1659}
Damien Miller4f7becb2006-03-26 14:10:14 +11001660
Damien Miller8473dd82006-07-24 14:08:32 +10001661/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001662static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001663channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001664{
Ben Lindstrome229b252001-03-05 06:28:06 +00001665 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001666 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001667 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001668 int len;
1669
1670 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001671 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001672 FD_ISSET(c->wfd, writeset) &&
1673 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001674 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001675 if (c->output_filter != NULL) {
1676 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1677 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001678 if (c->type != SSH_CHANNEL_OPEN)
1679 chan_mark_dead(c);
1680 else
1681 chan_write_failed(c);
1682 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001683 }
1684 } else if (c->datagram) {
1685 buf = data = buffer_get_string(&c->output, &dlen);
1686 } else {
1687 buf = data = buffer_ptr(&c->output);
1688 dlen = buffer_len(&c->output);
1689 }
1690
Damien Millerd27b9472005-12-13 19:29:02 +11001691 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001692 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001693 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001694 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001695 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1696 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001697 return 1;
1698 if (len <= 0) {
1699 if (c->type != SSH_CHANNEL_OPEN)
1700 chan_mark_dead(c);
1701 else
1702 chan_write_failed(c);
1703 return -1;
1704 }
Damien Miller7d457182010-08-05 23:09:48 +10001705 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001706 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001707#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001708 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001709 if (compat20 && c->wfd_isatty)
1710 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001711#endif
Damien Miller077b2382005-12-31 16:22:32 +11001712
1713 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001714 if (len < 0 &&
1715 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001716 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001717 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001718 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001719 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001720 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001721 return -1;
1722 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001723 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001724 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001725 c->type = SSH_CHANNEL_INPUT_DRAINING;
1726 } else {
1727 chan_write_failed(c);
1728 }
1729 return -1;
1730 }
Darren Tucker3980b632009-08-28 11:02:37 +10001731#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001732 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001733 if (tcgetattr(c->wfd, &tio) == 0 &&
1734 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1735 /*
1736 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001737 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001738 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001739 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001740 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001741 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001742 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001743 }
1744 }
Darren Tucker3980b632009-08-28 11:02:37 +10001745#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001746 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001747 }
Damien Miller7d457182010-08-05 23:09:48 +10001748 out:
1749 if (compat20 && olen > 0)
1750 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001751 return 1;
1752}
Damien Miller4f7becb2006-03-26 14:10:14 +11001753
Ben Lindstrombba81212001-06-25 05:01:22 +00001754static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001755channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001756{
Darren Tucker11327cc2005-03-14 23:22:25 +11001757 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001758 int len;
1759
Damien Miller1383bd82000-04-06 12:32:37 +10001760/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001761 if (c->efd != -1) {
1762 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1763 FD_ISSET(c->efd, writeset) &&
1764 buffer_len(&c->extended) > 0) {
1765 len = write(c->efd, buffer_ptr(&c->extended),
1766 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001767 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001768 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001769 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1770 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001771 return 1;
1772 if (len <= 0) {
1773 debug2("channel %d: closing write-efd %d",
1774 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001775 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001776 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001777 buffer_consume(&c->extended, len);
1778 c->local_consumed += len;
1779 }
Damien Miller8853ca52010-06-26 10:00:14 +10001780 } else if (c->efd != -1 &&
1781 (c->extended_usage == CHAN_EXTENDED_READ ||
1782 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001783 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001784 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001785 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001786 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001787 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1788 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001789 return 1;
1790 if (len <= 0) {
1791 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001792 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001793 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001794 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001795 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1796 debug3("channel %d: discard efd",
1797 c->self);
1798 } else
1799 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001800 }
Damien Miller33b13562000-04-04 14:38:59 +10001801 }
1802 }
1803 return 1;
1804}
Damien Miller4f7becb2006-03-26 14:10:14 +11001805
Damien Miller0e220db2004-06-15 10:34:08 +10001806static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001807channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001808{
Ben Lindstromb3921512001-04-11 15:57:50 +00001809 if (c->type == SSH_CHANNEL_OPEN &&
1810 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001811 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001812 c->local_maxpacket*3) ||
1813 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001814 c->local_consumed > 0) {
1815 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1816 packet_put_int(c->remote_id);
1817 packet_put_int(c->local_consumed);
1818 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001819 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001820 c->self, c->local_window,
1821 c->local_consumed);
1822 c->local_window += c->local_consumed;
1823 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001824 }
1825 return 1;
1826}
1827
Ben Lindstrombba81212001-06-25 05:01:22 +00001828static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001829channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001830{
1831 channel_handle_rfd(c, readset, writeset);
1832 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001833 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001834 return;
Damien Miller33b13562000-04-04 14:38:59 +10001835 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001836 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001837}
1838
Damien Millere1537f92010-01-26 13:26:22 +11001839static u_int
1840read_mux(Channel *c, u_int need)
1841{
1842 char buf[CHAN_RBUF];
1843 int len;
1844 u_int rlen;
1845
1846 if (buffer_len(&c->input) < need) {
1847 rlen = need - buffer_len(&c->input);
1848 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1849 if (len <= 0) {
1850 if (errno != EINTR && errno != EAGAIN) {
1851 debug2("channel %d: ctl read<=0 rfd %d len %d",
1852 c->self, c->rfd, len);
1853 chan_read_failed(c);
1854 return 0;
1855 }
1856 } else
1857 buffer_append(&c->input, buf, len);
1858 }
1859 return buffer_len(&c->input);
1860}
1861
1862static void
1863channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1864{
1865 u_int need;
1866 ssize_t len;
1867
1868 if (!compat20)
1869 fatal("%s: entered with !compat20", __func__);
1870
Damien Millerd530f5f2010-05-21 14:57:10 +10001871 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001872 (c->istate == CHAN_INPUT_OPEN ||
1873 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1874 /*
1875 * Don't not read past the precise end of packets to
1876 * avoid disrupting fd passing.
1877 */
1878 if (read_mux(c, 4) < 4) /* read header */
1879 return;
1880 need = get_u32(buffer_ptr(&c->input));
1881#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1882 if (need > CHANNEL_MUX_MAX_PACKET) {
1883 debug2("channel %d: packet too big %u > %u",
1884 c->self, CHANNEL_MUX_MAX_PACKET, need);
1885 chan_rcvd_oclose(c);
1886 return;
1887 }
1888 if (read_mux(c, need + 4) < need + 4) /* read body */
1889 return;
1890 if (c->mux_rcb(c) != 0) {
1891 debug("channel %d: mux_rcb failed", c->self);
1892 chan_mark_dead(c);
1893 return;
1894 }
1895 }
1896
1897 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1898 buffer_len(&c->output) > 0) {
1899 len = write(c->wfd, buffer_ptr(&c->output),
1900 buffer_len(&c->output));
1901 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1902 return;
1903 if (len <= 0) {
1904 chan_mark_dead(c);
1905 return;
1906 }
1907 buffer_consume(&c->output, len);
1908 }
1909}
1910
1911static void
1912channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1913{
1914 Channel *nc;
1915 struct sockaddr_storage addr;
1916 socklen_t addrlen;
1917 int newsock;
1918 uid_t euid;
1919 gid_t egid;
1920
1921 if (!FD_ISSET(c->sock, readset))
1922 return;
1923
1924 debug("multiplexing control connection");
1925
1926 /*
1927 * Accept connection on control socket
1928 */
1929 memset(&addr, 0, sizeof(addr));
1930 addrlen = sizeof(addr);
1931 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1932 &addrlen)) == -1) {
1933 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001934 if (errno == EMFILE || errno == ENFILE)
1935 c->notbefore = time(NULL) + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001936 return;
1937 }
1938
1939 if (getpeereid(newsock, &euid, &egid) < 0) {
1940 error("%s getpeereid failed: %s", __func__,
1941 strerror(errno));
1942 close(newsock);
1943 return;
1944 }
1945 if ((euid != 0) && (getuid() != euid)) {
1946 error("multiplex uid mismatch: peer euid %u != uid %u",
1947 (u_int)euid, (u_int)getuid());
1948 close(newsock);
1949 return;
1950 }
1951 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1952 newsock, newsock, -1, c->local_window_max,
1953 c->local_maxpacket, 0, "mux-control", 1);
1954 nc->mux_rcb = c->mux_rcb;
1955 debug3("%s: new mux channel %d fd %d", __func__,
1956 nc->self, nc->sock);
1957 /* establish state */
1958 nc->mux_rcb(nc);
1959 /* mux state transitions must not elicit protocol messages */
1960 nc->flags |= CHAN_LOCAL;
1961}
1962
Damien Miller8473dd82006-07-24 14:08:32 +10001963/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001964static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001965channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001966{
1967 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001968
Damien Millerb38eff82000-04-01 11:09:21 +10001969 /* Send buffered output data to the socket. */
1970 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1971 len = write(c->sock, buffer_ptr(&c->output),
1972 buffer_len(&c->output));
1973 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001974 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001975 else
1976 buffer_consume(&c->output, len);
1977 }
1978}
1979
Ben Lindstrombba81212001-06-25 05:01:22 +00001980static void
Damien Miller33b13562000-04-04 14:38:59 +10001981channel_handler_init_20(void)
1982{
Damien Millerde6987c2002-01-22 23:20:40 +11001983 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001984 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001985 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001986 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001987 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001988 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001989 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001990 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001991 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1992 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001993
Damien Millerde6987c2002-01-22 23:20:40 +11001994 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001995 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001996 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001997 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001998 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001999 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002000 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11002001 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
2002 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10002003}
2004
Ben Lindstrombba81212001-06-25 05:01:22 +00002005static void
Damien Millerb38eff82000-04-01 11:09:21 +10002006channel_handler_init_13(void)
2007{
2008 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
2009 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2010 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2011 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2012 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2013 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2014 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002015 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002016 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002017
Damien Millerde6987c2002-01-22 23:20:40 +11002018 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002019 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2020 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2021 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2022 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002023 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002024 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002025}
2026
Ben Lindstrombba81212001-06-25 05:01:22 +00002027static void
Damien Millerb38eff82000-04-01 11:09:21 +10002028channel_handler_init_15(void)
2029{
Damien Millerde6987c2002-01-22 23:20:40 +11002030 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002031 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002032 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2033 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2034 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002035 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002036 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002037
2038 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2039 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2040 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002041 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002042 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002043 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002044}
2045
Ben Lindstrombba81212001-06-25 05:01:22 +00002046static void
Damien Millerb38eff82000-04-01 11:09:21 +10002047channel_handler_init(void)
2048{
2049 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002050
Damien Miller9f0f5c62001-12-21 14:45:46 +11002051 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002052 channel_pre[i] = NULL;
2053 channel_post[i] = NULL;
2054 }
Damien Miller33b13562000-04-04 14:38:59 +10002055 if (compat20)
2056 channel_handler_init_20();
2057 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002058 channel_handler_init_13();
2059 else
2060 channel_handler_init_15();
2061}
2062
Damien Miller3ec27592001-10-12 11:35:04 +10002063/* gc dead channels */
2064static void
2065channel_garbage_collect(Channel *c)
2066{
2067 if (c == NULL)
2068 return;
2069 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002070 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002071 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002072 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002073 c->detach_user(c->self, NULL);
2074 /* if we still have a callback */
2075 if (c->detach_user != NULL)
2076 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002077 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002078 }
2079 if (!chan_is_dead(c, 1))
2080 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002081 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002082 channel_free(c);
2083}
2084
Ben Lindstrombba81212001-06-25 05:01:22 +00002085static void
Damien Millera6508752012-04-22 11:21:10 +10002086channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2087 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002088{
2089 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002090 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002091 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002092 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002093
2094 if (!did_init) {
2095 channel_handler_init();
2096 did_init = 1;
2097 }
Damien Millera6508752012-04-22 11:21:10 +10002098 now = time(NULL);
2099 if (unpause_secs != NULL)
2100 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002101 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002102 c = channels[i];
2103 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002104 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002105 if (c->delayed) {
2106 if (ftab == channel_pre)
2107 c->delayed = 0;
2108 else
2109 continue;
2110 }
Damien Millera6508752012-04-22 11:21:10 +10002111 if (ftab[c->type] != NULL) {
2112 /*
2113 * Run handlers that are not paused.
2114 */
2115 if (c->notbefore <= now)
2116 (*ftab[c->type])(c, readset, writeset);
2117 else if (unpause_secs != NULL) {
2118 /*
2119 * Collect the time that the earliest
2120 * channel comes off pause.
2121 */
2122 debug3("%s: chan %d: skip for %d more seconds",
2123 __func__, c->self,
2124 (int)(c->notbefore - now));
2125 if (*unpause_secs == 0 ||
2126 (c->notbefore - now) < *unpause_secs)
2127 *unpause_secs = c->notbefore - now;
2128 }
2129 }
Damien Miller3ec27592001-10-12 11:35:04 +10002130 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002131 }
Damien Millera6508752012-04-22 11:21:10 +10002132 if (unpause_secs != NULL && *unpause_secs != 0)
2133 debug3("%s: first channel unpauses in %d seconds",
2134 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002135}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002136
Ben Lindstrome9c99912001-06-09 00:41:05 +00002137/*
2138 * Allocate/update select bitmasks and add any bits relevant to channels in
2139 * select bitmasks.
2140 */
Damien Miller4af51302000-04-16 11:18:38 +10002141void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002142channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002143 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002144{
Damien Miller36812092006-03-26 14:22:47 +11002145 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002146
2147 n = MAX(*maxfdp, channel_max_fd);
2148
Damien Miller36812092006-03-26 14:22:47 +11002149 nfdset = howmany(n+1, NFDBITS);
2150 /* Explicitly test here, because xrealloc isn't always called */
2151 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2152 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2153 sz = nfdset * sizeof(fd_mask);
2154
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002155 /* perhaps check sz < nalloc/2 and shrink? */
2156 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002157 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2158 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002159 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002160 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002161 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002162 memset(*readsetp, 0, sz);
2163 memset(*writesetp, 0, sz);
2164
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002165 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002166 channel_handler(channel_pre, *readsetp, *writesetp,
2167 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168}
2169
Ben Lindstrome9c99912001-06-09 00:41:05 +00002170/*
2171 * After select, perform any appropriate operations for channels which have
2172 * events pending.
2173 */
Damien Miller4af51302000-04-16 11:18:38 +10002174void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002175channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002176{
Damien Millera6508752012-04-22 11:21:10 +10002177 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002178}
2179
Ben Lindstrome9c99912001-06-09 00:41:05 +00002180
Damien Miller5e953212001-01-30 09:14:00 +11002181/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002182void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002183channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002184{
Damien Millerb38eff82000-04-01 11:09:21 +10002185 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002186 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002187
Damien Miller95def091999-11-25 00:26:21 +11002188 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002189 c = channels[i];
2190 if (c == NULL)
2191 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002192
Ben Lindstrome9c99912001-06-09 00:41:05 +00002193 /*
2194 * We are only interested in channels that can have buffered
2195 * incoming data.
2196 */
Damien Miller34132e52000-01-14 15:45:46 +11002197 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002198 if (c->type != SSH_CHANNEL_OPEN &&
2199 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002200 continue;
2201 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002202 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002203 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002204 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002205 if (compat20 &&
2206 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002207 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002208 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002209 continue;
2210 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002211
Damien Miller95def091999-11-25 00:26:21 +11002212 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002213 if ((c->istate == CHAN_INPUT_OPEN ||
2214 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2215 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002216 if (c->datagram) {
2217 if (len > 0) {
2218 u_char *data;
2219 u_int dlen;
2220
2221 data = buffer_get_string(&c->input,
2222 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002223 if (dlen > c->remote_window ||
2224 dlen > c->remote_maxpacket) {
2225 debug("channel %d: datagram "
2226 "too big for channel",
2227 c->self);
2228 xfree(data);
2229 continue;
2230 }
Damien Millerd27b9472005-12-13 19:29:02 +11002231 packet_start(SSH2_MSG_CHANNEL_DATA);
2232 packet_put_int(c->remote_id);
2233 packet_put_string(data, dlen);
2234 packet_send();
2235 c->remote_window -= dlen + 4;
2236 xfree(data);
2237 }
2238 continue;
2239 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002240 /*
2241 * Send some data for the other side over the secure
2242 * connection.
2243 */
Damien Miller33b13562000-04-04 14:38:59 +10002244 if (compat20) {
2245 if (len > c->remote_window)
2246 len = c->remote_window;
2247 if (len > c->remote_maxpacket)
2248 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002249 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002250 if (packet_is_interactive()) {
2251 if (len > 1024)
2252 len = 512;
2253 } else {
2254 /* Keep the packets at reasonable size. */
2255 if (len > packet_get_maxsize()/2)
2256 len = packet_get_maxsize()/2;
2257 }
Damien Miller95def091999-11-25 00:26:21 +11002258 }
Damien Millerb38eff82000-04-01 11:09:21 +10002259 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002260 packet_start(compat20 ?
2261 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002262 packet_put_int(c->remote_id);
2263 packet_put_string(buffer_ptr(&c->input), len);
2264 packet_send();
2265 buffer_consume(&c->input, len);
2266 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002267 }
2268 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002269 if (compat13)
2270 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002271 /*
2272 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002273 * tell peer, that we will not send more data: send IEOF.
2274 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002275 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002276 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002277 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2278 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002279 else
2280 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002281 }
Damien Miller33b13562000-04-04 14:38:59 +10002282 /* Send extended data, i.e. stderr */
2283 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002284 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002285 c->remote_window > 0 &&
2286 (len = buffer_len(&c->extended)) > 0 &&
2287 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002288 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002289 c->self, c->remote_window, buffer_len(&c->extended),
2290 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002291 if (len > c->remote_window)
2292 len = c->remote_window;
2293 if (len > c->remote_maxpacket)
2294 len = c->remote_maxpacket;
2295 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2296 packet_put_int(c->remote_id);
2297 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2298 packet_put_string(buffer_ptr(&c->extended), len);
2299 packet_send();
2300 buffer_consume(&c->extended, len);
2301 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002302 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002303 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002304 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002305}
2306
Ben Lindstrome9c99912001-06-09 00:41:05 +00002307
2308/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002309
2310/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002311void
Damien Miller630d6f42002-01-22 23:17:30 +11002312channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002313{
Damien Miller34132e52000-01-14 15:45:46 +11002314 int id;
Damien Miller95def091999-11-25 00:26:21 +11002315 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002316 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002317 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002318
Damien Miller95def091999-11-25 00:26:21 +11002319 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002320 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002321 c = channel_lookup(id);
2322 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002323 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002324
Damien Miller95def091999-11-25 00:26:21 +11002325 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002326 if (c->type != SSH_CHANNEL_OPEN &&
2327 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002328 return;
2329
Damien Miller95def091999-11-25 00:26:21 +11002330 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002331 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002332 win_len = data_len;
2333 if (c->datagram)
2334 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002335
Damien Millera04ad492004-01-21 11:02:09 +11002336 /*
2337 * Ignore data for protocol > 1.3 if output end is no longer open.
2338 * For protocol 2 the sending side is reducing its window as it sends
2339 * data, so we must 'fake' consumption of the data in order to ensure
2340 * that window updates are sent back. Otherwise the connection might
2341 * deadlock.
2342 */
2343 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2344 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002345 c->local_window -= win_len;
2346 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002347 }
Damien Millera04ad492004-01-21 11:02:09 +11002348 return;
2349 }
2350
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002351 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002352 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002353 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002354 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002355 }
Damien Miller7d457182010-08-05 23:09:48 +10002356 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002357 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002358 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002359 return;
2360 }
Damien Miller7d457182010-08-05 23:09:48 +10002361 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002362 }
Damien Millerd27b9472005-12-13 19:29:02 +11002363 if (c->datagram)
2364 buffer_put_string(&c->output, data, data_len);
2365 else
2366 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002367 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002368}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002369
Damien Millerd79b4242006-03-31 23:11:44 +11002370/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002371void
Damien Miller630d6f42002-01-22 23:17:30 +11002372channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002373{
2374 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002375 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002376 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002377 Channel *c;
2378
2379 /* Get the channel number and verify it. */
2380 id = packet_get_int();
2381 c = channel_lookup(id);
2382
2383 if (c == NULL)
2384 packet_disconnect("Received extended_data for bad channel %d.", id);
2385 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002386 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002387 return;
2388 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002389 if (c->flags & CHAN_EOF_RCVD) {
2390 if (datafellows & SSH_BUG_EXTEOF)
2391 debug("channel %d: accepting ext data after eof", id);
2392 else
2393 packet_disconnect("Received extended_data after EOF "
2394 "on channel %d.", id);
2395 }
Damien Miller33b13562000-04-04 14:38:59 +10002396 tcode = packet_get_int();
2397 if (c->efd == -1 ||
2398 c->extended_usage != CHAN_EXTENDED_WRITE ||
2399 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002400 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002401 return;
2402 }
2403 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002404 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002405 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002406 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002407 c->self, data_len, c->local_window);
2408 xfree(data);
2409 return;
2410 }
Damien Millerd3444942000-09-30 14:20:03 +11002411 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002412 c->local_window -= data_len;
2413 buffer_append(&c->extended, data, data_len);
2414 xfree(data);
2415}
2416
Damien Millerd79b4242006-03-31 23:11:44 +11002417/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002418void
Damien Miller630d6f42002-01-22 23:17:30 +11002419channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002420{
2421 int id;
2422 Channel *c;
2423
Damien Millerb38eff82000-04-01 11:09:21 +10002424 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002425 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002426 c = channel_lookup(id);
2427 if (c == NULL)
2428 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2429 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002430
2431 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002432 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002433 debug("channel %d: FORCE input drain", c->self);
2434 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002435 if (buffer_len(&c->input) == 0)
2436 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002437 }
2438
Damien Millerb38eff82000-04-01 11:09:21 +10002439}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002440
Damien Millerd79b4242006-03-31 23:11:44 +11002441/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002442void
Damien Miller630d6f42002-01-22 23:17:30 +11002443channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002444{
Damien Millerb38eff82000-04-01 11:09:21 +10002445 int id;
2446 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002447
Damien Millerb38eff82000-04-01 11:09:21 +10002448 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002449 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002450 c = channel_lookup(id);
2451 if (c == NULL)
2452 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002453
2454 /*
2455 * Send a confirmation that we have closed the channel and no more
2456 * data is coming for it.
2457 */
Damien Miller95def091999-11-25 00:26:21 +11002458 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002459 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002460 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002461
Damien Miller5428f641999-11-25 11:54:57 +11002462 /*
2463 * If the channel is in closed state, we have sent a close request,
2464 * and the other side will eventually respond with a confirmation.
2465 * Thus, we cannot free the channel here, because then there would be
2466 * no-one to receive the confirmation. The channel gets freed when
2467 * the confirmation arrives.
2468 */
Damien Millerb38eff82000-04-01 11:09:21 +10002469 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002470 /*
2471 * Not a closed channel - mark it as draining, which will
2472 * cause it to be freed later.
2473 */
Damien Miller76765c02002-01-22 23:21:15 +11002474 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002475 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002476 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002477}
2478
Damien Millerb38eff82000-04-01 11:09:21 +10002479/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002480/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002481void
Damien Miller630d6f42002-01-22 23:17:30 +11002482channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002483{
Damien Millerb38eff82000-04-01 11:09:21 +10002484 int id = packet_get_int();
2485 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002486
Damien Miller48b03fc2002-01-22 23:11:40 +11002487 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002488 if (c == NULL)
2489 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2490 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491}
2492
Damien Millerd79b4242006-03-31 23:11:44 +11002493/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002494void
Damien Miller630d6f42002-01-22 23:17:30 +11002495channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002496{
2497 int id = packet_get_int();
2498 Channel *c = channel_lookup(id);
2499
Damien Miller48b03fc2002-01-22 23:11:40 +11002500 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002501 if (c == NULL)
2502 packet_disconnect("Received close confirmation for "
2503 "out-of-range channel %d.", id);
2504 if (c->type != SSH_CHANNEL_CLOSED)
2505 packet_disconnect("Received close confirmation for "
2506 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002507 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002508}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002509
Damien Millerd79b4242006-03-31 23:11:44 +11002510/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002511void
Damien Miller630d6f42002-01-22 23:17:30 +11002512channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002513{
Damien Millerb38eff82000-04-01 11:09:21 +10002514 int id, remote_id;
2515 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002516
Damien Millerb38eff82000-04-01 11:09:21 +10002517 id = packet_get_int();
2518 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002519
Damien Millerb38eff82000-04-01 11:09:21 +10002520 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2521 packet_disconnect("Received open confirmation for "
2522 "non-opening channel %d.", id);
2523 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002524 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002525 c->remote_id = remote_id;
2526 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002527
2528 if (compat20) {
2529 c->remote_window = packet_get_int();
2530 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002531 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002532 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002533 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002534 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002535 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002536 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002537 c->remote_window, c->remote_maxpacket);
2538 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002539 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002540}
2541
Ben Lindstrombba81212001-06-25 05:01:22 +00002542static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002543reason2txt(int reason)
2544{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002545 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002546 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2547 return "administratively prohibited";
2548 case SSH2_OPEN_CONNECT_FAILED:
2549 return "connect failed";
2550 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2551 return "unknown channel type";
2552 case SSH2_OPEN_RESOURCE_SHORTAGE:
2553 return "resource shortage";
2554 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002555 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002556}
2557
Damien Millerd79b4242006-03-31 23:11:44 +11002558/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002559void
Damien Miller630d6f42002-01-22 23:17:30 +11002560channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002561{
Kevin Steves12057502001-02-05 14:54:34 +00002562 int id, reason;
2563 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002564 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002565
Damien Millerb38eff82000-04-01 11:09:21 +10002566 id = packet_get_int();
2567 c = channel_lookup(id);
2568
2569 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2570 packet_disconnect("Received open failure for "
2571 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002572 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002573 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002574 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002575 msg = packet_get_string(NULL);
2576 lang = packet_get_string(NULL);
2577 }
Damien Miller996acd22003-04-09 20:59:48 +10002578 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002579 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002580 if (msg != NULL)
2581 xfree(msg);
2582 if (lang != NULL)
2583 xfree(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002584 if (c->open_confirm) {
2585 debug2("callback start");
2586 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2587 debug2("callback done");
2588 }
Damien Miller33b13562000-04-04 14:38:59 +10002589 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002590 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002591 /* Schedule the channel for cleanup/deletion. */
2592 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002593}
2594
Damien Millerd79b4242006-03-31 23:11:44 +11002595/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002596void
Damien Miller630d6f42002-01-22 23:17:30 +11002597channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002598{
2599 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002600 int id;
2601 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002602
2603 if (!compat20)
2604 return;
2605
2606 /* Get the channel number and verify it. */
2607 id = packet_get_int();
2608 c = channel_lookup(id);
2609
Damien Millerd47c62a2005-12-13 19:33:57 +11002610 if (c == NULL) {
2611 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002612 return;
2613 }
2614 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002615 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002616 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002617 c->remote_window += adjust;
2618}
2619
Damien Millerd79b4242006-03-31 23:11:44 +11002620/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002621void
Damien Miller630d6f42002-01-22 23:17:30 +11002622channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002623{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002624 Channel *c = NULL;
2625 u_short host_port;
2626 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002627 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002628
Ben Lindstrome9c99912001-06-09 00:41:05 +00002629 remote_id = packet_get_int();
2630 host = packet_get_string(NULL);
2631 host_port = packet_get_int();
2632
2633 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2634 originator_string = packet_get_string(NULL);
2635 } else {
2636 originator_string = xstrdup("unknown (remote did not supply name)");
2637 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002638 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002639 c = channel_connect_to(host, host_port,
2640 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002641 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002642 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002643 if (c == NULL) {
2644 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2645 packet_put_int(remote_id);
2646 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002647 } else
2648 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002649}
2650
Damien Millerb84886b2008-05-19 15:05:07 +10002651/* ARGSUSED */
2652void
2653channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2654{
2655 Channel *c;
2656 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002657 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002658
2659 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002660 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002661
Damien Miller16a73072008-12-08 09:55:25 +11002662 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002663 packet_check_eom();
2664
Damien Miller16a73072008-12-08 09:55:25 +11002665 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002666
Damien Miller16a73072008-12-08 09:55:25 +11002667 if ((c = channel_lookup(id)) == NULL) {
2668 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002669 return;
2670 }
2671 ;
2672 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2673 return;
2674 cc->cb(type, c, cc->ctx);
2675 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2676 bzero(cc, sizeof(*cc));
2677 xfree(cc);
2678}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002679
Ben Lindstrome9c99912001-06-09 00:41:05 +00002680/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002681
Ben Lindstrom908afed2001-10-03 17:34:59 +00002682void
2683channel_set_af(int af)
2684{
2685 IPv4or6 = af;
2686}
2687
Damien Millerf6dff7c2011-09-22 21:38:52 +10002688
2689/*
2690 * Determine whether or not a port forward listens to loopback, the
2691 * specified address or wildcard. On the client, a specified bind
2692 * address will always override gateway_ports. On the server, a
2693 * gateway_ports of 1 (``yes'') will override the client's specification
2694 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2695 * will bind to whatever address the client asked for.
2696 *
2697 * Special-case listen_addrs are:
2698 *
2699 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2700 * "" (empty string), "*" -> wildcard v4/v6
2701 * "localhost" -> loopback v4/v6
2702 */
2703static const char *
2704channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
2705 int is_client, int gateway_ports)
2706{
2707 const char *addr = NULL;
2708 int wildcard = 0;
2709
2710 if (listen_addr == NULL) {
2711 /* No address specified: default to gateway_ports setting */
2712 if (gateway_ports)
2713 wildcard = 1;
2714 } else if (gateway_ports || is_client) {
2715 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2716 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2717 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2718 (!is_client && gateway_ports == 1))
2719 wildcard = 1;
2720 else if (strcmp(listen_addr, "localhost") != 0)
2721 addr = listen_addr;
2722 }
2723 if (wildcardp != NULL)
2724 *wildcardp = wildcard;
2725 return addr;
2726}
2727
Damien Millerb16461c2002-01-22 23:29:22 +11002728static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002729channel_setup_fwd_listener(int type, const char *listen_addr,
2730 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002731 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002732{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002733 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002734 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002735 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002736 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002737 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002738 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002739
Damien Millerb16461c2002-01-22 23:29:22 +11002740 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2741 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002742 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002743
Damien Millerb16461c2002-01-22 23:29:22 +11002744 if (host == NULL) {
2745 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002746 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002747 }
Damien Miller9576ac42009-01-28 16:30:33 +11002748 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002749 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002750 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002751 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002752
Damien Millerf6dff7c2011-09-22 21:38:52 +10002753 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
2754 addr = channel_fwd_bind_addr(listen_addr, &wildcard,
2755 is_client, gateway_ports);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002756 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2757 type, wildcard, (addr == NULL) ? "NULL" : addr);
2758
2759 /*
Damien Miller34132e52000-01-14 15:45:46 +11002760 * getaddrinfo returns a loopback address if the hostname is
2761 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002762 */
Damien Miller34132e52000-01-14 15:45:46 +11002763 memset(&hints, 0, sizeof(hints));
2764 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002765 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002766 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002767 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002768 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2769 if (addr == NULL) {
2770 /* This really shouldn't happen */
2771 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002772 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002773 } else {
Damien Millera7270302005-07-06 09:36:05 +10002774 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002775 "getaddrinfo(%.64s): %s", addr,
2776 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002777 }
Damien Millera7270302005-07-06 09:36:05 +10002778 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002779 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002780 if (allocated_listen_port != NULL)
2781 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002782 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002783 switch (ai->ai_family) {
2784 case AF_INET:
2785 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2786 sin_port;
2787 break;
2788 case AF_INET6:
2789 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2790 sin6_port;
2791 break;
2792 default:
Damien Miller34132e52000-01-14 15:45:46 +11002793 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002794 }
2795 /*
2796 * If allocating a port for -R forwards, then use the
2797 * same port for all address families.
2798 */
2799 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2800 allocated_listen_port != NULL && *allocated_listen_port > 0)
2801 *lport_p = htons(*allocated_listen_port);
2802
Damien Miller34132e52000-01-14 15:45:46 +11002803 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2804 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002805 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002806 continue;
2807 }
2808 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002809 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002810 if (sock < 0) {
2811 /* this is no error since kernel may not support ipv6 */
2812 verbose("socket: %.100s", strerror(errno));
2813 continue;
2814 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002815
2816 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002817 if (ai->ai_family == AF_INET6)
2818 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002819
Damien Miller4bf648f2009-02-14 16:28:21 +11002820 debug("Local forwarding listening on %s port %s.",
2821 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002822
Damien Miller34132e52000-01-14 15:45:46 +11002823 /* Bind the socket to the address. */
2824 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2825 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002826 if (!ai->ai_next)
2827 error("bind: %.100s", strerror(errno));
2828 else
2829 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002830
Damien Miller34132e52000-01-14 15:45:46 +11002831 close(sock);
2832 continue;
2833 }
2834 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002835 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002836 error("listen: %.100s", strerror(errno));
2837 close(sock);
2838 continue;
2839 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002840
2841 /*
2842 * listen_port == 0 requests a dynamically allocated port -
2843 * record what we got.
2844 */
2845 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2846 allocated_listen_port != NULL &&
2847 *allocated_listen_port == 0) {
2848 *allocated_listen_port = get_sock_port(sock, 1);
2849 debug("Allocated listen port %d",
2850 *allocated_listen_port);
2851 }
2852
Damien Miller34132e52000-01-14 15:45:46 +11002853 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002854 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002855 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002856 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002857 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002858 c->host_port = port_to_connect;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002859 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Darren Tucker68afb8c2011-10-02 18:59:03 +11002860 if (listen_port == 0 && allocated_listen_port != NULL &&
2861 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2862 c->listening_port = *allocated_listen_port;
2863 else
2864 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002865 success = 1;
2866 }
2867 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002868 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002869 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002870 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002871 return success;
Damien Miller95def091999-11-25 00:26:21 +11002872}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002873
Darren Tuckere7066df2004-05-24 10:18:05 +10002874int
2875channel_cancel_rport_listener(const char *host, u_short port)
2876{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002877 u_int i;
2878 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002879
Darren Tucker47eede72005-03-14 23:08:12 +11002880 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002881 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10002882 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
2883 continue;
2884 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
2885 debug2("%s: close channel %d", __func__, i);
2886 channel_free(c);
2887 found = 1;
2888 }
2889 }
Darren Tuckere7066df2004-05-24 10:18:05 +10002890
Damien Millerf6dff7c2011-09-22 21:38:52 +10002891 return (found);
2892}
2893
2894int
2895channel_cancel_lport_listener(const char *lhost, u_short lport,
Damien Millerff773642011-09-22 21:39:48 +10002896 int cport, int gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002897{
2898 u_int i;
2899 int found = 0;
2900 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
2901
2902 for (i = 0; i < channels_alloc; i++) {
2903 Channel *c = channels[i];
2904 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
2905 continue;
Damien Millerff773642011-09-22 21:39:48 +10002906 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002907 continue;
Damien Millerff773642011-09-22 21:39:48 +10002908 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
2909 /* skip dynamic forwardings */
2910 if (c->host_port == 0)
2911 continue;
2912 } else {
2913 if (c->host_port != cport)
2914 continue;
2915 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10002916 if ((c->listening_addr == NULL && addr != NULL) ||
2917 (c->listening_addr != NULL && addr == NULL))
2918 continue;
2919 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002920 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002921 channel_free(c);
2922 found = 1;
2923 }
2924 }
2925
2926 return (found);
2927}
2928
Damien Millerb16461c2002-01-22 23:29:22 +11002929/* protocol local port fwd, used by ssh (and sshd in v1) */
2930int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002931channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002932 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2933{
2934 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002935 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002936 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002937}
2938
2939/* protocol v2 remote port fwd, used by sshd */
2940int
2941channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002942 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002943{
2944 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002945 listen_address, listen_port, allocated_listen_port,
2946 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002947}
2948
Damien Miller5428f641999-11-25 11:54:57 +11002949/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10002950 * Translate the requested rfwd listen host to something usable for
2951 * this server.
2952 */
2953static const char *
2954channel_rfwd_bind_host(const char *listen_host)
2955{
2956 if (listen_host == NULL) {
2957 if (datafellows & SSH_BUG_RFWD_ADDR)
2958 return "127.0.0.1";
2959 else
2960 return "localhost";
2961 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
2962 if (datafellows & SSH_BUG_RFWD_ADDR)
2963 return "0.0.0.0";
2964 else
2965 return "";
2966 } else
2967 return listen_host;
2968}
2969
2970/*
Damien Miller5428f641999-11-25 11:54:57 +11002971 * Initiate forwarding of connections to port "port" on remote host through
2972 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11002973 * Returns handle (index) for updating the dynamic listen port with
2974 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11002975 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002976int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002977channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002978 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002979{
Darren Tucker68afb8c2011-10-02 18:59:03 +11002980 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002981
Damien Miller95def091999-11-25 00:26:21 +11002982 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002983 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002984 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2985 packet_put_cstring("tcpip-forward");
Damien Millerf6dff7c2011-09-22 21:38:52 +10002986 packet_put_char(1); /* boolean: want reply */
2987 packet_put_cstring(channel_rfwd_bind_host(listen_host));
Damien Miller33b13562000-04-04 14:38:59 +10002988 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002989 packet_send();
2990 packet_write_wait();
2991 /* Assume that server accepts the request */
2992 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002993 } else {
2994 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002995 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002996 packet_put_cstring(host_to_connect);
2997 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002998 packet_send();
2999 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003000
3001 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11003002 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11003003 switch (type) {
3004 case SSH_SMSG_SUCCESS:
3005 success = 1;
3006 break;
3007 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11003008 break;
3009 default:
3010 /* Unknown packet */
3011 packet_disconnect("Protocol error for port forward request:"
3012 "received packet type %d.", type);
3013 }
3014 }
3015 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003016 /* Record that connection to this host/port is permitted. */
3017 permitted_opens = xrealloc(permitted_opens,
3018 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003019 idx = num_permitted_opens++;
3020 permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
3021 permitted_opens[idx].port_to_connect = port_to_connect;
3022 permitted_opens[idx].listen_port = listen_port;
Damien Miller33b13562000-04-04 14:38:59 +10003023 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003024 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003025}
3026
Damien Miller5428f641999-11-25 11:54:57 +11003027/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003028 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003029 * local side.
3030 */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003031int
Damien Millerf91ee4c2005-03-01 21:24:33 +11003032channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003033{
3034 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003035
3036 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003037 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003038
3039 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10003040 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10003041 permitted_opens[i].listen_port == port)
3042 break;
3043 }
3044 if (i >= num_permitted_opens) {
3045 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003046 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003047 }
3048 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3049 packet_put_cstring("cancel-tcpip-forward");
3050 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003051 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003052 packet_put_int(port);
3053 packet_send();
3054
3055 permitted_opens[i].listen_port = 0;
3056 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11003057 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003058 permitted_opens[i].host_to_connect = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003059
3060 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003061}
3062
3063/*
Damien Miller5428f641999-11-25 11:54:57 +11003064 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3065 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003066 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003067 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003068int
Damien Millere247cc42000-05-07 12:03:14 +10003069channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003070{
Damien Milleraae6c611999-12-06 11:47:28 +11003071 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10003072 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11003073 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003074
Damien Miller95def091999-11-25 00:26:21 +11003075 /* Get arguments from the packet. */
3076 port = packet_get_int();
3077 hostname = packet_get_string(NULL);
3078 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003079
Damien Millerbac2d8a2000-09-05 16:13:06 +11003080#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003081 /*
3082 * Check that an unprivileged user is not trying to forward a
3083 * privileged port.
3084 */
Damien Miller95def091999-11-25 00:26:21 +11003085 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003086 packet_disconnect(
3087 "Requested forwarding of port %d but user is not root.",
3088 port);
3089 if (host_port == 0)
3090 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003091#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003092
Damien Miller0bc1bd82000-11-13 22:57:25 +11003093 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003094 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003095 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11003096
3097 /* Free the argument string. */
3098 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003099
3100 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003101}
3102
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003103/*
3104 * Permits opening to any host/port if permitted_opens[] is empty. This is
3105 * usually called by the server, because the user could connect to any port
3106 * anyway, and the server has no way to know but to trust the client anyway.
3107 */
3108void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003109channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003110{
3111 if (num_permitted_opens == 0)
3112 all_opens_permitted = 1;
3113}
3114
Ben Lindstroma3700052001-04-05 23:26:32 +00003115void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003116channel_add_permitted_opens(char *host, int port)
3117{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003118 debug("allow port forwarding to host %s port %d", host, port);
3119
Damien Miller232cfb12010-06-26 09:50:30 +10003120 permitted_opens = xrealloc(permitted_opens,
3121 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003122 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3123 permitted_opens[num_permitted_opens].port_to_connect = port;
3124 num_permitted_opens++;
3125
3126 all_opens_permitted = 0;
3127}
3128
Darren Tucker68afb8c2011-10-02 18:59:03 +11003129/*
3130 * Update the listen port for a dynamic remote forward, after
3131 * the actual 'newport' has been allocated. If 'newport' < 0 is
3132 * passed then they entry will be invalidated.
3133 */
3134void
3135channel_update_permitted_opens(int idx, int newport)
3136{
3137 if (idx < 0 || idx >= num_permitted_opens) {
3138 debug("channel_update_permitted_opens: index out of range:"
3139 " %d num_permitted_opens %d", idx, num_permitted_opens);
3140 return;
3141 }
3142 debug("%s allowed port %d for forwarding to host %s port %d",
3143 newport > 0 ? "Updating" : "Removing",
3144 newport,
3145 permitted_opens[idx].host_to_connect,
3146 permitted_opens[idx].port_to_connect);
3147 if (newport >= 0) {
3148 permitted_opens[idx].listen_port =
3149 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3150 } else {
3151 permitted_opens[idx].listen_port = 0;
3152 permitted_opens[idx].port_to_connect = 0;
3153 xfree(permitted_opens[idx].host_to_connect);
3154 permitted_opens[idx].host_to_connect = NULL;
3155 }
3156}
3157
Damien Millera765cf42006-07-24 14:08:13 +10003158int
Damien Miller9b439df2006-07-24 14:04:00 +10003159channel_add_adm_permitted_opens(char *host, int port)
3160{
Damien Millera765cf42006-07-24 14:08:13 +10003161 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003162
Damien Miller232cfb12010-06-26 09:50:30 +10003163 permitted_adm_opens = xrealloc(permitted_adm_opens,
3164 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003165 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3166 = xstrdup(host);
3167 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003168 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003169}
3170
3171void
Damien Millerc6081482012-04-22 11:18:53 +10003172channel_disable_adm_local_opens(void)
3173{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003174 channel_clear_adm_permitted_opens();
3175 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3176 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3177 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003178}
3179
3180void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003181channel_clear_permitted_opens(void)
3182{
3183 int i;
3184
3185 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003186 if (permitted_opens[i].host_to_connect != NULL)
3187 xfree(permitted_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003188 if (num_permitted_opens > 0) {
3189 xfree(permitted_opens);
3190 permitted_opens = NULL;
3191 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003192 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003193}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003194
Damien Miller9b439df2006-07-24 14:04:00 +10003195void
3196channel_clear_adm_permitted_opens(void)
3197{
3198 int i;
3199
3200 for (i = 0; i < num_adm_permitted_opens; i++)
3201 if (permitted_adm_opens[i].host_to_connect != NULL)
3202 xfree(permitted_adm_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003203 if (num_adm_permitted_opens > 0) {
3204 xfree(permitted_adm_opens);
3205 permitted_adm_opens = NULL;
3206 }
Damien Miller9b439df2006-07-24 14:04:00 +10003207 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003208}
3209
Darren Tuckere7140f22008-06-10 23:01:51 +10003210void
3211channel_print_adm_permitted_opens(void)
3212{
Damien Miller6ef17492008-07-16 22:42:06 +10003213 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003214
Damien Millerb53d8a12009-01-28 16:13:04 +11003215 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003216 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003217 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003218 return;
3219 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003220 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003221 if (permitted_adm_opens[i].host_to_connect == NULL)
3222 printf(" none");
3223 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003224 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3225 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003226 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003227}
3228
Darren Tucker1338b9e2011-10-02 18:57:35 +11003229/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3230int
3231permitopen_port(const char *p)
3232{
3233 int port;
3234
3235 if (strcmp(p, "*") == 0)
3236 return FWD_PERMIT_ANY_PORT;
3237 if ((port = a2port(p)) > 0)
3238 return port;
3239 return -1;
3240}
3241
3242static int
3243port_match(u_short allowedport, u_short requestedport)
3244{
3245 if (allowedport == FWD_PERMIT_ANY_PORT ||
3246 allowedport == requestedport)
3247 return 1;
3248 return 0;
3249}
3250
Damien Millerbd740252008-05-19 15:37:09 +10003251/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003252static int
Damien Millerbd740252008-05-19 15:37:09 +10003253connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003254{
Damien Millerbd740252008-05-19 15:37:09 +10003255 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003256 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003257
Damien Millerbd740252008-05-19 15:37:09 +10003258 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3259 if (cctx->ai->ai_family != AF_INET &&
3260 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003261 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003262 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3263 ntop, sizeof(ntop), strport, sizeof(strport),
3264 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3265 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003266 continue;
3267 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003268 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3269 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003270 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003271 error("socket: %.100s", strerror(errno));
3272 else
3273 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003274 continue;
3275 }
Damien Miller232711f2004-06-15 10:35:30 +10003276 if (set_nonblock(sock) == -1)
3277 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003278 if (connect(sock, cctx->ai->ai_addr,
3279 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3280 debug("connect_next: host %.100s ([%.100s]:%s): "
3281 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003282 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003283 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003284 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003285 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003286 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003287 }
Damien Millerbd740252008-05-19 15:37:09 +10003288 debug("connect_next: host %.100s ([%.100s]:%s) "
3289 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3290 cctx->ai = cctx->ai->ai_next;
3291 set_nodelay(sock);
3292 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003293 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003294 return -1;
3295}
Damien Millerb38eff82000-04-01 11:09:21 +10003296
Damien Millerbd740252008-05-19 15:37:09 +10003297static void
3298channel_connect_ctx_free(struct channel_connect *cctx)
3299{
3300 xfree(cctx->host);
3301 if (cctx->aitop)
3302 freeaddrinfo(cctx->aitop);
3303 bzero(cctx, sizeof(*cctx));
3304 cctx->host = NULL;
3305 cctx->ai = cctx->aitop = NULL;
3306}
3307
3308/* Return CONNECTING channel to remote host, port */
3309static Channel *
3310connect_to(const char *host, u_short port, char *ctype, char *rname)
3311{
3312 struct addrinfo hints;
3313 int gaierr;
3314 int sock = -1;
3315 char strport[NI_MAXSERV];
3316 struct channel_connect cctx;
3317 Channel *c;
3318
Damien Miller2bcb8662008-07-12 17:12:29 +10003319 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003320 memset(&hints, 0, sizeof(hints));
3321 hints.ai_family = IPv4or6;
3322 hints.ai_socktype = SOCK_STREAM;
3323 snprintf(strport, sizeof strport, "%d", port);
3324 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3325 error("connect_to %.100s: unknown host (%s)", host,
3326 ssh_gai_strerror(gaierr));
3327 return NULL;
3328 }
3329
3330 cctx.host = xstrdup(host);
3331 cctx.port = port;
3332 cctx.ai = cctx.aitop;
3333
3334 if ((sock = connect_next(&cctx)) == -1) {
3335 error("connect to %.100s port %d failed: %s",
3336 host, port, strerror(errno));
3337 channel_connect_ctx_free(&cctx);
3338 return NULL;
3339 }
3340 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3341 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3342 c->connect_ctx = cctx;
3343 return c;
3344}
3345
3346Channel *
3347channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3348{
3349 int i;
3350
3351 for (i = 0; i < num_permitted_opens; i++) {
3352 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003353 port_match(permitted_opens[i].listen_port, listen_port)) {
Damien Millerbd740252008-05-19 15:37:09 +10003354 return connect_to(
3355 permitted_opens[i].host_to_connect,
3356 permitted_opens[i].port_to_connect, ctype, rname);
3357 }
3358 }
3359 error("WARNING: Server requests forwarding for unknown listen_port %d",
3360 listen_port);
3361 return NULL;
3362}
3363
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003364/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003365Channel *
3366channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003367{
Damien Miller9b439df2006-07-24 14:04:00 +10003368 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003369
3370 permit = all_opens_permitted;
3371 if (!permit) {
3372 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003373 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003374 port_match(permitted_opens[i].port_to_connect, port) &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003375 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3376 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003377 }
Damien Miller9b439df2006-07-24 14:04:00 +10003378
3379 if (num_adm_permitted_opens > 0) {
3380 permit_adm = 0;
3381 for (i = 0; i < num_adm_permitted_opens; i++)
3382 if (permitted_adm_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003383 port_match(permitted_adm_opens[i].port_to_connect, port) &&
Damien Miller9b439df2006-07-24 14:04:00 +10003384 strcmp(permitted_adm_opens[i].host_to_connect, host)
3385 == 0)
3386 permit_adm = 1;
3387 }
3388
3389 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003390 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003391 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003392 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003393 }
Damien Millerbd740252008-05-19 15:37:09 +10003394 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003395}
3396
Damien Miller0e220db2004-06-15 10:34:08 +10003397void
3398channel_send_window_changes(void)
3399{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003400 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003401 struct winsize ws;
3402
3403 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003404 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003405 channels[i]->type != SSH_CHANNEL_OPEN)
3406 continue;
3407 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3408 continue;
3409 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003410 packet_put_int((u_int)ws.ws_col);
3411 packet_put_int((u_int)ws.ws_row);
3412 packet_put_int((u_int)ws.ws_xpixel);
3413 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003414 packet_send();
3415 }
3416}
3417
Ben Lindstrome9c99912001-06-09 00:41:05 +00003418/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003419
Damien Miller5428f641999-11-25 11:54:57 +11003420/*
3421 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003422 * Returns 0 and a suitable display number for the DISPLAY variable
3423 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003424 */
Kevin Steves366298c2001-12-19 17:58:01 +00003425int
Damien Miller95c249f2002-02-05 12:11:34 +11003426x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003427 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003428{
Damien Millere7378562001-12-21 14:58:35 +11003429 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003430 int display_number, sock;
3431 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003432 struct addrinfo hints, *ai, *aitop;
3433 char strport[NI_MAXSERV];
3434 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003435
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003436 if (chanids == NULL)
3437 return -1;
3438
Damien Millera34a28b1999-12-14 10:47:15 +11003439 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003440 display_number < MAX_DISPLAYS;
3441 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003442 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003443 memset(&hints, 0, sizeof(hints));
3444 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003445 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003446 hints.ai_socktype = SOCK_STREAM;
3447 snprintf(strport, sizeof strport, "%d", port);
3448 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003449 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003450 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003451 }
Damien Miller34132e52000-01-14 15:45:46 +11003452 for (ai = aitop; ai; ai = ai->ai_next) {
3453 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3454 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003455 sock = socket(ai->ai_family, ai->ai_socktype,
3456 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003457 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003458 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3459#ifdef EPFNOSUPPORT
3460 && (errno != EPFNOSUPPORT)
3461#endif
3462 ) {
Damien Millere2192732000-01-17 13:22:55 +11003463 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003464 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003465 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003466 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003467 debug("x11_create_display_inet: Socket family %d not supported",
3468 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003469 continue;
3470 }
Damien Miller34132e52000-01-14 15:45:46 +11003471 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003472 if (ai->ai_family == AF_INET6)
3473 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003474 if (x11_use_localhost)
3475 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003476 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003477 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003478 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003479
Damien Miller34132e52000-01-14 15:45:46 +11003480 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003481 close(socks[n]);
3482 }
3483 num_socks = 0;
3484 break;
3485 }
3486 socks[num_socks++] = sock;
3487 if (num_socks == NUM_SOCKS)
3488 break;
Damien Miller95def091999-11-25 00:26:21 +11003489 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003490 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003491 if (num_socks > 0)
3492 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003493 }
Damien Miller95def091999-11-25 00:26:21 +11003494 if (display_number >= MAX_DISPLAYS) {
3495 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003496 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003497 }
Damien Miller95def091999-11-25 00:26:21 +11003498 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003499 for (n = 0; n < num_socks; n++) {
3500 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003501 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003502 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003503 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003504 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003505 }
Damien Miller95def091999-11-25 00:26:21 +11003506 }
Damien Miller34132e52000-01-14 15:45:46 +11003507
Damien Miller34132e52000-01-14 15:45:46 +11003508 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003509 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003510 for (n = 0; n < num_socks; n++) {
3511 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003512 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003513 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3514 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003515 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003516 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003517 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003518 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003519 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003520
Kevin Steves366298c2001-12-19 17:58:01 +00003521 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003522 *display_numberp = display_number;
3523 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003524}
3525
Ben Lindstrombba81212001-06-25 05:01:22 +00003526static int
Damien Miller819dbb62009-01-21 16:46:26 +11003527connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003528{
Damien Miller95def091999-11-25 00:26:21 +11003529 int sock;
3530 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003531
Damien Miller3afe3752001-12-21 12:39:51 +11003532 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3533 if (sock < 0)
3534 error("socket: %.100s", strerror(errno));
3535 memset(&addr, 0, sizeof(addr));
3536 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003537 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003538 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003539 return sock;
3540 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003541 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3542 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003543}
3544
Damien Miller819dbb62009-01-21 16:46:26 +11003545static int
3546connect_local_xsocket(u_int dnr)
3547{
3548 char buf[1024];
3549 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3550 return connect_local_xsocket_path(buf);
3551}
3552
Damien Millerbd483e72000-04-30 10:00:53 +10003553int
3554x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003555{
Damien Miller57c4e872006-03-31 23:11:07 +11003556 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003557 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003558 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003559 struct addrinfo hints, *ai, *aitop;
3560 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003561 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003562
Damien Miller95def091999-11-25 00:26:21 +11003563 /* Try to open a socket for the local X server. */
3564 display = getenv("DISPLAY");
3565 if (!display) {
3566 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003567 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003568 }
Damien Miller5428f641999-11-25 11:54:57 +11003569 /*
3570 * Now we decode the value of the DISPLAY variable and make a
3571 * connection to the real X server.
3572 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003573
Damien Miller819dbb62009-01-21 16:46:26 +11003574 /* Check if the display is from launchd. */
3575#ifdef __APPLE__
3576 if (strncmp(display, "/tmp/launch", 11) == 0) {
3577 sock = connect_local_xsocket_path(display);
3578 if (sock < 0)
3579 return -1;
3580
3581 /* OK, we now have a connection to the display. */
3582 return sock;
3583 }
3584#endif
Damien Miller5428f641999-11-25 11:54:57 +11003585 /*
3586 * Check if it is a unix domain socket. Unix domain displays are in
3587 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3588 */
Damien Miller95def091999-11-25 00:26:21 +11003589 if (strncmp(display, "unix:", 5) == 0 ||
3590 display[0] == ':') {
3591 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003592 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003593 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003594 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003595 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003596 }
3597 /* Create a socket. */
3598 sock = connect_local_xsocket(display_number);
3599 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003600 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003601
3602 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003603 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003604 }
Damien Miller5428f641999-11-25 11:54:57 +11003605 /*
3606 * Connect to an inet socket. The DISPLAY value is supposedly
3607 * hostname:d[.s], where hostname may also be numeric IP address.
3608 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003609 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003610 cp = strchr(buf, ':');
3611 if (!cp) {
3612 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003613 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003614 }
Damien Miller95def091999-11-25 00:26:21 +11003615 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003616 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003617 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003618 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003619 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003620 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003621 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003622
Damien Miller34132e52000-01-14 15:45:46 +11003623 /* Look up the host address */
3624 memset(&hints, 0, sizeof(hints));
3625 hints.ai_family = IPv4or6;
3626 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003627 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003628 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003629 error("%.100s: unknown host. (%s)", buf,
3630 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003631 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003632 }
Damien Miller34132e52000-01-14 15:45:46 +11003633 for (ai = aitop; ai; ai = ai->ai_next) {
3634 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003635 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003636 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003637 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003638 continue;
3639 }
3640 /* Connect it to the display. */
3641 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003642 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003643 6000 + display_number, strerror(errno));
3644 close(sock);
3645 continue;
3646 }
3647 /* Success */
3648 break;
Damien Miller34132e52000-01-14 15:45:46 +11003649 }
Damien Miller34132e52000-01-14 15:45:46 +11003650 freeaddrinfo(aitop);
3651 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003652 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003653 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003654 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003655 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003656 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003657 return sock;
3658}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003659
Damien Millerbd483e72000-04-30 10:00:53 +10003660/*
3661 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3662 * the remote channel number. We should do whatever we want, and respond
3663 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3664 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003665
Damien Miller8473dd82006-07-24 14:08:32 +10003666/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003667void
Damien Miller630d6f42002-01-22 23:17:30 +11003668x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003669{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003670 Channel *c = NULL;
3671 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003672 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003673
3674 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003675
3676 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003677
3678 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003679 remote_host = packet_get_string(NULL);
3680 } else {
3681 remote_host = xstrdup("unknown (remote did not supply name)");
3682 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003683 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003684
3685 /* Obtain a connection to the real X display. */
3686 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003687 if (sock != -1) {
3688 /* Allocate a channel for this connection. */
3689 c = channel_new("connected x11 socket",
3690 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3691 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003692 c->remote_id = remote_id;
3693 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003694 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003695 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003696 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003697 /* Send refusal to the remote host. */
3698 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003699 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003700 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003701 /* Send a confirmation to the remote host. */
3702 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003703 packet_put_int(remote_id);
3704 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003705 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003706 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003707}
3708
Damien Miller69b69aa2000-10-28 14:19:58 +11003709/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003710/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003711void
Damien Miller630d6f42002-01-22 23:17:30 +11003712deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003713{
3714 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003715
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003716 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003717 case SSH_SMSG_AGENT_OPEN:
3718 error("Warning: ssh server tried agent forwarding.");
3719 break;
3720 case SSH_SMSG_X11_OPEN:
3721 error("Warning: ssh server tried X11 forwarding.");
3722 break;
3723 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003724 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003725 break;
3726 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003727 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003728 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3729 packet_put_int(rchan);
3730 packet_send();
3731}
3732
Damien Miller5428f641999-11-25 11:54:57 +11003733/*
3734 * Requests forwarding of X11 connections, generates fake authentication
3735 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003736 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003737 */
Damien Miller4af51302000-04-16 11:18:38 +10003738void
Damien Miller17e7ed02005-06-17 12:54:33 +10003739x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003740 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003741{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003742 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003743 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003744 char *new_data;
3745 int screen_number;
3746 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003747 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003748
Damien Millerf92c0792005-07-06 09:45:26 +10003749 if (x11_saved_display == NULL)
3750 x11_saved_display = xstrdup(disp);
3751 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003752 error("x11_request_forwarding_with_spoofing: different "
3753 "$DISPLAY already forwarded");
3754 return;
3755 }
3756
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003757 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003758 if (cp)
3759 cp = strchr(cp, '.');
3760 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003761 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003762 else
3763 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003764
Damien Miller13390022005-07-06 09:44:19 +10003765 if (x11_saved_proto == NULL) {
3766 /* Save protocol name. */
3767 x11_saved_proto = xstrdup(proto);
3768 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003769 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003770 * of the same length.
3771 */
3772 x11_saved_data = xmalloc(data_len);
3773 x11_fake_data = xmalloc(data_len);
3774 for (i = 0; i < data_len; i++) {
3775 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3776 fatal("x11_request_forwarding: bad "
3777 "authentication data: %.100s", data);
3778 if (i % 4 == 0)
3779 rnd = arc4random();
3780 x11_saved_data[i] = value;
3781 x11_fake_data[i] = rnd & 0xff;
3782 rnd >>= 8;
3783 }
3784 x11_saved_data_len = data_len;
3785 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003786 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003787
Damien Miller95def091999-11-25 00:26:21 +11003788 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003789 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003790
Damien Miller95def091999-11-25 00:26:21 +11003791 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003792 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003793 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003794 packet_put_char(0); /* XXX bool single connection */
3795 } else {
3796 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3797 }
3798 packet_put_cstring(proto);
3799 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003800 packet_put_int(screen_number);
3801 packet_send();
3802 packet_write_wait();
3803 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003804}
3805
Ben Lindstrome9c99912001-06-09 00:41:05 +00003806
3807/* -- agent forwarding */
3808
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003809/* Sends a message to the server to request authentication fd forwarding. */
3810
Damien Miller4af51302000-04-16 11:18:38 +10003811void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003812auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003813{
Damien Miller95def091999-11-25 00:26:21 +11003814 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3815 packet_send();
3816 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003817}