blob: 81261679a8f56b0815b3e70c95b2e57e06cf329b [file] [log] [blame]
Damien Millere1537f92010-01-26 13:26:22 +11001/* $OpenBSD: channels.c,v 1.302 2010/01/26 01:28:35 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110017 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110043
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100045#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110046#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
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 Millerd4a8b7e1999-10-27 13:42:43 +1000117static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
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. */
120static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
121
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
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * If this is true, all opens are permitted. This is the case on the server
130 * on which we have to trust the client anyway, and the user could do
131 * anything after logging in anyway.
132 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133static int all_opens_permitted = 0;
134
Ben Lindstrome9c99912001-06-09 00:41:05 +0000135
136/* -- X11 forwarding */
137
138/* Maximum number of fake X11 displays to try. */
139#define MAX_DISPLAYS 1000
140
Damien Miller13390022005-07-06 09:44:19 +1000141/* Saved X11 local (client) display. */
142static char *x11_saved_display = NULL;
143
Ben Lindstrome9c99912001-06-09 00:41:05 +0000144/* Saved X11 authentication protocol name. */
145static char *x11_saved_proto = NULL;
146
147/* Saved X11 authentication data. This is the real data. */
148static char *x11_saved_data = NULL;
149static u_int x11_saved_data_len = 0;
150
151/*
152 * Fake X11 authentication data. This is what the server will be sending us;
153 * we should replace any occurrences of this by the real data.
154 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100155static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000156static u_int x11_fake_data_len;
157
158
159/* -- agent forwarding */
160
161#define NUM_SOCKS 10
162
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000163/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000164static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000165
Ben Lindstrome9c99912001-06-09 00:41:05 +0000166/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000168
Damien Millerbd740252008-05-19 15:37:09 +1000169/* non-blocking connect helpers */
170static int connect_next(struct channel_connect *);
171static void channel_connect_ctx_free(struct channel_connect *);
172
Ben Lindstrome9c99912001-06-09 00:41:05 +0000173/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000174
175Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100176channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000177{
178 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000179
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000180 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100181 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000182 return NULL;
183 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000184 c = channels[id];
185 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100186 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000187 return NULL;
188 }
189 return c;
190}
191
Damien Miller5428f641999-11-25 11:54:57 +1100192/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100193 * Returns the channel if it is allowed to receive protocol messages.
194 * Private channels, like listening sockets, may not receive messages.
195 */
196Channel *
197channel_lookup(int id)
198{
199 Channel *c;
200
201 if ((c = channel_by_id(id)) == NULL)
202 return (NULL);
203
Damien Millerd62f2ca2006-03-26 13:57:41 +1100204 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100205 case SSH_CHANNEL_X11_OPEN:
206 case SSH_CHANNEL_LARVAL:
207 case SSH_CHANNEL_CONNECTING:
208 case SSH_CHANNEL_DYNAMIC:
209 case SSH_CHANNEL_OPENING:
210 case SSH_CHANNEL_OPEN:
211 case SSH_CHANNEL_INPUT_DRAINING:
212 case SSH_CHANNEL_OUTPUT_DRAINING:
213 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100214 }
215 logit("Non-public channel %d, type %d.", id, c->type);
216 return (NULL);
217}
218
219/*
Damien Millere247cc42000-05-07 12:03:14 +1000220 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000221 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100222 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000223static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100224channel_register_fds(Channel *c, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000225 int extusage, int nonblock, int is_tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226{
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100228 channel_max_fd = MAX(channel_max_fd, rfd);
229 channel_max_fd = MAX(channel_max_fd, wfd);
230 channel_max_fd = MAX(channel_max_fd, efd);
231
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100232 if (rfd != -1)
233 fcntl(rfd, F_SETFD, FD_CLOEXEC);
234 if (wfd != -1 && wfd != rfd)
235 fcntl(wfd, F_SETFD, FD_CLOEXEC);
236 if (efd != -1 && efd != rfd && efd != wfd)
237 fcntl(efd, F_SETFD, FD_CLOEXEC);
Damien Millere247cc42000-05-07 12:03:14 +1000238
Damien Miller6f83b8e2000-05-02 09:23:45 +1000239 c->rfd = rfd;
240 c->wfd = wfd;
241 c->sock = (rfd == wfd) ? rfd : -1;
242 c->efd = efd;
243 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100244
Darren Tuckered3cdc02008-06-16 23:29:18 +1000245 if ((c->isatty = is_tty) != 0)
Damien Millerfbdeece2003-09-02 22:52:31 +1000246 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Darren Tucker1a48aec2008-06-16 23:35:56 +1000247 c->wfd_isatty = is_tty || isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100248
Damien Miller69b69aa2000-10-28 14:19:58 +1100249 /* enable nonblocking mode */
250 if (nonblock) {
251 if (rfd != -1)
252 set_nonblock(rfd);
253 if (wfd != -1)
254 set_nonblock(wfd);
255 if (efd != -1)
256 set_nonblock(efd);
257 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000258}
259
260/*
261 * Allocate a new channel object and set its type and socket. This will cause
262 * remote_name to be freed.
263 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000264Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000266 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000267{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000268 int found;
269 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000270 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Damien Miller95def091999-11-25 00:26:21 +1100272 /* Do initial allocation if this is the first call. */
273 if (channels_alloc == 0) {
274 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100275 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100276 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000277 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100278 }
279 /* Try to find a free slot where to put the new channel. */
280 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000281 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100282 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000283 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100284 break;
285 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000286 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100287 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100288 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000289 if (channels_alloc > 10000)
290 fatal("channel_new: internal error: channels_alloc %d "
291 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100292 channels = xrealloc(channels, channels_alloc + 10,
293 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000294 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100295 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100296 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000297 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100298 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000299 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100300 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100301 buffer_init(&c->input);
302 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000303 buffer_init(&c->extended);
Damien Millera1c1b6c2009-01-28 16:29:49 +1100304 c->path = NULL;
Damien Miller5144df92002-01-22 23:28:45 +1100305 c->ostate = CHAN_OUTPUT_OPEN;
306 c->istate = CHAN_INPUT_OPEN;
307 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000308 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100309 c->self = found;
310 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000311 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000312 c->local_window = window;
313 c->local_window_max = window;
314 c->local_consumed = 0;
315 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100316 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000317 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000318 c->remote_window = 0;
319 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000320 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100321 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000322 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100323 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000324 c->open_confirm = NULL;
325 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000326 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100327 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000328 c->filter_ctx = NULL;
329 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100330 c->ctl_chan = -1;
331 c->mux_rcb = NULL;
332 c->mux_ctx = NULL;
Darren Tucker876045b2010-01-08 17:08:00 +1100333 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000334 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100335 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000336 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000337}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000338
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000339static int
340channel_find_maxfd(void)
341{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000342 u_int i;
343 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000344 Channel *c;
345
346 for (i = 0; i < channels_alloc; i++) {
347 c = channels[i];
348 if (c != NULL) {
349 max = MAX(max, c->rfd);
350 max = MAX(max, c->wfd);
351 max = MAX(max, c->efd);
352 }
353 }
354 return max;
355}
356
357int
358channel_close_fd(int *fdp)
359{
360 int ret = 0, fd = *fdp;
361
362 if (fd != -1) {
363 ret = close(fd);
364 *fdp = -1;
365 if (fd == channel_max_fd)
366 channel_max_fd = channel_find_maxfd();
367 }
368 return ret;
369}
370
Damien Miller6f83b8e2000-05-02 09:23:45 +1000371/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000372static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000373channel_close_fds(Channel *c)
374{
Damien Millere1537f92010-01-26 13:26:22 +1100375 debug3("channel %d: close_fds r %d w %d e %d",
376 c->self, c->rfd, c->wfd, c->efd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000377
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000378 channel_close_fd(&c->sock);
379 channel_close_fd(&c->rfd);
380 channel_close_fd(&c->wfd);
381 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000382}
383
384/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000385void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000386channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000388 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000389 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000390 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000391
392 for (n = 0, i = 0; i < channels_alloc; i++)
393 if (channels[i])
394 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000395 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000396 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000397
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000398 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000399 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000400 xfree(s);
401
Damien Miller6f83b8e2000-05-02 09:23:45 +1000402 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000403 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000404 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 buffer_free(&c->input);
406 buffer_free(&c->output);
407 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 if (c->remote_name) {
409 xfree(c->remote_name);
410 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100411 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100412 if (c->path) {
413 xfree(c->path);
414 c->path = NULL;
415 }
Damien Millerb84886b2008-05-19 15:05:07 +1000416 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
417 if (cc->abandon_cb != NULL)
418 cc->abandon_cb(c, cc->ctx);
419 TAILQ_REMOVE(&c->status_confirms, cc, entry);
420 bzero(cc, sizeof(*cc));
421 xfree(cc);
422 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000423 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
424 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000425 channels[c->self] = NULL;
426 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427}
428
Ben Lindstrome9c99912001-06-09 00:41:05 +0000429void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000430channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000431{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000432 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000433
Ben Lindstrom601e4362001-06-21 03:19:23 +0000434 for (i = 0; i < channels_alloc; i++)
435 if (channels[i] != NULL)
436 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437}
438
439/*
440 * Closes the sockets/fds of all channels. This is used to close extra file
441 * descriptors after a fork.
442 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000444channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000446 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447
448 for (i = 0; i < channels_alloc; i++)
449 if (channels[i] != NULL)
450 channel_close_fds(channels[i]);
451}
452
453/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000454 * Stop listening to channels.
455 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000456void
457channel_stop_listening(void)
458{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000459 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460 Channel *c;
461
462 for (i = 0; i < channels_alloc; i++) {
463 c = channels[i];
464 if (c != NULL) {
465 switch (c->type) {
466 case SSH_CHANNEL_AUTH_SOCKET:
467 case SSH_CHANNEL_PORT_LISTENER:
468 case SSH_CHANNEL_RPORT_LISTENER:
469 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000470 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000471 channel_free(c);
472 break;
473 }
474 }
475 }
476}
477
478/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000479 * Returns true if no channel has too much buffered data, and false if one or
480 * more channel is overfull.
481 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000483channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000484{
485 u_int i;
486 Channel *c;
487
488 for (i = 0; i < channels_alloc; i++) {
489 c = channels[i];
490 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000491#if 0
492 if (!compat20 &&
493 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100494 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000495 c->self, buffer_len(&c->input));
496 return 0;
497 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000498#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000499 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000500 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000501 c->self, buffer_len(&c->output),
502 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000503 return 0;
504 }
505 }
506 }
507 return 1;
508}
509
510/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000511int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000512channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000514 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000515 Channel *c;
516
517 for (i = 0; i < channels_alloc; i++) {
518 c = channels[i];
519 if (c == NULL)
520 continue;
521 switch (c->type) {
522 case SSH_CHANNEL_X11_LISTENER:
523 case SSH_CHANNEL_PORT_LISTENER:
524 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100525 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000526 case SSH_CHANNEL_CLOSED:
527 case SSH_CHANNEL_AUTH_SOCKET:
528 case SSH_CHANNEL_DYNAMIC:
529 case SSH_CHANNEL_CONNECTING:
530 case SSH_CHANNEL_ZOMBIE:
531 continue;
532 case SSH_CHANNEL_LARVAL:
533 if (!compat20)
534 fatal("cannot happen: SSH_CHANNEL_LARVAL");
535 continue;
536 case SSH_CHANNEL_OPENING:
537 case SSH_CHANNEL_OPEN:
538 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100539 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000540 return 1;
541 case SSH_CHANNEL_INPUT_DRAINING:
542 case SSH_CHANNEL_OUTPUT_DRAINING:
543 if (!compat13)
544 fatal("cannot happen: OUT_DRAIN");
545 return 1;
546 default:
547 fatal("channel_still_open: bad channel type %d", c->type);
548 /* NOTREACHED */
549 }
550 }
551 return 0;
552}
553
554/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000555int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000556channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000558 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559 Channel *c;
560
561 for (i = 0; i < channels_alloc; i++) {
562 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000563 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000564 continue;
565 switch (c->type) {
566 case SSH_CHANNEL_CLOSED:
567 case SSH_CHANNEL_DYNAMIC:
568 case SSH_CHANNEL_X11_LISTENER:
569 case SSH_CHANNEL_PORT_LISTENER:
570 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100571 case SSH_CHANNEL_MUX_LISTENER:
572 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000573 case SSH_CHANNEL_OPENING:
574 case SSH_CHANNEL_CONNECTING:
575 case SSH_CHANNEL_ZOMBIE:
576 continue;
577 case SSH_CHANNEL_LARVAL:
578 case SSH_CHANNEL_AUTH_SOCKET:
579 case SSH_CHANNEL_OPEN:
580 case SSH_CHANNEL_X11_OPEN:
581 return i;
582 case SSH_CHANNEL_INPUT_DRAINING:
583 case SSH_CHANNEL_OUTPUT_DRAINING:
584 if (!compat13)
585 fatal("cannot happen: OUT_DRAIN");
586 return i;
587 default:
588 fatal("channel_find_open: bad channel type %d", c->type);
589 /* NOTREACHED */
590 }
591 }
592 return -1;
593}
594
595
596/*
597 * Returns a message describing the currently open forwarded connections,
598 * suitable for sending to the client. The message contains crlf pairs for
599 * newlines.
600 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000601char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000602channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000603{
604 Buffer buffer;
605 Channel *c;
606 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000607 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000608
609 buffer_init(&buffer);
610 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
611 buffer_append(&buffer, buf, strlen(buf));
612 for (i = 0; i < channels_alloc; i++) {
613 c = channels[i];
614 if (c == NULL)
615 continue;
616 switch (c->type) {
617 case SSH_CHANNEL_X11_LISTENER:
618 case SSH_CHANNEL_PORT_LISTENER:
619 case SSH_CHANNEL_RPORT_LISTENER:
620 case SSH_CHANNEL_CLOSED:
621 case SSH_CHANNEL_AUTH_SOCKET:
622 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100623 case SSH_CHANNEL_MUX_CLIENT:
624 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000625 continue;
626 case SSH_CHANNEL_LARVAL:
627 case SSH_CHANNEL_OPENING:
628 case SSH_CHANNEL_CONNECTING:
629 case SSH_CHANNEL_DYNAMIC:
630 case SSH_CHANNEL_OPEN:
631 case SSH_CHANNEL_X11_OPEN:
632 case SSH_CHANNEL_INPUT_DRAINING:
633 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000634 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100635 " #%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 +0000636 c->self, c->remote_name,
637 c->type, c->remote_id,
638 c->istate, buffer_len(&c->input),
639 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100640 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000641 buffer_append(&buffer, buf, strlen(buf));
642 continue;
643 default:
644 fatal("channel_open_message: bad channel type %d", c->type);
645 /* NOTREACHED */
646 }
647 }
648 buffer_append(&buffer, "\0", 1);
649 cp = xstrdup(buffer_ptr(&buffer));
650 buffer_free(&buffer);
651 return cp;
652}
653
654void
655channel_send_open(int id)
656{
657 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000658
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000660 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661 return;
662 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000663 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000664 packet_start(SSH2_MSG_CHANNEL_OPEN);
665 packet_put_cstring(c->ctype);
666 packet_put_int(c->self);
667 packet_put_int(c->local_window);
668 packet_put_int(c->local_maxpacket);
669 packet_send();
670}
671
672void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000673channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000674{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000675 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000676
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000678 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000679 return;
680 }
Damien Miller0e220db2004-06-15 10:34:08 +1000681 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682 packet_start(SSH2_MSG_CHANNEL_REQUEST);
683 packet_put_int(c->remote_id);
684 packet_put_cstring(service);
685 packet_put_char(wantconfirm);
686}
Damien Miller4f7becb2006-03-26 14:10:14 +1100687
Ben Lindstrome9c99912001-06-09 00:41:05 +0000688void
Damien Millerb84886b2008-05-19 15:05:07 +1000689channel_register_status_confirm(int id, channel_confirm_cb *cb,
690 channel_confirm_abandon_cb *abandon_cb, void *ctx)
691{
692 struct channel_confirm *cc;
693 Channel *c;
694
695 if ((c = channel_lookup(id)) == NULL)
696 fatal("channel_register_expect: %d: bad id", id);
697
698 cc = xmalloc(sizeof(*cc));
699 cc->cb = cb;
700 cc->abandon_cb = abandon_cb;
701 cc->ctx = ctx;
702 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
703}
704
705void
706channel_register_open_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707{
708 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000709
Ben Lindstrome9c99912001-06-09 00:41:05 +0000710 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100711 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000712 return;
713 }
Damien Millerb84886b2008-05-19 15:05:07 +1000714 c->open_confirm = fn;
715 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716}
Damien Miller4f7becb2006-03-26 14:10:14 +1100717
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718void
Damien Miller39eda6e2005-11-05 14:52:50 +1100719channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720{
Damien Millerd47c62a2005-12-13 19:33:57 +1100721 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000722
Ben Lindstrome9c99912001-06-09 00:41:05 +0000723 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000724 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000725 return;
726 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000727 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100728 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729}
Damien Miller4f7becb2006-03-26 14:10:14 +1100730
Ben Lindstrome9c99912001-06-09 00:41:05 +0000731void
732channel_cancel_cleanup(int id)
733{
Damien Millerd47c62a2005-12-13 19:33:57 +1100734 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000735
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000737 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000738 return;
739 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000740 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100741 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742}
Damien Miller4f7becb2006-03-26 14:10:14 +1100743
Ben Lindstrome9c99912001-06-09 00:41:05 +0000744void
Damien Miller077b2382005-12-31 16:22:32 +1100745channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000746 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000747{
748 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000749
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000751 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000752 return;
753 }
Damien Miller077b2382005-12-31 16:22:32 +1100754 c->input_filter = ifn;
755 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000756 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000757 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000758}
759
760void
761channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000762 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000763{
764 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000765
Ben Lindstrome9c99912001-06-09 00:41:05 +0000766 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
767 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000768 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100770 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
772 packet_put_int(c->remote_id);
773 packet_put_int(c->local_window);
774 packet_send();
775}
776
Damien Miller5428f641999-11-25 11:54:57 +1100777/*
Damien Millerb38eff82000-04-01 11:09:21 +1000778 * 'channel_pre*' are called just before select() to add any bits relevant to
779 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100780 */
Damien Millerb38eff82000-04-01 11:09:21 +1000781/*
782 * 'channel_post*': perform any appropriate operations for channels which
783 * have events pending.
784 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100785typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000786chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
787chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
788
Damien Miller8473dd82006-07-24 14:08:32 +1000789/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000790static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100791channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000792{
793 FD_SET(c->sock, readset);
794}
795
Damien Miller8473dd82006-07-24 14:08:32 +1000796/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100798channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000799{
800 debug3("channel %d: waiting for connection", c->self);
801 FD_SET(c->sock, writeset);
802}
803
Ben Lindstrombba81212001-06-25 05:01:22 +0000804static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100805channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000806{
807 if (buffer_len(&c->input) < packet_get_maxsize())
808 FD_SET(c->sock, readset);
809 if (buffer_len(&c->output) > 0)
810 FD_SET(c->sock, writeset);
811}
812
Ben Lindstrombba81212001-06-25 05:01:22 +0000813static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100814channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000815{
Damien Millerde6987c2002-01-22 23:20:40 +1100816 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000817
Damien Miller33b13562000-04-04 14:38:59 +1000818 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100819 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000820 buffer_len(&c->input) < limit &&
821 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000822 FD_SET(c->rfd, readset);
823 if (c->ostate == CHAN_OUTPUT_OPEN ||
824 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
825 if (buffer_len(&c->output) > 0) {
826 FD_SET(c->wfd, writeset);
827 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000828 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000829 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
830 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000831 else
832 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000833 }
834 }
835 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000836 if (compat20 && c->efd != -1 &&
837 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000838 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
839 buffer_len(&c->extended) > 0)
840 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000841 else if (!(c->flags & CHAN_EOF_SENT) &&
842 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000843 buffer_len(&c->extended) < c->remote_window)
844 FD_SET(c->efd, readset);
845 }
Damien Miller0e220db2004-06-15 10:34:08 +1000846 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000847}
848
Damien Miller8473dd82006-07-24 14:08:32 +1000849/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000850static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100851channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000852{
853 if (buffer_len(&c->input) == 0) {
854 packet_start(SSH_MSG_CHANNEL_CLOSE);
855 packet_put_int(c->remote_id);
856 packet_send();
857 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000858 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000859 }
860}
861
Damien Miller8473dd82006-07-24 14:08:32 +1000862/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000863static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100864channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000865{
866 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000867 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000868 else
Damien Millerb38eff82000-04-01 11:09:21 +1000869 FD_SET(c->sock, writeset);
870}
871
872/*
873 * This is a special state for X11 authentication spoofing. An opened X11
874 * connection (when authentication spoofing is being done) remains in this
875 * state until the first packet has been completely read. The authentication
876 * data in that packet is then substituted by the real data if it matches the
877 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000878 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000879 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000880 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000881static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000882x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000883{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000884 u_char *ucp;
885 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000886
887 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000888 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000889 return 0;
890
891 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100892 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000893 if (ucp[0] == 0x42) { /* Byte order MSB first. */
894 proto_len = 256 * ucp[6] + ucp[7];
895 data_len = 256 * ucp[8] + ucp[9];
896 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
897 proto_len = ucp[6] + 256 * ucp[7];
898 data_len = ucp[8] + 256 * ucp[9];
899 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000900 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100901 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000902 return -1;
903 }
904
905 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000906 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000907 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
908 return 0;
909
910 /* Check if authentication protocol matches. */
911 if (proto_len != strlen(x11_saved_proto) ||
912 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000913 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000914 return -1;
915 }
916 /* Check if authentication data matches our fake data. */
917 if (data_len != x11_fake_data_len ||
918 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
919 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000920 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000921 return -1;
922 }
923 /* Check fake data length */
924 if (x11_fake_data_len != x11_saved_data_len) {
925 error("X11 fake_data_len %d != saved_data_len %d",
926 x11_fake_data_len, x11_saved_data_len);
927 return -1;
928 }
929 /*
930 * Received authentication protocol and data match
931 * our fake data. Substitute the fake data with real
932 * data.
933 */
934 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
935 x11_saved_data, x11_saved_data_len);
936 return 1;
937}
938
Ben Lindstrombba81212001-06-25 05:01:22 +0000939static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100940channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000941{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000942 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000943
Damien Millerb38eff82000-04-01 11:09:21 +1000944 if (ret == 1) {
945 /* Start normal processing for the channel. */
946 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000947 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000948 } else if (ret == -1) {
949 /*
950 * We have received an X11 connection that has bad
951 * authentication information.
952 */
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000954 buffer_clear(&c->input);
955 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000956 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000957 c->sock = -1;
958 c->type = SSH_CHANNEL_CLOSED;
959 packet_start(SSH_MSG_CHANNEL_CLOSE);
960 packet_put_int(c->remote_id);
961 packet_send();
962 }
963}
964
Ben Lindstrombba81212001-06-25 05:01:22 +0000965static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100966channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000967{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000968 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000969
970 /* c->force_drain = 1; */
971
Damien Millerb38eff82000-04-01 11:09:21 +1000972 if (ret == 1) {
973 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100974 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000975 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000976 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000977 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100978 chan_read_failed(c);
979 buffer_clear(&c->input);
980 chan_ibuf_empty(c);
981 buffer_clear(&c->output);
982 /* for proto v1, the peer will send an IEOF */
983 if (compat20)
984 chan_write_failed(c);
985 else
986 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000987 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000988 }
989}
990
Damien Millere1537f92010-01-26 13:26:22 +1100991static void
992channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
993{
994 if (c->istate == CHAN_INPUT_OPEN &&
995 buffer_check_alloc(&c->input, CHAN_RBUF))
996 FD_SET(c->rfd, readset);
997 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
998 /* clear buffer immediately (discard any partial packet) */
999 buffer_clear(&c->input);
1000 chan_ibuf_empty(c);
1001 /* Start output drain. XXX just kill chan? */
1002 chan_rcvd_oclose(c);
1003 }
1004 if (c->ostate == CHAN_OUTPUT_OPEN ||
1005 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1006 if (buffer_len(&c->output) > 0)
1007 FD_SET(c->wfd, writeset);
1008 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1009 chan_obuf_empty(c);
1010 }
1011}
1012
Ben Lindstromb3921512001-04-11 15:57:50 +00001013/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001014/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001015static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001016channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001017{
Damien Millera10f5612002-09-12 09:49:15 +10001018 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001019 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001020 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001021 struct {
1022 u_int8_t version;
1023 u_int8_t command;
1024 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001025 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001026 } s4_req, s4_rsp;
1027
Ben Lindstromb3921512001-04-11 15:57:50 +00001028 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001029
1030 have = buffer_len(&c->input);
1031 len = sizeof(s4_req);
1032 if (have < len)
1033 return 0;
1034 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001035
1036 need = 1;
1037 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1038 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1039 debug2("channel %d: socks4a request", c->self);
1040 /* ... and needs an extra string (the hostname) */
1041 need = 2;
1042 }
1043 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001044 for (found = 0, i = len; i < have; i++) {
1045 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001046 found++;
1047 if (found == need)
1048 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001049 }
1050 if (i > 1024) {
1051 /* the peer is probably sending garbage */
1052 debug("channel %d: decode socks4: too long",
1053 c->self);
1054 return -1;
1055 }
1056 }
Damien Miller1781f532009-01-28 16:24:41 +11001057 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001058 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001059 buffer_get(&c->input, (char *)&s4_req.version, 1);
1060 buffer_get(&c->input, (char *)&s4_req.command, 1);
1061 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001062 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001063 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001064 p = buffer_ptr(&c->input);
1065 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001066 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001067 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001068 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001069 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001070 c->self, len, have);
1071 strlcpy(username, p, sizeof(username));
1072 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001073
Damien Millera1c1b6c2009-01-28 16:29:49 +11001074 if (c->path != NULL) {
1075 xfree(c->path);
1076 c->path = NULL;
1077 }
Damien Miller1781f532009-01-28 16:24:41 +11001078 if (need == 1) { /* SOCKS4: one string */
1079 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001080 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001081 } else { /* SOCKS4A: two strings */
1082 have = buffer_len(&c->input);
1083 p = buffer_ptr(&c->input);
1084 len = strlen(p);
1085 debug2("channel %d: decode socks4a: host %s/%d",
1086 c->self, p, len);
1087 len++; /* trailing '\0' */
1088 if (len > have)
1089 fatal("channel %d: decode socks4a: len %d > have %d",
1090 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001091 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001092 error("channel %d: hostname \"%.100s\" too long",
1093 c->self, p);
1094 return -1;
1095 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001096 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001097 buffer_consume(&c->input, len);
1098 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001099 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001100
Damien Millerfbdeece2003-09-02 22:52:31 +10001101 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001102 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001103
Ben Lindstromb3921512001-04-11 15:57:50 +00001104 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001105 debug("channel %d: cannot handle: %s cn %d",
1106 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001107 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001109 s4_rsp.version = 0; /* vn: 0 for reply */
1110 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001111 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001113 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001114 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001115}
1116
Darren Tucker46471c92003-07-03 13:55:19 +10001117/* try to decode a socks5 header */
1118#define SSH_SOCKS5_AUTHDONE 0x1000
1119#define SSH_SOCKS5_NOAUTH 0x00
1120#define SSH_SOCKS5_IPV4 0x01
1121#define SSH_SOCKS5_DOMAIN 0x03
1122#define SSH_SOCKS5_IPV6 0x04
1123#define SSH_SOCKS5_CONNECT 0x01
1124#define SSH_SOCKS5_SUCCESS 0x00
1125
Damien Miller8473dd82006-07-24 14:08:32 +10001126/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001127static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001128channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001129{
1130 struct {
1131 u_int8_t version;
1132 u_int8_t command;
1133 u_int8_t reserved;
1134 u_int8_t atyp;
1135 } s5_req, s5_rsp;
1136 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001137 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001138 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001139
1140 debug2("channel %d: decode socks5", c->self);
1141 p = buffer_ptr(&c->input);
1142 if (p[0] != 0x05)
1143 return -1;
1144 have = buffer_len(&c->input);
1145 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1146 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001147 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001148 return 0;
1149 nmethods = p[1];
1150 if (have < nmethods + 2)
1151 return 0;
1152 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001153 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001154 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001155 found = 1;
1156 break;
1157 }
1158 }
1159 if (!found) {
1160 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1161 c->self);
1162 return -1;
1163 }
1164 buffer_consume(&c->input, nmethods + 2);
1165 buffer_put_char(&c->output, 0x05); /* version */
1166 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1167 FD_SET(c->sock, writeset);
1168 c->flags |= SSH_SOCKS5_AUTHDONE;
1169 debug2("channel %d: socks5 auth done", c->self);
1170 return 0; /* need more */
1171 }
1172 debug2("channel %d: socks5 post auth", c->self);
1173 if (have < sizeof(s5_req)+1)
1174 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001175 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001176 if (s5_req.version != 0x05 ||
1177 s5_req.command != SSH_SOCKS5_CONNECT ||
1178 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001179 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001180 return -1;
1181 }
Darren Tucker47eede72005-03-14 23:08:12 +11001182 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001183 case SSH_SOCKS5_IPV4:
1184 addrlen = 4;
1185 af = AF_INET;
1186 break;
1187 case SSH_SOCKS5_DOMAIN:
1188 addrlen = p[sizeof(s5_req)];
1189 af = -1;
1190 break;
1191 case SSH_SOCKS5_IPV6:
1192 addrlen = 16;
1193 af = AF_INET6;
1194 break;
1195 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001196 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001197 return -1;
1198 }
Damien Miller0f077072006-07-10 22:21:02 +10001199 need = sizeof(s5_req) + addrlen + 2;
1200 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1201 need++;
1202 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001203 return 0;
1204 buffer_consume(&c->input, sizeof(s5_req));
1205 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1206 buffer_consume(&c->input, 1); /* host string length */
1207 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1208 buffer_get(&c->input, (char *)&dest_port, 2);
1209 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001210 if (c->path != NULL) {
1211 xfree(c->path);
1212 c->path = NULL;
1213 }
1214 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001215 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001216 error("channel %d: dynamic request: socks5 hostname "
1217 "\"%.100s\" too long", c->self, dest_addr);
1218 return -1;
1219 }
1220 c->path = xstrdup(dest_addr);
1221 } else {
1222 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1223 return -1;
1224 c->path = xstrdup(ntop);
1225 }
Darren Tucker46471c92003-07-03 13:55:19 +10001226 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001227
Damien Millerfbdeece2003-09-02 22:52:31 +10001228 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001229 c->self, c->path, c->host_port, s5_req.command);
1230
1231 s5_rsp.version = 0x05;
1232 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1233 s5_rsp.reserved = 0; /* ignored */
1234 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1235 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1236 dest_port = 0; /* ignored */
1237
Damien Millera0fdce92006-03-26 14:28:50 +11001238 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1239 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1240 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001241 return 1;
1242}
1243
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001244Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001245channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1246 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001247{
1248 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001249
1250 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1251 port_to_connect);
1252
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001253 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1254 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1255 0, "stdio-forward", /*nonblock*/0);
1256
1257 c->path = xstrdup(host_to_connect);
1258 c->host_port = port_to_connect;
1259 c->listening_port = 0;
1260 c->force_drain = 1;
1261
1262 channel_register_fds(c, in, out, -1, 0, 1, 0);
1263 port_open_helper(c, "direct-tcpip");
1264
1265 return c;
1266}
1267
Ben Lindstromb3921512001-04-11 15:57:50 +00001268/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001269static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001270channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001271{
1272 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001273 u_int have;
1274 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001275
1276 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001277 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001278 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001279 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001280 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001281 /* need more */
1282 FD_SET(c->sock, readset);
1283 return;
1284 }
1285 /* try to guess the protocol */
1286 p = buffer_ptr(&c->input);
1287 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001288 case 0x04:
1289 ret = channel_decode_socks4(c, readset, writeset);
1290 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001291 case 0x05:
1292 ret = channel_decode_socks5(c, readset, writeset);
1293 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001294 default:
1295 ret = -1;
1296 break;
1297 }
1298 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001299 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001300 } else if (ret == 0) {
1301 debug2("channel %d: pre_dynamic: need more", c->self);
1302 /* need more */
1303 FD_SET(c->sock, readset);
1304 } else {
1305 /* switch to the next state */
1306 c->type = SSH_CHANNEL_OPENING;
1307 port_open_helper(c, "direct-tcpip");
1308 }
1309}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001310
Damien Millerb38eff82000-04-01 11:09:21 +10001311/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001312/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001313static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001314channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001315{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001316 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001317 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001318 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001319 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001320 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001321 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001322
1323 if (FD_ISSET(c->sock, readset)) {
1324 debug("X11 connection requested.");
1325 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001326 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001327 if (c->single_connection) {
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);
1331 }
Damien Millerb38eff82000-04-01 11:09:21 +10001332 if (newsock < 0) {
1333 error("accept: %.100s", strerror(errno));
1334 return;
1335 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001336 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001337 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001338 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001339 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001340 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001341
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001342 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001343 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001344 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001345 if (compat20) {
1346 packet_start(SSH2_MSG_CHANNEL_OPEN);
1347 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001348 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001349 packet_put_int(nc->local_window_max);
1350 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001351 /* originator ipaddr and port */
1352 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001353 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001354 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001355 } else {
1356 packet_put_int(remote_port);
1357 }
Damien Millerbd483e72000-04-30 10:00:53 +10001358 packet_send();
1359 } else {
1360 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001361 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001362 if (packet_get_protocol_flags() &
1363 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001364 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001365 packet_send();
1366 }
Damien Millerd83ff352001-01-30 09:19:34 +11001367 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001368 }
1369}
1370
Ben Lindstrombba81212001-06-25 05:01:22 +00001371static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001372port_open_helper(Channel *c, char *rtype)
1373{
1374 int direct;
1375 char buf[1024];
1376 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001377 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001378
1379 direct = (strcmp(rtype, "direct-tcpip") == 0);
1380
1381 snprintf(buf, sizeof buf,
1382 "%s: listening port %d for %.100s port %d, "
1383 "connect from %.200s port %d",
1384 rtype, c->listening_port, c->path, c->host_port,
1385 remote_ipaddr, remote_port);
1386
1387 xfree(c->remote_name);
1388 c->remote_name = xstrdup(buf);
1389
1390 if (compat20) {
1391 packet_start(SSH2_MSG_CHANNEL_OPEN);
1392 packet_put_cstring(rtype);
1393 packet_put_int(c->self);
1394 packet_put_int(c->local_window_max);
1395 packet_put_int(c->local_maxpacket);
1396 if (direct) {
1397 /* target host, port */
1398 packet_put_cstring(c->path);
1399 packet_put_int(c->host_port);
1400 } else {
1401 /* listen address, port */
1402 packet_put_cstring(c->path);
1403 packet_put_int(c->listening_port);
1404 }
1405 /* originator host and port */
1406 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001407 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001408 packet_send();
1409 } else {
1410 packet_start(SSH_MSG_PORT_OPEN);
1411 packet_put_int(c->self);
1412 packet_put_cstring(c->path);
1413 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001414 if (packet_get_protocol_flags() &
1415 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001416 packet_put_cstring(c->remote_name);
1417 packet_send();
1418 }
1419 xfree(remote_ipaddr);
1420}
1421
Damien Miller5e7fd072005-11-05 14:53:39 +11001422static void
1423channel_set_reuseaddr(int fd)
1424{
1425 int on = 1;
1426
1427 /*
1428 * Set socket options.
1429 * Allow local port reuse in TIME_WAIT.
1430 */
1431 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1432 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1433}
1434
Damien Millerb38eff82000-04-01 11:09:21 +10001435/*
1436 * This socket is listening for connections to a forwarded TCP/IP port.
1437 */
Damien Miller8473dd82006-07-24 14:08:32 +10001438/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001439static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001440channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001441{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001442 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001443 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001444 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001445 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001446 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001447
Damien Millerb38eff82000-04-01 11:09:21 +10001448 if (FD_ISSET(c->sock, readset)) {
1449 debug("Connection to port %d forwarding "
1450 "to %.100s port %d requested.",
1451 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001452
Damien Miller4623a752001-10-10 15:03:58 +10001453 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1454 nextstate = SSH_CHANNEL_OPENING;
1455 rtype = "forwarded-tcpip";
1456 } else {
1457 if (c->host_port == 0) {
1458 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001459 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001460 } else {
1461 nextstate = SSH_CHANNEL_OPENING;
1462 rtype = "direct-tcpip";
1463 }
1464 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001465
Damien Millerb38eff82000-04-01 11:09:21 +10001466 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001467 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001468 if (newsock < 0) {
1469 error("accept: %.100s", strerror(errno));
1470 return;
1471 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001472 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001473 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1474 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001475 nc->listening_port = c->listening_port;
1476 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001477 if (c->path != NULL)
1478 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001479
Darren Tucker876045b2010-01-08 17:08:00 +11001480 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001481 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001482 }
1483}
1484
1485/*
1486 * This is the authentication agent socket listening for connections from
1487 * clients.
1488 */
Damien Miller8473dd82006-07-24 14:08:32 +10001489/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001490static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001491channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001492{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001493 Channel *nc;
1494 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001495 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001496 socklen_t addrlen;
1497
1498 if (FD_ISSET(c->sock, readset)) {
1499 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001500 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001501 if (newsock < 0) {
1502 error("accept from auth socket: %.100s", strerror(errno));
1503 return;
1504 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001505 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001506 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1507 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001508 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001509 if (compat20) {
1510 packet_start(SSH2_MSG_CHANNEL_OPEN);
1511 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001512 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001513 packet_put_int(c->local_window_max);
1514 packet_put_int(c->local_maxpacket);
1515 } else {
1516 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001517 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001518 }
Damien Millerb38eff82000-04-01 11:09:21 +10001519 packet_send();
1520 }
1521}
1522
Damien Miller8473dd82006-07-24 14:08:32 +10001523/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001524static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001525channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001526{
Damien Millerbd740252008-05-19 15:37:09 +10001527 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001528 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001529
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001530 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001531 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001532 err = errno;
1533 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001534 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001535 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001536 debug("channel %d: connected to %s port %d",
1537 c->self, c->connect_ctx.host, c->connect_ctx.port);
1538 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001539 c->type = SSH_CHANNEL_OPEN;
1540 if (compat20) {
1541 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1542 packet_put_int(c->remote_id);
1543 packet_put_int(c->self);
1544 packet_put_int(c->local_window);
1545 packet_put_int(c->local_maxpacket);
1546 } else {
1547 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1548 packet_put_int(c->remote_id);
1549 packet_put_int(c->self);
1550 }
1551 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001552 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001553 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001554 /* Try next address, if any */
1555 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1556 close(c->sock);
1557 c->sock = c->rfd = c->wfd = sock;
1558 channel_max_fd = channel_find_maxfd();
1559 return;
1560 }
1561 /* Exhausted all addresses */
1562 error("connect_to %.100s port %d: failed.",
1563 c->connect_ctx.host, c->connect_ctx.port);
1564 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001565 if (compat20) {
1566 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1567 packet_put_int(c->remote_id);
1568 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1569 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1570 packet_put_cstring(strerror(err));
1571 packet_put_cstring("");
1572 }
1573 } else {
1574 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1575 packet_put_int(c->remote_id);
1576 }
1577 chan_mark_dead(c);
1578 }
1579 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001580 }
1581}
1582
Damien Miller8473dd82006-07-24 14:08:32 +10001583/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001584static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001585channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001586{
Darren Tucker11327cc2005-03-14 23:22:25 +11001587 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001588 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001589
Damien Miller835284b2007-06-11 13:03:16 +10001590 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1591 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001592 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001593 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001594 if (len < 0 && (errno == EINTR ||
1595 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001596 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001597#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001598 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001599#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001600 if ((!c->isatty && len <= 0) ||
1601 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001602#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001603 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001604 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001605 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001606 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001607 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001608 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001609 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001610 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001611 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001612 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001613 } else {
1614 chan_read_failed(c);
1615 }
1616 return -1;
1617 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001618 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001619 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001620 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001621 chan_read_failed(c);
1622 }
Damien Millerd27b9472005-12-13 19:29:02 +11001623 } else if (c->datagram) {
1624 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001625 } else {
1626 buffer_append(&c->input, buf, len);
1627 }
Damien Millerb38eff82000-04-01 11:09:21 +10001628 }
1629 return 1;
1630}
Damien Miller4f7becb2006-03-26 14:10:14 +11001631
Damien Miller8473dd82006-07-24 14:08:32 +10001632/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001633static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001634channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001635{
Ben Lindstrome229b252001-03-05 06:28:06 +00001636 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001637 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001638 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001639 int len;
1640
1641 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001642 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001643 FD_ISSET(c->wfd, writeset) &&
1644 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001645 if (c->output_filter != NULL) {
1646 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1647 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001648 if (c->type != SSH_CHANNEL_OPEN)
1649 chan_mark_dead(c);
1650 else
1651 chan_write_failed(c);
1652 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001653 }
1654 } else if (c->datagram) {
1655 buf = data = buffer_get_string(&c->output, &dlen);
1656 } else {
1657 buf = data = buffer_ptr(&c->output);
1658 dlen = buffer_len(&c->output);
1659 }
1660
Damien Millerd27b9472005-12-13 19:29:02 +11001661 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001662 /* ignore truncated writes, datagrams might get lost */
1663 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001664 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001665 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001666 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1667 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001668 return 1;
1669 if (len <= 0) {
1670 if (c->type != SSH_CHANNEL_OPEN)
1671 chan_mark_dead(c);
1672 else
1673 chan_write_failed(c);
1674 return -1;
1675 }
1676 return 1;
1677 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001678#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001679 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001680 if (compat20 && c->wfd_isatty)
1681 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001682#endif
Damien Miller077b2382005-12-31 16:22:32 +11001683
1684 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001685 if (len < 0 &&
1686 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001687 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001688 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001689 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001690 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001691 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001692 return -1;
1693 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001694 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001695 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001696 c->type = SSH_CHANNEL_INPUT_DRAINING;
1697 } else {
1698 chan_write_failed(c);
1699 }
1700 return -1;
1701 }
Darren Tucker3980b632009-08-28 11:02:37 +10001702#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001703 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001704 if (tcgetattr(c->wfd, &tio) == 0 &&
1705 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1706 /*
1707 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001708 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001709 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001710 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001711 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001712 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001713 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001714 }
1715 }
Darren Tucker3980b632009-08-28 11:02:37 +10001716#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001717 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001718 if (compat20 && len > 0) {
1719 c->local_consumed += len;
1720 }
1721 }
1722 return 1;
1723}
Damien Miller4f7becb2006-03-26 14:10:14 +11001724
Ben Lindstrombba81212001-06-25 05:01:22 +00001725static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001726channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001727{
Darren Tucker11327cc2005-03-14 23:22:25 +11001728 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001729 int len;
1730
Damien Miller1383bd82000-04-06 12:32:37 +10001731/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001732 if (c->efd != -1) {
1733 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1734 FD_ISSET(c->efd, writeset) &&
1735 buffer_len(&c->extended) > 0) {
1736 len = write(c->efd, buffer_ptr(&c->extended),
1737 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001738 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001739 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001740 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1741 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001742 return 1;
1743 if (len <= 0) {
1744 debug2("channel %d: closing write-efd %d",
1745 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001746 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001747 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001748 buffer_consume(&c->extended, len);
1749 c->local_consumed += len;
1750 }
1751 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001752 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001753 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001754 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001755 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001756 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1757 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001758 return 1;
1759 if (len <= 0) {
1760 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001761 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001762 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001763 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001764 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001765 }
Damien Miller33b13562000-04-04 14:38:59 +10001766 }
1767 }
1768 return 1;
1769}
Damien Miller4f7becb2006-03-26 14:10:14 +11001770
Damien Miller0e220db2004-06-15 10:34:08 +10001771static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001772channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001773{
Ben Lindstromb3921512001-04-11 15:57:50 +00001774 if (c->type == SSH_CHANNEL_OPEN &&
1775 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001776 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001777 c->local_maxpacket*3) ||
1778 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001779 c->local_consumed > 0) {
1780 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1781 packet_put_int(c->remote_id);
1782 packet_put_int(c->local_consumed);
1783 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001784 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001785 c->self, c->local_window,
1786 c->local_consumed);
1787 c->local_window += c->local_consumed;
1788 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001789 }
1790 return 1;
1791}
1792
Ben Lindstrombba81212001-06-25 05:01:22 +00001793static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001794channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001795{
1796 channel_handle_rfd(c, readset, writeset);
1797 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001798 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001799 return;
Damien Miller33b13562000-04-04 14:38:59 +10001800 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001801 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001802}
1803
Damien Millere1537f92010-01-26 13:26:22 +11001804static u_int
1805read_mux(Channel *c, u_int need)
1806{
1807 char buf[CHAN_RBUF];
1808 int len;
1809 u_int rlen;
1810
1811 if (buffer_len(&c->input) < need) {
1812 rlen = need - buffer_len(&c->input);
1813 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1814 if (len <= 0) {
1815 if (errno != EINTR && errno != EAGAIN) {
1816 debug2("channel %d: ctl read<=0 rfd %d len %d",
1817 c->self, c->rfd, len);
1818 chan_read_failed(c);
1819 return 0;
1820 }
1821 } else
1822 buffer_append(&c->input, buf, len);
1823 }
1824 return buffer_len(&c->input);
1825}
1826
1827static void
1828channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1829{
1830 u_int need;
1831 ssize_t len;
1832
1833 if (!compat20)
1834 fatal("%s: entered with !compat20", __func__);
1835
1836 if (c->rfd != -1 && FD_ISSET(c->rfd, readset) &&
1837 (c->istate == CHAN_INPUT_OPEN ||
1838 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1839 /*
1840 * Don't not read past the precise end of packets to
1841 * avoid disrupting fd passing.
1842 */
1843 if (read_mux(c, 4) < 4) /* read header */
1844 return;
1845 need = get_u32(buffer_ptr(&c->input));
1846#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1847 if (need > CHANNEL_MUX_MAX_PACKET) {
1848 debug2("channel %d: packet too big %u > %u",
1849 c->self, CHANNEL_MUX_MAX_PACKET, need);
1850 chan_rcvd_oclose(c);
1851 return;
1852 }
1853 if (read_mux(c, need + 4) < need + 4) /* read body */
1854 return;
1855 if (c->mux_rcb(c) != 0) {
1856 debug("channel %d: mux_rcb failed", c->self);
1857 chan_mark_dead(c);
1858 return;
1859 }
1860 }
1861
1862 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1863 buffer_len(&c->output) > 0) {
1864 len = write(c->wfd, buffer_ptr(&c->output),
1865 buffer_len(&c->output));
1866 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1867 return;
1868 if (len <= 0) {
1869 chan_mark_dead(c);
1870 return;
1871 }
1872 buffer_consume(&c->output, len);
1873 }
1874}
1875
1876static void
1877channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1878{
1879 Channel *nc;
1880 struct sockaddr_storage addr;
1881 socklen_t addrlen;
1882 int newsock;
1883 uid_t euid;
1884 gid_t egid;
1885
1886 if (!FD_ISSET(c->sock, readset))
1887 return;
1888
1889 debug("multiplexing control connection");
1890
1891 /*
1892 * Accept connection on control socket
1893 */
1894 memset(&addr, 0, sizeof(addr));
1895 addrlen = sizeof(addr);
1896 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1897 &addrlen)) == -1) {
1898 error("%s accept: %s", __func__, strerror(errno));
1899 return;
1900 }
1901
1902 if (getpeereid(newsock, &euid, &egid) < 0) {
1903 error("%s getpeereid failed: %s", __func__,
1904 strerror(errno));
1905 close(newsock);
1906 return;
1907 }
1908 if ((euid != 0) && (getuid() != euid)) {
1909 error("multiplex uid mismatch: peer euid %u != uid %u",
1910 (u_int)euid, (u_int)getuid());
1911 close(newsock);
1912 return;
1913 }
1914 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1915 newsock, newsock, -1, c->local_window_max,
1916 c->local_maxpacket, 0, "mux-control", 1);
1917 nc->mux_rcb = c->mux_rcb;
1918 debug3("%s: new mux channel %d fd %d", __func__,
1919 nc->self, nc->sock);
1920 /* establish state */
1921 nc->mux_rcb(nc);
1922 /* mux state transitions must not elicit protocol messages */
1923 nc->flags |= CHAN_LOCAL;
1924}
1925
Damien Miller8473dd82006-07-24 14:08:32 +10001926/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001927static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001928channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001929{
1930 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001931
Damien Millerb38eff82000-04-01 11:09:21 +10001932 /* Send buffered output data to the socket. */
1933 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1934 len = write(c->sock, buffer_ptr(&c->output),
1935 buffer_len(&c->output));
1936 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001937 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001938 else
1939 buffer_consume(&c->output, len);
1940 }
1941}
1942
Ben Lindstrombba81212001-06-25 05:01:22 +00001943static void
Damien Miller33b13562000-04-04 14:38:59 +10001944channel_handler_init_20(void)
1945{
Damien Millerde6987c2002-01-22 23:20:40 +11001946 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001947 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001948 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001949 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001950 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001951 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001952 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001953 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001954 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1955 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001956
Damien Millerde6987c2002-01-22 23:20:40 +11001957 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001958 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001959 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001960 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001961 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001962 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001963 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001964 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1965 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001966}
1967
Ben Lindstrombba81212001-06-25 05:01:22 +00001968static void
Damien Millerb38eff82000-04-01 11:09:21 +10001969channel_handler_init_13(void)
1970{
1971 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1972 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1973 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1974 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1975 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1976 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1977 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001978 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001979 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001980
Damien Millerde6987c2002-01-22 23:20:40 +11001981 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001982 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1983 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1984 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1985 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001986 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001987 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001988}
1989
Ben Lindstrombba81212001-06-25 05:01:22 +00001990static void
Damien Millerb38eff82000-04-01 11:09:21 +10001991channel_handler_init_15(void)
1992{
Damien Millerde6987c2002-01-22 23:20:40 +11001993 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001994 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001995 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1996 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1997 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001998 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001999 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002000
2001 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2002 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2003 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002004 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002005 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002006 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002007}
2008
Ben Lindstrombba81212001-06-25 05:01:22 +00002009static void
Damien Millerb38eff82000-04-01 11:09:21 +10002010channel_handler_init(void)
2011{
2012 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002013
Damien Miller9f0f5c62001-12-21 14:45:46 +11002014 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002015 channel_pre[i] = NULL;
2016 channel_post[i] = NULL;
2017 }
Damien Miller33b13562000-04-04 14:38:59 +10002018 if (compat20)
2019 channel_handler_init_20();
2020 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002021 channel_handler_init_13();
2022 else
2023 channel_handler_init_15();
2024}
2025
Damien Miller3ec27592001-10-12 11:35:04 +10002026/* gc dead channels */
2027static void
2028channel_garbage_collect(Channel *c)
2029{
2030 if (c == NULL)
2031 return;
2032 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002033 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002034 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002035 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002036 c->detach_user(c->self, NULL);
2037 /* if we still have a callback */
2038 if (c->detach_user != NULL)
2039 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002040 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002041 }
2042 if (!chan_is_dead(c, 1))
2043 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002044 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002045 channel_free(c);
2046}
2047
Ben Lindstrombba81212001-06-25 05:01:22 +00002048static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002049channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002050{
2051 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002052 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002053 Channel *c;
2054
2055 if (!did_init) {
2056 channel_handler_init();
2057 did_init = 1;
2058 }
Darren Tucker876045b2010-01-08 17:08:00 +11002059 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002060 c = channels[i];
2061 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002062 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002063 if (c->delayed) {
2064 if (ftab == channel_pre)
2065 c->delayed = 0;
2066 else
2067 continue;
2068 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00002069 if (ftab[c->type] != NULL)
2070 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10002071 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002072 }
2073}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002074
Ben Lindstrome9c99912001-06-09 00:41:05 +00002075/*
2076 * Allocate/update select bitmasks and add any bits relevant to channels in
2077 * select bitmasks.
2078 */
Damien Miller4af51302000-04-16 11:18:38 +10002079void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002080channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002081 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002082{
Damien Miller36812092006-03-26 14:22:47 +11002083 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002084
2085 n = MAX(*maxfdp, channel_max_fd);
2086
Damien Miller36812092006-03-26 14:22:47 +11002087 nfdset = howmany(n+1, NFDBITS);
2088 /* Explicitly test here, because xrealloc isn't always called */
2089 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2090 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2091 sz = nfdset * sizeof(fd_mask);
2092
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002093 /* perhaps check sz < nalloc/2 and shrink? */
2094 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002095 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2096 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002097 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002098 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002099 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002100 memset(*readsetp, 0, sz);
2101 memset(*writesetp, 0, sz);
2102
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002103 if (!rekeying)
2104 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002105}
2106
Ben Lindstrome9c99912001-06-09 00:41:05 +00002107/*
2108 * After select, perform any appropriate operations for channels which have
2109 * events pending.
2110 */
Damien Miller4af51302000-04-16 11:18:38 +10002111void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002112channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002113{
Damien Millerb38eff82000-04-01 11:09:21 +10002114 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002115}
2116
Ben Lindstrome9c99912001-06-09 00:41:05 +00002117
Damien Miller5e953212001-01-30 09:14:00 +11002118/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002119void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002120channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002121{
Damien Millerb38eff82000-04-01 11:09:21 +10002122 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002123 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124
Damien Miller95def091999-11-25 00:26:21 +11002125 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002126 c = channels[i];
2127 if (c == NULL)
2128 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002129
Ben Lindstrome9c99912001-06-09 00:41:05 +00002130 /*
2131 * We are only interested in channels that can have buffered
2132 * incoming data.
2133 */
Damien Miller34132e52000-01-14 15:45:46 +11002134 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002135 if (c->type != SSH_CHANNEL_OPEN &&
2136 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002137 continue;
2138 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002139 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002140 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002141 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002142 if (compat20 &&
2143 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002144 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002145 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002146 continue;
2147 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002148
Damien Miller95def091999-11-25 00:26:21 +11002149 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002150 if ((c->istate == CHAN_INPUT_OPEN ||
2151 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2152 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002153 if (c->datagram) {
2154 if (len > 0) {
2155 u_char *data;
2156 u_int dlen;
2157
2158 data = buffer_get_string(&c->input,
2159 &dlen);
2160 packet_start(SSH2_MSG_CHANNEL_DATA);
2161 packet_put_int(c->remote_id);
2162 packet_put_string(data, dlen);
2163 packet_send();
2164 c->remote_window -= dlen + 4;
2165 xfree(data);
2166 }
2167 continue;
2168 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002169 /*
2170 * Send some data for the other side over the secure
2171 * connection.
2172 */
Damien Miller33b13562000-04-04 14:38:59 +10002173 if (compat20) {
2174 if (len > c->remote_window)
2175 len = c->remote_window;
2176 if (len > c->remote_maxpacket)
2177 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002178 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002179 if (packet_is_interactive()) {
2180 if (len > 1024)
2181 len = 512;
2182 } else {
2183 /* Keep the packets at reasonable size. */
2184 if (len > packet_get_maxsize()/2)
2185 len = packet_get_maxsize()/2;
2186 }
Damien Miller95def091999-11-25 00:26:21 +11002187 }
Damien Millerb38eff82000-04-01 11:09:21 +10002188 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002189 packet_start(compat20 ?
2190 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002191 packet_put_int(c->remote_id);
2192 packet_put_string(buffer_ptr(&c->input), len);
2193 packet_send();
2194 buffer_consume(&c->input, len);
2195 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002196 }
2197 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002198 if (compat13)
2199 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002200 /*
2201 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002202 * tell peer, that we will not send more data: send IEOF.
2203 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002204 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002205 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002206 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2207 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002208 else
2209 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002210 }
Damien Miller33b13562000-04-04 14:38:59 +10002211 /* Send extended data, i.e. stderr */
2212 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002213 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002214 c->remote_window > 0 &&
2215 (len = buffer_len(&c->extended)) > 0 &&
2216 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002217 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002218 c->self, c->remote_window, buffer_len(&c->extended),
2219 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002220 if (len > c->remote_window)
2221 len = c->remote_window;
2222 if (len > c->remote_maxpacket)
2223 len = c->remote_maxpacket;
2224 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2225 packet_put_int(c->remote_id);
2226 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2227 packet_put_string(buffer_ptr(&c->extended), len);
2228 packet_send();
2229 buffer_consume(&c->extended, len);
2230 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002231 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002232 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002233 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002234}
2235
Ben Lindstrome9c99912001-06-09 00:41:05 +00002236
2237/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002238
2239/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002240void
Damien Miller630d6f42002-01-22 23:17:30 +11002241channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242{
Damien Miller34132e52000-01-14 15:45:46 +11002243 int id;
Damien Miller95def091999-11-25 00:26:21 +11002244 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002245 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002246 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002247
Damien Miller95def091999-11-25 00:26:21 +11002248 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002249 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002250 c = channel_lookup(id);
2251 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002252 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002253
Damien Miller95def091999-11-25 00:26:21 +11002254 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002255 if (c->type != SSH_CHANNEL_OPEN &&
2256 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002257 return;
2258
Damien Miller95def091999-11-25 00:26:21 +11002259 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002260 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002261
Damien Millera04ad492004-01-21 11:02:09 +11002262 /*
2263 * Ignore data for protocol > 1.3 if output end is no longer open.
2264 * For protocol 2 the sending side is reducing its window as it sends
2265 * data, so we must 'fake' consumption of the data in order to ensure
2266 * that window updates are sent back. Otherwise the connection might
2267 * deadlock.
2268 */
2269 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2270 if (compat20) {
2271 c->local_window -= data_len;
2272 c->local_consumed += data_len;
2273 }
Damien Millera04ad492004-01-21 11:02:09 +11002274 return;
2275 }
2276
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002277 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002278 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002279 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002280 c->self, data_len, c->local_maxpacket);
2281 }
2282 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002283 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002284 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002285 return;
2286 }
2287 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002288 }
Damien Millerd27b9472005-12-13 19:29:02 +11002289 if (c->datagram)
2290 buffer_put_string(&c->output, data, data_len);
2291 else
2292 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002293 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002294}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002295
Damien Millerd79b4242006-03-31 23:11:44 +11002296/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002297void
Damien Miller630d6f42002-01-22 23:17:30 +11002298channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002299{
2300 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002301 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002302 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002303 Channel *c;
2304
2305 /* Get the channel number and verify it. */
2306 id = packet_get_int();
2307 c = channel_lookup(id);
2308
2309 if (c == NULL)
2310 packet_disconnect("Received extended_data for bad channel %d.", id);
2311 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002312 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002313 return;
2314 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002315 if (c->flags & CHAN_EOF_RCVD) {
2316 if (datafellows & SSH_BUG_EXTEOF)
2317 debug("channel %d: accepting ext data after eof", id);
2318 else
2319 packet_disconnect("Received extended_data after EOF "
2320 "on channel %d.", id);
2321 }
Damien Miller33b13562000-04-04 14:38:59 +10002322 tcode = packet_get_int();
2323 if (c->efd == -1 ||
2324 c->extended_usage != CHAN_EXTENDED_WRITE ||
2325 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002326 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002327 return;
2328 }
2329 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002330 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002331 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002332 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002333 c->self, data_len, c->local_window);
2334 xfree(data);
2335 return;
2336 }
Damien Millerd3444942000-09-30 14:20:03 +11002337 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002338 c->local_window -= data_len;
2339 buffer_append(&c->extended, data, data_len);
2340 xfree(data);
2341}
2342
Damien Millerd79b4242006-03-31 23:11:44 +11002343/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002344void
Damien Miller630d6f42002-01-22 23:17:30 +11002345channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002346{
2347 int id;
2348 Channel *c;
2349
Damien Millerb38eff82000-04-01 11:09:21 +10002350 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002351 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002352 c = channel_lookup(id);
2353 if (c == NULL)
2354 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2355 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002356
2357 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002358 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002359 debug("channel %d: FORCE input drain", c->self);
2360 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002361 if (buffer_len(&c->input) == 0)
2362 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002363 }
2364
Damien Millerb38eff82000-04-01 11:09:21 +10002365}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002366
Damien Millerd79b4242006-03-31 23:11:44 +11002367/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002368void
Damien Miller630d6f42002-01-22 23:17:30 +11002369channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002370{
Damien Millerb38eff82000-04-01 11:09:21 +10002371 int id;
2372 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002373
Damien Millerb38eff82000-04-01 11:09:21 +10002374 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002375 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002376 c = channel_lookup(id);
2377 if (c == NULL)
2378 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002379
2380 /*
2381 * Send a confirmation that we have closed the channel and no more
2382 * data is coming for it.
2383 */
Damien Miller95def091999-11-25 00:26:21 +11002384 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002385 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002386 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002387
Damien Miller5428f641999-11-25 11:54:57 +11002388 /*
2389 * If the channel is in closed state, we have sent a close request,
2390 * and the other side will eventually respond with a confirmation.
2391 * Thus, we cannot free the channel here, because then there would be
2392 * no-one to receive the confirmation. The channel gets freed when
2393 * the confirmation arrives.
2394 */
Damien Millerb38eff82000-04-01 11:09:21 +10002395 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002396 /*
2397 * Not a closed channel - mark it as draining, which will
2398 * cause it to be freed later.
2399 */
Damien Miller76765c02002-01-22 23:21:15 +11002400 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002401 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002402 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002403}
2404
Damien Millerb38eff82000-04-01 11:09:21 +10002405/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002406/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002407void
Damien Miller630d6f42002-01-22 23:17:30 +11002408channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002409{
Damien Millerb38eff82000-04-01 11:09:21 +10002410 int id = packet_get_int();
2411 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002412
Damien Miller48b03fc2002-01-22 23:11:40 +11002413 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002414 if (c == NULL)
2415 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2416 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002417}
2418
Damien Millerd79b4242006-03-31 23:11:44 +11002419/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002420void
Damien Miller630d6f42002-01-22 23:17:30 +11002421channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002422{
2423 int id = packet_get_int();
2424 Channel *c = channel_lookup(id);
2425
Damien Miller48b03fc2002-01-22 23:11:40 +11002426 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002427 if (c == NULL)
2428 packet_disconnect("Received close confirmation for "
2429 "out-of-range channel %d.", id);
2430 if (c->type != SSH_CHANNEL_CLOSED)
2431 packet_disconnect("Received close confirmation for "
2432 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002433 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002434}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002435
Damien Millerd79b4242006-03-31 23:11:44 +11002436/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002437void
Damien Miller630d6f42002-01-22 23:17:30 +11002438channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002439{
Damien Millerb38eff82000-04-01 11:09:21 +10002440 int id, remote_id;
2441 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002442
Damien Millerb38eff82000-04-01 11:09:21 +10002443 id = packet_get_int();
2444 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002445
Damien Millerb38eff82000-04-01 11:09:21 +10002446 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2447 packet_disconnect("Received open confirmation for "
2448 "non-opening channel %d.", id);
2449 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002450 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002451 c->remote_id = remote_id;
2452 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002453
2454 if (compat20) {
2455 c->remote_window = packet_get_int();
2456 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002457 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002458 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002459 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002460 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002461 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002462 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002463 c->remote_window, c->remote_maxpacket);
2464 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002465 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002466}
2467
Ben Lindstrombba81212001-06-25 05:01:22 +00002468static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002469reason2txt(int reason)
2470{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002471 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002472 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2473 return "administratively prohibited";
2474 case SSH2_OPEN_CONNECT_FAILED:
2475 return "connect failed";
2476 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2477 return "unknown channel type";
2478 case SSH2_OPEN_RESOURCE_SHORTAGE:
2479 return "resource shortage";
2480 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002481 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002482}
2483
Damien Millerd79b4242006-03-31 23:11:44 +11002484/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002485void
Damien Miller630d6f42002-01-22 23:17:30 +11002486channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002487{
Kevin Steves12057502001-02-05 14:54:34 +00002488 int id, reason;
2489 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002490 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491
Damien Millerb38eff82000-04-01 11:09:21 +10002492 id = packet_get_int();
2493 c = channel_lookup(id);
2494
2495 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2496 packet_disconnect("Received open failure for "
2497 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002498 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002499 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002500 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002501 msg = packet_get_string(NULL);
2502 lang = packet_get_string(NULL);
2503 }
Damien Miller996acd22003-04-09 20:59:48 +10002504 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002505 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002506 if (msg != NULL)
2507 xfree(msg);
2508 if (lang != NULL)
2509 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002510 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002511 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002512 /* Schedule the channel for cleanup/deletion. */
2513 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514}
2515
Damien Millerd79b4242006-03-31 23:11:44 +11002516/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002517void
Damien Miller630d6f42002-01-22 23:17:30 +11002518channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002519{
2520 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002521 int id;
2522 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002523
2524 if (!compat20)
2525 return;
2526
2527 /* Get the channel number and verify it. */
2528 id = packet_get_int();
2529 c = channel_lookup(id);
2530
Damien Millerd47c62a2005-12-13 19:33:57 +11002531 if (c == NULL) {
2532 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002533 return;
2534 }
2535 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002536 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002537 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002538 c->remote_window += adjust;
2539}
2540
Damien Millerd79b4242006-03-31 23:11:44 +11002541/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002542void
Damien Miller630d6f42002-01-22 23:17:30 +11002543channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002544{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002545 Channel *c = NULL;
2546 u_short host_port;
2547 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002548 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002549
Ben Lindstrome9c99912001-06-09 00:41:05 +00002550 remote_id = packet_get_int();
2551 host = packet_get_string(NULL);
2552 host_port = packet_get_int();
2553
2554 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2555 originator_string = packet_get_string(NULL);
2556 } else {
2557 originator_string = xstrdup("unknown (remote did not supply name)");
2558 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002559 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002560 c = channel_connect_to(host, host_port,
2561 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002562 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002563 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002564 if (c == NULL) {
2565 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2566 packet_put_int(remote_id);
2567 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002568 } else
2569 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002570}
2571
Damien Millerb84886b2008-05-19 15:05:07 +10002572/* ARGSUSED */
2573void
2574channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2575{
2576 Channel *c;
2577 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002578 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002579
2580 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002581 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002582
Damien Miller16a73072008-12-08 09:55:25 +11002583 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002584 packet_check_eom();
2585
Damien Miller16a73072008-12-08 09:55:25 +11002586 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002587
Damien Miller16a73072008-12-08 09:55:25 +11002588 if ((c = channel_lookup(id)) == NULL) {
2589 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002590 return;
2591 }
2592 ;
2593 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2594 return;
2595 cc->cb(type, c, cc->ctx);
2596 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2597 bzero(cc, sizeof(*cc));
2598 xfree(cc);
2599}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002600
Ben Lindstrome9c99912001-06-09 00:41:05 +00002601/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002602
Ben Lindstrom908afed2001-10-03 17:34:59 +00002603void
2604channel_set_af(int af)
2605{
2606 IPv4or6 = af;
2607}
2608
Damien Millerb16461c2002-01-22 23:29:22 +11002609static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002610channel_setup_fwd_listener(int type, const char *listen_addr,
2611 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002612 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002613{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002614 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002615 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002616 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002617 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002618 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002619 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002620
Damien Millerb16461c2002-01-22 23:29:22 +11002621 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2622 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002623 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002624
Damien Millerb16461c2002-01-22 23:29:22 +11002625 if (host == NULL) {
2626 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002627 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002628 }
Damien Miller9576ac42009-01-28 16:30:33 +11002629 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002630 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002631 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002632 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002633
Damien Miller5428f641999-11-25 11:54:57 +11002634 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002635 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002636 * specified address or wildcard. On the client, a specified bind
2637 * address will always override gateway_ports. On the server, a
2638 * gateway_ports of 1 (``yes'') will override the client's
2639 * specification and force a wildcard bind, whereas a value of 2
2640 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002641 * asked for.
2642 *
2643 * Special-case listen_addrs are:
2644 *
2645 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2646 * "" (empty string), "*" -> wildcard v4/v6
2647 * "localhost" -> loopback v4/v6
2648 */
2649 addr = NULL;
2650 if (listen_addr == NULL) {
2651 /* No address specified: default to gateway_ports setting */
2652 if (gateway_ports)
2653 wildcard = 1;
2654 } else if (gateway_ports || is_client) {
2655 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002656 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002657 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2658 (!is_client && gateway_ports == 1))
2659 wildcard = 1;
2660 else if (strcmp(listen_addr, "localhost") != 0)
2661 addr = listen_addr;
2662 }
2663
2664 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2665 type, wildcard, (addr == NULL) ? "NULL" : addr);
2666
2667 /*
Damien Miller34132e52000-01-14 15:45:46 +11002668 * getaddrinfo returns a loopback address if the hostname is
2669 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002670 */
Damien Miller34132e52000-01-14 15:45:46 +11002671 memset(&hints, 0, sizeof(hints));
2672 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002673 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002674 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002675 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002676 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2677 if (addr == NULL) {
2678 /* This really shouldn't happen */
2679 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002680 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002681 } else {
Damien Millera7270302005-07-06 09:36:05 +10002682 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002683 "getaddrinfo(%.64s): %s", addr,
2684 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002685 }
Damien Millera7270302005-07-06 09:36:05 +10002686 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002687 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002688 if (allocated_listen_port != NULL)
2689 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002690 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002691 switch (ai->ai_family) {
2692 case AF_INET:
2693 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2694 sin_port;
2695 break;
2696 case AF_INET6:
2697 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2698 sin6_port;
2699 break;
2700 default:
Damien Miller34132e52000-01-14 15:45:46 +11002701 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002702 }
2703 /*
2704 * If allocating a port for -R forwards, then use the
2705 * same port for all address families.
2706 */
2707 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2708 allocated_listen_port != NULL && *allocated_listen_port > 0)
2709 *lport_p = htons(*allocated_listen_port);
2710
Damien Miller34132e52000-01-14 15:45:46 +11002711 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2712 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002713 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002714 continue;
2715 }
2716 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002717 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002718 if (sock < 0) {
2719 /* this is no error since kernel may not support ipv6 */
2720 verbose("socket: %.100s", strerror(errno));
2721 continue;
2722 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002723
2724 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002725 if (ai->ai_family == AF_INET6)
2726 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002727
Damien Miller4bf648f2009-02-14 16:28:21 +11002728 debug("Local forwarding listening on %s port %s.",
2729 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002730
Damien Miller34132e52000-01-14 15:45:46 +11002731 /* Bind the socket to the address. */
2732 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2733 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002734 if (!ai->ai_next)
2735 error("bind: %.100s", strerror(errno));
2736 else
2737 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002738
Damien Miller34132e52000-01-14 15:45:46 +11002739 close(sock);
2740 continue;
2741 }
2742 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002743 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002744 error("listen: %.100s", strerror(errno));
2745 close(sock);
2746 continue;
2747 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002748
2749 /*
2750 * listen_port == 0 requests a dynamically allocated port -
2751 * record what we got.
2752 */
2753 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2754 allocated_listen_port != NULL &&
2755 *allocated_listen_port == 0) {
2756 *allocated_listen_port = get_sock_port(sock, 1);
2757 debug("Allocated listen port %d",
2758 *allocated_listen_port);
2759 }
2760
Damien Miller34132e52000-01-14 15:45:46 +11002761 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002762 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002763 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002764 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002765 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002766 c->host_port = port_to_connect;
2767 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002768 success = 1;
2769 }
2770 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002771 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002772 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002773 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002774 return success;
Damien Miller95def091999-11-25 00:26:21 +11002775}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002776
Darren Tuckere7066df2004-05-24 10:18:05 +10002777int
2778channel_cancel_rport_listener(const char *host, u_short port)
2779{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002780 u_int i;
2781 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002782
Darren Tucker47eede72005-03-14 23:08:12 +11002783 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002784 Channel *c = channels[i];
2785
2786 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002787 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002788 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002789 channel_free(c);
2790 found = 1;
2791 }
2792 }
2793
2794 return (found);
2795}
2796
Damien Millerb16461c2002-01-22 23:29:22 +11002797/* protocol local port fwd, used by ssh (and sshd in v1) */
2798int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002799channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002800 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2801{
2802 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002803 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002804 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002805}
2806
2807/* protocol v2 remote port fwd, used by sshd */
2808int
2809channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002810 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002811{
2812 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002813 listen_address, listen_port, allocated_listen_port,
2814 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002815}
2816
Damien Miller5428f641999-11-25 11:54:57 +11002817/*
2818 * Initiate forwarding of connections to port "port" on remote host through
2819 * the secure channel to host:port from local side.
2820 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002821
Darren Tuckere7d4b192006-07-12 22:17:10 +10002822int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002823channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002824 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002825{
Damien Millerdff50992002-01-22 23:16:32 +11002826 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002827
Damien Miller95def091999-11-25 00:26:21 +11002828 /* Record locally that connection to this host/port is permitted. */
2829 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2830 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002831
Damien Miller95def091999-11-25 00:26:21 +11002832 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002833 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002834 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002835 if (listen_host == NULL) {
2836 if (datafellows & SSH_BUG_RFWD_ADDR)
2837 address_to_bind = "127.0.0.1";
2838 else
2839 address_to_bind = "localhost";
2840 } else if (*listen_host == '\0' ||
2841 strcmp(listen_host, "*") == 0) {
2842 if (datafellows & SSH_BUG_RFWD_ADDR)
2843 address_to_bind = "0.0.0.0";
2844 else
2845 address_to_bind = "";
2846 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002847 address_to_bind = listen_host;
2848
Damien Miller33b13562000-04-04 14:38:59 +10002849 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2850 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002851 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002852 packet_put_cstring(address_to_bind);
2853 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002854 packet_send();
2855 packet_write_wait();
2856 /* Assume that server accepts the request */
2857 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002858 } else {
2859 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002860 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002861 packet_put_cstring(host_to_connect);
2862 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002863 packet_send();
2864 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002865
2866 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002867 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002868 switch (type) {
2869 case SSH_SMSG_SUCCESS:
2870 success = 1;
2871 break;
2872 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002873 break;
2874 default:
2875 /* Unknown packet */
2876 packet_disconnect("Protocol error for port forward request:"
2877 "received packet type %d.", type);
2878 }
2879 }
2880 if (success) {
2881 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2882 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2883 permitted_opens[num_permitted_opens].listen_port = listen_port;
2884 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002885 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002886 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002887}
2888
Damien Miller5428f641999-11-25 11:54:57 +11002889/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002890 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002891 * local side.
2892 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002893void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002894channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002895{
2896 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002897
2898 if (!compat20)
2899 return;
2900
2901 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002902 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002903 permitted_opens[i].listen_port == port)
2904 break;
2905 }
2906 if (i >= num_permitted_opens) {
2907 debug("%s: requested forward not found", __func__);
2908 return;
2909 }
2910 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2911 packet_put_cstring("cancel-tcpip-forward");
2912 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002913 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002914 packet_put_int(port);
2915 packet_send();
2916
2917 permitted_opens[i].listen_port = 0;
2918 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002919 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002920 permitted_opens[i].host_to_connect = NULL;
2921}
2922
2923/*
Damien Miller5428f641999-11-25 11:54:57 +11002924 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2925 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002926 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002927 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002928int
Damien Millere247cc42000-05-07 12:03:14 +10002929channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002930{
Damien Milleraae6c611999-12-06 11:47:28 +11002931 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002932 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002933 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002934
Damien Miller95def091999-11-25 00:26:21 +11002935 /* Get arguments from the packet. */
2936 port = packet_get_int();
2937 hostname = packet_get_string(NULL);
2938 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002939
Damien Millerbac2d8a2000-09-05 16:13:06 +11002940#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002941 /*
2942 * Check that an unprivileged user is not trying to forward a
2943 * privileged port.
2944 */
Damien Miller95def091999-11-25 00:26:21 +11002945 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002946 packet_disconnect(
2947 "Requested forwarding of port %d but user is not root.",
2948 port);
2949 if (host_port == 0)
2950 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002951#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002952
Damien Miller0bc1bd82000-11-13 22:57:25 +11002953 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002954 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002955 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002956
2957 /* Free the argument string. */
2958 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002959
2960 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002961}
2962
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002963/*
2964 * Permits opening to any host/port if permitted_opens[] is empty. This is
2965 * usually called by the server, because the user could connect to any port
2966 * anyway, and the server has no way to know but to trust the client anyway.
2967 */
2968void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002969channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002970{
2971 if (num_permitted_opens == 0)
2972 all_opens_permitted = 1;
2973}
2974
Ben Lindstroma3700052001-04-05 23:26:32 +00002975void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002976channel_add_permitted_opens(char *host, int port)
2977{
2978 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002979 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002980 debug("allow port forwarding to host %s port %d", host, port);
2981
2982 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2983 permitted_opens[num_permitted_opens].port_to_connect = port;
2984 num_permitted_opens++;
2985
2986 all_opens_permitted = 0;
2987}
2988
Damien Millera765cf42006-07-24 14:08:13 +10002989int
Damien Miller9b439df2006-07-24 14:04:00 +10002990channel_add_adm_permitted_opens(char *host, int port)
2991{
2992 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2993 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002994 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002995
2996 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2997 = xstrdup(host);
2998 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002999 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003000}
3001
3002void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003003channel_clear_permitted_opens(void)
3004{
3005 int i;
3006
3007 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003008 if (permitted_opens[i].host_to_connect != NULL)
3009 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003010 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003011}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003012
Damien Miller9b439df2006-07-24 14:04:00 +10003013void
3014channel_clear_adm_permitted_opens(void)
3015{
3016 int i;
3017
3018 for (i = 0; i < num_adm_permitted_opens; i++)
3019 if (permitted_adm_opens[i].host_to_connect != NULL)
3020 xfree(permitted_adm_opens[i].host_to_connect);
3021 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003022}
3023
Darren Tuckere7140f22008-06-10 23:01:51 +10003024void
3025channel_print_adm_permitted_opens(void)
3026{
Damien Miller6ef17492008-07-16 22:42:06 +10003027 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003028
Damien Millerb53d8a12009-01-28 16:13:04 +11003029 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003030 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003031 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003032 return;
3033 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003034 for (i = 0; i < num_adm_permitted_opens; i++)
3035 if (permitted_adm_opens[i].host_to_connect != NULL)
3036 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3037 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003038 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003039}
3040
Damien Millerbd740252008-05-19 15:37:09 +10003041/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003042static int
Damien Millerbd740252008-05-19 15:37:09 +10003043connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003044{
Damien Millerbd740252008-05-19 15:37:09 +10003045 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003046 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003047
Damien Millerbd740252008-05-19 15:37:09 +10003048 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3049 if (cctx->ai->ai_family != AF_INET &&
3050 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003051 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003052 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3053 ntop, sizeof(ntop), strport, sizeof(strport),
3054 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3055 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003056 continue;
3057 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003058 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3059 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003060 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003061 error("socket: %.100s", strerror(errno));
3062 else
3063 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003064 continue;
3065 }
Damien Miller232711f2004-06-15 10:35:30 +10003066 if (set_nonblock(sock) == -1)
3067 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003068 if (connect(sock, cctx->ai->ai_addr,
3069 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3070 debug("connect_next: host %.100s ([%.100s]:%s): "
3071 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003072 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003073 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003074 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003075 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003076 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003077 }
Damien Millerbd740252008-05-19 15:37:09 +10003078 debug("connect_next: host %.100s ([%.100s]:%s) "
3079 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3080 cctx->ai = cctx->ai->ai_next;
3081 set_nodelay(sock);
3082 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003083 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003084 return -1;
3085}
Damien Millerb38eff82000-04-01 11:09:21 +10003086
Damien Millerbd740252008-05-19 15:37:09 +10003087static void
3088channel_connect_ctx_free(struct channel_connect *cctx)
3089{
3090 xfree(cctx->host);
3091 if (cctx->aitop)
3092 freeaddrinfo(cctx->aitop);
3093 bzero(cctx, sizeof(*cctx));
3094 cctx->host = NULL;
3095 cctx->ai = cctx->aitop = NULL;
3096}
3097
3098/* Return CONNECTING channel to remote host, port */
3099static Channel *
3100connect_to(const char *host, u_short port, char *ctype, char *rname)
3101{
3102 struct addrinfo hints;
3103 int gaierr;
3104 int sock = -1;
3105 char strport[NI_MAXSERV];
3106 struct channel_connect cctx;
3107 Channel *c;
3108
Damien Miller2bcb8662008-07-12 17:12:29 +10003109 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003110 memset(&hints, 0, sizeof(hints));
3111 hints.ai_family = IPv4or6;
3112 hints.ai_socktype = SOCK_STREAM;
3113 snprintf(strport, sizeof strport, "%d", port);
3114 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3115 error("connect_to %.100s: unknown host (%s)", host,
3116 ssh_gai_strerror(gaierr));
3117 return NULL;
3118 }
3119
3120 cctx.host = xstrdup(host);
3121 cctx.port = port;
3122 cctx.ai = cctx.aitop;
3123
3124 if ((sock = connect_next(&cctx)) == -1) {
3125 error("connect to %.100s port %d failed: %s",
3126 host, port, strerror(errno));
3127 channel_connect_ctx_free(&cctx);
3128 return NULL;
3129 }
3130 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3131 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3132 c->connect_ctx = cctx;
3133 return c;
3134}
3135
3136Channel *
3137channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3138{
3139 int i;
3140
3141 for (i = 0; i < num_permitted_opens; i++) {
3142 if (permitted_opens[i].host_to_connect != NULL &&
3143 permitted_opens[i].listen_port == listen_port) {
3144 return connect_to(
3145 permitted_opens[i].host_to_connect,
3146 permitted_opens[i].port_to_connect, ctype, rname);
3147 }
3148 }
3149 error("WARNING: Server requests forwarding for unknown listen_port %d",
3150 listen_port);
3151 return NULL;
3152}
3153
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003154/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003155Channel *
3156channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003157{
Damien Miller9b439df2006-07-24 14:04:00 +10003158 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003159
3160 permit = all_opens_permitted;
3161 if (!permit) {
3162 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003163 if (permitted_opens[i].host_to_connect != NULL &&
3164 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003165 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3166 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003167 }
Damien Miller9b439df2006-07-24 14:04:00 +10003168
3169 if (num_adm_permitted_opens > 0) {
3170 permit_adm = 0;
3171 for (i = 0; i < num_adm_permitted_opens; i++)
3172 if (permitted_adm_opens[i].host_to_connect != NULL &&
3173 permitted_adm_opens[i].port_to_connect == port &&
3174 strcmp(permitted_adm_opens[i].host_to_connect, host)
3175 == 0)
3176 permit_adm = 1;
3177 }
3178
3179 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003180 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003181 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003182 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003183 }
Damien Millerbd740252008-05-19 15:37:09 +10003184 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003185}
3186
Damien Miller0e220db2004-06-15 10:34:08 +10003187void
3188channel_send_window_changes(void)
3189{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003190 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003191 struct winsize ws;
3192
3193 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003194 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003195 channels[i]->type != SSH_CHANNEL_OPEN)
3196 continue;
3197 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3198 continue;
3199 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003200 packet_put_int((u_int)ws.ws_col);
3201 packet_put_int((u_int)ws.ws_row);
3202 packet_put_int((u_int)ws.ws_xpixel);
3203 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003204 packet_send();
3205 }
3206}
3207
Ben Lindstrome9c99912001-06-09 00:41:05 +00003208/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003209
Damien Miller5428f641999-11-25 11:54:57 +11003210/*
3211 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003212 * Returns 0 and a suitable display number for the DISPLAY variable
3213 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003214 */
Kevin Steves366298c2001-12-19 17:58:01 +00003215int
Damien Miller95c249f2002-02-05 12:11:34 +11003216x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003217 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003218{
Damien Millere7378562001-12-21 14:58:35 +11003219 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003220 int display_number, sock;
3221 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003222 struct addrinfo hints, *ai, *aitop;
3223 char strport[NI_MAXSERV];
3224 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003225
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003226 if (chanids == NULL)
3227 return -1;
3228
Damien Millera34a28b1999-12-14 10:47:15 +11003229 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003230 display_number < MAX_DISPLAYS;
3231 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003232 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003233 memset(&hints, 0, sizeof(hints));
3234 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003235 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003236 hints.ai_socktype = SOCK_STREAM;
3237 snprintf(strport, sizeof strport, "%d", port);
3238 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003239 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003240 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003241 }
Damien Miller34132e52000-01-14 15:45:46 +11003242 for (ai = aitop; ai; ai = ai->ai_next) {
3243 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3244 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003245 sock = socket(ai->ai_family, ai->ai_socktype,
3246 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003247 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003248 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003249 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003250 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003251 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003252 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003253 debug("x11_create_display_inet: Socket family %d not supported",
3254 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003255 continue;
3256 }
Damien Miller34132e52000-01-14 15:45:46 +11003257 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003258 if (ai->ai_family == AF_INET6)
3259 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003260 if (x11_use_localhost)
3261 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003262 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003263 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003264 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003265
Damien Miller34132e52000-01-14 15:45:46 +11003266 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003267 close(socks[n]);
3268 }
3269 num_socks = 0;
3270 break;
3271 }
3272 socks[num_socks++] = sock;
3273 if (num_socks == NUM_SOCKS)
3274 break;
Damien Miller95def091999-11-25 00:26:21 +11003275 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003276 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003277 if (num_socks > 0)
3278 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003279 }
Damien Miller95def091999-11-25 00:26:21 +11003280 if (display_number >= MAX_DISPLAYS) {
3281 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003282 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003283 }
Damien Miller95def091999-11-25 00:26:21 +11003284 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003285 for (n = 0; n < num_socks; n++) {
3286 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003287 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003288 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003289 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003290 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003291 }
Damien Miller95def091999-11-25 00:26:21 +11003292 }
Damien Miller34132e52000-01-14 15:45:46 +11003293
Damien Miller34132e52000-01-14 15:45:46 +11003294 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003295 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003296 for (n = 0; n < num_socks; n++) {
3297 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003298 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003299 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3300 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003301 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003302 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003303 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003304 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003305 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003306
Kevin Steves366298c2001-12-19 17:58:01 +00003307 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003308 *display_numberp = display_number;
3309 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003310}
3311
Ben Lindstrombba81212001-06-25 05:01:22 +00003312static int
Damien Miller819dbb62009-01-21 16:46:26 +11003313connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003314{
Damien Miller95def091999-11-25 00:26:21 +11003315 int sock;
3316 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003317
Damien Miller3afe3752001-12-21 12:39:51 +11003318 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3319 if (sock < 0)
3320 error("socket: %.100s", strerror(errno));
3321 memset(&addr, 0, sizeof(addr));
3322 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003323 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003324 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003325 return sock;
3326 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003327 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3328 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003329}
3330
Damien Miller819dbb62009-01-21 16:46:26 +11003331static int
3332connect_local_xsocket(u_int dnr)
3333{
3334 char buf[1024];
3335 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3336 return connect_local_xsocket_path(buf);
3337}
3338
Damien Millerbd483e72000-04-30 10:00:53 +10003339int
3340x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003341{
Damien Miller57c4e872006-03-31 23:11:07 +11003342 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003343 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003344 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003345 struct addrinfo hints, *ai, *aitop;
3346 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003347 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348
Damien Miller95def091999-11-25 00:26:21 +11003349 /* Try to open a socket for the local X server. */
3350 display = getenv("DISPLAY");
3351 if (!display) {
3352 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003353 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003354 }
Damien Miller5428f641999-11-25 11:54:57 +11003355 /*
3356 * Now we decode the value of the DISPLAY variable and make a
3357 * connection to the real X server.
3358 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003359
Damien Miller819dbb62009-01-21 16:46:26 +11003360 /* Check if the display is from launchd. */
3361#ifdef __APPLE__
3362 if (strncmp(display, "/tmp/launch", 11) == 0) {
3363 sock = connect_local_xsocket_path(display);
3364 if (sock < 0)
3365 return -1;
3366
3367 /* OK, we now have a connection to the display. */
3368 return sock;
3369 }
3370#endif
Damien Miller5428f641999-11-25 11:54:57 +11003371 /*
3372 * Check if it is a unix domain socket. Unix domain displays are in
3373 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3374 */
Damien Miller95def091999-11-25 00:26:21 +11003375 if (strncmp(display, "unix:", 5) == 0 ||
3376 display[0] == ':') {
3377 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003378 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003379 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003380 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003381 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003382 }
3383 /* Create a socket. */
3384 sock = connect_local_xsocket(display_number);
3385 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003386 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003387
3388 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003389 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003390 }
Damien Miller5428f641999-11-25 11:54:57 +11003391 /*
3392 * Connect to an inet socket. The DISPLAY value is supposedly
3393 * hostname:d[.s], where hostname may also be numeric IP address.
3394 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003395 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003396 cp = strchr(buf, ':');
3397 if (!cp) {
3398 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003399 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003400 }
Damien Miller95def091999-11-25 00:26:21 +11003401 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003402 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003403 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003404 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003405 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003406 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003407 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003408
Damien Miller34132e52000-01-14 15:45:46 +11003409 /* Look up the host address */
3410 memset(&hints, 0, sizeof(hints));
3411 hints.ai_family = IPv4or6;
3412 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003413 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003414 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003415 error("%.100s: unknown host. (%s)", buf,
3416 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003417 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003418 }
Damien Miller34132e52000-01-14 15:45:46 +11003419 for (ai = aitop; ai; ai = ai->ai_next) {
3420 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003421 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003422 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003423 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003424 continue;
3425 }
3426 /* Connect it to the display. */
3427 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003428 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003429 6000 + display_number, strerror(errno));
3430 close(sock);
3431 continue;
3432 }
3433 /* Success */
3434 break;
Damien Miller34132e52000-01-14 15:45:46 +11003435 }
Damien Miller34132e52000-01-14 15:45:46 +11003436 freeaddrinfo(aitop);
3437 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003438 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003439 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003440 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003441 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003442 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003443 return sock;
3444}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003445
Damien Millerbd483e72000-04-30 10:00:53 +10003446/*
3447 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3448 * the remote channel number. We should do whatever we want, and respond
3449 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3450 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003451
Damien Miller8473dd82006-07-24 14:08:32 +10003452/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003453void
Damien Miller630d6f42002-01-22 23:17:30 +11003454x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003455{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003456 Channel *c = NULL;
3457 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003458 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003459
3460 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003461
3462 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003463
3464 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003465 remote_host = packet_get_string(NULL);
3466 } else {
3467 remote_host = xstrdup("unknown (remote did not supply name)");
3468 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003469 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003470
3471 /* Obtain a connection to the real X display. */
3472 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003473 if (sock != -1) {
3474 /* Allocate a channel for this connection. */
3475 c = channel_new("connected x11 socket",
3476 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3477 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003478 c->remote_id = remote_id;
3479 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003480 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003481 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003482 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003483 /* Send refusal to the remote host. */
3484 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003485 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003486 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003487 /* Send a confirmation to the remote host. */
3488 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003489 packet_put_int(remote_id);
3490 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003491 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003492 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003493}
3494
Damien Miller69b69aa2000-10-28 14:19:58 +11003495/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003496/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003497void
Damien Miller630d6f42002-01-22 23:17:30 +11003498deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003499{
3500 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003501
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003502 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003503 case SSH_SMSG_AGENT_OPEN:
3504 error("Warning: ssh server tried agent forwarding.");
3505 break;
3506 case SSH_SMSG_X11_OPEN:
3507 error("Warning: ssh server tried X11 forwarding.");
3508 break;
3509 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003510 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003511 break;
3512 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003513 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003514 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3515 packet_put_int(rchan);
3516 packet_send();
3517}
3518
Damien Miller5428f641999-11-25 11:54:57 +11003519/*
3520 * Requests forwarding of X11 connections, generates fake authentication
3521 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003522 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003523 */
Damien Miller4af51302000-04-16 11:18:38 +10003524void
Damien Miller17e7ed02005-06-17 12:54:33 +10003525x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003526 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003527{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003528 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003529 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003530 char *new_data;
3531 int screen_number;
3532 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003533 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003534
Damien Millerf92c0792005-07-06 09:45:26 +10003535 if (x11_saved_display == NULL)
3536 x11_saved_display = xstrdup(disp);
3537 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003538 error("x11_request_forwarding_with_spoofing: different "
3539 "$DISPLAY already forwarded");
3540 return;
3541 }
3542
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003543 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003544 if (cp)
3545 cp = strchr(cp, '.');
3546 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003547 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003548 else
3549 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003550
Damien Miller13390022005-07-06 09:44:19 +10003551 if (x11_saved_proto == NULL) {
3552 /* Save protocol name. */
3553 x11_saved_proto = xstrdup(proto);
3554 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003555 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003556 * of the same length.
3557 */
3558 x11_saved_data = xmalloc(data_len);
3559 x11_fake_data = xmalloc(data_len);
3560 for (i = 0; i < data_len; i++) {
3561 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3562 fatal("x11_request_forwarding: bad "
3563 "authentication data: %.100s", data);
3564 if (i % 4 == 0)
3565 rnd = arc4random();
3566 x11_saved_data[i] = value;
3567 x11_fake_data[i] = rnd & 0xff;
3568 rnd >>= 8;
3569 }
3570 x11_saved_data_len = data_len;
3571 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003572 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003573
Damien Miller95def091999-11-25 00:26:21 +11003574 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003575 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003576
Damien Miller95def091999-11-25 00:26:21 +11003577 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003578 if (compat20) {
3579 channel_request_start(client_session_id, "x11-req", 0);
3580 packet_put_char(0); /* XXX bool single connection */
3581 } else {
3582 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3583 }
3584 packet_put_cstring(proto);
3585 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003586 packet_put_int(screen_number);
3587 packet_send();
3588 packet_write_wait();
3589 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003590}
3591
Ben Lindstrome9c99912001-06-09 00:41:05 +00003592
3593/* -- agent forwarding */
3594
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003595/* Sends a message to the server to request authentication fd forwarding. */
3596
Damien Miller4af51302000-04-16 11:18:38 +10003597void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003598auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003599{
Damien Miller95def091999-11-25 00:26:21 +11003600 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3601 packet_send();
3602 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003603}