blob: d8c53a4a8f2b94f8ec8bf49bfa53d1427a689e24 [file] [log] [blame]
Damien Millerd6369432010-02-02 17:02:07 +11001/* $OpenBSD: channels.c,v 1.303 2010/01/30 21:12:08 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
Damien Millerd6369432010-02-02 17:02:07 +11001379 if (remote_port == -1) {
1380 /* Fake addr/port to appease peers that validate it (Tectia) */
1381 xfree(remote_ipaddr);
1382 remote_ipaddr = xstrdup("127.0.0.1");
1383 remote_port = 65535;
1384 }
1385
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001386 direct = (strcmp(rtype, "direct-tcpip") == 0);
1387
1388 snprintf(buf, sizeof buf,
1389 "%s: listening port %d for %.100s port %d, "
1390 "connect from %.200s port %d",
1391 rtype, c->listening_port, c->path, c->host_port,
1392 remote_ipaddr, remote_port);
1393
1394 xfree(c->remote_name);
1395 c->remote_name = xstrdup(buf);
1396
1397 if (compat20) {
1398 packet_start(SSH2_MSG_CHANNEL_OPEN);
1399 packet_put_cstring(rtype);
1400 packet_put_int(c->self);
1401 packet_put_int(c->local_window_max);
1402 packet_put_int(c->local_maxpacket);
1403 if (direct) {
1404 /* target host, port */
1405 packet_put_cstring(c->path);
1406 packet_put_int(c->host_port);
1407 } else {
1408 /* listen address, port */
1409 packet_put_cstring(c->path);
1410 packet_put_int(c->listening_port);
1411 }
1412 /* originator host and port */
1413 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001414 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001415 packet_send();
1416 } else {
1417 packet_start(SSH_MSG_PORT_OPEN);
1418 packet_put_int(c->self);
1419 packet_put_cstring(c->path);
1420 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001421 if (packet_get_protocol_flags() &
1422 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001423 packet_put_cstring(c->remote_name);
1424 packet_send();
1425 }
1426 xfree(remote_ipaddr);
1427}
1428
Damien Miller5e7fd072005-11-05 14:53:39 +11001429static void
1430channel_set_reuseaddr(int fd)
1431{
1432 int on = 1;
1433
1434 /*
1435 * Set socket options.
1436 * Allow local port reuse in TIME_WAIT.
1437 */
1438 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1439 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1440}
1441
Damien Millerb38eff82000-04-01 11:09:21 +10001442/*
1443 * This socket is listening for connections to a forwarded TCP/IP port.
1444 */
Damien Miller8473dd82006-07-24 14:08:32 +10001445/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001446static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001447channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001448{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001449 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001450 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001451 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001452 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001453 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001454
Damien Millerb38eff82000-04-01 11:09:21 +10001455 if (FD_ISSET(c->sock, readset)) {
1456 debug("Connection to port %d forwarding "
1457 "to %.100s port %d requested.",
1458 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001459
Damien Miller4623a752001-10-10 15:03:58 +10001460 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1461 nextstate = SSH_CHANNEL_OPENING;
1462 rtype = "forwarded-tcpip";
1463 } else {
1464 if (c->host_port == 0) {
1465 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001466 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001467 } else {
1468 nextstate = SSH_CHANNEL_OPENING;
1469 rtype = "direct-tcpip";
1470 }
1471 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001472
Damien Millerb38eff82000-04-01 11:09:21 +10001473 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001474 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001475 if (newsock < 0) {
1476 error("accept: %.100s", strerror(errno));
1477 return;
1478 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001479 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001480 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1481 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001482 nc->listening_port = c->listening_port;
1483 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001484 if (c->path != NULL)
1485 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001486
Darren Tucker876045b2010-01-08 17:08:00 +11001487 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001488 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001489 }
1490}
1491
1492/*
1493 * This is the authentication agent socket listening for connections from
1494 * clients.
1495 */
Damien Miller8473dd82006-07-24 14:08:32 +10001496/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001497static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001498channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001499{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001500 Channel *nc;
1501 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001502 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001503 socklen_t addrlen;
1504
1505 if (FD_ISSET(c->sock, readset)) {
1506 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001507 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001508 if (newsock < 0) {
1509 error("accept from auth socket: %.100s", strerror(errno));
1510 return;
1511 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001512 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001513 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1514 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001515 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001516 if (compat20) {
1517 packet_start(SSH2_MSG_CHANNEL_OPEN);
1518 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001519 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001520 packet_put_int(c->local_window_max);
1521 packet_put_int(c->local_maxpacket);
1522 } else {
1523 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001525 }
Damien Millerb38eff82000-04-01 11:09:21 +10001526 packet_send();
1527 }
1528}
1529
Damien Miller8473dd82006-07-24 14:08:32 +10001530/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001531static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001532channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001533{
Damien Millerbd740252008-05-19 15:37:09 +10001534 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001535 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001536
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001537 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001538 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001539 err = errno;
1540 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001541 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001542 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001543 debug("channel %d: connected to %s port %d",
1544 c->self, c->connect_ctx.host, c->connect_ctx.port);
1545 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001546 c->type = SSH_CHANNEL_OPEN;
1547 if (compat20) {
1548 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1549 packet_put_int(c->remote_id);
1550 packet_put_int(c->self);
1551 packet_put_int(c->local_window);
1552 packet_put_int(c->local_maxpacket);
1553 } else {
1554 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1555 packet_put_int(c->remote_id);
1556 packet_put_int(c->self);
1557 }
1558 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001559 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001560 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001561 /* Try next address, if any */
1562 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1563 close(c->sock);
1564 c->sock = c->rfd = c->wfd = sock;
1565 channel_max_fd = channel_find_maxfd();
1566 return;
1567 }
1568 /* Exhausted all addresses */
1569 error("connect_to %.100s port %d: failed.",
1570 c->connect_ctx.host, c->connect_ctx.port);
1571 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001572 if (compat20) {
1573 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1574 packet_put_int(c->remote_id);
1575 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1576 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1577 packet_put_cstring(strerror(err));
1578 packet_put_cstring("");
1579 }
1580 } else {
1581 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1582 packet_put_int(c->remote_id);
1583 }
1584 chan_mark_dead(c);
1585 }
1586 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001587 }
1588}
1589
Damien Miller8473dd82006-07-24 14:08:32 +10001590/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001591static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001592channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001593{
Darren Tucker11327cc2005-03-14 23:22:25 +11001594 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001595 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001596
Damien Miller835284b2007-06-11 13:03:16 +10001597 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1598 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001599 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001600 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001601 if (len < 0 && (errno == EINTR ||
1602 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001603 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001604#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001605 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001606#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001607 if ((!c->isatty && len <= 0) ||
1608 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001609#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001610 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001611 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001612 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001613 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001614 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001615 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001616 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001617 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001618 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001619 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001620 } else {
1621 chan_read_failed(c);
1622 }
1623 return -1;
1624 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001625 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001626 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001627 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001628 chan_read_failed(c);
1629 }
Damien Millerd27b9472005-12-13 19:29:02 +11001630 } else if (c->datagram) {
1631 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001632 } else {
1633 buffer_append(&c->input, buf, len);
1634 }
Damien Millerb38eff82000-04-01 11:09:21 +10001635 }
1636 return 1;
1637}
Damien Miller4f7becb2006-03-26 14:10:14 +11001638
Damien Miller8473dd82006-07-24 14:08:32 +10001639/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001640static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001641channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001642{
Ben Lindstrome229b252001-03-05 06:28:06 +00001643 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001644 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001645 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001646 int len;
1647
1648 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001649 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001650 FD_ISSET(c->wfd, writeset) &&
1651 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001652 if (c->output_filter != NULL) {
1653 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1654 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001655 if (c->type != SSH_CHANNEL_OPEN)
1656 chan_mark_dead(c);
1657 else
1658 chan_write_failed(c);
1659 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001660 }
1661 } else if (c->datagram) {
1662 buf = data = buffer_get_string(&c->output, &dlen);
1663 } else {
1664 buf = data = buffer_ptr(&c->output);
1665 dlen = buffer_len(&c->output);
1666 }
1667
Damien Millerd27b9472005-12-13 19:29:02 +11001668 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001669 /* ignore truncated writes, datagrams might get lost */
1670 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001671 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001672 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001673 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1674 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001675 return 1;
1676 if (len <= 0) {
1677 if (c->type != SSH_CHANNEL_OPEN)
1678 chan_mark_dead(c);
1679 else
1680 chan_write_failed(c);
1681 return -1;
1682 }
1683 return 1;
1684 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001685#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001686 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001687 if (compat20 && c->wfd_isatty)
1688 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001689#endif
Damien Miller077b2382005-12-31 16:22:32 +11001690
1691 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001692 if (len < 0 &&
1693 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001694 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001695 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001696 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001697 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001698 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001699 return -1;
1700 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001701 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001702 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001703 c->type = SSH_CHANNEL_INPUT_DRAINING;
1704 } else {
1705 chan_write_failed(c);
1706 }
1707 return -1;
1708 }
Darren Tucker3980b632009-08-28 11:02:37 +10001709#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001710 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001711 if (tcgetattr(c->wfd, &tio) == 0 &&
1712 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1713 /*
1714 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001715 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001716 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001717 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001718 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001719 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001720 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001721 }
1722 }
Darren Tucker3980b632009-08-28 11:02:37 +10001723#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001724 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001725 if (compat20 && len > 0) {
1726 c->local_consumed += len;
1727 }
1728 }
1729 return 1;
1730}
Damien Miller4f7becb2006-03-26 14:10:14 +11001731
Ben Lindstrombba81212001-06-25 05:01:22 +00001732static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001733channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001734{
Darren Tucker11327cc2005-03-14 23:22:25 +11001735 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001736 int len;
1737
Damien Miller1383bd82000-04-06 12:32:37 +10001738/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001739 if (c->efd != -1) {
1740 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1741 FD_ISSET(c->efd, writeset) &&
1742 buffer_len(&c->extended) > 0) {
1743 len = write(c->efd, buffer_ptr(&c->extended),
1744 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001745 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001746 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001747 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1748 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001749 return 1;
1750 if (len <= 0) {
1751 debug2("channel %d: closing write-efd %d",
1752 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001753 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001754 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001755 buffer_consume(&c->extended, len);
1756 c->local_consumed += len;
1757 }
1758 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
Damien Millere42bd242007-01-29 10:16:28 +11001759 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001760 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001761 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001762 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001763 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1764 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001765 return 1;
1766 if (len <= 0) {
1767 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001768 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001769 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001770 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001771 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001772 }
Damien Miller33b13562000-04-04 14:38:59 +10001773 }
1774 }
1775 return 1;
1776}
Damien Miller4f7becb2006-03-26 14:10:14 +11001777
Damien Miller0e220db2004-06-15 10:34:08 +10001778static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001779channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001780{
Ben Lindstromb3921512001-04-11 15:57:50 +00001781 if (c->type == SSH_CHANNEL_OPEN &&
1782 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001783 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001784 c->local_maxpacket*3) ||
1785 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001786 c->local_consumed > 0) {
1787 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1788 packet_put_int(c->remote_id);
1789 packet_put_int(c->local_consumed);
1790 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001791 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001792 c->self, c->local_window,
1793 c->local_consumed);
1794 c->local_window += c->local_consumed;
1795 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001796 }
1797 return 1;
1798}
1799
Ben Lindstrombba81212001-06-25 05:01:22 +00001800static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001801channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001802{
1803 channel_handle_rfd(c, readset, writeset);
1804 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001805 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001806 return;
Damien Miller33b13562000-04-04 14:38:59 +10001807 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001808 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001809}
1810
Damien Millere1537f92010-01-26 13:26:22 +11001811static u_int
1812read_mux(Channel *c, u_int need)
1813{
1814 char buf[CHAN_RBUF];
1815 int len;
1816 u_int rlen;
1817
1818 if (buffer_len(&c->input) < need) {
1819 rlen = need - buffer_len(&c->input);
1820 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1821 if (len <= 0) {
1822 if (errno != EINTR && errno != EAGAIN) {
1823 debug2("channel %d: ctl read<=0 rfd %d len %d",
1824 c->self, c->rfd, len);
1825 chan_read_failed(c);
1826 return 0;
1827 }
1828 } else
1829 buffer_append(&c->input, buf, len);
1830 }
1831 return buffer_len(&c->input);
1832}
1833
1834static void
1835channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1836{
1837 u_int need;
1838 ssize_t len;
1839
1840 if (!compat20)
1841 fatal("%s: entered with !compat20", __func__);
1842
1843 if (c->rfd != -1 && FD_ISSET(c->rfd, readset) &&
1844 (c->istate == CHAN_INPUT_OPEN ||
1845 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1846 /*
1847 * Don't not read past the precise end of packets to
1848 * avoid disrupting fd passing.
1849 */
1850 if (read_mux(c, 4) < 4) /* read header */
1851 return;
1852 need = get_u32(buffer_ptr(&c->input));
1853#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1854 if (need > CHANNEL_MUX_MAX_PACKET) {
1855 debug2("channel %d: packet too big %u > %u",
1856 c->self, CHANNEL_MUX_MAX_PACKET, need);
1857 chan_rcvd_oclose(c);
1858 return;
1859 }
1860 if (read_mux(c, need + 4) < need + 4) /* read body */
1861 return;
1862 if (c->mux_rcb(c) != 0) {
1863 debug("channel %d: mux_rcb failed", c->self);
1864 chan_mark_dead(c);
1865 return;
1866 }
1867 }
1868
1869 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1870 buffer_len(&c->output) > 0) {
1871 len = write(c->wfd, buffer_ptr(&c->output),
1872 buffer_len(&c->output));
1873 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1874 return;
1875 if (len <= 0) {
1876 chan_mark_dead(c);
1877 return;
1878 }
1879 buffer_consume(&c->output, len);
1880 }
1881}
1882
1883static void
1884channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1885{
1886 Channel *nc;
1887 struct sockaddr_storage addr;
1888 socklen_t addrlen;
1889 int newsock;
1890 uid_t euid;
1891 gid_t egid;
1892
1893 if (!FD_ISSET(c->sock, readset))
1894 return;
1895
1896 debug("multiplexing control connection");
1897
1898 /*
1899 * Accept connection on control socket
1900 */
1901 memset(&addr, 0, sizeof(addr));
1902 addrlen = sizeof(addr);
1903 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1904 &addrlen)) == -1) {
1905 error("%s accept: %s", __func__, strerror(errno));
1906 return;
1907 }
1908
1909 if (getpeereid(newsock, &euid, &egid) < 0) {
1910 error("%s getpeereid failed: %s", __func__,
1911 strerror(errno));
1912 close(newsock);
1913 return;
1914 }
1915 if ((euid != 0) && (getuid() != euid)) {
1916 error("multiplex uid mismatch: peer euid %u != uid %u",
1917 (u_int)euid, (u_int)getuid());
1918 close(newsock);
1919 return;
1920 }
1921 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1922 newsock, newsock, -1, c->local_window_max,
1923 c->local_maxpacket, 0, "mux-control", 1);
1924 nc->mux_rcb = c->mux_rcb;
1925 debug3("%s: new mux channel %d fd %d", __func__,
1926 nc->self, nc->sock);
1927 /* establish state */
1928 nc->mux_rcb(nc);
1929 /* mux state transitions must not elicit protocol messages */
1930 nc->flags |= CHAN_LOCAL;
1931}
1932
Damien Miller8473dd82006-07-24 14:08:32 +10001933/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001934static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001935channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001936{
1937 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001938
Damien Millerb38eff82000-04-01 11:09:21 +10001939 /* Send buffered output data to the socket. */
1940 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1941 len = write(c->sock, buffer_ptr(&c->output),
1942 buffer_len(&c->output));
1943 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001944 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001945 else
1946 buffer_consume(&c->output, len);
1947 }
1948}
1949
Ben Lindstrombba81212001-06-25 05:01:22 +00001950static void
Damien Miller33b13562000-04-04 14:38:59 +10001951channel_handler_init_20(void)
1952{
Damien Millerde6987c2002-01-22 23:20:40 +11001953 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001954 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001955 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001956 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001957 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001958 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001959 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001960 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001961 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1962 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001963
Damien Millerde6987c2002-01-22 23:20:40 +11001964 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001965 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001966 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001967 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001968 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001969 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001970 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001971 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1972 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001973}
1974
Ben Lindstrombba81212001-06-25 05:01:22 +00001975static void
Damien Millerb38eff82000-04-01 11:09:21 +10001976channel_handler_init_13(void)
1977{
1978 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1979 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1980 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1981 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1982 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1983 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1984 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001985 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001986 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001987
Damien Millerde6987c2002-01-22 23:20:40 +11001988 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001989 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1990 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1991 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1992 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001993 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001994 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001995}
1996
Ben Lindstrombba81212001-06-25 05:01:22 +00001997static void
Damien Millerb38eff82000-04-01 11:09:21 +10001998channel_handler_init_15(void)
1999{
Damien Millerde6987c2002-01-22 23:20:40 +11002000 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002001 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002002 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2003 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2004 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002005 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002006 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002007
2008 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2009 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2010 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002011 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002012 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002013 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002014}
2015
Ben Lindstrombba81212001-06-25 05:01:22 +00002016static void
Damien Millerb38eff82000-04-01 11:09:21 +10002017channel_handler_init(void)
2018{
2019 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002020
Damien Miller9f0f5c62001-12-21 14:45:46 +11002021 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002022 channel_pre[i] = NULL;
2023 channel_post[i] = NULL;
2024 }
Damien Miller33b13562000-04-04 14:38:59 +10002025 if (compat20)
2026 channel_handler_init_20();
2027 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002028 channel_handler_init_13();
2029 else
2030 channel_handler_init_15();
2031}
2032
Damien Miller3ec27592001-10-12 11:35:04 +10002033/* gc dead channels */
2034static void
2035channel_garbage_collect(Channel *c)
2036{
2037 if (c == NULL)
2038 return;
2039 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002040 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002041 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002042 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002043 c->detach_user(c->self, NULL);
2044 /* if we still have a callback */
2045 if (c->detach_user != NULL)
2046 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002047 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002048 }
2049 if (!chan_is_dead(c, 1))
2050 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002051 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002052 channel_free(c);
2053}
2054
Ben Lindstrombba81212001-06-25 05:01:22 +00002055static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002056channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002057{
2058 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002059 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002060 Channel *c;
2061
2062 if (!did_init) {
2063 channel_handler_init();
2064 did_init = 1;
2065 }
Darren Tucker876045b2010-01-08 17:08:00 +11002066 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002067 c = channels[i];
2068 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002069 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002070 if (c->delayed) {
2071 if (ftab == channel_pre)
2072 c->delayed = 0;
2073 else
2074 continue;
2075 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00002076 if (ftab[c->type] != NULL)
2077 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10002078 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002079 }
2080}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002081
Ben Lindstrome9c99912001-06-09 00:41:05 +00002082/*
2083 * Allocate/update select bitmasks and add any bits relevant to channels in
2084 * select bitmasks.
2085 */
Damien Miller4af51302000-04-16 11:18:38 +10002086void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002087channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002088 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002089{
Damien Miller36812092006-03-26 14:22:47 +11002090 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002091
2092 n = MAX(*maxfdp, channel_max_fd);
2093
Damien Miller36812092006-03-26 14:22:47 +11002094 nfdset = howmany(n+1, NFDBITS);
2095 /* Explicitly test here, because xrealloc isn't always called */
2096 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2097 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2098 sz = nfdset * sizeof(fd_mask);
2099
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002100 /* perhaps check sz < nalloc/2 and shrink? */
2101 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002102 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2103 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002104 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002105 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002106 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002107 memset(*readsetp, 0, sz);
2108 memset(*writesetp, 0, sz);
2109
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002110 if (!rekeying)
2111 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002112}
2113
Ben Lindstrome9c99912001-06-09 00:41:05 +00002114/*
2115 * After select, perform any appropriate operations for channels which have
2116 * events pending.
2117 */
Damien Miller4af51302000-04-16 11:18:38 +10002118void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002119channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002120{
Damien Millerb38eff82000-04-01 11:09:21 +10002121 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002122}
2123
Ben Lindstrome9c99912001-06-09 00:41:05 +00002124
Damien Miller5e953212001-01-30 09:14:00 +11002125/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002126void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002127channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002128{
Damien Millerb38eff82000-04-01 11:09:21 +10002129 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002130 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131
Damien Miller95def091999-11-25 00:26:21 +11002132 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002133 c = channels[i];
2134 if (c == NULL)
2135 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002136
Ben Lindstrome9c99912001-06-09 00:41:05 +00002137 /*
2138 * We are only interested in channels that can have buffered
2139 * incoming data.
2140 */
Damien Miller34132e52000-01-14 15:45:46 +11002141 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002142 if (c->type != SSH_CHANNEL_OPEN &&
2143 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002144 continue;
2145 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002146 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002147 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002148 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002149 if (compat20 &&
2150 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002151 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002152 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002153 continue;
2154 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002155
Damien Miller95def091999-11-25 00:26:21 +11002156 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002157 if ((c->istate == CHAN_INPUT_OPEN ||
2158 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2159 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002160 if (c->datagram) {
2161 if (len > 0) {
2162 u_char *data;
2163 u_int dlen;
2164
2165 data = buffer_get_string(&c->input,
2166 &dlen);
2167 packet_start(SSH2_MSG_CHANNEL_DATA);
2168 packet_put_int(c->remote_id);
2169 packet_put_string(data, dlen);
2170 packet_send();
2171 c->remote_window -= dlen + 4;
2172 xfree(data);
2173 }
2174 continue;
2175 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002176 /*
2177 * Send some data for the other side over the secure
2178 * connection.
2179 */
Damien Miller33b13562000-04-04 14:38:59 +10002180 if (compat20) {
2181 if (len > c->remote_window)
2182 len = c->remote_window;
2183 if (len > c->remote_maxpacket)
2184 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002185 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002186 if (packet_is_interactive()) {
2187 if (len > 1024)
2188 len = 512;
2189 } else {
2190 /* Keep the packets at reasonable size. */
2191 if (len > packet_get_maxsize()/2)
2192 len = packet_get_maxsize()/2;
2193 }
Damien Miller95def091999-11-25 00:26:21 +11002194 }
Damien Millerb38eff82000-04-01 11:09:21 +10002195 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002196 packet_start(compat20 ?
2197 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002198 packet_put_int(c->remote_id);
2199 packet_put_string(buffer_ptr(&c->input), len);
2200 packet_send();
2201 buffer_consume(&c->input, len);
2202 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002203 }
2204 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002205 if (compat13)
2206 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002207 /*
2208 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002209 * tell peer, that we will not send more data: send IEOF.
2210 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002211 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002212 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002213 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2214 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002215 else
2216 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002217 }
Damien Miller33b13562000-04-04 14:38:59 +10002218 /* Send extended data, i.e. stderr */
2219 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002220 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002221 c->remote_window > 0 &&
2222 (len = buffer_len(&c->extended)) > 0 &&
2223 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002224 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002225 c->self, c->remote_window, buffer_len(&c->extended),
2226 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002227 if (len > c->remote_window)
2228 len = c->remote_window;
2229 if (len > c->remote_maxpacket)
2230 len = c->remote_maxpacket;
2231 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2232 packet_put_int(c->remote_id);
2233 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2234 packet_put_string(buffer_ptr(&c->extended), len);
2235 packet_send();
2236 buffer_consume(&c->extended, len);
2237 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002238 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002239 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002241}
2242
Ben Lindstrome9c99912001-06-09 00:41:05 +00002243
2244/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002245
2246/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002247void
Damien Miller630d6f42002-01-22 23:17:30 +11002248channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002249{
Damien Miller34132e52000-01-14 15:45:46 +11002250 int id;
Damien Miller95def091999-11-25 00:26:21 +11002251 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002252 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002253 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002254
Damien Miller95def091999-11-25 00:26:21 +11002255 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002256 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002257 c = channel_lookup(id);
2258 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002259 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002260
Damien Miller95def091999-11-25 00:26:21 +11002261 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002262 if (c->type != SSH_CHANNEL_OPEN &&
2263 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002264 return;
2265
Damien Miller95def091999-11-25 00:26:21 +11002266 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002267 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002268
Damien Millera04ad492004-01-21 11:02:09 +11002269 /*
2270 * Ignore data for protocol > 1.3 if output end is no longer open.
2271 * For protocol 2 the sending side is reducing its window as it sends
2272 * data, so we must 'fake' consumption of the data in order to ensure
2273 * that window updates are sent back. Otherwise the connection might
2274 * deadlock.
2275 */
2276 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2277 if (compat20) {
2278 c->local_window -= data_len;
2279 c->local_consumed += data_len;
2280 }
Damien Millera04ad492004-01-21 11:02:09 +11002281 return;
2282 }
2283
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002284 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002285 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002286 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002287 c->self, data_len, c->local_maxpacket);
2288 }
2289 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002290 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002291 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002292 return;
2293 }
2294 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002295 }
Damien Millerd27b9472005-12-13 19:29:02 +11002296 if (c->datagram)
2297 buffer_put_string(&c->output, data, data_len);
2298 else
2299 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002300 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002301}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002302
Damien Millerd79b4242006-03-31 23:11:44 +11002303/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002304void
Damien Miller630d6f42002-01-22 23:17:30 +11002305channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002306{
2307 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002308 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002309 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002310 Channel *c;
2311
2312 /* Get the channel number and verify it. */
2313 id = packet_get_int();
2314 c = channel_lookup(id);
2315
2316 if (c == NULL)
2317 packet_disconnect("Received extended_data for bad channel %d.", id);
2318 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002319 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002320 return;
2321 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002322 if (c->flags & CHAN_EOF_RCVD) {
2323 if (datafellows & SSH_BUG_EXTEOF)
2324 debug("channel %d: accepting ext data after eof", id);
2325 else
2326 packet_disconnect("Received extended_data after EOF "
2327 "on channel %d.", id);
2328 }
Damien Miller33b13562000-04-04 14:38:59 +10002329 tcode = packet_get_int();
2330 if (c->efd == -1 ||
2331 c->extended_usage != CHAN_EXTENDED_WRITE ||
2332 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002333 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002334 return;
2335 }
2336 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002337 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002338 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002339 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002340 c->self, data_len, c->local_window);
2341 xfree(data);
2342 return;
2343 }
Damien Millerd3444942000-09-30 14:20:03 +11002344 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002345 c->local_window -= data_len;
2346 buffer_append(&c->extended, data, data_len);
2347 xfree(data);
2348}
2349
Damien Millerd79b4242006-03-31 23:11:44 +11002350/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002351void
Damien Miller630d6f42002-01-22 23:17:30 +11002352channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002353{
2354 int id;
2355 Channel *c;
2356
Damien Millerb38eff82000-04-01 11:09:21 +10002357 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002358 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002359 c = channel_lookup(id);
2360 if (c == NULL)
2361 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2362 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002363
2364 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002365 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002366 debug("channel %d: FORCE input drain", c->self);
2367 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002368 if (buffer_len(&c->input) == 0)
2369 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002370 }
2371
Damien Millerb38eff82000-04-01 11:09:21 +10002372}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002373
Damien Millerd79b4242006-03-31 23:11:44 +11002374/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002375void
Damien Miller630d6f42002-01-22 23:17:30 +11002376channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002377{
Damien Millerb38eff82000-04-01 11:09:21 +10002378 int id;
2379 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002380
Damien Millerb38eff82000-04-01 11:09:21 +10002381 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002382 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002383 c = channel_lookup(id);
2384 if (c == NULL)
2385 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002386
2387 /*
2388 * Send a confirmation that we have closed the channel and no more
2389 * data is coming for it.
2390 */
Damien Miller95def091999-11-25 00:26:21 +11002391 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002392 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002393 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002394
Damien Miller5428f641999-11-25 11:54:57 +11002395 /*
2396 * If the channel is in closed state, we have sent a close request,
2397 * and the other side will eventually respond with a confirmation.
2398 * Thus, we cannot free the channel here, because then there would be
2399 * no-one to receive the confirmation. The channel gets freed when
2400 * the confirmation arrives.
2401 */
Damien Millerb38eff82000-04-01 11:09:21 +10002402 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002403 /*
2404 * Not a closed channel - mark it as draining, which will
2405 * cause it to be freed later.
2406 */
Damien Miller76765c02002-01-22 23:21:15 +11002407 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002408 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002409 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002410}
2411
Damien Millerb38eff82000-04-01 11:09:21 +10002412/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002413/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002414void
Damien Miller630d6f42002-01-22 23:17:30 +11002415channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002416{
Damien Millerb38eff82000-04-01 11:09:21 +10002417 int id = packet_get_int();
2418 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002419
Damien Miller48b03fc2002-01-22 23:11:40 +11002420 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002421 if (c == NULL)
2422 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2423 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002424}
2425
Damien Millerd79b4242006-03-31 23:11:44 +11002426/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002427void
Damien Miller630d6f42002-01-22 23:17:30 +11002428channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002429{
2430 int id = packet_get_int();
2431 Channel *c = channel_lookup(id);
2432
Damien Miller48b03fc2002-01-22 23:11:40 +11002433 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002434 if (c == NULL)
2435 packet_disconnect("Received close confirmation for "
2436 "out-of-range channel %d.", id);
2437 if (c->type != SSH_CHANNEL_CLOSED)
2438 packet_disconnect("Received close confirmation for "
2439 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002440 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002441}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002442
Damien Millerd79b4242006-03-31 23:11:44 +11002443/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002444void
Damien Miller630d6f42002-01-22 23:17:30 +11002445channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002446{
Damien Millerb38eff82000-04-01 11:09:21 +10002447 int id, remote_id;
2448 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002449
Damien Millerb38eff82000-04-01 11:09:21 +10002450 id = packet_get_int();
2451 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002452
Damien Millerb38eff82000-04-01 11:09:21 +10002453 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2454 packet_disconnect("Received open confirmation for "
2455 "non-opening channel %d.", id);
2456 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002457 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002458 c->remote_id = remote_id;
2459 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002460
2461 if (compat20) {
2462 c->remote_window = packet_get_int();
2463 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002464 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002465 debug2("callback start");
Damien Millerb84886b2008-05-19 15:05:07 +10002466 c->open_confirm(c->self, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002467 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002468 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002469 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002470 c->remote_window, c->remote_maxpacket);
2471 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002472 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002473}
2474
Ben Lindstrombba81212001-06-25 05:01:22 +00002475static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002476reason2txt(int reason)
2477{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002478 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002479 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2480 return "administratively prohibited";
2481 case SSH2_OPEN_CONNECT_FAILED:
2482 return "connect failed";
2483 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2484 return "unknown channel type";
2485 case SSH2_OPEN_RESOURCE_SHORTAGE:
2486 return "resource shortage";
2487 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002488 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002489}
2490
Damien Millerd79b4242006-03-31 23:11:44 +11002491/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002492void
Damien Miller630d6f42002-01-22 23:17:30 +11002493channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002494{
Kevin Steves12057502001-02-05 14:54:34 +00002495 int id, reason;
2496 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002497 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002498
Damien Millerb38eff82000-04-01 11:09:21 +10002499 id = packet_get_int();
2500 c = channel_lookup(id);
2501
2502 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2503 packet_disconnect("Received open failure for "
2504 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002505 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002506 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002507 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002508 msg = packet_get_string(NULL);
2509 lang = packet_get_string(NULL);
2510 }
Damien Miller996acd22003-04-09 20:59:48 +10002511 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002512 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002513 if (msg != NULL)
2514 xfree(msg);
2515 if (lang != NULL)
2516 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002517 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002518 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002519 /* Schedule the channel for cleanup/deletion. */
2520 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002521}
2522
Damien Millerd79b4242006-03-31 23:11:44 +11002523/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002524void
Damien Miller630d6f42002-01-22 23:17:30 +11002525channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002526{
2527 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002528 int id;
2529 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002530
2531 if (!compat20)
2532 return;
2533
2534 /* Get the channel number and verify it. */
2535 id = packet_get_int();
2536 c = channel_lookup(id);
2537
Damien Millerd47c62a2005-12-13 19:33:57 +11002538 if (c == NULL) {
2539 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002540 return;
2541 }
2542 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002543 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002544 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002545 c->remote_window += adjust;
2546}
2547
Damien Millerd79b4242006-03-31 23:11:44 +11002548/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002549void
Damien Miller630d6f42002-01-22 23:17:30 +11002550channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002551{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002552 Channel *c = NULL;
2553 u_short host_port;
2554 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002555 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002556
Ben Lindstrome9c99912001-06-09 00:41:05 +00002557 remote_id = packet_get_int();
2558 host = packet_get_string(NULL);
2559 host_port = packet_get_int();
2560
2561 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2562 originator_string = packet_get_string(NULL);
2563 } else {
2564 originator_string = xstrdup("unknown (remote did not supply name)");
2565 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002566 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002567 c = channel_connect_to(host, host_port,
2568 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002569 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002570 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002571 if (c == NULL) {
2572 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2573 packet_put_int(remote_id);
2574 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002575 } else
2576 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002577}
2578
Damien Millerb84886b2008-05-19 15:05:07 +10002579/* ARGSUSED */
2580void
2581channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2582{
2583 Channel *c;
2584 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002585 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002586
2587 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002588 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002589
Damien Miller16a73072008-12-08 09:55:25 +11002590 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002591 packet_check_eom();
2592
Damien Miller16a73072008-12-08 09:55:25 +11002593 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002594
Damien Miller16a73072008-12-08 09:55:25 +11002595 if ((c = channel_lookup(id)) == NULL) {
2596 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002597 return;
2598 }
2599 ;
2600 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2601 return;
2602 cc->cb(type, c, cc->ctx);
2603 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2604 bzero(cc, sizeof(*cc));
2605 xfree(cc);
2606}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002607
Ben Lindstrome9c99912001-06-09 00:41:05 +00002608/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002609
Ben Lindstrom908afed2001-10-03 17:34:59 +00002610void
2611channel_set_af(int af)
2612{
2613 IPv4or6 = af;
2614}
2615
Damien Millerb16461c2002-01-22 23:29:22 +11002616static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002617channel_setup_fwd_listener(int type, const char *listen_addr,
2618 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002619 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002620{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002621 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002622 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002623 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002624 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002625 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002626 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002627
Damien Millerb16461c2002-01-22 23:29:22 +11002628 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2629 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002630 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002631
Damien Millerb16461c2002-01-22 23:29:22 +11002632 if (host == NULL) {
2633 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002634 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002635 }
Damien Miller9576ac42009-01-28 16:30:33 +11002636 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002637 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002638 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002639 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002640
Damien Miller5428f641999-11-25 11:54:57 +11002641 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002642 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002643 * specified address or wildcard. On the client, a specified bind
2644 * address will always override gateway_ports. On the server, a
2645 * gateway_ports of 1 (``yes'') will override the client's
2646 * specification and force a wildcard bind, whereas a value of 2
2647 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002648 * asked for.
2649 *
2650 * Special-case listen_addrs are:
2651 *
2652 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2653 * "" (empty string), "*" -> wildcard v4/v6
2654 * "localhost" -> loopback v4/v6
2655 */
2656 addr = NULL;
2657 if (listen_addr == NULL) {
2658 /* No address specified: default to gateway_ports setting */
2659 if (gateway_ports)
2660 wildcard = 1;
2661 } else if (gateway_ports || is_client) {
2662 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002663 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002664 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2665 (!is_client && gateway_ports == 1))
2666 wildcard = 1;
2667 else if (strcmp(listen_addr, "localhost") != 0)
2668 addr = listen_addr;
2669 }
2670
2671 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2672 type, wildcard, (addr == NULL) ? "NULL" : addr);
2673
2674 /*
Damien Miller34132e52000-01-14 15:45:46 +11002675 * getaddrinfo returns a loopback address if the hostname is
2676 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002677 */
Damien Miller34132e52000-01-14 15:45:46 +11002678 memset(&hints, 0, sizeof(hints));
2679 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002680 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002681 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002682 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002683 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2684 if (addr == NULL) {
2685 /* This really shouldn't happen */
2686 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002687 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002688 } else {
Damien Millera7270302005-07-06 09:36:05 +10002689 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002690 "getaddrinfo(%.64s): %s", addr,
2691 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002692 }
Damien Millera7270302005-07-06 09:36:05 +10002693 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002694 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002695 if (allocated_listen_port != NULL)
2696 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002697 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002698 switch (ai->ai_family) {
2699 case AF_INET:
2700 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2701 sin_port;
2702 break;
2703 case AF_INET6:
2704 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2705 sin6_port;
2706 break;
2707 default:
Damien Miller34132e52000-01-14 15:45:46 +11002708 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002709 }
2710 /*
2711 * If allocating a port for -R forwards, then use the
2712 * same port for all address families.
2713 */
2714 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2715 allocated_listen_port != NULL && *allocated_listen_port > 0)
2716 *lport_p = htons(*allocated_listen_port);
2717
Damien Miller34132e52000-01-14 15:45:46 +11002718 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2719 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002720 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002721 continue;
2722 }
2723 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002724 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002725 if (sock < 0) {
2726 /* this is no error since kernel may not support ipv6 */
2727 verbose("socket: %.100s", strerror(errno));
2728 continue;
2729 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002730
2731 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002732 if (ai->ai_family == AF_INET6)
2733 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002734
Damien Miller4bf648f2009-02-14 16:28:21 +11002735 debug("Local forwarding listening on %s port %s.",
2736 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002737
Damien Miller34132e52000-01-14 15:45:46 +11002738 /* Bind the socket to the address. */
2739 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2740 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002741 if (!ai->ai_next)
2742 error("bind: %.100s", strerror(errno));
2743 else
2744 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002745
Damien Miller34132e52000-01-14 15:45:46 +11002746 close(sock);
2747 continue;
2748 }
2749 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002750 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002751 error("listen: %.100s", strerror(errno));
2752 close(sock);
2753 continue;
2754 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002755
2756 /*
2757 * listen_port == 0 requests a dynamically allocated port -
2758 * record what we got.
2759 */
2760 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2761 allocated_listen_port != NULL &&
2762 *allocated_listen_port == 0) {
2763 *allocated_listen_port = get_sock_port(sock, 1);
2764 debug("Allocated listen port %d",
2765 *allocated_listen_port);
2766 }
2767
Damien Miller34132e52000-01-14 15:45:46 +11002768 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002769 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002770 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002771 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002772 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002773 c->host_port = port_to_connect;
2774 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002775 success = 1;
2776 }
2777 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002778 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002779 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002780 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002781 return success;
Damien Miller95def091999-11-25 00:26:21 +11002782}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002783
Darren Tuckere7066df2004-05-24 10:18:05 +10002784int
2785channel_cancel_rport_listener(const char *host, u_short port)
2786{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002787 u_int i;
2788 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002789
Darren Tucker47eede72005-03-14 23:08:12 +11002790 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002791 Channel *c = channels[i];
2792
2793 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002794 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002795 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002796 channel_free(c);
2797 found = 1;
2798 }
2799 }
2800
2801 return (found);
2802}
2803
Damien Millerb16461c2002-01-22 23:29:22 +11002804/* protocol local port fwd, used by ssh (and sshd in v1) */
2805int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002806channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002807 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2808{
2809 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002810 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002811 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002812}
2813
2814/* protocol v2 remote port fwd, used by sshd */
2815int
2816channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002817 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002818{
2819 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002820 listen_address, listen_port, allocated_listen_port,
2821 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002822}
2823
Damien Miller5428f641999-11-25 11:54:57 +11002824/*
2825 * Initiate forwarding of connections to port "port" on remote host through
2826 * the secure channel to host:port from local side.
2827 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002828
Darren Tuckere7d4b192006-07-12 22:17:10 +10002829int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002830channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002831 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002832{
Damien Millerdff50992002-01-22 23:16:32 +11002833 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002834
Damien Miller95def091999-11-25 00:26:21 +11002835 /* Record locally that connection to this host/port is permitted. */
2836 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2837 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002838
Damien Miller95def091999-11-25 00:26:21 +11002839 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002840 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002841 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002842 if (listen_host == NULL) {
2843 if (datafellows & SSH_BUG_RFWD_ADDR)
2844 address_to_bind = "127.0.0.1";
2845 else
2846 address_to_bind = "localhost";
2847 } else if (*listen_host == '\0' ||
2848 strcmp(listen_host, "*") == 0) {
2849 if (datafellows & SSH_BUG_RFWD_ADDR)
2850 address_to_bind = "0.0.0.0";
2851 else
2852 address_to_bind = "";
2853 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002854 address_to_bind = listen_host;
2855
Damien Miller33b13562000-04-04 14:38:59 +10002856 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2857 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002858 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002859 packet_put_cstring(address_to_bind);
2860 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002861 packet_send();
2862 packet_write_wait();
2863 /* Assume that server accepts the request */
2864 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002865 } else {
2866 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002867 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002868 packet_put_cstring(host_to_connect);
2869 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002870 packet_send();
2871 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002872
2873 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002874 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002875 switch (type) {
2876 case SSH_SMSG_SUCCESS:
2877 success = 1;
2878 break;
2879 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002880 break;
2881 default:
2882 /* Unknown packet */
2883 packet_disconnect("Protocol error for port forward request:"
2884 "received packet type %d.", type);
2885 }
2886 }
2887 if (success) {
2888 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2889 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2890 permitted_opens[num_permitted_opens].listen_port = listen_port;
2891 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002892 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002893 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002894}
2895
Damien Miller5428f641999-11-25 11:54:57 +11002896/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002897 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002898 * local side.
2899 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002900void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002901channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002902{
2903 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002904
2905 if (!compat20)
2906 return;
2907
2908 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002909 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002910 permitted_opens[i].listen_port == port)
2911 break;
2912 }
2913 if (i >= num_permitted_opens) {
2914 debug("%s: requested forward not found", __func__);
2915 return;
2916 }
2917 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2918 packet_put_cstring("cancel-tcpip-forward");
2919 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002920 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002921 packet_put_int(port);
2922 packet_send();
2923
2924 permitted_opens[i].listen_port = 0;
2925 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002926 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002927 permitted_opens[i].host_to_connect = NULL;
2928}
2929
2930/*
Damien Miller5428f641999-11-25 11:54:57 +11002931 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2932 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002933 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002934 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002935int
Damien Millere247cc42000-05-07 12:03:14 +10002936channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002937{
Damien Milleraae6c611999-12-06 11:47:28 +11002938 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002939 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002940 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002941
Damien Miller95def091999-11-25 00:26:21 +11002942 /* Get arguments from the packet. */
2943 port = packet_get_int();
2944 hostname = packet_get_string(NULL);
2945 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002946
Damien Millerbac2d8a2000-09-05 16:13:06 +11002947#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002948 /*
2949 * Check that an unprivileged user is not trying to forward a
2950 * privileged port.
2951 */
Damien Miller95def091999-11-25 00:26:21 +11002952 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002953 packet_disconnect(
2954 "Requested forwarding of port %d but user is not root.",
2955 port);
2956 if (host_port == 0)
2957 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002958#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002959
Damien Miller0bc1bd82000-11-13 22:57:25 +11002960 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002961 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002962 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002963
2964 /* Free the argument string. */
2965 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002966
2967 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002968}
2969
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002970/*
2971 * Permits opening to any host/port if permitted_opens[] is empty. This is
2972 * usually called by the server, because the user could connect to any port
2973 * anyway, and the server has no way to know but to trust the client anyway.
2974 */
2975void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002976channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002977{
2978 if (num_permitted_opens == 0)
2979 all_opens_permitted = 1;
2980}
2981
Ben Lindstroma3700052001-04-05 23:26:32 +00002982void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002983channel_add_permitted_opens(char *host, int port)
2984{
2985 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002986 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002987 debug("allow port forwarding to host %s port %d", host, port);
2988
2989 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2990 permitted_opens[num_permitted_opens].port_to_connect = port;
2991 num_permitted_opens++;
2992
2993 all_opens_permitted = 0;
2994}
2995
Damien Millera765cf42006-07-24 14:08:13 +10002996int
Damien Miller9b439df2006-07-24 14:04:00 +10002997channel_add_adm_permitted_opens(char *host, int port)
2998{
2999 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
3000 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10003001 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003002
3003 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3004 = xstrdup(host);
3005 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003006 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003007}
3008
3009void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003010channel_clear_permitted_opens(void)
3011{
3012 int i;
3013
3014 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003015 if (permitted_opens[i].host_to_connect != NULL)
3016 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003017 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003018}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003019
Damien Miller9b439df2006-07-24 14:04:00 +10003020void
3021channel_clear_adm_permitted_opens(void)
3022{
3023 int i;
3024
3025 for (i = 0; i < num_adm_permitted_opens; i++)
3026 if (permitted_adm_opens[i].host_to_connect != NULL)
3027 xfree(permitted_adm_opens[i].host_to_connect);
3028 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003029}
3030
Darren Tuckere7140f22008-06-10 23:01:51 +10003031void
3032channel_print_adm_permitted_opens(void)
3033{
Damien Miller6ef17492008-07-16 22:42:06 +10003034 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003035
Damien Millerb53d8a12009-01-28 16:13:04 +11003036 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003037 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003038 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003039 return;
3040 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003041 for (i = 0; i < num_adm_permitted_opens; i++)
3042 if (permitted_adm_opens[i].host_to_connect != NULL)
3043 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3044 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003045 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003046}
3047
Damien Millerbd740252008-05-19 15:37:09 +10003048/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003049static int
Damien Millerbd740252008-05-19 15:37:09 +10003050connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003051{
Damien Millerbd740252008-05-19 15:37:09 +10003052 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003053 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003054
Damien Millerbd740252008-05-19 15:37:09 +10003055 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3056 if (cctx->ai->ai_family != AF_INET &&
3057 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003058 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003059 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3060 ntop, sizeof(ntop), strport, sizeof(strport),
3061 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3062 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003063 continue;
3064 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003065 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3066 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003067 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003068 error("socket: %.100s", strerror(errno));
3069 else
3070 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003071 continue;
3072 }
Damien Miller232711f2004-06-15 10:35:30 +10003073 if (set_nonblock(sock) == -1)
3074 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003075 if (connect(sock, cctx->ai->ai_addr,
3076 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3077 debug("connect_next: host %.100s ([%.100s]:%s): "
3078 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003079 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003080 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003081 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003082 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003083 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003084 }
Damien Millerbd740252008-05-19 15:37:09 +10003085 debug("connect_next: host %.100s ([%.100s]:%s) "
3086 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3087 cctx->ai = cctx->ai->ai_next;
3088 set_nodelay(sock);
3089 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003090 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003091 return -1;
3092}
Damien Millerb38eff82000-04-01 11:09:21 +10003093
Damien Millerbd740252008-05-19 15:37:09 +10003094static void
3095channel_connect_ctx_free(struct channel_connect *cctx)
3096{
3097 xfree(cctx->host);
3098 if (cctx->aitop)
3099 freeaddrinfo(cctx->aitop);
3100 bzero(cctx, sizeof(*cctx));
3101 cctx->host = NULL;
3102 cctx->ai = cctx->aitop = NULL;
3103}
3104
3105/* Return CONNECTING channel to remote host, port */
3106static Channel *
3107connect_to(const char *host, u_short port, char *ctype, char *rname)
3108{
3109 struct addrinfo hints;
3110 int gaierr;
3111 int sock = -1;
3112 char strport[NI_MAXSERV];
3113 struct channel_connect cctx;
3114 Channel *c;
3115
Damien Miller2bcb8662008-07-12 17:12:29 +10003116 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003117 memset(&hints, 0, sizeof(hints));
3118 hints.ai_family = IPv4or6;
3119 hints.ai_socktype = SOCK_STREAM;
3120 snprintf(strport, sizeof strport, "%d", port);
3121 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3122 error("connect_to %.100s: unknown host (%s)", host,
3123 ssh_gai_strerror(gaierr));
3124 return NULL;
3125 }
3126
3127 cctx.host = xstrdup(host);
3128 cctx.port = port;
3129 cctx.ai = cctx.aitop;
3130
3131 if ((sock = connect_next(&cctx)) == -1) {
3132 error("connect to %.100s port %d failed: %s",
3133 host, port, strerror(errno));
3134 channel_connect_ctx_free(&cctx);
3135 return NULL;
3136 }
3137 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3138 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3139 c->connect_ctx = cctx;
3140 return c;
3141}
3142
3143Channel *
3144channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3145{
3146 int i;
3147
3148 for (i = 0; i < num_permitted_opens; i++) {
3149 if (permitted_opens[i].host_to_connect != NULL &&
3150 permitted_opens[i].listen_port == listen_port) {
3151 return connect_to(
3152 permitted_opens[i].host_to_connect,
3153 permitted_opens[i].port_to_connect, ctype, rname);
3154 }
3155 }
3156 error("WARNING: Server requests forwarding for unknown listen_port %d",
3157 listen_port);
3158 return NULL;
3159}
3160
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003161/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003162Channel *
3163channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003164{
Damien Miller9b439df2006-07-24 14:04:00 +10003165 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003166
3167 permit = all_opens_permitted;
3168 if (!permit) {
3169 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003170 if (permitted_opens[i].host_to_connect != NULL &&
3171 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003172 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3173 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003174 }
Damien Miller9b439df2006-07-24 14:04:00 +10003175
3176 if (num_adm_permitted_opens > 0) {
3177 permit_adm = 0;
3178 for (i = 0; i < num_adm_permitted_opens; i++)
3179 if (permitted_adm_opens[i].host_to_connect != NULL &&
3180 permitted_adm_opens[i].port_to_connect == port &&
3181 strcmp(permitted_adm_opens[i].host_to_connect, host)
3182 == 0)
3183 permit_adm = 1;
3184 }
3185
3186 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003187 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003188 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003189 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003190 }
Damien Millerbd740252008-05-19 15:37:09 +10003191 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003192}
3193
Damien Miller0e220db2004-06-15 10:34:08 +10003194void
3195channel_send_window_changes(void)
3196{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003197 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003198 struct winsize ws;
3199
3200 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003201 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003202 channels[i]->type != SSH_CHANNEL_OPEN)
3203 continue;
3204 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3205 continue;
3206 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003207 packet_put_int((u_int)ws.ws_col);
3208 packet_put_int((u_int)ws.ws_row);
3209 packet_put_int((u_int)ws.ws_xpixel);
3210 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003211 packet_send();
3212 }
3213}
3214
Ben Lindstrome9c99912001-06-09 00:41:05 +00003215/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003216
Damien Miller5428f641999-11-25 11:54:57 +11003217/*
3218 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003219 * Returns 0 and a suitable display number for the DISPLAY variable
3220 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003221 */
Kevin Steves366298c2001-12-19 17:58:01 +00003222int
Damien Miller95c249f2002-02-05 12:11:34 +11003223x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003224 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003225{
Damien Millere7378562001-12-21 14:58:35 +11003226 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003227 int display_number, sock;
3228 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003229 struct addrinfo hints, *ai, *aitop;
3230 char strport[NI_MAXSERV];
3231 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003232
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003233 if (chanids == NULL)
3234 return -1;
3235
Damien Millera34a28b1999-12-14 10:47:15 +11003236 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003237 display_number < MAX_DISPLAYS;
3238 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003239 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003240 memset(&hints, 0, sizeof(hints));
3241 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003242 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003243 hints.ai_socktype = SOCK_STREAM;
3244 snprintf(strport, sizeof strport, "%d", port);
3245 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003246 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003247 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003248 }
Damien Miller34132e52000-01-14 15:45:46 +11003249 for (ai = aitop; ai; ai = ai->ai_next) {
3250 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3251 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003252 sock = socket(ai->ai_family, ai->ai_socktype,
3253 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003254 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11003255 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11003256 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003257 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003258 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003259 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003260 debug("x11_create_display_inet: Socket family %d not supported",
3261 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003262 continue;
3263 }
Damien Miller34132e52000-01-14 15:45:46 +11003264 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003265 if (ai->ai_family == AF_INET6)
3266 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003267 if (x11_use_localhost)
3268 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003269 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003270 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003271 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003272
Damien Miller34132e52000-01-14 15:45:46 +11003273 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003274 close(socks[n]);
3275 }
3276 num_socks = 0;
3277 break;
3278 }
3279 socks[num_socks++] = sock;
3280 if (num_socks == NUM_SOCKS)
3281 break;
Damien Miller95def091999-11-25 00:26:21 +11003282 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003283 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003284 if (num_socks > 0)
3285 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003286 }
Damien Miller95def091999-11-25 00:26:21 +11003287 if (display_number >= MAX_DISPLAYS) {
3288 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003289 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003290 }
Damien Miller95def091999-11-25 00:26:21 +11003291 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003292 for (n = 0; n < num_socks; n++) {
3293 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003294 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003295 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003296 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003297 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003298 }
Damien Miller95def091999-11-25 00:26:21 +11003299 }
Damien Miller34132e52000-01-14 15:45:46 +11003300
Damien Miller34132e52000-01-14 15:45:46 +11003301 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003302 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003303 for (n = 0; n < num_socks; n++) {
3304 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003305 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003306 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3307 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003308 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003309 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003310 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003311 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003312 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003313
Kevin Steves366298c2001-12-19 17:58:01 +00003314 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003315 *display_numberp = display_number;
3316 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003317}
3318
Ben Lindstrombba81212001-06-25 05:01:22 +00003319static int
Damien Miller819dbb62009-01-21 16:46:26 +11003320connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003321{
Damien Miller95def091999-11-25 00:26:21 +11003322 int sock;
3323 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003324
Damien Miller3afe3752001-12-21 12:39:51 +11003325 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3326 if (sock < 0)
3327 error("socket: %.100s", strerror(errno));
3328 memset(&addr, 0, sizeof(addr));
3329 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003330 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003331 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003332 return sock;
3333 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003334 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3335 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003336}
3337
Damien Miller819dbb62009-01-21 16:46:26 +11003338static int
3339connect_local_xsocket(u_int dnr)
3340{
3341 char buf[1024];
3342 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3343 return connect_local_xsocket_path(buf);
3344}
3345
Damien Millerbd483e72000-04-30 10:00:53 +10003346int
3347x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348{
Damien Miller57c4e872006-03-31 23:11:07 +11003349 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003350 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003351 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003352 struct addrinfo hints, *ai, *aitop;
3353 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003354 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003355
Damien Miller95def091999-11-25 00:26:21 +11003356 /* Try to open a socket for the local X server. */
3357 display = getenv("DISPLAY");
3358 if (!display) {
3359 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003360 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003361 }
Damien Miller5428f641999-11-25 11:54:57 +11003362 /*
3363 * Now we decode the value of the DISPLAY variable and make a
3364 * connection to the real X server.
3365 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003366
Damien Miller819dbb62009-01-21 16:46:26 +11003367 /* Check if the display is from launchd. */
3368#ifdef __APPLE__
3369 if (strncmp(display, "/tmp/launch", 11) == 0) {
3370 sock = connect_local_xsocket_path(display);
3371 if (sock < 0)
3372 return -1;
3373
3374 /* OK, we now have a connection to the display. */
3375 return sock;
3376 }
3377#endif
Damien Miller5428f641999-11-25 11:54:57 +11003378 /*
3379 * Check if it is a unix domain socket. Unix domain displays are in
3380 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3381 */
Damien Miller95def091999-11-25 00:26:21 +11003382 if (strncmp(display, "unix:", 5) == 0 ||
3383 display[0] == ':') {
3384 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003385 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003386 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003387 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003388 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003389 }
3390 /* Create a socket. */
3391 sock = connect_local_xsocket(display_number);
3392 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003393 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003394
3395 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003396 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003397 }
Damien Miller5428f641999-11-25 11:54:57 +11003398 /*
3399 * Connect to an inet socket. The DISPLAY value is supposedly
3400 * hostname:d[.s], where hostname may also be numeric IP address.
3401 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003402 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003403 cp = strchr(buf, ':');
3404 if (!cp) {
3405 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003406 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003407 }
Damien Miller95def091999-11-25 00:26:21 +11003408 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003409 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003410 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003411 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003412 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003413 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003414 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003415
Damien Miller34132e52000-01-14 15:45:46 +11003416 /* Look up the host address */
3417 memset(&hints, 0, sizeof(hints));
3418 hints.ai_family = IPv4or6;
3419 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003420 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003421 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003422 error("%.100s: unknown host. (%s)", buf,
3423 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003424 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003425 }
Damien Miller34132e52000-01-14 15:45:46 +11003426 for (ai = aitop; ai; ai = ai->ai_next) {
3427 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003428 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003429 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003430 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003431 continue;
3432 }
3433 /* Connect it to the display. */
3434 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003435 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003436 6000 + display_number, strerror(errno));
3437 close(sock);
3438 continue;
3439 }
3440 /* Success */
3441 break;
Damien Miller34132e52000-01-14 15:45:46 +11003442 }
Damien Miller34132e52000-01-14 15:45:46 +11003443 freeaddrinfo(aitop);
3444 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003445 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003446 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003447 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003448 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003449 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003450 return sock;
3451}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003452
Damien Millerbd483e72000-04-30 10:00:53 +10003453/*
3454 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3455 * the remote channel number. We should do whatever we want, and respond
3456 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3457 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003458
Damien Miller8473dd82006-07-24 14:08:32 +10003459/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003460void
Damien Miller630d6f42002-01-22 23:17:30 +11003461x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003462{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003463 Channel *c = NULL;
3464 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003465 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003466
3467 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003468
3469 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003470
3471 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003472 remote_host = packet_get_string(NULL);
3473 } else {
3474 remote_host = xstrdup("unknown (remote did not supply name)");
3475 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003476 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003477
3478 /* Obtain a connection to the real X display. */
3479 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003480 if (sock != -1) {
3481 /* Allocate a channel for this connection. */
3482 c = channel_new("connected x11 socket",
3483 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3484 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003485 c->remote_id = remote_id;
3486 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003487 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003488 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003489 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003490 /* Send refusal to the remote host. */
3491 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003492 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003493 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003494 /* Send a confirmation to the remote host. */
3495 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003496 packet_put_int(remote_id);
3497 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003498 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003499 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003500}
3501
Damien Miller69b69aa2000-10-28 14:19:58 +11003502/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003503/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003504void
Damien Miller630d6f42002-01-22 23:17:30 +11003505deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003506{
3507 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003508
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003509 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003510 case SSH_SMSG_AGENT_OPEN:
3511 error("Warning: ssh server tried agent forwarding.");
3512 break;
3513 case SSH_SMSG_X11_OPEN:
3514 error("Warning: ssh server tried X11 forwarding.");
3515 break;
3516 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003517 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003518 break;
3519 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003520 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003521 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3522 packet_put_int(rchan);
3523 packet_send();
3524}
3525
Damien Miller5428f641999-11-25 11:54:57 +11003526/*
3527 * Requests forwarding of X11 connections, generates fake authentication
3528 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003529 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003530 */
Damien Miller4af51302000-04-16 11:18:38 +10003531void
Damien Miller17e7ed02005-06-17 12:54:33 +10003532x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003533 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003534{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003535 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003536 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003537 char *new_data;
3538 int screen_number;
3539 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003540 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003541
Damien Millerf92c0792005-07-06 09:45:26 +10003542 if (x11_saved_display == NULL)
3543 x11_saved_display = xstrdup(disp);
3544 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003545 error("x11_request_forwarding_with_spoofing: different "
3546 "$DISPLAY already forwarded");
3547 return;
3548 }
3549
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003550 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003551 if (cp)
3552 cp = strchr(cp, '.');
3553 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003554 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003555 else
3556 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003557
Damien Miller13390022005-07-06 09:44:19 +10003558 if (x11_saved_proto == NULL) {
3559 /* Save protocol name. */
3560 x11_saved_proto = xstrdup(proto);
3561 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003562 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003563 * of the same length.
3564 */
3565 x11_saved_data = xmalloc(data_len);
3566 x11_fake_data = xmalloc(data_len);
3567 for (i = 0; i < data_len; i++) {
3568 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3569 fatal("x11_request_forwarding: bad "
3570 "authentication data: %.100s", data);
3571 if (i % 4 == 0)
3572 rnd = arc4random();
3573 x11_saved_data[i] = value;
3574 x11_fake_data[i] = rnd & 0xff;
3575 rnd >>= 8;
3576 }
3577 x11_saved_data_len = data_len;
3578 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003579 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003580
Damien Miller95def091999-11-25 00:26:21 +11003581 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003582 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003583
Damien Miller95def091999-11-25 00:26:21 +11003584 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003585 if (compat20) {
3586 channel_request_start(client_session_id, "x11-req", 0);
3587 packet_put_char(0); /* XXX bool single connection */
3588 } else {
3589 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3590 }
3591 packet_put_cstring(proto);
3592 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003593 packet_put_int(screen_number);
3594 packet_send();
3595 packet_write_wait();
3596 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003597}
3598
Ben Lindstrome9c99912001-06-09 00:41:05 +00003599
3600/* -- agent forwarding */
3601
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003602/* Sends a message to the server to request authentication fd forwarding. */
3603
Damien Miller4af51302000-04-16 11:18:38 +10003604void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003605auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003606{
Damien Miller95def091999-11-25 00:26:21 +11003607 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3608 packet_send();
3609 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003610}