blob: d50a4a2982679394bc0478c682d80c935efa545f [file] [log] [blame]
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001/* $OpenBSD: channels.c,v 1.322 2013/06/01 13:15:51 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110061#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100062#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100063#include <stdarg.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerb84886b2008-05-19 15:05:07 +100065#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "ssh1.h"
69#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "log.h"
72#include "misc.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100077#include "key.h"
78#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110079#include "pathnames.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Ben Lindstrome9c99912001-06-09 00:41:05 +000081/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
86 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100093static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095/*
96 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000097 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110098 */
Damien Miller5e953212001-01-30 09:14:00 +110099static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Ben Lindstrome9c99912001-06-09 00:41:05 +0000102/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
Damien Miller5428f641999-11-25 11:54:57 +1100104/*
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
109 */
Damien Miller95def091999-11-25 00:26:21 +1100110typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000111 char *host_to_connect; /* Connect to 'host'. */
112 u_short port_to_connect; /* Connect to 'port'. */
113 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114} ForwardPermission;
115
Damien Miller9b439df2006-07-24 14:04:00 +1000116/* List of all permitted host/port pairs to connect by the user. */
Damien 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);
Darren Tuckera627d422013-06-02 07:31:17 +1000404 free(s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000405
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);
Darren Tuckera627d422013-06-02 07:31:17 +1000412 free(c->remote_name);
413 c->remote_name = NULL;
414 free(c->path);
415 c->path = NULL;
416 free(c->listening_addr);
417 c->listening_addr = NULL;
Damien Millerb84886b2008-05-19 15:05:07 +1000418 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
419 if (cc->abandon_cb != NULL)
420 cc->abandon_cb(c, cc->ctx);
421 TAILQ_REMOVE(&c->status_confirms, cc, entry);
422 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +1000423 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +1000424 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000425 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
426 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000427 channels[c->self] = NULL;
Darren Tuckera627d422013-06-02 07:31:17 +1000428 free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429}
430
Ben Lindstrome9c99912001-06-09 00:41:05 +0000431void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000432channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000433{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000434 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435
Ben Lindstrom601e4362001-06-21 03:19:23 +0000436 for (i = 0; i < channels_alloc; i++)
437 if (channels[i] != NULL)
438 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000439}
440
441/*
442 * Closes the sockets/fds of all channels. This is used to close extra file
443 * descriptors after a fork.
444 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000446channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000448 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449
450 for (i = 0; i < channels_alloc; i++)
451 if (channels[i] != NULL)
452 channel_close_fds(channels[i]);
453}
454
455/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000456 * Stop listening to channels.
457 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000458void
459channel_stop_listening(void)
460{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000461 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000462 Channel *c;
463
464 for (i = 0; i < channels_alloc; i++) {
465 c = channels[i];
466 if (c != NULL) {
467 switch (c->type) {
468 case SSH_CHANNEL_AUTH_SOCKET:
469 case SSH_CHANNEL_PORT_LISTENER:
470 case SSH_CHANNEL_RPORT_LISTENER:
471 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000472 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000473 channel_free(c);
474 break;
475 }
476 }
477 }
478}
479
480/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000481 * Returns true if no channel has too much buffered data, and false if one or
482 * more channel is overfull.
483 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000484int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000485channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000486{
487 u_int i;
488 Channel *c;
489
490 for (i = 0; i < channels_alloc; i++) {
491 c = channels[i];
492 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000493#if 0
494 if (!compat20 &&
495 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100496 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000497 c->self, buffer_len(&c->input));
498 return 0;
499 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000500#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000501 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000502 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000503 c->self, buffer_len(&c->output),
504 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000505 return 0;
506 }
507 }
508 }
509 return 1;
510}
511
512/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000514channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000515{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000516 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517 Channel *c;
518
519 for (i = 0; i < channels_alloc; i++) {
520 c = channels[i];
521 if (c == NULL)
522 continue;
523 switch (c->type) {
524 case SSH_CHANNEL_X11_LISTENER:
525 case SSH_CHANNEL_PORT_LISTENER:
526 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100527 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000528 case SSH_CHANNEL_CLOSED:
529 case SSH_CHANNEL_AUTH_SOCKET:
530 case SSH_CHANNEL_DYNAMIC:
531 case SSH_CHANNEL_CONNECTING:
532 case SSH_CHANNEL_ZOMBIE:
533 continue;
534 case SSH_CHANNEL_LARVAL:
535 if (!compat20)
536 fatal("cannot happen: SSH_CHANNEL_LARVAL");
537 continue;
538 case SSH_CHANNEL_OPENING:
539 case SSH_CHANNEL_OPEN:
540 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100541 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000542 return 1;
543 case SSH_CHANNEL_INPUT_DRAINING:
544 case SSH_CHANNEL_OUTPUT_DRAINING:
545 if (!compat13)
546 fatal("cannot happen: OUT_DRAIN");
547 return 1;
548 default:
549 fatal("channel_still_open: bad channel type %d", c->type);
550 /* NOTREACHED */
551 }
552 }
553 return 0;
554}
555
556/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000558channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000560 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561 Channel *c;
562
563 for (i = 0; i < channels_alloc; i++) {
564 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000565 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000566 continue;
567 switch (c->type) {
568 case SSH_CHANNEL_CLOSED:
569 case SSH_CHANNEL_DYNAMIC:
570 case SSH_CHANNEL_X11_LISTENER:
571 case SSH_CHANNEL_PORT_LISTENER:
572 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100573 case SSH_CHANNEL_MUX_LISTENER:
574 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000575 case SSH_CHANNEL_OPENING:
576 case SSH_CHANNEL_CONNECTING:
577 case SSH_CHANNEL_ZOMBIE:
578 continue;
579 case SSH_CHANNEL_LARVAL:
580 case SSH_CHANNEL_AUTH_SOCKET:
581 case SSH_CHANNEL_OPEN:
582 case SSH_CHANNEL_X11_OPEN:
583 return i;
584 case SSH_CHANNEL_INPUT_DRAINING:
585 case SSH_CHANNEL_OUTPUT_DRAINING:
586 if (!compat13)
587 fatal("cannot happen: OUT_DRAIN");
588 return i;
589 default:
590 fatal("channel_find_open: bad channel type %d", c->type);
591 /* NOTREACHED */
592 }
593 }
594 return -1;
595}
596
597
598/*
599 * Returns a message describing the currently open forwarded connections,
600 * suitable for sending to the client. The message contains crlf pairs for
601 * newlines.
602 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000603char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000604channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605{
606 Buffer buffer;
607 Channel *c;
608 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000609 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000610
611 buffer_init(&buffer);
612 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
613 buffer_append(&buffer, buf, strlen(buf));
614 for (i = 0; i < channels_alloc; i++) {
615 c = channels[i];
616 if (c == NULL)
617 continue;
618 switch (c->type) {
619 case SSH_CHANNEL_X11_LISTENER:
620 case SSH_CHANNEL_PORT_LISTENER:
621 case SSH_CHANNEL_RPORT_LISTENER:
622 case SSH_CHANNEL_CLOSED:
623 case SSH_CHANNEL_AUTH_SOCKET:
624 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100625 case SSH_CHANNEL_MUX_CLIENT:
626 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000627 continue;
628 case SSH_CHANNEL_LARVAL:
629 case SSH_CHANNEL_OPENING:
630 case SSH_CHANNEL_CONNECTING:
631 case SSH_CHANNEL_DYNAMIC:
632 case SSH_CHANNEL_OPEN:
633 case SSH_CHANNEL_X11_OPEN:
634 case SSH_CHANNEL_INPUT_DRAINING:
635 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000636 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100637 " #%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 +0000638 c->self, c->remote_name,
639 c->type, c->remote_id,
640 c->istate, buffer_len(&c->input),
641 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100642 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 buffer_append(&buffer, buf, strlen(buf));
644 continue;
645 default:
646 fatal("channel_open_message: bad channel type %d", c->type);
647 /* NOTREACHED */
648 }
649 }
650 buffer_append(&buffer, "\0", 1);
651 cp = xstrdup(buffer_ptr(&buffer));
652 buffer_free(&buffer);
653 return cp;
654}
655
656void
657channel_send_open(int id)
658{
659 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000660
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000662 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000663 return;
664 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000665 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000666 packet_start(SSH2_MSG_CHANNEL_OPEN);
667 packet_put_cstring(c->ctype);
668 packet_put_int(c->self);
669 packet_put_int(c->local_window);
670 packet_put_int(c->local_maxpacket);
671 packet_send();
672}
673
674void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000675channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000676{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000677 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000678
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000680 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000681 return;
682 }
Damien Miller0e220db2004-06-15 10:34:08 +1000683 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000684 packet_start(SSH2_MSG_CHANNEL_REQUEST);
685 packet_put_int(c->remote_id);
686 packet_put_cstring(service);
687 packet_put_char(wantconfirm);
688}
Damien Miller4f7becb2006-03-26 14:10:14 +1100689
Ben Lindstrome9c99912001-06-09 00:41:05 +0000690void
Damien Millerb84886b2008-05-19 15:05:07 +1000691channel_register_status_confirm(int id, channel_confirm_cb *cb,
692 channel_confirm_abandon_cb *abandon_cb, void *ctx)
693{
694 struct channel_confirm *cc;
695 Channel *c;
696
697 if ((c = channel_lookup(id)) == NULL)
698 fatal("channel_register_expect: %d: bad id", id);
699
700 cc = xmalloc(sizeof(*cc));
701 cc->cb = cb;
702 cc->abandon_cb = abandon_cb;
703 cc->ctx = ctx;
704 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
705}
706
707void
Damien Millerd530f5f2010-05-21 14:57:10 +1000708channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709{
710 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000711
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100713 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714 return;
715 }
Damien Millerb84886b2008-05-19 15:05:07 +1000716 c->open_confirm = fn;
717 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718}
Damien Miller4f7becb2006-03-26 14:10:14 +1100719
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720void
Damien Miller39eda6e2005-11-05 14:52:50 +1100721channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722{
Damien Millerd47c62a2005-12-13 19:33:57 +1100723 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000724
Ben Lindstrome9c99912001-06-09 00:41:05 +0000725 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000726 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727 return;
728 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000729 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100730 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731}
Damien Miller4f7becb2006-03-26 14:10:14 +1100732
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733void
734channel_cancel_cleanup(int id)
735{
Damien Millerd47c62a2005-12-13 19:33:57 +1100736 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000737
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000739 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740 return;
741 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000742 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100743 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744}
Damien Miller4f7becb2006-03-26 14:10:14 +1100745
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746void
Damien Miller077b2382005-12-31 16:22:32 +1100747channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000748 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000749{
750 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000751
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000753 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 return;
755 }
Damien Miller077b2382005-12-31 16:22:32 +1100756 c->input_filter = ifn;
757 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000758 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000759 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000760}
761
762void
763channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000764 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765{
766 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000767
Ben Lindstrome9c99912001-06-09 00:41:05 +0000768 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
769 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000770 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100772 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000773 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
774 packet_put_int(c->remote_id);
775 packet_put_int(c->local_window);
776 packet_send();
777}
778
Damien Miller5428f641999-11-25 11:54:57 +1100779/*
Damien Millerb38eff82000-04-01 11:09:21 +1000780 * 'channel_pre*' are called just before select() to add any bits relevant to
781 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100782 */
Damien Millerb38eff82000-04-01 11:09:21 +1000783/*
784 * 'channel_post*': perform any appropriate operations for channels which
785 * have events pending.
786 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100787typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000788chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
789chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
790
Damien Miller8473dd82006-07-24 14:08:32 +1000791/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100793channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000794{
795 FD_SET(c->sock, readset);
796}
797
Damien Miller8473dd82006-07-24 14:08:32 +1000798/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000799static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100800channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000801{
802 debug3("channel %d: waiting for connection", c->self);
803 FD_SET(c->sock, writeset);
804}
805
Ben Lindstrombba81212001-06-25 05:01:22 +0000806static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100807channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000808{
809 if (buffer_len(&c->input) < packet_get_maxsize())
810 FD_SET(c->sock, readset);
811 if (buffer_len(&c->output) > 0)
812 FD_SET(c->sock, writeset);
813}
814
Ben Lindstrombba81212001-06-25 05:01:22 +0000815static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100816channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000817{
Damien Millerde6987c2002-01-22 23:20:40 +1100818 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000819
Damien Miller33b13562000-04-04 14:38:59 +1000820 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100821 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000822 buffer_len(&c->input) < limit &&
823 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000824 FD_SET(c->rfd, readset);
825 if (c->ostate == CHAN_OUTPUT_OPEN ||
826 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
827 if (buffer_len(&c->output) > 0) {
828 FD_SET(c->wfd, writeset);
829 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000830 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000831 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
832 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000833 else
834 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000835 }
836 }
837 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000838 if (compat20 && c->efd != -1 &&
839 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000840 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
841 buffer_len(&c->extended) > 0)
842 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000843 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
844 (c->extended_usage == CHAN_EXTENDED_READ ||
845 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000846 buffer_len(&c->extended) < c->remote_window)
847 FD_SET(c->efd, readset);
848 }
Damien Miller0e220db2004-06-15 10:34:08 +1000849 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000850}
851
Damien Miller8473dd82006-07-24 14:08:32 +1000852/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000853static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100854channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000855{
856 if (buffer_len(&c->input) == 0) {
857 packet_start(SSH_MSG_CHANNEL_CLOSE);
858 packet_put_int(c->remote_id);
859 packet_send();
860 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000861 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000862 }
863}
864
Damien Miller8473dd82006-07-24 14:08:32 +1000865/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000866static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100867channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000868{
869 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000870 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000871 else
Damien Millerb38eff82000-04-01 11:09:21 +1000872 FD_SET(c->sock, writeset);
873}
874
875/*
876 * This is a special state for X11 authentication spoofing. An opened X11
877 * connection (when authentication spoofing is being done) remains in this
878 * state until the first packet has been completely read. The authentication
879 * data in that packet is then substituted by the real data if it matches the
880 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000881 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000883 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000884static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000885x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000886{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000887 u_char *ucp;
888 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000889
890 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000891 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000892 return 0;
893
894 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100895 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000896 if (ucp[0] == 0x42) { /* Byte order MSB first. */
897 proto_len = 256 * ucp[6] + ucp[7];
898 data_len = 256 * ucp[8] + ucp[9];
899 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
900 proto_len = ucp[6] + 256 * ucp[7];
901 data_len = ucp[8] + 256 * ucp[9];
902 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000903 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100904 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000905 return -1;
906 }
907
908 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000909 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000910 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
911 return 0;
912
913 /* Check if authentication protocol matches. */
914 if (proto_len != strlen(x11_saved_proto) ||
915 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000916 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000917 return -1;
918 }
919 /* Check if authentication data matches our fake data. */
920 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000921 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000922 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000923 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000924 return -1;
925 }
926 /* Check fake data length */
927 if (x11_fake_data_len != x11_saved_data_len) {
928 error("X11 fake_data_len %d != saved_data_len %d",
929 x11_fake_data_len, x11_saved_data_len);
930 return -1;
931 }
932 /*
933 * Received authentication protocol and data match
934 * our fake data. Substitute the fake data with real
935 * data.
936 */
937 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
938 x11_saved_data, x11_saved_data_len);
939 return 1;
940}
941
Ben Lindstrombba81212001-06-25 05:01:22 +0000942static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100943channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000944{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000945 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000946
Damien Millerb38eff82000-04-01 11:09:21 +1000947 if (ret == 1) {
948 /* Start normal processing for the channel. */
949 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000950 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000951 } else if (ret == -1) {
952 /*
953 * We have received an X11 connection that has bad
954 * authentication information.
955 */
Damien Miller996acd22003-04-09 20:59:48 +1000956 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000957 buffer_clear(&c->input);
958 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000959 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000960 c->sock = -1;
961 c->type = SSH_CHANNEL_CLOSED;
962 packet_start(SSH_MSG_CHANNEL_CLOSE);
963 packet_put_int(c->remote_id);
964 packet_send();
965 }
966}
967
Ben Lindstrombba81212001-06-25 05:01:22 +0000968static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100969channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000970{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000971 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000972
973 /* c->force_drain = 1; */
974
Damien Millerb38eff82000-04-01 11:09:21 +1000975 if (ret == 1) {
976 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100977 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000978 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000979 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000980 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100981 chan_read_failed(c);
982 buffer_clear(&c->input);
983 chan_ibuf_empty(c);
984 buffer_clear(&c->output);
985 /* for proto v1, the peer will send an IEOF */
986 if (compat20)
987 chan_write_failed(c);
988 else
989 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000990 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000991 }
992}
993
Damien Millere1537f92010-01-26 13:26:22 +1100994static void
995channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
996{
Damien Millerd530f5f2010-05-21 14:57:10 +1000997 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +1100998 buffer_check_alloc(&c->input, CHAN_RBUF))
999 FD_SET(c->rfd, readset);
1000 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1001 /* clear buffer immediately (discard any partial packet) */
1002 buffer_clear(&c->input);
1003 chan_ibuf_empty(c);
1004 /* Start output drain. XXX just kill chan? */
1005 chan_rcvd_oclose(c);
1006 }
1007 if (c->ostate == CHAN_OUTPUT_OPEN ||
1008 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1009 if (buffer_len(&c->output) > 0)
1010 FD_SET(c->wfd, writeset);
1011 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1012 chan_obuf_empty(c);
1013 }
1014}
1015
Ben Lindstromb3921512001-04-11 15:57:50 +00001016/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001017/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001019channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001020{
Damien Millera10f5612002-09-12 09:49:15 +10001021 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001022 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001023 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001024 struct {
1025 u_int8_t version;
1026 u_int8_t command;
1027 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001028 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001029 } s4_req, s4_rsp;
1030
Ben Lindstromb3921512001-04-11 15:57:50 +00001031 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001032
1033 have = buffer_len(&c->input);
1034 len = sizeof(s4_req);
1035 if (have < len)
1036 return 0;
1037 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001038
1039 need = 1;
1040 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1041 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1042 debug2("channel %d: socks4a request", c->self);
1043 /* ... and needs an extra string (the hostname) */
1044 need = 2;
1045 }
1046 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001047 for (found = 0, i = len; i < have; i++) {
1048 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001049 found++;
1050 if (found == need)
1051 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001052 }
1053 if (i > 1024) {
1054 /* the peer is probably sending garbage */
1055 debug("channel %d: decode socks4: too long",
1056 c->self);
1057 return -1;
1058 }
1059 }
Damien Miller1781f532009-01-28 16:24:41 +11001060 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001061 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001062 buffer_get(&c->input, (char *)&s4_req.version, 1);
1063 buffer_get(&c->input, (char *)&s4_req.command, 1);
1064 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001065 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001066 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001067 p = buffer_ptr(&c->input);
1068 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001069 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001070 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001071 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001072 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001073 c->self, len, have);
1074 strlcpy(username, p, sizeof(username));
1075 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001076
Darren Tuckera627d422013-06-02 07:31:17 +10001077 free(c->path);
1078 c->path = NULL;
Damien Miller1781f532009-01-28 16:24:41 +11001079 if (need == 1) { /* SOCKS4: one string */
1080 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001081 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001082 } else { /* SOCKS4A: two strings */
1083 have = buffer_len(&c->input);
1084 p = buffer_ptr(&c->input);
1085 len = strlen(p);
1086 debug2("channel %d: decode socks4a: host %s/%d",
1087 c->self, p, len);
1088 len++; /* trailing '\0' */
1089 if (len > have)
1090 fatal("channel %d: decode socks4a: len %d > have %d",
1091 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001092 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001093 error("channel %d: hostname \"%.100s\" too long",
1094 c->self, p);
1095 return -1;
1096 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001097 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001098 buffer_consume(&c->input, len);
1099 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001100 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001101
Damien Millerfbdeece2003-09-02 22:52:31 +10001102 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001103 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001104
Ben Lindstromb3921512001-04-11 15:57:50 +00001105 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001106 debug("channel %d: cannot handle: %s cn %d",
1107 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001108 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001109 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001110 s4_rsp.version = 0; /* vn: 0 for reply */
1111 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001112 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001113 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001114 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001115 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116}
1117
Darren Tucker46471c92003-07-03 13:55:19 +10001118/* try to decode a socks5 header */
1119#define SSH_SOCKS5_AUTHDONE 0x1000
1120#define SSH_SOCKS5_NOAUTH 0x00
1121#define SSH_SOCKS5_IPV4 0x01
1122#define SSH_SOCKS5_DOMAIN 0x03
1123#define SSH_SOCKS5_IPV6 0x04
1124#define SSH_SOCKS5_CONNECT 0x01
1125#define SSH_SOCKS5_SUCCESS 0x00
1126
Damien Miller8473dd82006-07-24 14:08:32 +10001127/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001128static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001129channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001130{
1131 struct {
1132 u_int8_t version;
1133 u_int8_t command;
1134 u_int8_t reserved;
1135 u_int8_t atyp;
1136 } s5_req, s5_rsp;
1137 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001138 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001139 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001140
1141 debug2("channel %d: decode socks5", c->self);
1142 p = buffer_ptr(&c->input);
1143 if (p[0] != 0x05)
1144 return -1;
1145 have = buffer_len(&c->input);
1146 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1147 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001148 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001149 return 0;
1150 nmethods = p[1];
1151 if (have < nmethods + 2)
1152 return 0;
1153 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001154 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001155 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001156 found = 1;
1157 break;
1158 }
1159 }
1160 if (!found) {
1161 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1162 c->self);
1163 return -1;
1164 }
1165 buffer_consume(&c->input, nmethods + 2);
1166 buffer_put_char(&c->output, 0x05); /* version */
1167 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1168 FD_SET(c->sock, writeset);
1169 c->flags |= SSH_SOCKS5_AUTHDONE;
1170 debug2("channel %d: socks5 auth done", c->self);
1171 return 0; /* need more */
1172 }
1173 debug2("channel %d: socks5 post auth", c->self);
1174 if (have < sizeof(s5_req)+1)
1175 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001176 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001177 if (s5_req.version != 0x05 ||
1178 s5_req.command != SSH_SOCKS5_CONNECT ||
1179 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001180 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001181 return -1;
1182 }
Darren Tucker47eede72005-03-14 23:08:12 +11001183 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001184 case SSH_SOCKS5_IPV4:
1185 addrlen = 4;
1186 af = AF_INET;
1187 break;
1188 case SSH_SOCKS5_DOMAIN:
1189 addrlen = p[sizeof(s5_req)];
1190 af = -1;
1191 break;
1192 case SSH_SOCKS5_IPV6:
1193 addrlen = 16;
1194 af = AF_INET6;
1195 break;
1196 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001197 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001198 return -1;
1199 }
Damien Miller0f077072006-07-10 22:21:02 +10001200 need = sizeof(s5_req) + addrlen + 2;
1201 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1202 need++;
1203 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001204 return 0;
1205 buffer_consume(&c->input, sizeof(s5_req));
1206 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1207 buffer_consume(&c->input, 1); /* host string length */
1208 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1209 buffer_get(&c->input, (char *)&dest_port, 2);
1210 dest_addr[addrlen] = '\0';
Darren Tuckera627d422013-06-02 07:31:17 +10001211 free(c->path);
1212 c->path = NULL;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001213 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001214 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001215 error("channel %d: dynamic request: socks5 hostname "
1216 "\"%.100s\" too long", c->self, dest_addr);
1217 return -1;
1218 }
1219 c->path = xstrdup(dest_addr);
1220 } else {
1221 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1222 return -1;
1223 c->path = xstrdup(ntop);
1224 }
Darren Tucker46471c92003-07-03 13:55:19 +10001225 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001226
Damien Millerfbdeece2003-09-02 22:52:31 +10001227 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001228 c->self, c->path, c->host_port, s5_req.command);
1229
1230 s5_rsp.version = 0x05;
1231 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1232 s5_rsp.reserved = 0; /* ignored */
1233 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1234 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1235 dest_port = 0; /* ignored */
1236
Damien Millera0fdce92006-03-26 14:28:50 +11001237 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1238 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1239 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001240 return 1;
1241}
1242
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001243Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001244channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1245 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001246{
1247 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001248
1249 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1250 port_to_connect);
1251
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001252 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1253 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1254 0, "stdio-forward", /*nonblock*/0);
1255
1256 c->path = xstrdup(host_to_connect);
1257 c->host_port = port_to_connect;
1258 c->listening_port = 0;
1259 c->force_drain = 1;
1260
1261 channel_register_fds(c, in, out, -1, 0, 1, 0);
1262 port_open_helper(c, "direct-tcpip");
1263
1264 return c;
1265}
1266
Ben Lindstromb3921512001-04-11 15:57:50 +00001267/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001268static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001269channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001270{
1271 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001272 u_int have;
1273 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001274
1275 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001276 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001277 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001278 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001279 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001280 /* need more */
1281 FD_SET(c->sock, readset);
1282 return;
1283 }
1284 /* try to guess the protocol */
1285 p = buffer_ptr(&c->input);
1286 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001287 case 0x04:
1288 ret = channel_decode_socks4(c, readset, writeset);
1289 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001290 case 0x05:
1291 ret = channel_decode_socks5(c, readset, writeset);
1292 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001293 default:
1294 ret = -1;
1295 break;
1296 }
1297 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001298 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001299 } else if (ret == 0) {
1300 debug2("channel %d: pre_dynamic: need more", c->self);
1301 /* need more */
1302 FD_SET(c->sock, readset);
1303 } else {
1304 /* switch to the next state */
1305 c->type = SSH_CHANNEL_OPENING;
1306 port_open_helper(c, "direct-tcpip");
1307 }
1308}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001309
Damien Millerb38eff82000-04-01 11:09:21 +10001310/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001311/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001312static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001313channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001314{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001315 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001316 struct sockaddr_storage addr;
Damien Miller37f1c082013-04-23 15:20:43 +10001317 int newsock, oerrno;
Damien Millerb38eff82000-04-01 11:09:21 +10001318 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001319 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001320 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001321
1322 if (FD_ISSET(c->sock, readset)) {
1323 debug("X11 connection requested.");
1324 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001325 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001326 if (c->single_connection) {
Damien Miller37f1c082013-04-23 15:20:43 +10001327 oerrno = errno;
Damien Millerfbdeece2003-09-02 22:52:31 +10001328 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001329 channel_close_fd(&c->sock);
1330 chan_mark_dead(c);
Damien Miller37f1c082013-04-23 15:20:43 +10001331 errno = oerrno;
Damien Millere7378562001-12-21 14:58:35 +11001332 }
Damien Millerb38eff82000-04-01 11:09:21 +10001333 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001334 if (errno != EINTR && errno != EWOULDBLOCK &&
1335 errno != ECONNABORTED)
1336 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001337 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001338 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001339 return;
1340 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001341 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001342 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001343 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001344 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001345 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001346
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001347 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001348 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001349 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001350 if (compat20) {
1351 packet_start(SSH2_MSG_CHANNEL_OPEN);
1352 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001353 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001354 packet_put_int(nc->local_window_max);
1355 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001356 /* originator ipaddr and port */
1357 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001358 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001359 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001360 } else {
1361 packet_put_int(remote_port);
1362 }
Damien Millerbd483e72000-04-30 10:00:53 +10001363 packet_send();
1364 } else {
1365 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001366 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001367 if (packet_get_protocol_flags() &
1368 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001369 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001370 packet_send();
1371 }
Darren Tuckera627d422013-06-02 07:31:17 +10001372 free(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001373 }
1374}
1375
Ben Lindstrombba81212001-06-25 05:01:22 +00001376static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001377port_open_helper(Channel *c, char *rtype)
1378{
1379 int direct;
1380 char buf[1024];
1381 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001382 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001383
Damien Millerd6369432010-02-02 17:02:07 +11001384 if (remote_port == -1) {
1385 /* Fake addr/port to appease peers that validate it (Tectia) */
Darren Tuckera627d422013-06-02 07:31:17 +10001386 free(remote_ipaddr);
Damien Millerd6369432010-02-02 17:02:07 +11001387 remote_ipaddr = xstrdup("127.0.0.1");
1388 remote_port = 65535;
1389 }
1390
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001391 direct = (strcmp(rtype, "direct-tcpip") == 0);
1392
1393 snprintf(buf, sizeof buf,
1394 "%s: listening port %d for %.100s port %d, "
1395 "connect from %.200s port %d",
1396 rtype, c->listening_port, c->path, c->host_port,
1397 remote_ipaddr, remote_port);
1398
Darren Tuckera627d422013-06-02 07:31:17 +10001399 free(c->remote_name);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001400 c->remote_name = xstrdup(buf);
1401
1402 if (compat20) {
1403 packet_start(SSH2_MSG_CHANNEL_OPEN);
1404 packet_put_cstring(rtype);
1405 packet_put_int(c->self);
1406 packet_put_int(c->local_window_max);
1407 packet_put_int(c->local_maxpacket);
1408 if (direct) {
1409 /* target host, port */
1410 packet_put_cstring(c->path);
1411 packet_put_int(c->host_port);
1412 } else {
1413 /* listen address, port */
1414 packet_put_cstring(c->path);
1415 packet_put_int(c->listening_port);
1416 }
1417 /* originator host and port */
1418 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001419 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001420 packet_send();
1421 } else {
1422 packet_start(SSH_MSG_PORT_OPEN);
1423 packet_put_int(c->self);
1424 packet_put_cstring(c->path);
1425 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001426 if (packet_get_protocol_flags() &
1427 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001428 packet_put_cstring(c->remote_name);
1429 packet_send();
1430 }
Darren Tuckera627d422013-06-02 07:31:17 +10001431 free(remote_ipaddr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001432}
1433
Damien Miller5e7fd072005-11-05 14:53:39 +11001434static void
1435channel_set_reuseaddr(int fd)
1436{
1437 int on = 1;
1438
1439 /*
1440 * Set socket options.
1441 * Allow local port reuse in TIME_WAIT.
1442 */
1443 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1444 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1445}
1446
Damien Millerb38eff82000-04-01 11:09:21 +10001447/*
1448 * This socket is listening for connections to a forwarded TCP/IP port.
1449 */
Damien Miller8473dd82006-07-24 14:08:32 +10001450/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001451static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001452channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001453{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001454 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001455 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001456 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001457 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001458 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001459
Damien Millerb38eff82000-04-01 11:09:21 +10001460 if (FD_ISSET(c->sock, readset)) {
1461 debug("Connection to port %d forwarding "
1462 "to %.100s port %d requested.",
1463 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001464
Damien Miller4623a752001-10-10 15:03:58 +10001465 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1466 nextstate = SSH_CHANNEL_OPENING;
1467 rtype = "forwarded-tcpip";
1468 } else {
1469 if (c->host_port == 0) {
1470 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001471 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001472 } else {
1473 nextstate = SSH_CHANNEL_OPENING;
1474 rtype = "direct-tcpip";
1475 }
1476 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001477
Damien Millerb38eff82000-04-01 11:09:21 +10001478 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001479 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001480 if (newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001481 if (errno != EINTR && errno != EWOULDBLOCK &&
1482 errno != ECONNABORTED)
1483 error("accept: %.100s", strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001484 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001485 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001486 return;
1487 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001488 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001489 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1490 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001491 nc->listening_port = c->listening_port;
1492 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001493 if (c->path != NULL)
1494 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001495
Darren Tucker876045b2010-01-08 17:08:00 +11001496 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001497 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001498 }
1499}
1500
1501/*
1502 * This is the authentication agent socket listening for connections from
1503 * clients.
1504 */
Damien Miller8473dd82006-07-24 14:08:32 +10001505/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001506static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001507channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001508{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001509 Channel *nc;
1510 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001511 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001512 socklen_t addrlen;
1513
1514 if (FD_ISSET(c->sock, readset)) {
1515 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001516 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001517 if (newsock < 0) {
Damien Millera6508752012-04-22 11:21:10 +10001518 error("accept from auth socket: %.100s",
1519 strerror(errno));
1520 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001521 c->notbefore = monotime() + 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001522 return;
1523 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001525 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1526 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001527 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001528 if (compat20) {
1529 packet_start(SSH2_MSG_CHANNEL_OPEN);
1530 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001531 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001532 packet_put_int(c->local_window_max);
1533 packet_put_int(c->local_maxpacket);
1534 } else {
1535 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001536 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001537 }
Damien Millerb38eff82000-04-01 11:09:21 +10001538 packet_send();
1539 }
1540}
1541
Damien Miller8473dd82006-07-24 14:08:32 +10001542/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001543static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001544channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001545{
Damien Millerbd740252008-05-19 15:37:09 +10001546 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001547 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001548
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001549 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001550 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001551 err = errno;
1552 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001553 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001554 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001555 debug("channel %d: connected to %s port %d",
1556 c->self, c->connect_ctx.host, c->connect_ctx.port);
1557 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001558 c->type = SSH_CHANNEL_OPEN;
1559 if (compat20) {
1560 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1561 packet_put_int(c->remote_id);
1562 packet_put_int(c->self);
1563 packet_put_int(c->local_window);
1564 packet_put_int(c->local_maxpacket);
1565 } else {
1566 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1567 packet_put_int(c->remote_id);
1568 packet_put_int(c->self);
1569 }
1570 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001571 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001572 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001573 /* Try next address, if any */
1574 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1575 close(c->sock);
1576 c->sock = c->rfd = c->wfd = sock;
1577 channel_max_fd = channel_find_maxfd();
1578 return;
1579 }
1580 /* Exhausted all addresses */
1581 error("connect_to %.100s port %d: failed.",
1582 c->connect_ctx.host, c->connect_ctx.port);
1583 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001584 if (compat20) {
1585 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1586 packet_put_int(c->remote_id);
1587 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1588 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1589 packet_put_cstring(strerror(err));
1590 packet_put_cstring("");
1591 }
1592 } else {
1593 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1594 packet_put_int(c->remote_id);
1595 }
1596 chan_mark_dead(c);
1597 }
1598 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001599 }
1600}
1601
Damien Miller8473dd82006-07-24 14:08:32 +10001602/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001603static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001604channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001605{
Darren Tucker11327cc2005-03-14 23:22:25 +11001606 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001607 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001608
Damien Miller835284b2007-06-11 13:03:16 +10001609 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1610 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001611 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001612 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001613 if (len < 0 && (errno == EINTR ||
1614 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001615 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001616#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001617 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001618#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001619 if ((!c->isatty && len <= 0) ||
1620 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001621#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001622 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001623 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001624 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001625 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001626 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001627 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001628 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001629 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001630 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001631 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001632 } else {
1633 chan_read_failed(c);
1634 }
1635 return -1;
1636 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001637 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001638 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001639 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001640 chan_read_failed(c);
1641 }
Damien Millerd27b9472005-12-13 19:29:02 +11001642 } else if (c->datagram) {
1643 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001644 } else {
1645 buffer_append(&c->input, buf, len);
1646 }
Damien Millerb38eff82000-04-01 11:09:21 +10001647 }
1648 return 1;
1649}
Damien Miller4f7becb2006-03-26 14:10:14 +11001650
Damien Miller8473dd82006-07-24 14:08:32 +10001651/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001652static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001653channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001654{
Ben Lindstrome229b252001-03-05 06:28:06 +00001655 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001656 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001657 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001658 int len;
1659
1660 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001661 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001662 FD_ISSET(c->wfd, writeset) &&
1663 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001664 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001665 if (c->output_filter != NULL) {
1666 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1667 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001668 if (c->type != SSH_CHANNEL_OPEN)
1669 chan_mark_dead(c);
1670 else
1671 chan_write_failed(c);
1672 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001673 }
1674 } else if (c->datagram) {
1675 buf = data = buffer_get_string(&c->output, &dlen);
1676 } else {
1677 buf = data = buffer_ptr(&c->output);
1678 dlen = buffer_len(&c->output);
1679 }
1680
Damien Millerd27b9472005-12-13 19:29:02 +11001681 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001682 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001683 len = write(c->wfd, buf, dlen);
Darren Tuckera627d422013-06-02 07:31:17 +10001684 free(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001685 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1686 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001687 return 1;
1688 if (len <= 0) {
1689 if (c->type != SSH_CHANNEL_OPEN)
1690 chan_mark_dead(c);
1691 else
1692 chan_write_failed(c);
1693 return -1;
1694 }
Damien Miller7d457182010-08-05 23:09:48 +10001695 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001696 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001697#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001698 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001699 if (compat20 && c->wfd_isatty)
1700 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001701#endif
Damien Miller077b2382005-12-31 16:22:32 +11001702
1703 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001704 if (len < 0 &&
1705 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001706 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001707 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001708 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001709 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001710 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001711 return -1;
1712 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001713 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001714 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001715 c->type = SSH_CHANNEL_INPUT_DRAINING;
1716 } else {
1717 chan_write_failed(c);
1718 }
1719 return -1;
1720 }
Darren Tucker3980b632009-08-28 11:02:37 +10001721#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001722 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001723 if (tcgetattr(c->wfd, &tio) == 0 &&
1724 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1725 /*
1726 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001727 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001728 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001729 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001730 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001731 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001732 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001733 }
1734 }
Darren Tucker3980b632009-08-28 11:02:37 +10001735#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001736 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001737 }
Damien Miller7d457182010-08-05 23:09:48 +10001738 out:
1739 if (compat20 && olen > 0)
1740 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001741 return 1;
1742}
Damien Miller4f7becb2006-03-26 14:10:14 +11001743
Ben Lindstrombba81212001-06-25 05:01:22 +00001744static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001745channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001746{
Darren Tucker11327cc2005-03-14 23:22:25 +11001747 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001748 int len;
1749
Damien Miller1383bd82000-04-06 12:32:37 +10001750/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001751 if (c->efd != -1) {
1752 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1753 FD_ISSET(c->efd, writeset) &&
1754 buffer_len(&c->extended) > 0) {
1755 len = write(c->efd, buffer_ptr(&c->extended),
1756 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001757 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001758 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001759 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1760 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001761 return 1;
1762 if (len <= 0) {
1763 debug2("channel %d: closing write-efd %d",
1764 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001765 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001766 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001767 buffer_consume(&c->extended, len);
1768 c->local_consumed += len;
1769 }
Damien Miller8853ca52010-06-26 10:00:14 +10001770 } else if (c->efd != -1 &&
1771 (c->extended_usage == CHAN_EXTENDED_READ ||
1772 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001773 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001774 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001775 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001776 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001777 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1778 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001779 return 1;
1780 if (len <= 0) {
1781 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001782 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001783 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001784 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001785 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1786 debug3("channel %d: discard efd",
1787 c->self);
1788 } else
1789 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001790 }
Damien Miller33b13562000-04-04 14:38:59 +10001791 }
1792 }
1793 return 1;
1794}
Damien Miller4f7becb2006-03-26 14:10:14 +11001795
Damien Miller0e220db2004-06-15 10:34:08 +10001796static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001797channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001798{
Ben Lindstromb3921512001-04-11 15:57:50 +00001799 if (c->type == SSH_CHANNEL_OPEN &&
1800 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001801 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001802 c->local_maxpacket*3) ||
1803 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001804 c->local_consumed > 0) {
1805 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1806 packet_put_int(c->remote_id);
1807 packet_put_int(c->local_consumed);
1808 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001809 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001810 c->self, c->local_window,
1811 c->local_consumed);
1812 c->local_window += c->local_consumed;
1813 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001814 }
1815 return 1;
1816}
1817
Ben Lindstrombba81212001-06-25 05:01:22 +00001818static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001819channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001820{
1821 channel_handle_rfd(c, readset, writeset);
1822 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001823 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001824 return;
Damien Miller33b13562000-04-04 14:38:59 +10001825 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001826 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001827}
1828
Damien Millere1537f92010-01-26 13:26:22 +11001829static u_int
1830read_mux(Channel *c, u_int need)
1831{
1832 char buf[CHAN_RBUF];
1833 int len;
1834 u_int rlen;
1835
1836 if (buffer_len(&c->input) < need) {
1837 rlen = need - buffer_len(&c->input);
1838 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1839 if (len <= 0) {
1840 if (errno != EINTR && errno != EAGAIN) {
1841 debug2("channel %d: ctl read<=0 rfd %d len %d",
1842 c->self, c->rfd, len);
1843 chan_read_failed(c);
1844 return 0;
1845 }
1846 } else
1847 buffer_append(&c->input, buf, len);
1848 }
1849 return buffer_len(&c->input);
1850}
1851
1852static void
1853channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1854{
1855 u_int need;
1856 ssize_t len;
1857
1858 if (!compat20)
1859 fatal("%s: entered with !compat20", __func__);
1860
Damien Millerd530f5f2010-05-21 14:57:10 +10001861 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001862 (c->istate == CHAN_INPUT_OPEN ||
1863 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1864 /*
1865 * Don't not read past the precise end of packets to
1866 * avoid disrupting fd passing.
1867 */
1868 if (read_mux(c, 4) < 4) /* read header */
1869 return;
1870 need = get_u32(buffer_ptr(&c->input));
1871#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1872 if (need > CHANNEL_MUX_MAX_PACKET) {
1873 debug2("channel %d: packet too big %u > %u",
1874 c->self, CHANNEL_MUX_MAX_PACKET, need);
1875 chan_rcvd_oclose(c);
1876 return;
1877 }
1878 if (read_mux(c, need + 4) < need + 4) /* read body */
1879 return;
1880 if (c->mux_rcb(c) != 0) {
1881 debug("channel %d: mux_rcb failed", c->self);
1882 chan_mark_dead(c);
1883 return;
1884 }
1885 }
1886
1887 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1888 buffer_len(&c->output) > 0) {
1889 len = write(c->wfd, buffer_ptr(&c->output),
1890 buffer_len(&c->output));
1891 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1892 return;
1893 if (len <= 0) {
1894 chan_mark_dead(c);
1895 return;
1896 }
1897 buffer_consume(&c->output, len);
1898 }
1899}
1900
1901static void
1902channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1903{
1904 Channel *nc;
1905 struct sockaddr_storage addr;
1906 socklen_t addrlen;
1907 int newsock;
1908 uid_t euid;
1909 gid_t egid;
1910
1911 if (!FD_ISSET(c->sock, readset))
1912 return;
1913
1914 debug("multiplexing control connection");
1915
1916 /*
1917 * Accept connection on control socket
1918 */
1919 memset(&addr, 0, sizeof(addr));
1920 addrlen = sizeof(addr);
1921 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1922 &addrlen)) == -1) {
1923 error("%s accept: %s", __func__, strerror(errno));
Damien Millera6508752012-04-22 11:21:10 +10001924 if (errno == EMFILE || errno == ENFILE)
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001925 c->notbefore = monotime() + 1;
Damien Millere1537f92010-01-26 13:26:22 +11001926 return;
1927 }
1928
1929 if (getpeereid(newsock, &euid, &egid) < 0) {
1930 error("%s getpeereid failed: %s", __func__,
1931 strerror(errno));
1932 close(newsock);
1933 return;
1934 }
1935 if ((euid != 0) && (getuid() != euid)) {
1936 error("multiplex uid mismatch: peer euid %u != uid %u",
1937 (u_int)euid, (u_int)getuid());
1938 close(newsock);
1939 return;
1940 }
1941 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1942 newsock, newsock, -1, c->local_window_max,
1943 c->local_maxpacket, 0, "mux-control", 1);
1944 nc->mux_rcb = c->mux_rcb;
1945 debug3("%s: new mux channel %d fd %d", __func__,
1946 nc->self, nc->sock);
1947 /* establish state */
1948 nc->mux_rcb(nc);
1949 /* mux state transitions must not elicit protocol messages */
1950 nc->flags |= CHAN_LOCAL;
1951}
1952
Damien Miller8473dd82006-07-24 14:08:32 +10001953/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001954static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001955channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001956{
1957 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001958
Damien Millerb38eff82000-04-01 11:09:21 +10001959 /* Send buffered output data to the socket. */
1960 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1961 len = write(c->sock, buffer_ptr(&c->output),
1962 buffer_len(&c->output));
1963 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001964 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001965 else
1966 buffer_consume(&c->output, len);
1967 }
1968}
1969
Ben Lindstrombba81212001-06-25 05:01:22 +00001970static void
Damien Miller33b13562000-04-04 14:38:59 +10001971channel_handler_init_20(void)
1972{
Damien Millerde6987c2002-01-22 23:20:40 +11001973 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001974 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001975 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001976 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001977 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001978 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001979 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001980 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001981 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1982 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001983
Damien Millerde6987c2002-01-22 23:20:40 +11001984 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001985 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001986 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001987 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001988 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001989 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001990 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001991 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1992 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001993}
1994
Ben Lindstrombba81212001-06-25 05:01:22 +00001995static void
Damien Millerb38eff82000-04-01 11:09:21 +10001996channel_handler_init_13(void)
1997{
1998 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1999 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
2000 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2001 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2002 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
2003 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
2004 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002005 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002006 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002007
Damien Millerde6987c2002-01-22 23:20:40 +11002008 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002009 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2010 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2011 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2012 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002013 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002014 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002015}
2016
Ben Lindstrombba81212001-06-25 05:01:22 +00002017static void
Damien Millerb38eff82000-04-01 11:09:21 +10002018channel_handler_init_15(void)
2019{
Damien Millerde6987c2002-01-22 23:20:40 +11002020 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002021 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002022 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2023 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2024 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002025 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002026 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002027
2028 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2029 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2030 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002031 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002032 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002033 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002034}
2035
Ben Lindstrombba81212001-06-25 05:01:22 +00002036static void
Damien Millerb38eff82000-04-01 11:09:21 +10002037channel_handler_init(void)
2038{
2039 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002040
Damien Miller9f0f5c62001-12-21 14:45:46 +11002041 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002042 channel_pre[i] = NULL;
2043 channel_post[i] = NULL;
2044 }
Damien Miller33b13562000-04-04 14:38:59 +10002045 if (compat20)
2046 channel_handler_init_20();
2047 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002048 channel_handler_init_13();
2049 else
2050 channel_handler_init_15();
2051}
2052
Damien Miller3ec27592001-10-12 11:35:04 +10002053/* gc dead channels */
2054static void
2055channel_garbage_collect(Channel *c)
2056{
2057 if (c == NULL)
2058 return;
2059 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002060 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002061 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002062 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002063 c->detach_user(c->self, NULL);
2064 /* if we still have a callback */
2065 if (c->detach_user != NULL)
2066 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002067 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002068 }
2069 if (!chan_is_dead(c, 1))
2070 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002071 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002072 channel_free(c);
2073}
2074
Ben Lindstrombba81212001-06-25 05:01:22 +00002075static void
Damien Millera6508752012-04-22 11:21:10 +10002076channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset,
2077 time_t *unpause_secs)
Damien Millerb38eff82000-04-01 11:09:21 +10002078{
2079 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002080 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002081 Channel *c;
Damien Millera6508752012-04-22 11:21:10 +10002082 time_t now;
Damien Millerb38eff82000-04-01 11:09:21 +10002083
2084 if (!did_init) {
2085 channel_handler_init();
2086 did_init = 1;
2087 }
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002088 now = monotime();
Damien Millera6508752012-04-22 11:21:10 +10002089 if (unpause_secs != NULL)
2090 *unpause_secs = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002091 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002092 c = channels[i];
2093 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002094 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002095 if (c->delayed) {
2096 if (ftab == channel_pre)
2097 c->delayed = 0;
2098 else
2099 continue;
2100 }
Damien Millera6508752012-04-22 11:21:10 +10002101 if (ftab[c->type] != NULL) {
2102 /*
2103 * Run handlers that are not paused.
2104 */
2105 if (c->notbefore <= now)
2106 (*ftab[c->type])(c, readset, writeset);
2107 else if (unpause_secs != NULL) {
2108 /*
2109 * Collect the time that the earliest
2110 * channel comes off pause.
2111 */
2112 debug3("%s: chan %d: skip for %d more seconds",
2113 __func__, c->self,
2114 (int)(c->notbefore - now));
2115 if (*unpause_secs == 0 ||
2116 (c->notbefore - now) < *unpause_secs)
2117 *unpause_secs = c->notbefore - now;
2118 }
2119 }
Damien Miller3ec27592001-10-12 11:35:04 +10002120 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002121 }
Damien Millera6508752012-04-22 11:21:10 +10002122 if (unpause_secs != NULL && *unpause_secs != 0)
2123 debug3("%s: first channel unpauses in %d seconds",
2124 __func__, (int)*unpause_secs);
Damien Millerb38eff82000-04-01 11:09:21 +10002125}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002126
Ben Lindstrome9c99912001-06-09 00:41:05 +00002127/*
2128 * Allocate/update select bitmasks and add any bits relevant to channels in
2129 * select bitmasks.
2130 */
Damien Miller4af51302000-04-16 11:18:38 +10002131void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002132channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Damien Millerba77e1f2012-04-23 18:21:05 +10002133 u_int *nallocp, time_t *minwait_secs, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002134{
Damien Miller36812092006-03-26 14:22:47 +11002135 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002136
2137 n = MAX(*maxfdp, channel_max_fd);
2138
Damien Miller36812092006-03-26 14:22:47 +11002139 nfdset = howmany(n+1, NFDBITS);
2140 /* Explicitly test here, because xrealloc isn't always called */
2141 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2142 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2143 sz = nfdset * sizeof(fd_mask);
2144
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002145 /* perhaps check sz < nalloc/2 and shrink? */
2146 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002147 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2148 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002149 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002150 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002151 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002152 memset(*readsetp, 0, sz);
2153 memset(*writesetp, 0, sz);
2154
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002155 if (!rekeying)
Damien Millera6508752012-04-22 11:21:10 +10002156 channel_handler(channel_pre, *readsetp, *writesetp,
2157 minwait_secs);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002158}
2159
Ben Lindstrome9c99912001-06-09 00:41:05 +00002160/*
2161 * After select, perform any appropriate operations for channels which have
2162 * events pending.
2163 */
Damien Miller4af51302000-04-16 11:18:38 +10002164void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002165channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002166{
Damien Millera6508752012-04-22 11:21:10 +10002167 channel_handler(channel_post, readset, writeset, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168}
2169
Ben Lindstrome9c99912001-06-09 00:41:05 +00002170
Damien Miller5e953212001-01-30 09:14:00 +11002171/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002172void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002173channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002174{
Damien Millerb38eff82000-04-01 11:09:21 +10002175 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002176 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002177
Damien Miller95def091999-11-25 00:26:21 +11002178 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002179 c = channels[i];
2180 if (c == NULL)
2181 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002182
Ben Lindstrome9c99912001-06-09 00:41:05 +00002183 /*
2184 * We are only interested in channels that can have buffered
2185 * incoming data.
2186 */
Damien Miller34132e52000-01-14 15:45:46 +11002187 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002188 if (c->type != SSH_CHANNEL_OPEN &&
2189 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002190 continue;
2191 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002192 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002193 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002194 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002195 if (compat20 &&
2196 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002197 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002198 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002199 continue;
2200 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002201
Damien Miller95def091999-11-25 00:26:21 +11002202 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002203 if ((c->istate == CHAN_INPUT_OPEN ||
2204 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2205 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002206 if (c->datagram) {
2207 if (len > 0) {
2208 u_char *data;
2209 u_int dlen;
2210
2211 data = buffer_get_string(&c->input,
2212 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002213 if (dlen > c->remote_window ||
2214 dlen > c->remote_maxpacket) {
2215 debug("channel %d: datagram "
2216 "too big for channel",
2217 c->self);
Darren Tuckera627d422013-06-02 07:31:17 +10002218 free(data);
Damien Miller7d457182010-08-05 23:09:48 +10002219 continue;
2220 }
Damien Millerd27b9472005-12-13 19:29:02 +11002221 packet_start(SSH2_MSG_CHANNEL_DATA);
2222 packet_put_int(c->remote_id);
2223 packet_put_string(data, dlen);
2224 packet_send();
2225 c->remote_window -= dlen + 4;
Darren Tuckera627d422013-06-02 07:31:17 +10002226 free(data);
Damien Millerd27b9472005-12-13 19:29:02 +11002227 }
2228 continue;
2229 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002230 /*
2231 * Send some data for the other side over the secure
2232 * connection.
2233 */
Damien Miller33b13562000-04-04 14:38:59 +10002234 if (compat20) {
2235 if (len > c->remote_window)
2236 len = c->remote_window;
2237 if (len > c->remote_maxpacket)
2238 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002239 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002240 if (packet_is_interactive()) {
2241 if (len > 1024)
2242 len = 512;
2243 } else {
2244 /* Keep the packets at reasonable size. */
2245 if (len > packet_get_maxsize()/2)
2246 len = packet_get_maxsize()/2;
2247 }
Damien Miller95def091999-11-25 00:26:21 +11002248 }
Damien Millerb38eff82000-04-01 11:09:21 +10002249 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002250 packet_start(compat20 ?
2251 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002252 packet_put_int(c->remote_id);
2253 packet_put_string(buffer_ptr(&c->input), len);
2254 packet_send();
2255 buffer_consume(&c->input, len);
2256 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002257 }
2258 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002259 if (compat13)
2260 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002261 /*
2262 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002263 * tell peer, that we will not send more data: send IEOF.
2264 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002265 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002266 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002267 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2268 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002269 else
2270 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002271 }
Damien Miller33b13562000-04-04 14:38:59 +10002272 /* Send extended data, i.e. stderr */
2273 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002274 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002275 c->remote_window > 0 &&
2276 (len = buffer_len(&c->extended)) > 0 &&
2277 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002278 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002279 c->self, c->remote_window, buffer_len(&c->extended),
2280 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002281 if (len > c->remote_window)
2282 len = c->remote_window;
2283 if (len > c->remote_maxpacket)
2284 len = c->remote_maxpacket;
2285 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2286 packet_put_int(c->remote_id);
2287 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2288 packet_put_string(buffer_ptr(&c->extended), len);
2289 packet_send();
2290 buffer_consume(&c->extended, len);
2291 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002292 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002293 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002294 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295}
2296
Ben Lindstrome9c99912001-06-09 00:41:05 +00002297
2298/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002299
2300/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002301void
Damien Miller630d6f42002-01-22 23:17:30 +11002302channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002303{
Damien Miller34132e52000-01-14 15:45:46 +11002304 int id;
Damien Miller95def091999-11-25 00:26:21 +11002305 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002306 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002307 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002308
Damien Miller95def091999-11-25 00:26:21 +11002309 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002310 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002311 c = channel_lookup(id);
2312 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002313 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002314
Damien Miller95def091999-11-25 00:26:21 +11002315 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002316 if (c->type != SSH_CHANNEL_OPEN &&
2317 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002318 return;
2319
Damien Miller95def091999-11-25 00:26:21 +11002320 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002321 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002322 win_len = data_len;
2323 if (c->datagram)
2324 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002325
Damien Millera04ad492004-01-21 11:02:09 +11002326 /*
2327 * Ignore data for protocol > 1.3 if output end is no longer open.
2328 * For protocol 2 the sending side is reducing its window as it sends
2329 * data, so we must 'fake' consumption of the data in order to ensure
2330 * that window updates are sent back. Otherwise the connection might
2331 * deadlock.
2332 */
2333 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2334 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002335 c->local_window -= win_len;
2336 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002337 }
Damien Millera04ad492004-01-21 11:02:09 +11002338 return;
2339 }
2340
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002341 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002342 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002343 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002344 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002345 }
Damien Miller7d457182010-08-05 23:09:48 +10002346 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002347 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002348 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002349 return;
2350 }
Damien Miller7d457182010-08-05 23:09:48 +10002351 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002352 }
Damien Millerd27b9472005-12-13 19:29:02 +11002353 if (c->datagram)
2354 buffer_put_string(&c->output, data, data_len);
2355 else
2356 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002357 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002358}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002359
Damien Millerd79b4242006-03-31 23:11:44 +11002360/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002361void
Damien Miller630d6f42002-01-22 23:17:30 +11002362channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002363{
2364 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002365 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002366 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002367 Channel *c;
2368
2369 /* Get the channel number and verify it. */
2370 id = packet_get_int();
2371 c = channel_lookup(id);
2372
2373 if (c == NULL)
2374 packet_disconnect("Received extended_data for bad channel %d.", id);
2375 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002376 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002377 return;
2378 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002379 if (c->flags & CHAN_EOF_RCVD) {
2380 if (datafellows & SSH_BUG_EXTEOF)
2381 debug("channel %d: accepting ext data after eof", id);
2382 else
2383 packet_disconnect("Received extended_data after EOF "
2384 "on channel %d.", id);
2385 }
Damien Miller33b13562000-04-04 14:38:59 +10002386 tcode = packet_get_int();
2387 if (c->efd == -1 ||
2388 c->extended_usage != CHAN_EXTENDED_WRITE ||
2389 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002390 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002391 return;
2392 }
2393 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002394 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002395 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002396 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002397 c->self, data_len, c->local_window);
Darren Tuckera627d422013-06-02 07:31:17 +10002398 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002399 return;
2400 }
Damien Millerd3444942000-09-30 14:20:03 +11002401 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002402 c->local_window -= data_len;
2403 buffer_append(&c->extended, data, data_len);
Darren Tuckera627d422013-06-02 07:31:17 +10002404 free(data);
Damien Miller33b13562000-04-04 14:38:59 +10002405}
2406
Damien Millerd79b4242006-03-31 23:11:44 +11002407/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002408void
Damien Miller630d6f42002-01-22 23:17:30 +11002409channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002410{
2411 int id;
2412 Channel *c;
2413
Damien Millerb38eff82000-04-01 11:09:21 +10002414 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002415 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002416 c = channel_lookup(id);
2417 if (c == NULL)
2418 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2419 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002420
2421 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002422 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002423 debug("channel %d: FORCE input drain", c->self);
2424 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002425 if (buffer_len(&c->input) == 0)
2426 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002427 }
2428
Damien Millerb38eff82000-04-01 11:09:21 +10002429}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002430
Damien Millerd79b4242006-03-31 23:11:44 +11002431/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002432void
Damien Miller630d6f42002-01-22 23:17:30 +11002433channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002434{
Damien Millerb38eff82000-04-01 11:09:21 +10002435 int id;
2436 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002437
Damien Millerb38eff82000-04-01 11:09:21 +10002438 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002439 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002440 c = channel_lookup(id);
2441 if (c == NULL)
2442 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002443
2444 /*
2445 * Send a confirmation that we have closed the channel and no more
2446 * data is coming for it.
2447 */
Damien Miller95def091999-11-25 00:26:21 +11002448 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002449 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002450 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002451
Damien Miller5428f641999-11-25 11:54:57 +11002452 /*
2453 * If the channel is in closed state, we have sent a close request,
2454 * and the other side will eventually respond with a confirmation.
2455 * Thus, we cannot free the channel here, because then there would be
2456 * no-one to receive the confirmation. The channel gets freed when
2457 * the confirmation arrives.
2458 */
Damien Millerb38eff82000-04-01 11:09:21 +10002459 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002460 /*
2461 * Not a closed channel - mark it as draining, which will
2462 * cause it to be freed later.
2463 */
Damien Miller76765c02002-01-22 23:21:15 +11002464 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002465 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002466 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002467}
2468
Damien Millerb38eff82000-04-01 11:09:21 +10002469/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002470/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002471void
Damien Miller630d6f42002-01-22 23:17:30 +11002472channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002473{
Damien Millerb38eff82000-04-01 11:09:21 +10002474 int id = packet_get_int();
2475 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002476
Damien Miller48b03fc2002-01-22 23:11:40 +11002477 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002478 if (c == NULL)
2479 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2480 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481}
2482
Damien Millerd79b4242006-03-31 23:11:44 +11002483/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002484void
Damien Miller630d6f42002-01-22 23:17:30 +11002485channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002486{
2487 int id = packet_get_int();
2488 Channel *c = channel_lookup(id);
2489
Damien Miller48b03fc2002-01-22 23:11:40 +11002490 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002491 if (c == NULL)
2492 packet_disconnect("Received close confirmation for "
2493 "out-of-range channel %d.", id);
2494 if (c->type != SSH_CHANNEL_CLOSED)
2495 packet_disconnect("Received close confirmation for "
2496 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002497 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002498}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002499
Damien Millerd79b4242006-03-31 23:11:44 +11002500/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002501void
Damien Miller630d6f42002-01-22 23:17:30 +11002502channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002503{
Damien Millerb38eff82000-04-01 11:09:21 +10002504 int id, remote_id;
2505 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506
Damien Millerb38eff82000-04-01 11:09:21 +10002507 id = packet_get_int();
2508 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002509
Damien Millerb38eff82000-04-01 11:09:21 +10002510 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2511 packet_disconnect("Received open confirmation for "
2512 "non-opening channel %d.", id);
2513 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002514 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002515 c->remote_id = remote_id;
2516 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002517
2518 if (compat20) {
2519 c->remote_window = packet_get_int();
2520 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002521 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002522 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002523 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002524 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002525 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002526 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002527 c->remote_window, c->remote_maxpacket);
2528 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002529 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002530}
2531
Ben Lindstrombba81212001-06-25 05:01:22 +00002532static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002533reason2txt(int reason)
2534{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002535 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002536 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2537 return "administratively prohibited";
2538 case SSH2_OPEN_CONNECT_FAILED:
2539 return "connect failed";
2540 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2541 return "unknown channel type";
2542 case SSH2_OPEN_RESOURCE_SHORTAGE:
2543 return "resource shortage";
2544 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002545 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002546}
2547
Damien Millerd79b4242006-03-31 23:11:44 +11002548/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002549void
Damien Miller630d6f42002-01-22 23:17:30 +11002550channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551{
Kevin Steves12057502001-02-05 14:54:34 +00002552 int id, reason;
2553 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002554 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002555
Damien Millerb38eff82000-04-01 11:09:21 +10002556 id = packet_get_int();
2557 c = channel_lookup(id);
2558
2559 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2560 packet_disconnect("Received open failure for "
2561 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002562 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002563 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002564 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002565 msg = packet_get_string(NULL);
2566 lang = packet_get_string(NULL);
2567 }
Damien Miller996acd22003-04-09 20:59:48 +10002568 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002569 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Darren Tuckera627d422013-06-02 07:31:17 +10002570 free(msg);
2571 free(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002572 if (c->open_confirm) {
2573 debug2("callback start");
2574 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2575 debug2("callback done");
2576 }
Damien Miller33b13562000-04-04 14:38:59 +10002577 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002578 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002579 /* Schedule the channel for cleanup/deletion. */
2580 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002581}
2582
Damien Millerd79b4242006-03-31 23:11:44 +11002583/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002584void
Damien Miller630d6f42002-01-22 23:17:30 +11002585channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002586{
2587 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002588 int id;
2589 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002590
2591 if (!compat20)
2592 return;
2593
2594 /* Get the channel number and verify it. */
2595 id = packet_get_int();
2596 c = channel_lookup(id);
2597
Damien Millerd47c62a2005-12-13 19:33:57 +11002598 if (c == NULL) {
2599 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002600 return;
2601 }
2602 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002603 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002604 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002605 c->remote_window += adjust;
2606}
2607
Damien Millerd79b4242006-03-31 23:11:44 +11002608/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002609void
Damien Miller630d6f42002-01-22 23:17:30 +11002610channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002611{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002612 Channel *c = NULL;
2613 u_short host_port;
2614 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002615 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002616
Ben Lindstrome9c99912001-06-09 00:41:05 +00002617 remote_id = packet_get_int();
2618 host = packet_get_string(NULL);
2619 host_port = packet_get_int();
2620
2621 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2622 originator_string = packet_get_string(NULL);
2623 } else {
2624 originator_string = xstrdup("unknown (remote did not supply name)");
2625 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002626 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002627 c = channel_connect_to(host, host_port,
2628 "connected socket", originator_string);
Darren Tuckera627d422013-06-02 07:31:17 +10002629 free(originator_string);
2630 free(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002631 if (c == NULL) {
2632 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2633 packet_put_int(remote_id);
2634 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002635 } else
2636 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002637}
2638
Damien Millerb84886b2008-05-19 15:05:07 +10002639/* ARGSUSED */
2640void
2641channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2642{
2643 Channel *c;
2644 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002645 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002646
2647 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002648 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002649
Damien Miller16a73072008-12-08 09:55:25 +11002650 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002651 packet_check_eom();
2652
Damien Miller16a73072008-12-08 09:55:25 +11002653 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002654
Damien Miller16a73072008-12-08 09:55:25 +11002655 if ((c = channel_lookup(id)) == NULL) {
2656 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002657 return;
2658 }
2659 ;
2660 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2661 return;
2662 cc->cb(type, c, cc->ctx);
2663 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2664 bzero(cc, sizeof(*cc));
Darren Tuckera627d422013-06-02 07:31:17 +10002665 free(cc);
Damien Millerb84886b2008-05-19 15:05:07 +10002666}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002667
Ben Lindstrome9c99912001-06-09 00:41:05 +00002668/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002669
Ben Lindstrom908afed2001-10-03 17:34:59 +00002670void
2671channel_set_af(int af)
2672{
2673 IPv4or6 = af;
2674}
2675
Damien Millerf6dff7c2011-09-22 21:38:52 +10002676
2677/*
2678 * Determine whether or not a port forward listens to loopback, the
2679 * specified address or wildcard. On the client, a specified bind
2680 * address will always override gateway_ports. On the server, a
2681 * gateway_ports of 1 (``yes'') will override the client's specification
2682 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2683 * will bind to whatever address the client asked for.
2684 *
2685 * Special-case listen_addrs are:
2686 *
2687 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2688 * "" (empty string), "*" -> wildcard v4/v6
2689 * "localhost" -> loopback v4/v6
2690 */
2691static const char *
2692channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
2693 int is_client, int gateway_ports)
2694{
2695 const char *addr = NULL;
2696 int wildcard = 0;
2697
2698 if (listen_addr == NULL) {
2699 /* No address specified: default to gateway_ports setting */
2700 if (gateway_ports)
2701 wildcard = 1;
2702 } else if (gateway_ports || is_client) {
2703 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2704 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2705 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2706 (!is_client && gateway_ports == 1))
2707 wildcard = 1;
2708 else if (strcmp(listen_addr, "localhost") != 0)
2709 addr = listen_addr;
2710 }
2711 if (wildcardp != NULL)
2712 *wildcardp = wildcard;
2713 return addr;
2714}
2715
Damien Millerb16461c2002-01-22 23:29:22 +11002716static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002717channel_setup_fwd_listener(int type, const char *listen_addr,
2718 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002719 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002720{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002721 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002722 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002723 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002724 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002725 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002726 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002727
Damien Millerb16461c2002-01-22 23:29:22 +11002728 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2729 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002730 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002731
Damien Millerb16461c2002-01-22 23:29:22 +11002732 if (host == NULL) {
2733 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002734 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002735 }
Damien Miller9576ac42009-01-28 16:30:33 +11002736 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002737 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002738 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002739 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002740
Damien Millerf6dff7c2011-09-22 21:38:52 +10002741 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
2742 addr = channel_fwd_bind_addr(listen_addr, &wildcard,
2743 is_client, gateway_ports);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002744 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2745 type, wildcard, (addr == NULL) ? "NULL" : addr);
2746
2747 /*
Damien Miller34132e52000-01-14 15:45:46 +11002748 * getaddrinfo returns a loopback address if the hostname is
2749 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002750 */
Damien Miller34132e52000-01-14 15:45:46 +11002751 memset(&hints, 0, sizeof(hints));
2752 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002753 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002754 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002755 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002756 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2757 if (addr == NULL) {
2758 /* This really shouldn't happen */
2759 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002760 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002761 } else {
Damien Millera7270302005-07-06 09:36:05 +10002762 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002763 "getaddrinfo(%.64s): %s", addr,
2764 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002765 }
Damien Millera7270302005-07-06 09:36:05 +10002766 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002767 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002768 if (allocated_listen_port != NULL)
2769 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002770 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002771 switch (ai->ai_family) {
2772 case AF_INET:
2773 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2774 sin_port;
2775 break;
2776 case AF_INET6:
2777 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2778 sin6_port;
2779 break;
2780 default:
Damien Miller34132e52000-01-14 15:45:46 +11002781 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002782 }
2783 /*
2784 * If allocating a port for -R forwards, then use the
2785 * same port for all address families.
2786 */
2787 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2788 allocated_listen_port != NULL && *allocated_listen_port > 0)
2789 *lport_p = htons(*allocated_listen_port);
2790
Damien Miller34132e52000-01-14 15:45:46 +11002791 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2792 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002793 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002794 continue;
2795 }
2796 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002797 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002798 if (sock < 0) {
2799 /* this is no error since kernel may not support ipv6 */
2800 verbose("socket: %.100s", strerror(errno));
2801 continue;
2802 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002803
2804 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002805 if (ai->ai_family == AF_INET6)
2806 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002807
Damien Miller4bf648f2009-02-14 16:28:21 +11002808 debug("Local forwarding listening on %s port %s.",
2809 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002810
Damien Miller34132e52000-01-14 15:45:46 +11002811 /* Bind the socket to the address. */
2812 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2813 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002814 if (!ai->ai_next)
2815 error("bind: %.100s", strerror(errno));
2816 else
2817 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002818
Damien Miller34132e52000-01-14 15:45:46 +11002819 close(sock);
2820 continue;
2821 }
2822 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002823 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002824 error("listen: %.100s", strerror(errno));
2825 close(sock);
2826 continue;
2827 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002828
2829 /*
2830 * listen_port == 0 requests a dynamically allocated port -
2831 * record what we got.
2832 */
2833 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2834 allocated_listen_port != NULL &&
2835 *allocated_listen_port == 0) {
2836 *allocated_listen_port = get_sock_port(sock, 1);
2837 debug("Allocated listen port %d",
2838 *allocated_listen_port);
2839 }
2840
Damien Miller34132e52000-01-14 15:45:46 +11002841 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002842 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002843 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002844 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002845 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002846 c->host_port = port_to_connect;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002847 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Darren Tucker68afb8c2011-10-02 18:59:03 +11002848 if (listen_port == 0 && allocated_listen_port != NULL &&
2849 !(datafellows & SSH_BUG_DYNAMIC_RPORT))
2850 c->listening_port = *allocated_listen_port;
2851 else
2852 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002853 success = 1;
2854 }
2855 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002856 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002857 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002858 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002859 return success;
Damien Miller95def091999-11-25 00:26:21 +11002860}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002861
Darren Tuckere7066df2004-05-24 10:18:05 +10002862int
2863channel_cancel_rport_listener(const char *host, u_short port)
2864{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002865 u_int i;
2866 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002867
Darren Tucker47eede72005-03-14 23:08:12 +11002868 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002869 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10002870 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
2871 continue;
2872 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
2873 debug2("%s: close channel %d", __func__, i);
2874 channel_free(c);
2875 found = 1;
2876 }
2877 }
Darren Tuckere7066df2004-05-24 10:18:05 +10002878
Damien Millerf6dff7c2011-09-22 21:38:52 +10002879 return (found);
2880}
2881
2882int
2883channel_cancel_lport_listener(const char *lhost, u_short lport,
Damien Millerff773642011-09-22 21:39:48 +10002884 int cport, int gateway_ports)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002885{
2886 u_int i;
2887 int found = 0;
2888 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
2889
2890 for (i = 0; i < channels_alloc; i++) {
2891 Channel *c = channels[i];
2892 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
2893 continue;
Damien Millerff773642011-09-22 21:39:48 +10002894 if (c->listening_port != lport)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002895 continue;
Damien Millerff773642011-09-22 21:39:48 +10002896 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
2897 /* skip dynamic forwardings */
2898 if (c->host_port == 0)
2899 continue;
2900 } else {
2901 if (c->host_port != cport)
2902 continue;
2903 }
Damien Millerf6dff7c2011-09-22 21:38:52 +10002904 if ((c->listening_addr == NULL && addr != NULL) ||
2905 (c->listening_addr != NULL && addr == NULL))
2906 continue;
2907 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002908 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002909 channel_free(c);
2910 found = 1;
2911 }
2912 }
2913
2914 return (found);
2915}
2916
Damien Millerb16461c2002-01-22 23:29:22 +11002917/* protocol local port fwd, used by ssh (and sshd in v1) */
2918int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002919channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002920 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2921{
2922 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002923 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002924 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002925}
2926
2927/* protocol v2 remote port fwd, used by sshd */
2928int
2929channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002930 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002931{
2932 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002933 listen_address, listen_port, allocated_listen_port,
2934 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002935}
2936
Damien Miller5428f641999-11-25 11:54:57 +11002937/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10002938 * Translate the requested rfwd listen host to something usable for
2939 * this server.
2940 */
2941static const char *
2942channel_rfwd_bind_host(const char *listen_host)
2943{
2944 if (listen_host == NULL) {
2945 if (datafellows & SSH_BUG_RFWD_ADDR)
2946 return "127.0.0.1";
2947 else
2948 return "localhost";
2949 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
2950 if (datafellows & SSH_BUG_RFWD_ADDR)
2951 return "0.0.0.0";
2952 else
2953 return "";
2954 } else
2955 return listen_host;
2956}
2957
2958/*
Damien Miller5428f641999-11-25 11:54:57 +11002959 * Initiate forwarding of connections to port "port" on remote host through
2960 * the secure channel to host:port from local side.
Darren Tucker68afb8c2011-10-02 18:59:03 +11002961 * Returns handle (index) for updating the dynamic listen port with
2962 * channel_update_permitted_opens().
Damien Miller5428f641999-11-25 11:54:57 +11002963 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002964int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002965channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002966 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002967{
Darren Tucker68afb8c2011-10-02 18:59:03 +11002968 int type, success = 0, idx = -1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002969
Damien Miller95def091999-11-25 00:26:21 +11002970 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002971 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002972 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2973 packet_put_cstring("tcpip-forward");
Damien Millerf6dff7c2011-09-22 21:38:52 +10002974 packet_put_char(1); /* boolean: want reply */
2975 packet_put_cstring(channel_rfwd_bind_host(listen_host));
Damien Miller33b13562000-04-04 14:38:59 +10002976 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002977 packet_send();
2978 packet_write_wait();
2979 /* Assume that server accepts the request */
2980 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002981 } else {
2982 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002983 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002984 packet_put_cstring(host_to_connect);
2985 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002986 packet_send();
2987 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002988
2989 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002990 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002991 switch (type) {
2992 case SSH_SMSG_SUCCESS:
2993 success = 1;
2994 break;
2995 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002996 break;
2997 default:
2998 /* Unknown packet */
2999 packet_disconnect("Protocol error for port forward request:"
3000 "received packet type %d.", type);
3001 }
3002 }
3003 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10003004 /* Record that connection to this host/port is permitted. */
3005 permitted_opens = xrealloc(permitted_opens,
3006 num_permitted_opens + 1, sizeof(*permitted_opens));
Darren Tucker68afb8c2011-10-02 18:59:03 +11003007 idx = num_permitted_opens++;
3008 permitted_opens[idx].host_to_connect = xstrdup(host_to_connect);
3009 permitted_opens[idx].port_to_connect = port_to_connect;
3010 permitted_opens[idx].listen_port = listen_port;
Damien Miller33b13562000-04-04 14:38:59 +10003011 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11003012 return (idx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003013}
3014
Damien Miller5428f641999-11-25 11:54:57 +11003015/*
Darren Tuckerfc959702004-07-17 16:12:08 +10003016 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10003017 * local side.
3018 */
Damien Millerf6dff7c2011-09-22 21:38:52 +10003019int
Damien Millerf91ee4c2005-03-01 21:24:33 +11003020channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10003021{
3022 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10003023
3024 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10003025 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003026
3027 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10003028 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10003029 permitted_opens[i].listen_port == port)
3030 break;
3031 }
3032 if (i >= num_permitted_opens) {
3033 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003034 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10003035 }
3036 packet_start(SSH2_MSG_GLOBAL_REQUEST);
3037 packet_put_cstring("cancel-tcpip-forward");
3038 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10003039 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10003040 packet_put_int(port);
3041 packet_send();
3042
3043 permitted_opens[i].listen_port = 0;
3044 permitted_opens[i].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003045 free(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10003046 permitted_opens[i].host_to_connect = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003047
3048 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003049}
3050
3051/*
Damien Miller5428f641999-11-25 11:54:57 +11003052 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3053 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003054 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003055 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003056int
Damien Millere247cc42000-05-07 12:03:14 +10003057channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003058{
Damien Milleraae6c611999-12-06 11:47:28 +11003059 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10003060 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11003061 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003062
Damien Miller95def091999-11-25 00:26:21 +11003063 /* Get arguments from the packet. */
3064 port = packet_get_int();
3065 hostname = packet_get_string(NULL);
3066 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003067
Damien Millerbac2d8a2000-09-05 16:13:06 +11003068#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003069 /*
3070 * Check that an unprivileged user is not trying to forward a
3071 * privileged port.
3072 */
Damien Miller95def091999-11-25 00:26:21 +11003073 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003074 packet_disconnect(
3075 "Requested forwarding of port %d but user is not root.",
3076 port);
3077 if (host_port == 0)
3078 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003079#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003080
Damien Miller0bc1bd82000-11-13 22:57:25 +11003081 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003082 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003083 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11003084
3085 /* Free the argument string. */
Darren Tuckera627d422013-06-02 07:31:17 +10003086 free(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003087
3088 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003089}
3090
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003091/*
3092 * Permits opening to any host/port if permitted_opens[] is empty. This is
3093 * usually called by the server, because the user could connect to any port
3094 * anyway, and the server has no way to know but to trust the client anyway.
3095 */
3096void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003097channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003098{
3099 if (num_permitted_opens == 0)
3100 all_opens_permitted = 1;
3101}
3102
Ben Lindstroma3700052001-04-05 23:26:32 +00003103void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003104channel_add_permitted_opens(char *host, int port)
3105{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003106 debug("allow port forwarding to host %s port %d", host, port);
3107
Damien Miller232cfb12010-06-26 09:50:30 +10003108 permitted_opens = xrealloc(permitted_opens,
3109 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003110 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3111 permitted_opens[num_permitted_opens].port_to_connect = port;
3112 num_permitted_opens++;
3113
3114 all_opens_permitted = 0;
3115}
3116
Darren Tucker68afb8c2011-10-02 18:59:03 +11003117/*
3118 * Update the listen port for a dynamic remote forward, after
3119 * the actual 'newport' has been allocated. If 'newport' < 0 is
3120 * passed then they entry will be invalidated.
3121 */
3122void
3123channel_update_permitted_opens(int idx, int newport)
3124{
3125 if (idx < 0 || idx >= num_permitted_opens) {
3126 debug("channel_update_permitted_opens: index out of range:"
3127 " %d num_permitted_opens %d", idx, num_permitted_opens);
3128 return;
3129 }
3130 debug("%s allowed port %d for forwarding to host %s port %d",
3131 newport > 0 ? "Updating" : "Removing",
3132 newport,
3133 permitted_opens[idx].host_to_connect,
3134 permitted_opens[idx].port_to_connect);
3135 if (newport >= 0) {
3136 permitted_opens[idx].listen_port =
3137 (datafellows & SSH_BUG_DYNAMIC_RPORT) ? 0 : newport;
3138 } else {
3139 permitted_opens[idx].listen_port = 0;
3140 permitted_opens[idx].port_to_connect = 0;
Darren Tuckera627d422013-06-02 07:31:17 +10003141 free(permitted_opens[idx].host_to_connect);
Darren Tucker68afb8c2011-10-02 18:59:03 +11003142 permitted_opens[idx].host_to_connect = NULL;
3143 }
3144}
3145
Damien Millera765cf42006-07-24 14:08:13 +10003146int
Damien Miller9b439df2006-07-24 14:04:00 +10003147channel_add_adm_permitted_opens(char *host, int port)
3148{
Damien Millera765cf42006-07-24 14:08:13 +10003149 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003150
Damien Miller232cfb12010-06-26 09:50:30 +10003151 permitted_adm_opens = xrealloc(permitted_adm_opens,
3152 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003153 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3154 = xstrdup(host);
3155 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003156 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003157}
3158
3159void
Damien Millerc6081482012-04-22 11:18:53 +10003160channel_disable_adm_local_opens(void)
3161{
Damien Milleraa5b3f82012-12-03 09:50:54 +11003162 channel_clear_adm_permitted_opens();
3163 permitted_adm_opens = xmalloc(sizeof(*permitted_adm_opens));
3164 permitted_adm_opens[num_adm_permitted_opens].host_to_connect = NULL;
3165 num_adm_permitted_opens = 1;
Damien Millerc6081482012-04-22 11:18:53 +10003166}
3167
3168void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003169channel_clear_permitted_opens(void)
3170{
3171 int i;
3172
3173 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003174 free(permitted_opens[i].host_to_connect);
3175 free(permitted_opens);
3176 permitted_opens = NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003177 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003178}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003179
Damien Miller9b439df2006-07-24 14:04:00 +10003180void
3181channel_clear_adm_permitted_opens(void)
3182{
3183 int i;
3184
3185 for (i = 0; i < num_adm_permitted_opens; i++)
Darren Tuckera627d422013-06-02 07:31:17 +10003186 free(permitted_adm_opens[i].host_to_connect);
3187 free(permitted_adm_opens);
3188 permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +10003189 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003190}
3191
Darren Tuckere7140f22008-06-10 23:01:51 +10003192void
3193channel_print_adm_permitted_opens(void)
3194{
Damien Miller6ef17492008-07-16 22:42:06 +10003195 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003196
Damien Millerb53d8a12009-01-28 16:13:04 +11003197 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003198 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003199 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003200 return;
3201 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003202 for (i = 0; i < num_adm_permitted_opens; i++)
Damien Millerc6081482012-04-22 11:18:53 +10003203 if (permitted_adm_opens[i].host_to_connect == NULL)
3204 printf(" none");
3205 else
Darren Tuckere7140f22008-06-10 23:01:51 +10003206 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3207 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003208 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003209}
3210
Darren Tucker1338b9e2011-10-02 18:57:35 +11003211/* returns port number, FWD_PERMIT_ANY_PORT or -1 on error */
3212int
3213permitopen_port(const char *p)
3214{
3215 int port;
3216
3217 if (strcmp(p, "*") == 0)
3218 return FWD_PERMIT_ANY_PORT;
3219 if ((port = a2port(p)) > 0)
3220 return port;
3221 return -1;
3222}
3223
3224static int
3225port_match(u_short allowedport, u_short requestedport)
3226{
3227 if (allowedport == FWD_PERMIT_ANY_PORT ||
3228 allowedport == requestedport)
3229 return 1;
3230 return 0;
3231}
3232
Damien Millerbd740252008-05-19 15:37:09 +10003233/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003234static int
Damien Millerbd740252008-05-19 15:37:09 +10003235connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003236{
Damien Millerbd740252008-05-19 15:37:09 +10003237 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003238 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003239
Damien Millerbd740252008-05-19 15:37:09 +10003240 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3241 if (cctx->ai->ai_family != AF_INET &&
3242 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003243 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003244 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3245 ntop, sizeof(ntop), strport, sizeof(strport),
3246 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3247 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003248 continue;
3249 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003250 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3251 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003252 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003253 error("socket: %.100s", strerror(errno));
3254 else
3255 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003256 continue;
3257 }
Damien Miller232711f2004-06-15 10:35:30 +10003258 if (set_nonblock(sock) == -1)
3259 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003260 if (connect(sock, cctx->ai->ai_addr,
3261 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3262 debug("connect_next: host %.100s ([%.100s]:%s): "
3263 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003264 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003265 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003266 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003267 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003268 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003269 }
Damien Millerbd740252008-05-19 15:37:09 +10003270 debug("connect_next: host %.100s ([%.100s]:%s) "
3271 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3272 cctx->ai = cctx->ai->ai_next;
3273 set_nodelay(sock);
3274 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003275 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003276 return -1;
3277}
Damien Millerb38eff82000-04-01 11:09:21 +10003278
Damien Millerbd740252008-05-19 15:37:09 +10003279static void
3280channel_connect_ctx_free(struct channel_connect *cctx)
3281{
Darren Tuckera627d422013-06-02 07:31:17 +10003282 free(cctx->host);
Damien Millerbd740252008-05-19 15:37:09 +10003283 if (cctx->aitop)
3284 freeaddrinfo(cctx->aitop);
3285 bzero(cctx, sizeof(*cctx));
3286 cctx->host = NULL;
3287 cctx->ai = cctx->aitop = NULL;
3288}
3289
3290/* Return CONNECTING channel to remote host, port */
3291static Channel *
3292connect_to(const char *host, u_short port, char *ctype, char *rname)
3293{
3294 struct addrinfo hints;
3295 int gaierr;
3296 int sock = -1;
3297 char strport[NI_MAXSERV];
3298 struct channel_connect cctx;
3299 Channel *c;
3300
Damien Miller2bcb8662008-07-12 17:12:29 +10003301 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003302 memset(&hints, 0, sizeof(hints));
3303 hints.ai_family = IPv4or6;
3304 hints.ai_socktype = SOCK_STREAM;
3305 snprintf(strport, sizeof strport, "%d", port);
3306 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3307 error("connect_to %.100s: unknown host (%s)", host,
3308 ssh_gai_strerror(gaierr));
3309 return NULL;
3310 }
3311
3312 cctx.host = xstrdup(host);
3313 cctx.port = port;
3314 cctx.ai = cctx.aitop;
3315
3316 if ((sock = connect_next(&cctx)) == -1) {
3317 error("connect to %.100s port %d failed: %s",
3318 host, port, strerror(errno));
3319 channel_connect_ctx_free(&cctx);
3320 return NULL;
3321 }
3322 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3323 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3324 c->connect_ctx = cctx;
3325 return c;
3326}
3327
3328Channel *
3329channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3330{
3331 int i;
3332
3333 for (i = 0; i < num_permitted_opens; i++) {
3334 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003335 port_match(permitted_opens[i].listen_port, listen_port)) {
Damien Millerbd740252008-05-19 15:37:09 +10003336 return connect_to(
3337 permitted_opens[i].host_to_connect,
3338 permitted_opens[i].port_to_connect, ctype, rname);
3339 }
3340 }
3341 error("WARNING: Server requests forwarding for unknown listen_port %d",
3342 listen_port);
3343 return NULL;
3344}
3345
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003346/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003347Channel *
3348channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003349{
Damien Miller9b439df2006-07-24 14:04:00 +10003350 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003351
3352 permit = all_opens_permitted;
3353 if (!permit) {
3354 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003355 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003356 port_match(permitted_opens[i].port_to_connect, port) &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003357 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3358 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003359 }
Damien Miller9b439df2006-07-24 14:04:00 +10003360
3361 if (num_adm_permitted_opens > 0) {
3362 permit_adm = 0;
3363 for (i = 0; i < num_adm_permitted_opens; i++)
3364 if (permitted_adm_opens[i].host_to_connect != NULL &&
Darren Tucker1338b9e2011-10-02 18:57:35 +11003365 port_match(permitted_adm_opens[i].port_to_connect, port) &&
Damien Miller9b439df2006-07-24 14:04:00 +10003366 strcmp(permitted_adm_opens[i].host_to_connect, host)
3367 == 0)
3368 permit_adm = 1;
3369 }
3370
3371 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003372 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003373 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003374 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003375 }
Damien Millerbd740252008-05-19 15:37:09 +10003376 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003377}
3378
Damien Miller0e220db2004-06-15 10:34:08 +10003379void
3380channel_send_window_changes(void)
3381{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003382 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003383 struct winsize ws;
3384
3385 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003386 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003387 channels[i]->type != SSH_CHANNEL_OPEN)
3388 continue;
3389 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3390 continue;
3391 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003392 packet_put_int((u_int)ws.ws_col);
3393 packet_put_int((u_int)ws.ws_row);
3394 packet_put_int((u_int)ws.ws_xpixel);
3395 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003396 packet_send();
3397 }
3398}
3399
Ben Lindstrome9c99912001-06-09 00:41:05 +00003400/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003401
Damien Miller5428f641999-11-25 11:54:57 +11003402/*
3403 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003404 * Returns 0 and a suitable display number for the DISPLAY variable
3405 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003406 */
Kevin Steves366298c2001-12-19 17:58:01 +00003407int
Damien Miller95c249f2002-02-05 12:11:34 +11003408x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003409 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003410{
Damien Millere7378562001-12-21 14:58:35 +11003411 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003412 int display_number, sock;
3413 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003414 struct addrinfo hints, *ai, *aitop;
3415 char strport[NI_MAXSERV];
3416 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003417
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003418 if (chanids == NULL)
3419 return -1;
3420
Damien Millera34a28b1999-12-14 10:47:15 +11003421 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003422 display_number < MAX_DISPLAYS;
3423 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003424 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003425 memset(&hints, 0, sizeof(hints));
3426 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003427 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003428 hints.ai_socktype = SOCK_STREAM;
3429 snprintf(strport, sizeof strport, "%d", port);
3430 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003431 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003432 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003433 }
Damien Miller34132e52000-01-14 15:45:46 +11003434 for (ai = aitop; ai; ai = ai->ai_next) {
3435 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3436 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003437 sock = socket(ai->ai_family, ai->ai_socktype,
3438 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003439 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003440 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3441#ifdef EPFNOSUPPORT
3442 && (errno != EPFNOSUPPORT)
3443#endif
3444 ) {
Damien Millere2192732000-01-17 13:22:55 +11003445 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003446 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003447 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003448 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003449 debug("x11_create_display_inet: Socket family %d not supported",
3450 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003451 continue;
3452 }
Damien Miller34132e52000-01-14 15:45:46 +11003453 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003454 if (ai->ai_family == AF_INET6)
3455 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003456 if (x11_use_localhost)
3457 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003458 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003459 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003460 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003461
Damien Miller34132e52000-01-14 15:45:46 +11003462 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003463 close(socks[n]);
3464 }
3465 num_socks = 0;
3466 break;
3467 }
3468 socks[num_socks++] = sock;
3469 if (num_socks == NUM_SOCKS)
3470 break;
Damien Miller95def091999-11-25 00:26:21 +11003471 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003472 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003473 if (num_socks > 0)
3474 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003475 }
Damien Miller95def091999-11-25 00:26:21 +11003476 if (display_number >= MAX_DISPLAYS) {
3477 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003478 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003479 }
Damien Miller95def091999-11-25 00:26:21 +11003480 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003481 for (n = 0; n < num_socks; n++) {
3482 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003483 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003484 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003485 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003486 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003487 }
Damien Miller95def091999-11-25 00:26:21 +11003488 }
Damien Miller34132e52000-01-14 15:45:46 +11003489
Damien Miller34132e52000-01-14 15:45:46 +11003490 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003491 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003492 for (n = 0; n < num_socks; n++) {
3493 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003494 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003495 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3496 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003497 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003498 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003499 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003500 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003501 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003502
Kevin Steves366298c2001-12-19 17:58:01 +00003503 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003504 *display_numberp = display_number;
3505 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003506}
3507
Ben Lindstrombba81212001-06-25 05:01:22 +00003508static int
Damien Miller819dbb62009-01-21 16:46:26 +11003509connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003510{
Damien Miller95def091999-11-25 00:26:21 +11003511 int sock;
3512 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003513
Damien Miller3afe3752001-12-21 12:39:51 +11003514 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3515 if (sock < 0)
3516 error("socket: %.100s", strerror(errno));
3517 memset(&addr, 0, sizeof(addr));
3518 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003519 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003520 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003521 return sock;
3522 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003523 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3524 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003525}
3526
Damien Miller819dbb62009-01-21 16:46:26 +11003527static int
3528connect_local_xsocket(u_int dnr)
3529{
3530 char buf[1024];
3531 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3532 return connect_local_xsocket_path(buf);
3533}
3534
Damien Millerbd483e72000-04-30 10:00:53 +10003535int
3536x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003537{
Damien Miller57c4e872006-03-31 23:11:07 +11003538 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003539 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003540 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003541 struct addrinfo hints, *ai, *aitop;
3542 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003543 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003544
Damien Miller95def091999-11-25 00:26:21 +11003545 /* Try to open a socket for the local X server. */
3546 display = getenv("DISPLAY");
3547 if (!display) {
3548 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003549 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003550 }
Damien Miller5428f641999-11-25 11:54:57 +11003551 /*
3552 * Now we decode the value of the DISPLAY variable and make a
3553 * connection to the real X server.
3554 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003555
Damien Miller819dbb62009-01-21 16:46:26 +11003556 /* Check if the display is from launchd. */
3557#ifdef __APPLE__
3558 if (strncmp(display, "/tmp/launch", 11) == 0) {
3559 sock = connect_local_xsocket_path(display);
3560 if (sock < 0)
3561 return -1;
3562
3563 /* OK, we now have a connection to the display. */
3564 return sock;
3565 }
3566#endif
Damien Miller5428f641999-11-25 11:54:57 +11003567 /*
3568 * Check if it is a unix domain socket. Unix domain displays are in
3569 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3570 */
Damien Miller95def091999-11-25 00:26:21 +11003571 if (strncmp(display, "unix:", 5) == 0 ||
3572 display[0] == ':') {
3573 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003574 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003575 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003576 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003577 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003578 }
3579 /* Create a socket. */
3580 sock = connect_local_xsocket(display_number);
3581 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003582 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003583
3584 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003585 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003586 }
Damien Miller5428f641999-11-25 11:54:57 +11003587 /*
3588 * Connect to an inet socket. The DISPLAY value is supposedly
3589 * hostname:d[.s], where hostname may also be numeric IP address.
3590 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003591 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003592 cp = strchr(buf, ':');
3593 if (!cp) {
3594 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003595 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003596 }
Damien Miller95def091999-11-25 00:26:21 +11003597 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003598 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003599 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003600 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003601 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003602 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003603 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003604
Damien Miller34132e52000-01-14 15:45:46 +11003605 /* Look up the host address */
3606 memset(&hints, 0, sizeof(hints));
3607 hints.ai_family = IPv4or6;
3608 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003609 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003610 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003611 error("%.100s: unknown host. (%s)", buf,
3612 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003613 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003614 }
Damien Miller34132e52000-01-14 15:45:46 +11003615 for (ai = aitop; ai; ai = ai->ai_next) {
3616 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003617 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003618 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003619 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003620 continue;
3621 }
3622 /* Connect it to the display. */
3623 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003624 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003625 6000 + display_number, strerror(errno));
3626 close(sock);
3627 continue;
3628 }
3629 /* Success */
3630 break;
Damien Miller34132e52000-01-14 15:45:46 +11003631 }
Damien Miller34132e52000-01-14 15:45:46 +11003632 freeaddrinfo(aitop);
3633 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003634 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003635 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003636 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003637 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003638 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003639 return sock;
3640}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003641
Damien Millerbd483e72000-04-30 10:00:53 +10003642/*
3643 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3644 * the remote channel number. We should do whatever we want, and respond
3645 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3646 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003647
Damien Miller8473dd82006-07-24 14:08:32 +10003648/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003649void
Damien Miller630d6f42002-01-22 23:17:30 +11003650x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003651{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003652 Channel *c = NULL;
3653 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003654 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003655
3656 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003657
3658 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003659
3660 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003661 remote_host = packet_get_string(NULL);
3662 } else {
3663 remote_host = xstrdup("unknown (remote did not supply name)");
3664 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003665 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003666
3667 /* Obtain a connection to the real X display. */
3668 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003669 if (sock != -1) {
3670 /* Allocate a channel for this connection. */
3671 c = channel_new("connected x11 socket",
3672 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3673 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003674 c->remote_id = remote_id;
3675 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003676 }
Darren Tuckera627d422013-06-02 07:31:17 +10003677 free(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003678 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003679 /* Send refusal to the remote host. */
3680 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003681 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003682 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003683 /* Send a confirmation to the remote host. */
3684 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003685 packet_put_int(remote_id);
3686 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003687 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003688 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003689}
3690
Damien Miller69b69aa2000-10-28 14:19:58 +11003691/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003692/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003693void
Damien Miller630d6f42002-01-22 23:17:30 +11003694deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003695{
3696 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003697
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003698 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003699 case SSH_SMSG_AGENT_OPEN:
3700 error("Warning: ssh server tried agent forwarding.");
3701 break;
3702 case SSH_SMSG_X11_OPEN:
3703 error("Warning: ssh server tried X11 forwarding.");
3704 break;
3705 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003706 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003707 break;
3708 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003709 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003710 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3711 packet_put_int(rchan);
3712 packet_send();
3713}
3714
Damien Miller5428f641999-11-25 11:54:57 +11003715/*
3716 * Requests forwarding of X11 connections, generates fake authentication
3717 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003718 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003719 */
Damien Miller4af51302000-04-16 11:18:38 +10003720void
Damien Miller17e7ed02005-06-17 12:54:33 +10003721x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003722 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003723{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003724 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003725 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003726 char *new_data;
3727 int screen_number;
3728 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003729 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003730
Damien Millerf92c0792005-07-06 09:45:26 +10003731 if (x11_saved_display == NULL)
3732 x11_saved_display = xstrdup(disp);
3733 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003734 error("x11_request_forwarding_with_spoofing: different "
3735 "$DISPLAY already forwarded");
3736 return;
3737 }
3738
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003739 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003740 if (cp)
3741 cp = strchr(cp, '.');
3742 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003743 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003744 else
3745 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003746
Damien Miller13390022005-07-06 09:44:19 +10003747 if (x11_saved_proto == NULL) {
3748 /* Save protocol name. */
3749 x11_saved_proto = xstrdup(proto);
3750 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003751 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003752 * of the same length.
3753 */
3754 x11_saved_data = xmalloc(data_len);
3755 x11_fake_data = xmalloc(data_len);
3756 for (i = 0; i < data_len; i++) {
3757 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3758 fatal("x11_request_forwarding: bad "
3759 "authentication data: %.100s", data);
3760 if (i % 4 == 0)
3761 rnd = arc4random();
3762 x11_saved_data[i] = value;
3763 x11_fake_data[i] = rnd & 0xff;
3764 rnd >>= 8;
3765 }
3766 x11_saved_data_len = data_len;
3767 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003768 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003769
Damien Miller95def091999-11-25 00:26:21 +11003770 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003771 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003772
Damien Miller95def091999-11-25 00:26:21 +11003773 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003774 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003775 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003776 packet_put_char(0); /* XXX bool single connection */
3777 } else {
3778 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3779 }
3780 packet_put_cstring(proto);
3781 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003782 packet_put_int(screen_number);
3783 packet_send();
3784 packet_write_wait();
Darren Tuckera627d422013-06-02 07:31:17 +10003785 free(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003786}
3787
Ben Lindstrome9c99912001-06-09 00:41:05 +00003788
3789/* -- agent forwarding */
3790
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003791/* Sends a message to the server to request authentication fd forwarding. */
3792
Damien Miller4af51302000-04-16 11:18:38 +10003793void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003794auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003795{
Damien Miller95def091999-11-25 00:26:21 +11003796 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3797 packet_send();
3798 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003799}