blob: fe08257df4da45ca741f6ed4bf2633e1aacfc1a3 [file] [log] [blame]
Damien Miller8853ca52010-06-26 10:00:14 +10001/* $OpenBSD: channels.c,v 1.306 2010/06/25 07:20:04 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 Miller232cfb12010-06-26 09:50:30 +1000117static ForwardPermission *permitted_opens = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000118
Damien Miller9b439df2006-07-24 14:04:00 +1000119/* List of all permitted host/port pairs to connect by the admin. */
Damien Miller232cfb12010-06-26 09:50:30 +1000120static ForwardPermission *permitted_adm_opens = NULL;
Damien Miller9b439df2006-07-24 14:04:00 +1000121
122/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000124
125/* Number of permitted host/port pair in the array permitted by the admin. */
126static int num_adm_permitted_opens = 0;
127
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;
Damien Millerd530f5f2010-05-21 14:57:10 +1000333 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100334 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000335 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100336 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000337 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000339
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000340static int
341channel_find_maxfd(void)
342{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000343 u_int i;
344 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000345 Channel *c;
346
347 for (i = 0; i < channels_alloc; i++) {
348 c = channels[i];
349 if (c != NULL) {
350 max = MAX(max, c->rfd);
351 max = MAX(max, c->wfd);
352 max = MAX(max, c->efd);
353 }
354 }
355 return max;
356}
357
358int
359channel_close_fd(int *fdp)
360{
361 int ret = 0, fd = *fdp;
362
363 if (fd != -1) {
364 ret = close(fd);
365 *fdp = -1;
366 if (fd == channel_max_fd)
367 channel_max_fd = channel_find_maxfd();
368 }
369 return ret;
370}
371
Damien Miller6f83b8e2000-05-02 09:23:45 +1000372/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000374channel_close_fds(Channel *c)
375{
Damien Millere1537f92010-01-26 13:26:22 +1100376 debug3("channel %d: close_fds r %d w %d e %d",
377 c->self, c->rfd, c->wfd, c->efd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000378
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000379 channel_close_fd(&c->sock);
380 channel_close_fd(&c->rfd);
381 channel_close_fd(&c->wfd);
382 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000383}
384
385/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000386void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000387channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000389 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000390 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000391 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000392
393 for (n = 0, i = 0; i < channels_alloc; i++)
394 if (channels[i])
395 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000396 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000397 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000398
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000399 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000400 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000401 xfree(s);
402
Damien Miller6f83b8e2000-05-02 09:23:45 +1000403 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000404 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000405 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 buffer_free(&c->input);
407 buffer_free(&c->output);
408 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000409 if (c->remote_name) {
410 xfree(c->remote_name);
411 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100412 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100413 if (c->path) {
414 xfree(c->path);
415 c->path = NULL;
416 }
Damien Millerb84886b2008-05-19 15:05:07 +1000417 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
418 if (cc->abandon_cb != NULL)
419 cc->abandon_cb(c, cc->ctx);
420 TAILQ_REMOVE(&c->status_confirms, cc, entry);
421 bzero(cc, sizeof(*cc));
422 xfree(cc);
423 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000424 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
425 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000426 channels[c->self] = NULL;
427 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428}
429
Ben Lindstrome9c99912001-06-09 00:41:05 +0000430void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000431channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000432{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000433 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000434
Ben Lindstrom601e4362001-06-21 03:19:23 +0000435 for (i = 0; i < channels_alloc; i++)
436 if (channels[i] != NULL)
437 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000438}
439
440/*
441 * Closes the sockets/fds of all channels. This is used to close extra file
442 * descriptors after a fork.
443 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000444void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000445channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000446{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000447 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000448
449 for (i = 0; i < channels_alloc; i++)
450 if (channels[i] != NULL)
451 channel_close_fds(channels[i]);
452}
453
454/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000455 * Stop listening to channels.
456 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000457void
458channel_stop_listening(void)
459{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000460 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000461 Channel *c;
462
463 for (i = 0; i < channels_alloc; i++) {
464 c = channels[i];
465 if (c != NULL) {
466 switch (c->type) {
467 case SSH_CHANNEL_AUTH_SOCKET:
468 case SSH_CHANNEL_PORT_LISTENER:
469 case SSH_CHANNEL_RPORT_LISTENER:
470 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000471 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000472 channel_free(c);
473 break;
474 }
475 }
476 }
477}
478
479/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480 * Returns true if no channel has too much buffered data, and false if one or
481 * more channel is overfull.
482 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000483int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000484channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000485{
486 u_int i;
487 Channel *c;
488
489 for (i = 0; i < channels_alloc; i++) {
490 c = channels[i];
491 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000492#if 0
493 if (!compat20 &&
494 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100495 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000496 c->self, buffer_len(&c->input));
497 return 0;
498 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000499#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000500 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000501 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000502 c->self, buffer_len(&c->output),
503 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000504 return 0;
505 }
506 }
507 }
508 return 1;
509}
510
511/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000512int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000513channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000514{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000515 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000516 Channel *c;
517
518 for (i = 0; i < channels_alloc; i++) {
519 c = channels[i];
520 if (c == NULL)
521 continue;
522 switch (c->type) {
523 case SSH_CHANNEL_X11_LISTENER:
524 case SSH_CHANNEL_PORT_LISTENER:
525 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100526 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000527 case SSH_CHANNEL_CLOSED:
528 case SSH_CHANNEL_AUTH_SOCKET:
529 case SSH_CHANNEL_DYNAMIC:
530 case SSH_CHANNEL_CONNECTING:
531 case SSH_CHANNEL_ZOMBIE:
532 continue;
533 case SSH_CHANNEL_LARVAL:
534 if (!compat20)
535 fatal("cannot happen: SSH_CHANNEL_LARVAL");
536 continue;
537 case SSH_CHANNEL_OPENING:
538 case SSH_CHANNEL_OPEN:
539 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100540 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000541 return 1;
542 case SSH_CHANNEL_INPUT_DRAINING:
543 case SSH_CHANNEL_OUTPUT_DRAINING:
544 if (!compat13)
545 fatal("cannot happen: OUT_DRAIN");
546 return 1;
547 default:
548 fatal("channel_still_open: bad channel type %d", c->type);
549 /* NOTREACHED */
550 }
551 }
552 return 0;
553}
554
555/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000556int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000557channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000558{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000559 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000560 Channel *c;
561
562 for (i = 0; i < channels_alloc; i++) {
563 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000564 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000565 continue;
566 switch (c->type) {
567 case SSH_CHANNEL_CLOSED:
568 case SSH_CHANNEL_DYNAMIC:
569 case SSH_CHANNEL_X11_LISTENER:
570 case SSH_CHANNEL_PORT_LISTENER:
571 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100572 case SSH_CHANNEL_MUX_LISTENER:
573 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000574 case SSH_CHANNEL_OPENING:
575 case SSH_CHANNEL_CONNECTING:
576 case SSH_CHANNEL_ZOMBIE:
577 continue;
578 case SSH_CHANNEL_LARVAL:
579 case SSH_CHANNEL_AUTH_SOCKET:
580 case SSH_CHANNEL_OPEN:
581 case SSH_CHANNEL_X11_OPEN:
582 return i;
583 case SSH_CHANNEL_INPUT_DRAINING:
584 case SSH_CHANNEL_OUTPUT_DRAINING:
585 if (!compat13)
586 fatal("cannot happen: OUT_DRAIN");
587 return i;
588 default:
589 fatal("channel_find_open: bad channel type %d", c->type);
590 /* NOTREACHED */
591 }
592 }
593 return -1;
594}
595
596
597/*
598 * Returns a message describing the currently open forwarded connections,
599 * suitable for sending to the client. The message contains crlf pairs for
600 * newlines.
601 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000602char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000603channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000604{
605 Buffer buffer;
606 Channel *c;
607 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000608 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000609
610 buffer_init(&buffer);
611 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
612 buffer_append(&buffer, buf, strlen(buf));
613 for (i = 0; i < channels_alloc; i++) {
614 c = channels[i];
615 if (c == NULL)
616 continue;
617 switch (c->type) {
618 case SSH_CHANNEL_X11_LISTENER:
619 case SSH_CHANNEL_PORT_LISTENER:
620 case SSH_CHANNEL_RPORT_LISTENER:
621 case SSH_CHANNEL_CLOSED:
622 case SSH_CHANNEL_AUTH_SOCKET:
623 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100624 case SSH_CHANNEL_MUX_CLIENT:
625 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000626 continue;
627 case SSH_CHANNEL_LARVAL:
628 case SSH_CHANNEL_OPENING:
629 case SSH_CHANNEL_CONNECTING:
630 case SSH_CHANNEL_DYNAMIC:
631 case SSH_CHANNEL_OPEN:
632 case SSH_CHANNEL_X11_OPEN:
633 case SSH_CHANNEL_INPUT_DRAINING:
634 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000635 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100636 " #%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 +0000637 c->self, c->remote_name,
638 c->type, c->remote_id,
639 c->istate, buffer_len(&c->input),
640 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100641 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000642 buffer_append(&buffer, buf, strlen(buf));
643 continue;
644 default:
645 fatal("channel_open_message: bad channel type %d", c->type);
646 /* NOTREACHED */
647 }
648 }
649 buffer_append(&buffer, "\0", 1);
650 cp = xstrdup(buffer_ptr(&buffer));
651 buffer_free(&buffer);
652 return cp;
653}
654
655void
656channel_send_open(int id)
657{
658 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000659
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000661 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 return;
663 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000664 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 packet_start(SSH2_MSG_CHANNEL_OPEN);
666 packet_put_cstring(c->ctype);
667 packet_put_int(c->self);
668 packet_put_int(c->local_window);
669 packet_put_int(c->local_maxpacket);
670 packet_send();
671}
672
673void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000674channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000676 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000677
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000679 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 return;
681 }
Damien Miller0e220db2004-06-15 10:34:08 +1000682 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683 packet_start(SSH2_MSG_CHANNEL_REQUEST);
684 packet_put_int(c->remote_id);
685 packet_put_cstring(service);
686 packet_put_char(wantconfirm);
687}
Damien Miller4f7becb2006-03-26 14:10:14 +1100688
Ben Lindstrome9c99912001-06-09 00:41:05 +0000689void
Damien Millerb84886b2008-05-19 15:05:07 +1000690channel_register_status_confirm(int id, channel_confirm_cb *cb,
691 channel_confirm_abandon_cb *abandon_cb, void *ctx)
692{
693 struct channel_confirm *cc;
694 Channel *c;
695
696 if ((c = channel_lookup(id)) == NULL)
697 fatal("channel_register_expect: %d: bad id", id);
698
699 cc = xmalloc(sizeof(*cc));
700 cc->cb = cb;
701 cc->abandon_cb = abandon_cb;
702 cc->ctx = ctx;
703 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
704}
705
706void
Damien Millerd530f5f2010-05-21 14:57:10 +1000707channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708{
709 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000710
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100712 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000713 return;
714 }
Damien Millerb84886b2008-05-19 15:05:07 +1000715 c->open_confirm = fn;
716 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000717}
Damien Miller4f7becb2006-03-26 14:10:14 +1100718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719void
Damien Miller39eda6e2005-11-05 14:52:50 +1100720channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721{
Damien Millerd47c62a2005-12-13 19:33:57 +1100722 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000723
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000725 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000726 return;
727 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000728 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100729 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000730}
Damien Miller4f7becb2006-03-26 14:10:14 +1100731
Ben Lindstrome9c99912001-06-09 00:41:05 +0000732void
733channel_cancel_cleanup(int id)
734{
Damien Millerd47c62a2005-12-13 19:33:57 +1100735 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000736
Ben Lindstrome9c99912001-06-09 00:41:05 +0000737 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000738 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000739 return;
740 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000741 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100742 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000743}
Damien Miller4f7becb2006-03-26 14:10:14 +1100744
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745void
Damien Miller077b2382005-12-31 16:22:32 +1100746channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000747 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748{
749 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000750
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000752 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000753 return;
754 }
Damien Miller077b2382005-12-31 16:22:32 +1100755 c->input_filter = ifn;
756 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000757 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000758 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000759}
760
761void
762channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000763 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764{
765 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000766
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
768 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000769 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100771 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000772 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
773 packet_put_int(c->remote_id);
774 packet_put_int(c->local_window);
775 packet_send();
776}
777
Damien Miller5428f641999-11-25 11:54:57 +1100778/*
Damien Millerb38eff82000-04-01 11:09:21 +1000779 * 'channel_pre*' are called just before select() to add any bits relevant to
780 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100781 */
Damien Millerb38eff82000-04-01 11:09:21 +1000782/*
783 * 'channel_post*': perform any appropriate operations for channels which
784 * have events pending.
785 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100786typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000787chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
788chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
789
Damien Miller8473dd82006-07-24 14:08:32 +1000790/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000791static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100792channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000793{
794 FD_SET(c->sock, readset);
795}
796
Damien Miller8473dd82006-07-24 14:08:32 +1000797/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000798static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100799channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000800{
801 debug3("channel %d: waiting for connection", c->self);
802 FD_SET(c->sock, writeset);
803}
804
Ben Lindstrombba81212001-06-25 05:01:22 +0000805static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100806channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000807{
808 if (buffer_len(&c->input) < packet_get_maxsize())
809 FD_SET(c->sock, readset);
810 if (buffer_len(&c->output) > 0)
811 FD_SET(c->sock, writeset);
812}
813
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100815channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000816{
Damien Millerde6987c2002-01-22 23:20:40 +1100817 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000818
Damien Miller33b13562000-04-04 14:38:59 +1000819 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100820 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000821 buffer_len(&c->input) < limit &&
822 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000823 FD_SET(c->rfd, readset);
824 if (c->ostate == CHAN_OUTPUT_OPEN ||
825 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
826 if (buffer_len(&c->output) > 0) {
827 FD_SET(c->wfd, writeset);
828 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000829 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000830 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
831 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000832 else
833 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000834 }
835 }
836 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000837 if (compat20 && c->efd != -1 &&
838 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000839 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
840 buffer_len(&c->extended) > 0)
841 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000842 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
843 (c->extended_usage == CHAN_EXTENDED_READ ||
844 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000845 buffer_len(&c->extended) < c->remote_window)
846 FD_SET(c->efd, readset);
847 }
Damien Miller0e220db2004-06-15 10:34:08 +1000848 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000849}
850
Damien Miller8473dd82006-07-24 14:08:32 +1000851/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000852static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100853channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000854{
855 if (buffer_len(&c->input) == 0) {
856 packet_start(SSH_MSG_CHANNEL_CLOSE);
857 packet_put_int(c->remote_id);
858 packet_send();
859 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000860 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000861 }
862}
863
Damien Miller8473dd82006-07-24 14:08:32 +1000864/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000865static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100866channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000867{
868 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000869 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000870 else
Damien Millerb38eff82000-04-01 11:09:21 +1000871 FD_SET(c->sock, writeset);
872}
873
874/*
875 * This is a special state for X11 authentication spoofing. An opened X11
876 * connection (when authentication spoofing is being done) remains in this
877 * state until the first packet has been completely read. The authentication
878 * data in that packet is then substituted by the real data if it matches the
879 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000880 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000881 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000882 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000883static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000884x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000885{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000886 u_char *ucp;
887 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000888
889 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000890 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000891 return 0;
892
893 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100894 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000895 if (ucp[0] == 0x42) { /* Byte order MSB first. */
896 proto_len = 256 * ucp[6] + ucp[7];
897 data_len = 256 * ucp[8] + ucp[9];
898 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
899 proto_len = ucp[6] + 256 * ucp[7];
900 data_len = ucp[8] + 256 * ucp[9];
901 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000902 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100903 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000904 return -1;
905 }
906
907 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000908 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000909 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
910 return 0;
911
912 /* Check if authentication protocol matches. */
913 if (proto_len != strlen(x11_saved_proto) ||
914 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000915 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000916 return -1;
917 }
918 /* Check if authentication data matches our fake data. */
919 if (data_len != x11_fake_data_len ||
920 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
921 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000922 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000923 return -1;
924 }
925 /* Check fake data length */
926 if (x11_fake_data_len != x11_saved_data_len) {
927 error("X11 fake_data_len %d != saved_data_len %d",
928 x11_fake_data_len, x11_saved_data_len);
929 return -1;
930 }
931 /*
932 * Received authentication protocol and data match
933 * our fake data. Substitute the fake data with real
934 * data.
935 */
936 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
937 x11_saved_data, x11_saved_data_len);
938 return 1;
939}
940
Ben Lindstrombba81212001-06-25 05:01:22 +0000941static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100942channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000943{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000944 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000945
Damien Millerb38eff82000-04-01 11:09:21 +1000946 if (ret == 1) {
947 /* Start normal processing for the channel. */
948 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000949 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000950 } else if (ret == -1) {
951 /*
952 * We have received an X11 connection that has bad
953 * authentication information.
954 */
Damien Miller996acd22003-04-09 20:59:48 +1000955 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000956 buffer_clear(&c->input);
957 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000958 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000959 c->sock = -1;
960 c->type = SSH_CHANNEL_CLOSED;
961 packet_start(SSH_MSG_CHANNEL_CLOSE);
962 packet_put_int(c->remote_id);
963 packet_send();
964 }
965}
966
Ben Lindstrombba81212001-06-25 05:01:22 +0000967static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100968channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000969{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000970 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000971
972 /* c->force_drain = 1; */
973
Damien Millerb38eff82000-04-01 11:09:21 +1000974 if (ret == 1) {
975 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100976 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000977 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000978 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000979 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100980 chan_read_failed(c);
981 buffer_clear(&c->input);
982 chan_ibuf_empty(c);
983 buffer_clear(&c->output);
984 /* for proto v1, the peer will send an IEOF */
985 if (compat20)
986 chan_write_failed(c);
987 else
988 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000989 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000990 }
991}
992
Damien Millere1537f92010-01-26 13:26:22 +1100993static void
994channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
995{
Damien Millerd530f5f2010-05-21 14:57:10 +1000996 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +1100997 buffer_check_alloc(&c->input, CHAN_RBUF))
998 FD_SET(c->rfd, readset);
999 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1000 /* clear buffer immediately (discard any partial packet) */
1001 buffer_clear(&c->input);
1002 chan_ibuf_empty(c);
1003 /* Start output drain. XXX just kill chan? */
1004 chan_rcvd_oclose(c);
1005 }
1006 if (c->ostate == CHAN_OUTPUT_OPEN ||
1007 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1008 if (buffer_len(&c->output) > 0)
1009 FD_SET(c->wfd, writeset);
1010 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1011 chan_obuf_empty(c);
1012 }
1013}
1014
Ben Lindstromb3921512001-04-11 15:57:50 +00001015/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001016/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001017static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001018channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001019{
Damien Millera10f5612002-09-12 09:49:15 +10001020 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001021 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001022 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001023 struct {
1024 u_int8_t version;
1025 u_int8_t command;
1026 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001027 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001028 } s4_req, s4_rsp;
1029
Ben Lindstromb3921512001-04-11 15:57:50 +00001030 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001031
1032 have = buffer_len(&c->input);
1033 len = sizeof(s4_req);
1034 if (have < len)
1035 return 0;
1036 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001037
1038 need = 1;
1039 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1040 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1041 debug2("channel %d: socks4a request", c->self);
1042 /* ... and needs an extra string (the hostname) */
1043 need = 2;
1044 }
1045 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001046 for (found = 0, i = len; i < have; i++) {
1047 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001048 found++;
1049 if (found == need)
1050 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001051 }
1052 if (i > 1024) {
1053 /* the peer is probably sending garbage */
1054 debug("channel %d: decode socks4: too long",
1055 c->self);
1056 return -1;
1057 }
1058 }
Damien Miller1781f532009-01-28 16:24:41 +11001059 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001060 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001061 buffer_get(&c->input, (char *)&s4_req.version, 1);
1062 buffer_get(&c->input, (char *)&s4_req.command, 1);
1063 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001064 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001065 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001066 p = buffer_ptr(&c->input);
1067 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001068 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001069 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001070 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001071 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001072 c->self, len, have);
1073 strlcpy(username, p, sizeof(username));
1074 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001075
Damien Millera1c1b6c2009-01-28 16:29:49 +11001076 if (c->path != NULL) {
1077 xfree(c->path);
1078 c->path = NULL;
1079 }
Damien Miller1781f532009-01-28 16:24:41 +11001080 if (need == 1) { /* SOCKS4: one string */
1081 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001082 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001083 } else { /* SOCKS4A: two strings */
1084 have = buffer_len(&c->input);
1085 p = buffer_ptr(&c->input);
1086 len = strlen(p);
1087 debug2("channel %d: decode socks4a: host %s/%d",
1088 c->self, p, len);
1089 len++; /* trailing '\0' */
1090 if (len > have)
1091 fatal("channel %d: decode socks4a: len %d > have %d",
1092 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001093 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001094 error("channel %d: hostname \"%.100s\" too long",
1095 c->self, p);
1096 return -1;
1097 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001098 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001099 buffer_consume(&c->input, len);
1100 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001101 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001102
Damien Millerfbdeece2003-09-02 22:52:31 +10001103 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001104 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001105
Ben Lindstromb3921512001-04-11 15:57:50 +00001106 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001107 debug("channel %d: cannot handle: %s cn %d",
1108 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001109 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001110 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001111 s4_rsp.version = 0; /* vn: 0 for reply */
1112 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001113 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001114 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001115 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001116 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001117}
1118
Darren Tucker46471c92003-07-03 13:55:19 +10001119/* try to decode a socks5 header */
1120#define SSH_SOCKS5_AUTHDONE 0x1000
1121#define SSH_SOCKS5_NOAUTH 0x00
1122#define SSH_SOCKS5_IPV4 0x01
1123#define SSH_SOCKS5_DOMAIN 0x03
1124#define SSH_SOCKS5_IPV6 0x04
1125#define SSH_SOCKS5_CONNECT 0x01
1126#define SSH_SOCKS5_SUCCESS 0x00
1127
Damien Miller8473dd82006-07-24 14:08:32 +10001128/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001129static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001130channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001131{
1132 struct {
1133 u_int8_t version;
1134 u_int8_t command;
1135 u_int8_t reserved;
1136 u_int8_t atyp;
1137 } s5_req, s5_rsp;
1138 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001139 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001140 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001141
1142 debug2("channel %d: decode socks5", c->self);
1143 p = buffer_ptr(&c->input);
1144 if (p[0] != 0x05)
1145 return -1;
1146 have = buffer_len(&c->input);
1147 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1148 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001149 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001150 return 0;
1151 nmethods = p[1];
1152 if (have < nmethods + 2)
1153 return 0;
1154 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001155 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001156 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001157 found = 1;
1158 break;
1159 }
1160 }
1161 if (!found) {
1162 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1163 c->self);
1164 return -1;
1165 }
1166 buffer_consume(&c->input, nmethods + 2);
1167 buffer_put_char(&c->output, 0x05); /* version */
1168 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1169 FD_SET(c->sock, writeset);
1170 c->flags |= SSH_SOCKS5_AUTHDONE;
1171 debug2("channel %d: socks5 auth done", c->self);
1172 return 0; /* need more */
1173 }
1174 debug2("channel %d: socks5 post auth", c->self);
1175 if (have < sizeof(s5_req)+1)
1176 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001177 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001178 if (s5_req.version != 0x05 ||
1179 s5_req.command != SSH_SOCKS5_CONNECT ||
1180 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001181 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001182 return -1;
1183 }
Darren Tucker47eede72005-03-14 23:08:12 +11001184 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001185 case SSH_SOCKS5_IPV4:
1186 addrlen = 4;
1187 af = AF_INET;
1188 break;
1189 case SSH_SOCKS5_DOMAIN:
1190 addrlen = p[sizeof(s5_req)];
1191 af = -1;
1192 break;
1193 case SSH_SOCKS5_IPV6:
1194 addrlen = 16;
1195 af = AF_INET6;
1196 break;
1197 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001198 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001199 return -1;
1200 }
Damien Miller0f077072006-07-10 22:21:02 +10001201 need = sizeof(s5_req) + addrlen + 2;
1202 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1203 need++;
1204 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001205 return 0;
1206 buffer_consume(&c->input, sizeof(s5_req));
1207 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1208 buffer_consume(&c->input, 1); /* host string length */
1209 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1210 buffer_get(&c->input, (char *)&dest_port, 2);
1211 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001212 if (c->path != NULL) {
1213 xfree(c->path);
1214 c->path = NULL;
1215 }
1216 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001217 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001218 error("channel %d: dynamic request: socks5 hostname "
1219 "\"%.100s\" too long", c->self, dest_addr);
1220 return -1;
1221 }
1222 c->path = xstrdup(dest_addr);
1223 } else {
1224 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1225 return -1;
1226 c->path = xstrdup(ntop);
1227 }
Darren Tucker46471c92003-07-03 13:55:19 +10001228 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001229
Damien Millerfbdeece2003-09-02 22:52:31 +10001230 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001231 c->self, c->path, c->host_port, s5_req.command);
1232
1233 s5_rsp.version = 0x05;
1234 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1235 s5_rsp.reserved = 0; /* ignored */
1236 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1237 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1238 dest_port = 0; /* ignored */
1239
Damien Millera0fdce92006-03-26 14:28:50 +11001240 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1241 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1242 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001243 return 1;
1244}
1245
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001246Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001247channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1248 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001249{
1250 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001251
1252 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1253 port_to_connect);
1254
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001255 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1256 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1257 0, "stdio-forward", /*nonblock*/0);
1258
1259 c->path = xstrdup(host_to_connect);
1260 c->host_port = port_to_connect;
1261 c->listening_port = 0;
1262 c->force_drain = 1;
1263
1264 channel_register_fds(c, in, out, -1, 0, 1, 0);
1265 port_open_helper(c, "direct-tcpip");
1266
1267 return c;
1268}
1269
Ben Lindstromb3921512001-04-11 15:57:50 +00001270/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001271static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001272channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001273{
1274 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001275 u_int have;
1276 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001277
1278 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001279 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001280 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001281 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001282 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001283 /* need more */
1284 FD_SET(c->sock, readset);
1285 return;
1286 }
1287 /* try to guess the protocol */
1288 p = buffer_ptr(&c->input);
1289 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001290 case 0x04:
1291 ret = channel_decode_socks4(c, readset, writeset);
1292 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001293 case 0x05:
1294 ret = channel_decode_socks5(c, readset, writeset);
1295 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001296 default:
1297 ret = -1;
1298 break;
1299 }
1300 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001301 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001302 } else if (ret == 0) {
1303 debug2("channel %d: pre_dynamic: need more", c->self);
1304 /* need more */
1305 FD_SET(c->sock, readset);
1306 } else {
1307 /* switch to the next state */
1308 c->type = SSH_CHANNEL_OPENING;
1309 port_open_helper(c, "direct-tcpip");
1310 }
1311}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001312
Damien Millerb38eff82000-04-01 11:09:21 +10001313/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001314/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001315static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001316channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001317{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001318 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001319 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001320 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001321 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001322 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001323 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001324
1325 if (FD_ISSET(c->sock, readset)) {
1326 debug("X11 connection requested.");
1327 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001328 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001329 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001330 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001331 channel_close_fd(&c->sock);
1332 chan_mark_dead(c);
1333 }
Damien Millerb38eff82000-04-01 11:09:21 +10001334 if (newsock < 0) {
1335 error("accept: %.100s", strerror(errno));
1336 return;
1337 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001338 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001339 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001340 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001341 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001342 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001343
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001344 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001345 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001346 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001347 if (compat20) {
1348 packet_start(SSH2_MSG_CHANNEL_OPEN);
1349 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001350 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001351 packet_put_int(nc->local_window_max);
1352 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001353 /* originator ipaddr and port */
1354 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001355 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001356 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001357 } else {
1358 packet_put_int(remote_port);
1359 }
Damien Millerbd483e72000-04-30 10:00:53 +10001360 packet_send();
1361 } else {
1362 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001363 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001364 if (packet_get_protocol_flags() &
1365 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001366 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001367 packet_send();
1368 }
Damien Millerd83ff352001-01-30 09:19:34 +11001369 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001370 }
1371}
1372
Ben Lindstrombba81212001-06-25 05:01:22 +00001373static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001374port_open_helper(Channel *c, char *rtype)
1375{
1376 int direct;
1377 char buf[1024];
1378 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001379 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001380
Damien Millerd6369432010-02-02 17:02:07 +11001381 if (remote_port == -1) {
1382 /* Fake addr/port to appease peers that validate it (Tectia) */
1383 xfree(remote_ipaddr);
1384 remote_ipaddr = xstrdup("127.0.0.1");
1385 remote_port = 65535;
1386 }
1387
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001388 direct = (strcmp(rtype, "direct-tcpip") == 0);
1389
1390 snprintf(buf, sizeof buf,
1391 "%s: listening port %d for %.100s port %d, "
1392 "connect from %.200s port %d",
1393 rtype, c->listening_port, c->path, c->host_port,
1394 remote_ipaddr, remote_port);
1395
1396 xfree(c->remote_name);
1397 c->remote_name = xstrdup(buf);
1398
1399 if (compat20) {
1400 packet_start(SSH2_MSG_CHANNEL_OPEN);
1401 packet_put_cstring(rtype);
1402 packet_put_int(c->self);
1403 packet_put_int(c->local_window_max);
1404 packet_put_int(c->local_maxpacket);
1405 if (direct) {
1406 /* target host, port */
1407 packet_put_cstring(c->path);
1408 packet_put_int(c->host_port);
1409 } else {
1410 /* listen address, port */
1411 packet_put_cstring(c->path);
1412 packet_put_int(c->listening_port);
1413 }
1414 /* originator host and port */
1415 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001416 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001417 packet_send();
1418 } else {
1419 packet_start(SSH_MSG_PORT_OPEN);
1420 packet_put_int(c->self);
1421 packet_put_cstring(c->path);
1422 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001423 if (packet_get_protocol_flags() &
1424 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001425 packet_put_cstring(c->remote_name);
1426 packet_send();
1427 }
1428 xfree(remote_ipaddr);
1429}
1430
Damien Miller5e7fd072005-11-05 14:53:39 +11001431static void
1432channel_set_reuseaddr(int fd)
1433{
1434 int on = 1;
1435
1436 /*
1437 * Set socket options.
1438 * Allow local port reuse in TIME_WAIT.
1439 */
1440 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1441 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1442}
1443
Damien Millerb38eff82000-04-01 11:09:21 +10001444/*
1445 * This socket is listening for connections to a forwarded TCP/IP port.
1446 */
Damien Miller8473dd82006-07-24 14:08:32 +10001447/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001448static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001449channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001450{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001451 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001452 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001453 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001454 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001455 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001456
Damien Millerb38eff82000-04-01 11:09:21 +10001457 if (FD_ISSET(c->sock, readset)) {
1458 debug("Connection to port %d forwarding "
1459 "to %.100s port %d requested.",
1460 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001461
Damien Miller4623a752001-10-10 15:03:58 +10001462 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1463 nextstate = SSH_CHANNEL_OPENING;
1464 rtype = "forwarded-tcpip";
1465 } else {
1466 if (c->host_port == 0) {
1467 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001468 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001469 } else {
1470 nextstate = SSH_CHANNEL_OPENING;
1471 rtype = "direct-tcpip";
1472 }
1473 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001474
Damien Millerb38eff82000-04-01 11:09:21 +10001475 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001476 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001477 if (newsock < 0) {
1478 error("accept: %.100s", strerror(errno));
1479 return;
1480 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001481 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001482 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1483 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001484 nc->listening_port = c->listening_port;
1485 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001486 if (c->path != NULL)
1487 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001488
Darren Tucker876045b2010-01-08 17:08:00 +11001489 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001490 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001491 }
1492}
1493
1494/*
1495 * This is the authentication agent socket listening for connections from
1496 * clients.
1497 */
Damien Miller8473dd82006-07-24 14:08:32 +10001498/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001499static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001500channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001501{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001502 Channel *nc;
1503 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001504 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001505 socklen_t addrlen;
1506
1507 if (FD_ISSET(c->sock, readset)) {
1508 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001509 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001510 if (newsock < 0) {
1511 error("accept from auth socket: %.100s", strerror(errno));
1512 return;
1513 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001514 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001515 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1516 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001517 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001518 if (compat20) {
1519 packet_start(SSH2_MSG_CHANNEL_OPEN);
1520 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001521 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001522 packet_put_int(c->local_window_max);
1523 packet_put_int(c->local_maxpacket);
1524 } else {
1525 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001526 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001527 }
Damien Millerb38eff82000-04-01 11:09:21 +10001528 packet_send();
1529 }
1530}
1531
Damien Miller8473dd82006-07-24 14:08:32 +10001532/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001533static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001534channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001535{
Damien Millerbd740252008-05-19 15:37:09 +10001536 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001537 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001538
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001539 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001540 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001541 err = errno;
1542 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001543 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001544 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001545 debug("channel %d: connected to %s port %d",
1546 c->self, c->connect_ctx.host, c->connect_ctx.port);
1547 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001548 c->type = SSH_CHANNEL_OPEN;
1549 if (compat20) {
1550 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1551 packet_put_int(c->remote_id);
1552 packet_put_int(c->self);
1553 packet_put_int(c->local_window);
1554 packet_put_int(c->local_maxpacket);
1555 } else {
1556 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1557 packet_put_int(c->remote_id);
1558 packet_put_int(c->self);
1559 }
1560 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001561 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001562 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001563 /* Try next address, if any */
1564 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1565 close(c->sock);
1566 c->sock = c->rfd = c->wfd = sock;
1567 channel_max_fd = channel_find_maxfd();
1568 return;
1569 }
1570 /* Exhausted all addresses */
1571 error("connect_to %.100s port %d: failed.",
1572 c->connect_ctx.host, c->connect_ctx.port);
1573 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001574 if (compat20) {
1575 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1576 packet_put_int(c->remote_id);
1577 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1578 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1579 packet_put_cstring(strerror(err));
1580 packet_put_cstring("");
1581 }
1582 } else {
1583 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1584 packet_put_int(c->remote_id);
1585 }
1586 chan_mark_dead(c);
1587 }
1588 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001589 }
1590}
1591
Damien Miller8473dd82006-07-24 14:08:32 +10001592/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001593static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001594channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001595{
Darren Tucker11327cc2005-03-14 23:22:25 +11001596 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001597 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001598
Damien Miller835284b2007-06-11 13:03:16 +10001599 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1600 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001601 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001602 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001603 if (len < 0 && (errno == EINTR ||
1604 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001605 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001606#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001607 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001608#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001609 if ((!c->isatty && len <= 0) ||
1610 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001611#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001612 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001613 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001614 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001615 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001616 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001617 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001618 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001619 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001620 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001621 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001622 } else {
1623 chan_read_failed(c);
1624 }
1625 return -1;
1626 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001627 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001628 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001629 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001630 chan_read_failed(c);
1631 }
Damien Millerd27b9472005-12-13 19:29:02 +11001632 } else if (c->datagram) {
1633 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001634 } else {
1635 buffer_append(&c->input, buf, len);
1636 }
Damien Millerb38eff82000-04-01 11:09:21 +10001637 }
1638 return 1;
1639}
Damien Miller4f7becb2006-03-26 14:10:14 +11001640
Damien Miller8473dd82006-07-24 14:08:32 +10001641/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001642static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001643channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001644{
Ben Lindstrome229b252001-03-05 06:28:06 +00001645 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001646 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001647 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001648 int len;
1649
1650 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001651 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001652 FD_ISSET(c->wfd, writeset) &&
1653 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001654 if (c->output_filter != NULL) {
1655 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1656 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001657 if (c->type != SSH_CHANNEL_OPEN)
1658 chan_mark_dead(c);
1659 else
1660 chan_write_failed(c);
1661 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001662 }
1663 } else if (c->datagram) {
1664 buf = data = buffer_get_string(&c->output, &dlen);
1665 } else {
1666 buf = data = buffer_ptr(&c->output);
1667 dlen = buffer_len(&c->output);
1668 }
1669
Damien Millerd27b9472005-12-13 19:29:02 +11001670 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001671 /* ignore truncated writes, datagrams might get lost */
1672 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001673 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001674 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001675 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1676 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001677 return 1;
1678 if (len <= 0) {
1679 if (c->type != SSH_CHANNEL_OPEN)
1680 chan_mark_dead(c);
1681 else
1682 chan_write_failed(c);
1683 return -1;
1684 }
1685 return 1;
1686 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001687#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001688 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001689 if (compat20 && c->wfd_isatty)
1690 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001691#endif
Damien Miller077b2382005-12-31 16:22:32 +11001692
1693 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001694 if (len < 0 &&
1695 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001696 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001697 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001698 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001699 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001700 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001701 return -1;
1702 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001703 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001704 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001705 c->type = SSH_CHANNEL_INPUT_DRAINING;
1706 } else {
1707 chan_write_failed(c);
1708 }
1709 return -1;
1710 }
Darren Tucker3980b632009-08-28 11:02:37 +10001711#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001712 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001713 if (tcgetattr(c->wfd, &tio) == 0 &&
1714 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1715 /*
1716 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001717 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001718 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001719 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001720 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001721 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001722 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001723 }
1724 }
Darren Tucker3980b632009-08-28 11:02:37 +10001725#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001726 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001727 if (compat20 && len > 0) {
1728 c->local_consumed += len;
1729 }
1730 }
1731 return 1;
1732}
Damien Miller4f7becb2006-03-26 14:10:14 +11001733
Ben Lindstrombba81212001-06-25 05:01:22 +00001734static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001735channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001736{
Darren Tucker11327cc2005-03-14 23:22:25 +11001737 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001738 int len;
1739
Damien Miller1383bd82000-04-06 12:32:37 +10001740/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001741 if (c->efd != -1) {
1742 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1743 FD_ISSET(c->efd, writeset) &&
1744 buffer_len(&c->extended) > 0) {
1745 len = write(c->efd, buffer_ptr(&c->extended),
1746 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001747 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001748 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001749 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1750 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001751 return 1;
1752 if (len <= 0) {
1753 debug2("channel %d: closing write-efd %d",
1754 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001755 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001756 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001757 buffer_consume(&c->extended, len);
1758 c->local_consumed += len;
1759 }
Damien Miller8853ca52010-06-26 10:00:14 +10001760 } else if (c->efd != -1 &&
1761 (c->extended_usage == CHAN_EXTENDED_READ ||
1762 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001763 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001764 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001765 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001766 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001767 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1768 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001769 return 1;
1770 if (len <= 0) {
1771 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001772 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001773 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001774 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001775 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1776 debug3("channel %d: discard efd",
1777 c->self);
1778 } else
1779 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001780 }
Damien Miller33b13562000-04-04 14:38:59 +10001781 }
1782 }
1783 return 1;
1784}
Damien Miller4f7becb2006-03-26 14:10:14 +11001785
Damien Miller0e220db2004-06-15 10:34:08 +10001786static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001787channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001788{
Ben Lindstromb3921512001-04-11 15:57:50 +00001789 if (c->type == SSH_CHANNEL_OPEN &&
1790 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001791 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001792 c->local_maxpacket*3) ||
1793 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001794 c->local_consumed > 0) {
1795 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1796 packet_put_int(c->remote_id);
1797 packet_put_int(c->local_consumed);
1798 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001799 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001800 c->self, c->local_window,
1801 c->local_consumed);
1802 c->local_window += c->local_consumed;
1803 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001804 }
1805 return 1;
1806}
1807
Ben Lindstrombba81212001-06-25 05:01:22 +00001808static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001809channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001810{
1811 channel_handle_rfd(c, readset, writeset);
1812 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001813 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001814 return;
Damien Miller33b13562000-04-04 14:38:59 +10001815 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001816 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001817}
1818
Damien Millere1537f92010-01-26 13:26:22 +11001819static u_int
1820read_mux(Channel *c, u_int need)
1821{
1822 char buf[CHAN_RBUF];
1823 int len;
1824 u_int rlen;
1825
1826 if (buffer_len(&c->input) < need) {
1827 rlen = need - buffer_len(&c->input);
1828 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1829 if (len <= 0) {
1830 if (errno != EINTR && errno != EAGAIN) {
1831 debug2("channel %d: ctl read<=0 rfd %d len %d",
1832 c->self, c->rfd, len);
1833 chan_read_failed(c);
1834 return 0;
1835 }
1836 } else
1837 buffer_append(&c->input, buf, len);
1838 }
1839 return buffer_len(&c->input);
1840}
1841
1842static void
1843channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1844{
1845 u_int need;
1846 ssize_t len;
1847
1848 if (!compat20)
1849 fatal("%s: entered with !compat20", __func__);
1850
Damien Millerd530f5f2010-05-21 14:57:10 +10001851 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001852 (c->istate == CHAN_INPUT_OPEN ||
1853 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1854 /*
1855 * Don't not read past the precise end of packets to
1856 * avoid disrupting fd passing.
1857 */
1858 if (read_mux(c, 4) < 4) /* read header */
1859 return;
1860 need = get_u32(buffer_ptr(&c->input));
1861#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1862 if (need > CHANNEL_MUX_MAX_PACKET) {
1863 debug2("channel %d: packet too big %u > %u",
1864 c->self, CHANNEL_MUX_MAX_PACKET, need);
1865 chan_rcvd_oclose(c);
1866 return;
1867 }
1868 if (read_mux(c, need + 4) < need + 4) /* read body */
1869 return;
1870 if (c->mux_rcb(c) != 0) {
1871 debug("channel %d: mux_rcb failed", c->self);
1872 chan_mark_dead(c);
1873 return;
1874 }
1875 }
1876
1877 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1878 buffer_len(&c->output) > 0) {
1879 len = write(c->wfd, buffer_ptr(&c->output),
1880 buffer_len(&c->output));
1881 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1882 return;
1883 if (len <= 0) {
1884 chan_mark_dead(c);
1885 return;
1886 }
1887 buffer_consume(&c->output, len);
1888 }
1889}
1890
1891static void
1892channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1893{
1894 Channel *nc;
1895 struct sockaddr_storage addr;
1896 socklen_t addrlen;
1897 int newsock;
1898 uid_t euid;
1899 gid_t egid;
1900
1901 if (!FD_ISSET(c->sock, readset))
1902 return;
1903
1904 debug("multiplexing control connection");
1905
1906 /*
1907 * Accept connection on control socket
1908 */
1909 memset(&addr, 0, sizeof(addr));
1910 addrlen = sizeof(addr);
1911 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1912 &addrlen)) == -1) {
1913 error("%s accept: %s", __func__, strerror(errno));
1914 return;
1915 }
1916
1917 if (getpeereid(newsock, &euid, &egid) < 0) {
1918 error("%s getpeereid failed: %s", __func__,
1919 strerror(errno));
1920 close(newsock);
1921 return;
1922 }
1923 if ((euid != 0) && (getuid() != euid)) {
1924 error("multiplex uid mismatch: peer euid %u != uid %u",
1925 (u_int)euid, (u_int)getuid());
1926 close(newsock);
1927 return;
1928 }
1929 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1930 newsock, newsock, -1, c->local_window_max,
1931 c->local_maxpacket, 0, "mux-control", 1);
1932 nc->mux_rcb = c->mux_rcb;
1933 debug3("%s: new mux channel %d fd %d", __func__,
1934 nc->self, nc->sock);
1935 /* establish state */
1936 nc->mux_rcb(nc);
1937 /* mux state transitions must not elicit protocol messages */
1938 nc->flags |= CHAN_LOCAL;
1939}
1940
Damien Miller8473dd82006-07-24 14:08:32 +10001941/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001942static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001943channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001944{
1945 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001946
Damien Millerb38eff82000-04-01 11:09:21 +10001947 /* Send buffered output data to the socket. */
1948 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1949 len = write(c->sock, buffer_ptr(&c->output),
1950 buffer_len(&c->output));
1951 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001952 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001953 else
1954 buffer_consume(&c->output, len);
1955 }
1956}
1957
Ben Lindstrombba81212001-06-25 05:01:22 +00001958static void
Damien Miller33b13562000-04-04 14:38:59 +10001959channel_handler_init_20(void)
1960{
Damien Millerde6987c2002-01-22 23:20:40 +11001961 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001962 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001963 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001964 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001965 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001966 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001967 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001968 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001969 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1970 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001971
Damien Millerde6987c2002-01-22 23:20:40 +11001972 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001973 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001974 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001975 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001976 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001977 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001978 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001979 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1980 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001981}
1982
Ben Lindstrombba81212001-06-25 05:01:22 +00001983static void
Damien Millerb38eff82000-04-01 11:09:21 +10001984channel_handler_init_13(void)
1985{
1986 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1987 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1988 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1989 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1990 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1991 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1992 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001993 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001994 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001995
Damien Millerde6987c2002-01-22 23:20:40 +11001996 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001997 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1998 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1999 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2000 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002001 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002002 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002003}
2004
Ben Lindstrombba81212001-06-25 05:01:22 +00002005static void
Damien Millerb38eff82000-04-01 11:09:21 +10002006channel_handler_init_15(void)
2007{
Damien Millerde6987c2002-01-22 23:20:40 +11002008 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002009 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002010 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2011 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2012 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002013 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002014 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002015
2016 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2017 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2018 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002019 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002020 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002021 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002022}
2023
Ben Lindstrombba81212001-06-25 05:01:22 +00002024static void
Damien Millerb38eff82000-04-01 11:09:21 +10002025channel_handler_init(void)
2026{
2027 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002028
Damien Miller9f0f5c62001-12-21 14:45:46 +11002029 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002030 channel_pre[i] = NULL;
2031 channel_post[i] = NULL;
2032 }
Damien Miller33b13562000-04-04 14:38:59 +10002033 if (compat20)
2034 channel_handler_init_20();
2035 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002036 channel_handler_init_13();
2037 else
2038 channel_handler_init_15();
2039}
2040
Damien Miller3ec27592001-10-12 11:35:04 +10002041/* gc dead channels */
2042static void
2043channel_garbage_collect(Channel *c)
2044{
2045 if (c == NULL)
2046 return;
2047 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002048 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002049 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002050 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002051 c->detach_user(c->self, NULL);
2052 /* if we still have a callback */
2053 if (c->detach_user != NULL)
2054 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002055 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002056 }
2057 if (!chan_is_dead(c, 1))
2058 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002059 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002060 channel_free(c);
2061}
2062
Ben Lindstrombba81212001-06-25 05:01:22 +00002063static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002064channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002065{
2066 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002067 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002068 Channel *c;
2069
2070 if (!did_init) {
2071 channel_handler_init();
2072 did_init = 1;
2073 }
Darren Tucker876045b2010-01-08 17:08:00 +11002074 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002075 c = channels[i];
2076 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002077 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002078 if (c->delayed) {
2079 if (ftab == channel_pre)
2080 c->delayed = 0;
2081 else
2082 continue;
2083 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00002084 if (ftab[c->type] != NULL)
2085 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10002086 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002087 }
2088}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002089
Ben Lindstrome9c99912001-06-09 00:41:05 +00002090/*
2091 * Allocate/update select bitmasks and add any bits relevant to channels in
2092 * select bitmasks.
2093 */
Damien Miller4af51302000-04-16 11:18:38 +10002094void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002095channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002096 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002097{
Damien Miller36812092006-03-26 14:22:47 +11002098 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002099
2100 n = MAX(*maxfdp, channel_max_fd);
2101
Damien Miller36812092006-03-26 14:22:47 +11002102 nfdset = howmany(n+1, NFDBITS);
2103 /* Explicitly test here, because xrealloc isn't always called */
2104 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2105 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2106 sz = nfdset * sizeof(fd_mask);
2107
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002108 /* perhaps check sz < nalloc/2 and shrink? */
2109 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002110 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2111 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002112 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002113 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002114 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002115 memset(*readsetp, 0, sz);
2116 memset(*writesetp, 0, sz);
2117
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002118 if (!rekeying)
2119 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002120}
2121
Ben Lindstrome9c99912001-06-09 00:41:05 +00002122/*
2123 * After select, perform any appropriate operations for channels which have
2124 * events pending.
2125 */
Damien Miller4af51302000-04-16 11:18:38 +10002126void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002127channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002128{
Damien Millerb38eff82000-04-01 11:09:21 +10002129 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002130}
2131
Ben Lindstrome9c99912001-06-09 00:41:05 +00002132
Damien Miller5e953212001-01-30 09:14:00 +11002133/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002134void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002135channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002136{
Damien Millerb38eff82000-04-01 11:09:21 +10002137 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002138 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139
Damien Miller95def091999-11-25 00:26:21 +11002140 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002141 c = channels[i];
2142 if (c == NULL)
2143 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002144
Ben Lindstrome9c99912001-06-09 00:41:05 +00002145 /*
2146 * We are only interested in channels that can have buffered
2147 * incoming data.
2148 */
Damien Miller34132e52000-01-14 15:45:46 +11002149 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002150 if (c->type != SSH_CHANNEL_OPEN &&
2151 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002152 continue;
2153 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002154 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002155 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002156 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002157 if (compat20 &&
2158 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002159 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002160 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002161 continue;
2162 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
Damien Miller95def091999-11-25 00:26:21 +11002164 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002165 if ((c->istate == CHAN_INPUT_OPEN ||
2166 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2167 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002168 if (c->datagram) {
2169 if (len > 0) {
2170 u_char *data;
2171 u_int dlen;
2172
2173 data = buffer_get_string(&c->input,
2174 &dlen);
2175 packet_start(SSH2_MSG_CHANNEL_DATA);
2176 packet_put_int(c->remote_id);
2177 packet_put_string(data, dlen);
2178 packet_send();
2179 c->remote_window -= dlen + 4;
2180 xfree(data);
2181 }
2182 continue;
2183 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002184 /*
2185 * Send some data for the other side over the secure
2186 * connection.
2187 */
Damien Miller33b13562000-04-04 14:38:59 +10002188 if (compat20) {
2189 if (len > c->remote_window)
2190 len = c->remote_window;
2191 if (len > c->remote_maxpacket)
2192 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002193 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002194 if (packet_is_interactive()) {
2195 if (len > 1024)
2196 len = 512;
2197 } else {
2198 /* Keep the packets at reasonable size. */
2199 if (len > packet_get_maxsize()/2)
2200 len = packet_get_maxsize()/2;
2201 }
Damien Miller95def091999-11-25 00:26:21 +11002202 }
Damien Millerb38eff82000-04-01 11:09:21 +10002203 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002204 packet_start(compat20 ?
2205 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002206 packet_put_int(c->remote_id);
2207 packet_put_string(buffer_ptr(&c->input), len);
2208 packet_send();
2209 buffer_consume(&c->input, len);
2210 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002211 }
2212 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002213 if (compat13)
2214 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002215 /*
2216 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002217 * tell peer, that we will not send more data: send IEOF.
2218 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002219 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002220 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002221 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2222 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002223 else
2224 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002225 }
Damien Miller33b13562000-04-04 14:38:59 +10002226 /* Send extended data, i.e. stderr */
2227 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002228 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002229 c->remote_window > 0 &&
2230 (len = buffer_len(&c->extended)) > 0 &&
2231 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002232 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002233 c->self, c->remote_window, buffer_len(&c->extended),
2234 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002235 if (len > c->remote_window)
2236 len = c->remote_window;
2237 if (len > c->remote_maxpacket)
2238 len = c->remote_maxpacket;
2239 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2240 packet_put_int(c->remote_id);
2241 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2242 packet_put_string(buffer_ptr(&c->extended), len);
2243 packet_send();
2244 buffer_consume(&c->extended, len);
2245 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002246 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002247 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002249}
2250
Ben Lindstrome9c99912001-06-09 00:41:05 +00002251
2252/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002253
2254/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002255void
Damien Miller630d6f42002-01-22 23:17:30 +11002256channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002257{
Damien Miller34132e52000-01-14 15:45:46 +11002258 int id;
Damien Miller95def091999-11-25 00:26:21 +11002259 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002260 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002261 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002262
Damien Miller95def091999-11-25 00:26:21 +11002263 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002264 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002265 c = channel_lookup(id);
2266 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002267 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002268
Damien Miller95def091999-11-25 00:26:21 +11002269 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002270 if (c->type != SSH_CHANNEL_OPEN &&
2271 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002272 return;
2273
Damien Miller95def091999-11-25 00:26:21 +11002274 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002275 data = packet_get_string_ptr(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002276
Damien Millera04ad492004-01-21 11:02:09 +11002277 /*
2278 * Ignore data for protocol > 1.3 if output end is no longer open.
2279 * For protocol 2 the sending side is reducing its window as it sends
2280 * data, so we must 'fake' consumption of the data in order to ensure
2281 * that window updates are sent back. Otherwise the connection might
2282 * deadlock.
2283 */
2284 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2285 if (compat20) {
2286 c->local_window -= data_len;
2287 c->local_consumed += data_len;
2288 }
Damien Millera04ad492004-01-21 11:02:09 +11002289 return;
2290 }
2291
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002292 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002293 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002294 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002295 c->self, data_len, c->local_maxpacket);
2296 }
2297 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002298 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002299 c->self, data_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002300 return;
2301 }
2302 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002303 }
Damien Millerd27b9472005-12-13 19:29:02 +11002304 if (c->datagram)
2305 buffer_put_string(&c->output, data, data_len);
2306 else
2307 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002308 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002309}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002310
Damien Millerd79b4242006-03-31 23:11:44 +11002311/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002312void
Damien Miller630d6f42002-01-22 23:17:30 +11002313channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002314{
2315 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002316 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002317 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002318 Channel *c;
2319
2320 /* Get the channel number and verify it. */
2321 id = packet_get_int();
2322 c = channel_lookup(id);
2323
2324 if (c == NULL)
2325 packet_disconnect("Received extended_data for bad channel %d.", id);
2326 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002327 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002328 return;
2329 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002330 if (c->flags & CHAN_EOF_RCVD) {
2331 if (datafellows & SSH_BUG_EXTEOF)
2332 debug("channel %d: accepting ext data after eof", id);
2333 else
2334 packet_disconnect("Received extended_data after EOF "
2335 "on channel %d.", id);
2336 }
Damien Miller33b13562000-04-04 14:38:59 +10002337 tcode = packet_get_int();
2338 if (c->efd == -1 ||
2339 c->extended_usage != CHAN_EXTENDED_WRITE ||
2340 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002341 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002342 return;
2343 }
2344 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002345 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002346 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002347 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002348 c->self, data_len, c->local_window);
2349 xfree(data);
2350 return;
2351 }
Damien Millerd3444942000-09-30 14:20:03 +11002352 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002353 c->local_window -= data_len;
2354 buffer_append(&c->extended, data, data_len);
2355 xfree(data);
2356}
2357
Damien Millerd79b4242006-03-31 23:11:44 +11002358/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002359void
Damien Miller630d6f42002-01-22 23:17:30 +11002360channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002361{
2362 int id;
2363 Channel *c;
2364
Damien Millerb38eff82000-04-01 11:09:21 +10002365 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002366 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002367 c = channel_lookup(id);
2368 if (c == NULL)
2369 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2370 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002371
2372 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002373 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002374 debug("channel %d: FORCE input drain", c->self);
2375 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002376 if (buffer_len(&c->input) == 0)
2377 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002378 }
2379
Damien Millerb38eff82000-04-01 11:09:21 +10002380}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002381
Damien Millerd79b4242006-03-31 23:11:44 +11002382/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002383void
Damien Miller630d6f42002-01-22 23:17:30 +11002384channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002385{
Damien Millerb38eff82000-04-01 11:09:21 +10002386 int id;
2387 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002388
Damien Millerb38eff82000-04-01 11:09:21 +10002389 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002390 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002391 c = channel_lookup(id);
2392 if (c == NULL)
2393 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002394
2395 /*
2396 * Send a confirmation that we have closed the channel and no more
2397 * data is coming for it.
2398 */
Damien Miller95def091999-11-25 00:26:21 +11002399 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002400 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002401 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002402
Damien Miller5428f641999-11-25 11:54:57 +11002403 /*
2404 * If the channel is in closed state, we have sent a close request,
2405 * and the other side will eventually respond with a confirmation.
2406 * Thus, we cannot free the channel here, because then there would be
2407 * no-one to receive the confirmation. The channel gets freed when
2408 * the confirmation arrives.
2409 */
Damien Millerb38eff82000-04-01 11:09:21 +10002410 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002411 /*
2412 * Not a closed channel - mark it as draining, which will
2413 * cause it to be freed later.
2414 */
Damien Miller76765c02002-01-22 23:21:15 +11002415 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002416 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002417 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002418}
2419
Damien Millerb38eff82000-04-01 11:09:21 +10002420/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002421/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002422void
Damien Miller630d6f42002-01-22 23:17:30 +11002423channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002424{
Damien Millerb38eff82000-04-01 11:09:21 +10002425 int id = packet_get_int();
2426 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002427
Damien Miller48b03fc2002-01-22 23:11:40 +11002428 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002429 if (c == NULL)
2430 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2431 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432}
2433
Damien Millerd79b4242006-03-31 23:11:44 +11002434/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002435void
Damien Miller630d6f42002-01-22 23:17:30 +11002436channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002437{
2438 int id = packet_get_int();
2439 Channel *c = channel_lookup(id);
2440
Damien Miller48b03fc2002-01-22 23:11:40 +11002441 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002442 if (c == NULL)
2443 packet_disconnect("Received close confirmation for "
2444 "out-of-range channel %d.", id);
2445 if (c->type != SSH_CHANNEL_CLOSED)
2446 packet_disconnect("Received close confirmation for "
2447 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002448 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002449}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002450
Damien Millerd79b4242006-03-31 23:11:44 +11002451/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002452void
Damien Miller630d6f42002-01-22 23:17:30 +11002453channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002454{
Damien Millerb38eff82000-04-01 11:09:21 +10002455 int id, remote_id;
2456 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002457
Damien Millerb38eff82000-04-01 11:09:21 +10002458 id = packet_get_int();
2459 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002460
Damien Millerb38eff82000-04-01 11:09:21 +10002461 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2462 packet_disconnect("Received open confirmation for "
2463 "non-opening channel %d.", id);
2464 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002465 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002466 c->remote_id = remote_id;
2467 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002468
2469 if (compat20) {
2470 c->remote_window = packet_get_int();
2471 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002472 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002473 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002474 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002475 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002476 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002477 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002478 c->remote_window, c->remote_maxpacket);
2479 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002480 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002481}
2482
Ben Lindstrombba81212001-06-25 05:01:22 +00002483static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002484reason2txt(int reason)
2485{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002486 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002487 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2488 return "administratively prohibited";
2489 case SSH2_OPEN_CONNECT_FAILED:
2490 return "connect failed";
2491 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2492 return "unknown channel type";
2493 case SSH2_OPEN_RESOURCE_SHORTAGE:
2494 return "resource shortage";
2495 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002496 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002497}
2498
Damien Millerd79b4242006-03-31 23:11:44 +11002499/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002500void
Damien Miller630d6f42002-01-22 23:17:30 +11002501channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002502{
Kevin Steves12057502001-02-05 14:54:34 +00002503 int id, reason;
2504 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002505 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002506
Damien Millerb38eff82000-04-01 11:09:21 +10002507 id = packet_get_int();
2508 c = channel_lookup(id);
2509
2510 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2511 packet_disconnect("Received open failure for "
2512 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002513 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002514 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002515 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002516 msg = packet_get_string(NULL);
2517 lang = packet_get_string(NULL);
2518 }
Damien Miller996acd22003-04-09 20:59:48 +10002519 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002520 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002521 if (msg != NULL)
2522 xfree(msg);
2523 if (lang != NULL)
2524 xfree(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002525 if (c->open_confirm) {
2526 debug2("callback start");
2527 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2528 debug2("callback done");
2529 }
Damien Miller33b13562000-04-04 14:38:59 +10002530 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002531 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002532 /* Schedule the channel for cleanup/deletion. */
2533 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002534}
2535
Damien Millerd79b4242006-03-31 23:11:44 +11002536/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002537void
Damien Miller630d6f42002-01-22 23:17:30 +11002538channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002539{
2540 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002541 int id;
2542 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002543
2544 if (!compat20)
2545 return;
2546
2547 /* Get the channel number and verify it. */
2548 id = packet_get_int();
2549 c = channel_lookup(id);
2550
Damien Millerd47c62a2005-12-13 19:33:57 +11002551 if (c == NULL) {
2552 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002553 return;
2554 }
2555 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002556 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002557 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002558 c->remote_window += adjust;
2559}
2560
Damien Millerd79b4242006-03-31 23:11:44 +11002561/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002562void
Damien Miller630d6f42002-01-22 23:17:30 +11002563channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002564{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002565 Channel *c = NULL;
2566 u_short host_port;
2567 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002568 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002569
Ben Lindstrome9c99912001-06-09 00:41:05 +00002570 remote_id = packet_get_int();
2571 host = packet_get_string(NULL);
2572 host_port = packet_get_int();
2573
2574 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2575 originator_string = packet_get_string(NULL);
2576 } else {
2577 originator_string = xstrdup("unknown (remote did not supply name)");
2578 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002579 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002580 c = channel_connect_to(host, host_port,
2581 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002582 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002583 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002584 if (c == NULL) {
2585 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2586 packet_put_int(remote_id);
2587 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002588 } else
2589 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002590}
2591
Damien Millerb84886b2008-05-19 15:05:07 +10002592/* ARGSUSED */
2593void
2594channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2595{
2596 Channel *c;
2597 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002598 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002599
2600 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002601 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002602
Damien Miller16a73072008-12-08 09:55:25 +11002603 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002604 packet_check_eom();
2605
Damien Miller16a73072008-12-08 09:55:25 +11002606 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002607
Damien Miller16a73072008-12-08 09:55:25 +11002608 if ((c = channel_lookup(id)) == NULL) {
2609 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002610 return;
2611 }
2612 ;
2613 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2614 return;
2615 cc->cb(type, c, cc->ctx);
2616 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2617 bzero(cc, sizeof(*cc));
2618 xfree(cc);
2619}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002620
Ben Lindstrome9c99912001-06-09 00:41:05 +00002621/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002622
Ben Lindstrom908afed2001-10-03 17:34:59 +00002623void
2624channel_set_af(int af)
2625{
2626 IPv4or6 = af;
2627}
2628
Damien Millerb16461c2002-01-22 23:29:22 +11002629static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002630channel_setup_fwd_listener(int type, const char *listen_addr,
2631 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002632 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002633{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002634 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002635 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002636 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002637 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002638 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002639 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002640
Damien Millerb16461c2002-01-22 23:29:22 +11002641 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2642 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002643 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002644
Damien Millerb16461c2002-01-22 23:29:22 +11002645 if (host == NULL) {
2646 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002647 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002648 }
Damien Miller9576ac42009-01-28 16:30:33 +11002649 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002650 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002651 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002652 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002653
Damien Miller5428f641999-11-25 11:54:57 +11002654 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002655 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002656 * specified address or wildcard. On the client, a specified bind
2657 * address will always override gateway_ports. On the server, a
2658 * gateway_ports of 1 (``yes'') will override the client's
2659 * specification and force a wildcard bind, whereas a value of 2
2660 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002661 * asked for.
2662 *
2663 * Special-case listen_addrs are:
2664 *
2665 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2666 * "" (empty string), "*" -> wildcard v4/v6
2667 * "localhost" -> loopback v4/v6
2668 */
2669 addr = NULL;
2670 if (listen_addr == NULL) {
2671 /* No address specified: default to gateway_ports setting */
2672 if (gateway_ports)
2673 wildcard = 1;
2674 } else if (gateway_ports || is_client) {
2675 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002676 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002677 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2678 (!is_client && gateway_ports == 1))
2679 wildcard = 1;
2680 else if (strcmp(listen_addr, "localhost") != 0)
2681 addr = listen_addr;
2682 }
2683
2684 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2685 type, wildcard, (addr == NULL) ? "NULL" : addr);
2686
2687 /*
Damien Miller34132e52000-01-14 15:45:46 +11002688 * getaddrinfo returns a loopback address if the hostname is
2689 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002690 */
Damien Miller34132e52000-01-14 15:45:46 +11002691 memset(&hints, 0, sizeof(hints));
2692 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002693 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002694 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002695 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002696 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2697 if (addr == NULL) {
2698 /* This really shouldn't happen */
2699 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002700 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002701 } else {
Damien Millera7270302005-07-06 09:36:05 +10002702 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002703 "getaddrinfo(%.64s): %s", addr,
2704 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002705 }
Damien Millera7270302005-07-06 09:36:05 +10002706 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002707 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002708 if (allocated_listen_port != NULL)
2709 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002710 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002711 switch (ai->ai_family) {
2712 case AF_INET:
2713 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2714 sin_port;
2715 break;
2716 case AF_INET6:
2717 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2718 sin6_port;
2719 break;
2720 default:
Damien Miller34132e52000-01-14 15:45:46 +11002721 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002722 }
2723 /*
2724 * If allocating a port for -R forwards, then use the
2725 * same port for all address families.
2726 */
2727 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2728 allocated_listen_port != NULL && *allocated_listen_port > 0)
2729 *lport_p = htons(*allocated_listen_port);
2730
Damien Miller34132e52000-01-14 15:45:46 +11002731 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2732 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002733 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002734 continue;
2735 }
2736 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002737 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002738 if (sock < 0) {
2739 /* this is no error since kernel may not support ipv6 */
2740 verbose("socket: %.100s", strerror(errno));
2741 continue;
2742 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002743
2744 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002745 if (ai->ai_family == AF_INET6)
2746 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002747
Damien Miller4bf648f2009-02-14 16:28:21 +11002748 debug("Local forwarding listening on %s port %s.",
2749 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002750
Damien Miller34132e52000-01-14 15:45:46 +11002751 /* Bind the socket to the address. */
2752 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2753 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002754 if (!ai->ai_next)
2755 error("bind: %.100s", strerror(errno));
2756 else
2757 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002758
Damien Miller34132e52000-01-14 15:45:46 +11002759 close(sock);
2760 continue;
2761 }
2762 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002763 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002764 error("listen: %.100s", strerror(errno));
2765 close(sock);
2766 continue;
2767 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002768
2769 /*
2770 * listen_port == 0 requests a dynamically allocated port -
2771 * record what we got.
2772 */
2773 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2774 allocated_listen_port != NULL &&
2775 *allocated_listen_port == 0) {
2776 *allocated_listen_port = get_sock_port(sock, 1);
2777 debug("Allocated listen port %d",
2778 *allocated_listen_port);
2779 }
2780
Damien Miller34132e52000-01-14 15:45:46 +11002781 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002782 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002783 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002784 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002785 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002786 c->host_port = port_to_connect;
2787 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002788 success = 1;
2789 }
2790 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002791 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002792 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002793 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002794 return success;
Damien Miller95def091999-11-25 00:26:21 +11002795}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002796
Darren Tuckere7066df2004-05-24 10:18:05 +10002797int
2798channel_cancel_rport_listener(const char *host, u_short port)
2799{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002800 u_int i;
2801 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002802
Darren Tucker47eede72005-03-14 23:08:12 +11002803 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002804 Channel *c = channels[i];
2805
2806 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002807 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002808 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002809 channel_free(c);
2810 found = 1;
2811 }
2812 }
2813
2814 return (found);
2815}
2816
Damien Millerb16461c2002-01-22 23:29:22 +11002817/* protocol local port fwd, used by ssh (and sshd in v1) */
2818int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002819channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002820 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2821{
2822 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002823 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002824 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002825}
2826
2827/* protocol v2 remote port fwd, used by sshd */
2828int
2829channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002830 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002831{
2832 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002833 listen_address, listen_port, allocated_listen_port,
2834 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002835}
2836
Damien Miller5428f641999-11-25 11:54:57 +11002837/*
2838 * Initiate forwarding of connections to port "port" on remote host through
2839 * the secure channel to host:port from local side.
2840 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002841
Darren Tuckere7d4b192006-07-12 22:17:10 +10002842int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002843channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002844 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002845{
Damien Millerdff50992002-01-22 23:16:32 +11002846 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002847
Damien Miller95def091999-11-25 00:26:21 +11002848 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002849 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002850 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002851 if (listen_host == NULL) {
2852 if (datafellows & SSH_BUG_RFWD_ADDR)
2853 address_to_bind = "127.0.0.1";
2854 else
2855 address_to_bind = "localhost";
2856 } else if (*listen_host == '\0' ||
2857 strcmp(listen_host, "*") == 0) {
2858 if (datafellows & SSH_BUG_RFWD_ADDR)
2859 address_to_bind = "0.0.0.0";
2860 else
2861 address_to_bind = "";
2862 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002863 address_to_bind = listen_host;
2864
Damien Miller33b13562000-04-04 14:38:59 +10002865 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2866 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002867 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002868 packet_put_cstring(address_to_bind);
2869 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002870 packet_send();
2871 packet_write_wait();
2872 /* Assume that server accepts the request */
2873 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002874 } else {
2875 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002876 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002877 packet_put_cstring(host_to_connect);
2878 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002879 packet_send();
2880 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002881
2882 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002883 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002884 switch (type) {
2885 case SSH_SMSG_SUCCESS:
2886 success = 1;
2887 break;
2888 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002889 break;
2890 default:
2891 /* Unknown packet */
2892 packet_disconnect("Protocol error for port forward request:"
2893 "received packet type %d.", type);
2894 }
2895 }
2896 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10002897 /* Record that connection to this host/port is permitted. */
2898 permitted_opens = xrealloc(permitted_opens,
2899 num_permitted_opens + 1, sizeof(*permitted_opens));
Damien Miller0bc1bd82000-11-13 22:57:25 +11002900 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2901 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2902 permitted_opens[num_permitted_opens].listen_port = listen_port;
2903 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002904 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002905 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002906}
2907
Damien Miller5428f641999-11-25 11:54:57 +11002908/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002909 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002910 * local side.
2911 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002912void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002913channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002914{
2915 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002916
2917 if (!compat20)
2918 return;
2919
2920 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002921 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002922 permitted_opens[i].listen_port == port)
2923 break;
2924 }
2925 if (i >= num_permitted_opens) {
2926 debug("%s: requested forward not found", __func__);
2927 return;
2928 }
2929 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2930 packet_put_cstring("cancel-tcpip-forward");
2931 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002932 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002933 packet_put_int(port);
2934 packet_send();
2935
2936 permitted_opens[i].listen_port = 0;
2937 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002938 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002939 permitted_opens[i].host_to_connect = NULL;
2940}
2941
2942/*
Damien Miller5428f641999-11-25 11:54:57 +11002943 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2944 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002945 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002946 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002947int
Damien Millere247cc42000-05-07 12:03:14 +10002948channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002949{
Damien Milleraae6c611999-12-06 11:47:28 +11002950 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002951 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002952 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002953
Damien Miller95def091999-11-25 00:26:21 +11002954 /* Get arguments from the packet. */
2955 port = packet_get_int();
2956 hostname = packet_get_string(NULL);
2957 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002958
Damien Millerbac2d8a2000-09-05 16:13:06 +11002959#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002960 /*
2961 * Check that an unprivileged user is not trying to forward a
2962 * privileged port.
2963 */
Damien Miller95def091999-11-25 00:26:21 +11002964 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002965 packet_disconnect(
2966 "Requested forwarding of port %d but user is not root.",
2967 port);
2968 if (host_port == 0)
2969 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002970#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002971
Damien Miller0bc1bd82000-11-13 22:57:25 +11002972 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002973 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002974 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002975
2976 /* Free the argument string. */
2977 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002978
2979 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002980}
2981
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002982/*
2983 * Permits opening to any host/port if permitted_opens[] is empty. This is
2984 * usually called by the server, because the user could connect to any port
2985 * anyway, and the server has no way to know but to trust the client anyway.
2986 */
2987void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002988channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002989{
2990 if (num_permitted_opens == 0)
2991 all_opens_permitted = 1;
2992}
2993
Ben Lindstroma3700052001-04-05 23:26:32 +00002994void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002995channel_add_permitted_opens(char *host, int port)
2996{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002997 debug("allow port forwarding to host %s port %d", host, port);
2998
Damien Miller232cfb12010-06-26 09:50:30 +10002999 permitted_opens = xrealloc(permitted_opens,
3000 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003001 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3002 permitted_opens[num_permitted_opens].port_to_connect = port;
3003 num_permitted_opens++;
3004
3005 all_opens_permitted = 0;
3006}
3007
Damien Millera765cf42006-07-24 14:08:13 +10003008int
Damien Miller9b439df2006-07-24 14:04:00 +10003009channel_add_adm_permitted_opens(char *host, int port)
3010{
Damien Millera765cf42006-07-24 14:08:13 +10003011 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003012
Damien Miller232cfb12010-06-26 09:50:30 +10003013 permitted_adm_opens = xrealloc(permitted_adm_opens,
3014 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003015 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3016 = xstrdup(host);
3017 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003018 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003019}
3020
3021void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003022channel_clear_permitted_opens(void)
3023{
3024 int i;
3025
3026 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003027 if (permitted_opens[i].host_to_connect != NULL)
3028 xfree(permitted_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003029 if (num_permitted_opens > 0) {
3030 xfree(permitted_opens);
3031 permitted_opens = NULL;
3032 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003033 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003034}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003035
Damien Miller9b439df2006-07-24 14:04:00 +10003036void
3037channel_clear_adm_permitted_opens(void)
3038{
3039 int i;
3040
3041 for (i = 0; i < num_adm_permitted_opens; i++)
3042 if (permitted_adm_opens[i].host_to_connect != NULL)
3043 xfree(permitted_adm_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003044 if (num_adm_permitted_opens > 0) {
3045 xfree(permitted_adm_opens);
3046 permitted_adm_opens = NULL;
3047 }
Damien Miller9b439df2006-07-24 14:04:00 +10003048 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003049}
3050
Darren Tuckere7140f22008-06-10 23:01:51 +10003051void
3052channel_print_adm_permitted_opens(void)
3053{
Damien Miller6ef17492008-07-16 22:42:06 +10003054 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003055
Damien Millerb53d8a12009-01-28 16:13:04 +11003056 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003057 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003058 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003059 return;
3060 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003061 for (i = 0; i < num_adm_permitted_opens; i++)
3062 if (permitted_adm_opens[i].host_to_connect != NULL)
3063 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3064 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003065 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003066}
3067
Damien Millerbd740252008-05-19 15:37:09 +10003068/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003069static int
Damien Millerbd740252008-05-19 15:37:09 +10003070connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003071{
Damien Millerbd740252008-05-19 15:37:09 +10003072 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003073 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003074
Damien Millerbd740252008-05-19 15:37:09 +10003075 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3076 if (cctx->ai->ai_family != AF_INET &&
3077 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003078 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003079 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3080 ntop, sizeof(ntop), strport, sizeof(strport),
3081 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3082 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003083 continue;
3084 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003085 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3086 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003087 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003088 error("socket: %.100s", strerror(errno));
3089 else
3090 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003091 continue;
3092 }
Damien Miller232711f2004-06-15 10:35:30 +10003093 if (set_nonblock(sock) == -1)
3094 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003095 if (connect(sock, cctx->ai->ai_addr,
3096 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3097 debug("connect_next: host %.100s ([%.100s]:%s): "
3098 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003099 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003100 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003101 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003102 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003103 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003104 }
Damien Millerbd740252008-05-19 15:37:09 +10003105 debug("connect_next: host %.100s ([%.100s]:%s) "
3106 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3107 cctx->ai = cctx->ai->ai_next;
3108 set_nodelay(sock);
3109 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003110 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003111 return -1;
3112}
Damien Millerb38eff82000-04-01 11:09:21 +10003113
Damien Millerbd740252008-05-19 15:37:09 +10003114static void
3115channel_connect_ctx_free(struct channel_connect *cctx)
3116{
3117 xfree(cctx->host);
3118 if (cctx->aitop)
3119 freeaddrinfo(cctx->aitop);
3120 bzero(cctx, sizeof(*cctx));
3121 cctx->host = NULL;
3122 cctx->ai = cctx->aitop = NULL;
3123}
3124
3125/* Return CONNECTING channel to remote host, port */
3126static Channel *
3127connect_to(const char *host, u_short port, char *ctype, char *rname)
3128{
3129 struct addrinfo hints;
3130 int gaierr;
3131 int sock = -1;
3132 char strport[NI_MAXSERV];
3133 struct channel_connect cctx;
3134 Channel *c;
3135
Damien Miller2bcb8662008-07-12 17:12:29 +10003136 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003137 memset(&hints, 0, sizeof(hints));
3138 hints.ai_family = IPv4or6;
3139 hints.ai_socktype = SOCK_STREAM;
3140 snprintf(strport, sizeof strport, "%d", port);
3141 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3142 error("connect_to %.100s: unknown host (%s)", host,
3143 ssh_gai_strerror(gaierr));
3144 return NULL;
3145 }
3146
3147 cctx.host = xstrdup(host);
3148 cctx.port = port;
3149 cctx.ai = cctx.aitop;
3150
3151 if ((sock = connect_next(&cctx)) == -1) {
3152 error("connect to %.100s port %d failed: %s",
3153 host, port, strerror(errno));
3154 channel_connect_ctx_free(&cctx);
3155 return NULL;
3156 }
3157 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3158 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3159 c->connect_ctx = cctx;
3160 return c;
3161}
3162
3163Channel *
3164channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3165{
3166 int i;
3167
3168 for (i = 0; i < num_permitted_opens; i++) {
3169 if (permitted_opens[i].host_to_connect != NULL &&
3170 permitted_opens[i].listen_port == listen_port) {
3171 return connect_to(
3172 permitted_opens[i].host_to_connect,
3173 permitted_opens[i].port_to_connect, ctype, rname);
3174 }
3175 }
3176 error("WARNING: Server requests forwarding for unknown listen_port %d",
3177 listen_port);
3178 return NULL;
3179}
3180
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003181/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003182Channel *
3183channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003184{
Damien Miller9b439df2006-07-24 14:04:00 +10003185 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003186
3187 permit = all_opens_permitted;
3188 if (!permit) {
3189 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003190 if (permitted_opens[i].host_to_connect != NULL &&
3191 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003192 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3193 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003194 }
Damien Miller9b439df2006-07-24 14:04:00 +10003195
3196 if (num_adm_permitted_opens > 0) {
3197 permit_adm = 0;
3198 for (i = 0; i < num_adm_permitted_opens; i++)
3199 if (permitted_adm_opens[i].host_to_connect != NULL &&
3200 permitted_adm_opens[i].port_to_connect == port &&
3201 strcmp(permitted_adm_opens[i].host_to_connect, host)
3202 == 0)
3203 permit_adm = 1;
3204 }
3205
3206 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003207 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003208 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003209 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003210 }
Damien Millerbd740252008-05-19 15:37:09 +10003211 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003212}
3213
Damien Miller0e220db2004-06-15 10:34:08 +10003214void
3215channel_send_window_changes(void)
3216{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003217 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003218 struct winsize ws;
3219
3220 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003221 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003222 channels[i]->type != SSH_CHANNEL_OPEN)
3223 continue;
3224 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3225 continue;
3226 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003227 packet_put_int((u_int)ws.ws_col);
3228 packet_put_int((u_int)ws.ws_row);
3229 packet_put_int((u_int)ws.ws_xpixel);
3230 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003231 packet_send();
3232 }
3233}
3234
Ben Lindstrome9c99912001-06-09 00:41:05 +00003235/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003236
Damien Miller5428f641999-11-25 11:54:57 +11003237/*
3238 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003239 * Returns 0 and a suitable display number for the DISPLAY variable
3240 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003241 */
Kevin Steves366298c2001-12-19 17:58:01 +00003242int
Damien Miller95c249f2002-02-05 12:11:34 +11003243x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003244 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003245{
Damien Millere7378562001-12-21 14:58:35 +11003246 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003247 int display_number, sock;
3248 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003249 struct addrinfo hints, *ai, *aitop;
3250 char strport[NI_MAXSERV];
3251 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003252
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003253 if (chanids == NULL)
3254 return -1;
3255
Damien Millera34a28b1999-12-14 10:47:15 +11003256 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003257 display_number < MAX_DISPLAYS;
3258 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003259 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003260 memset(&hints, 0, sizeof(hints));
3261 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003262 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003263 hints.ai_socktype = SOCK_STREAM;
3264 snprintf(strport, sizeof strport, "%d", port);
3265 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003266 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003267 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003268 }
Damien Miller34132e52000-01-14 15:45:46 +11003269 for (ai = aitop; ai; ai = ai->ai_next) {
3270 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3271 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003272 sock = socket(ai->ai_family, ai->ai_socktype,
3273 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003274 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003275 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3276#ifdef EPFNOSUPPORT
3277 && (errno != EPFNOSUPPORT)
3278#endif
3279 ) {
Damien Millere2192732000-01-17 13:22:55 +11003280 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003281 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003282 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003283 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003284 debug("x11_create_display_inet: Socket family %d not supported",
3285 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003286 continue;
3287 }
Damien Miller34132e52000-01-14 15:45:46 +11003288 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003289 if (ai->ai_family == AF_INET6)
3290 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003291 if (x11_use_localhost)
3292 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003293 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003294 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003295 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003296
Damien Miller34132e52000-01-14 15:45:46 +11003297 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003298 close(socks[n]);
3299 }
3300 num_socks = 0;
3301 break;
3302 }
3303 socks[num_socks++] = sock;
3304 if (num_socks == NUM_SOCKS)
3305 break;
Damien Miller95def091999-11-25 00:26:21 +11003306 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003307 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003308 if (num_socks > 0)
3309 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003310 }
Damien Miller95def091999-11-25 00:26:21 +11003311 if (display_number >= MAX_DISPLAYS) {
3312 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003313 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003314 }
Damien Miller95def091999-11-25 00:26:21 +11003315 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003316 for (n = 0; n < num_socks; n++) {
3317 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003318 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003319 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003320 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003321 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003322 }
Damien Miller95def091999-11-25 00:26:21 +11003323 }
Damien Miller34132e52000-01-14 15:45:46 +11003324
Damien Miller34132e52000-01-14 15:45:46 +11003325 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003326 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003327 for (n = 0; n < num_socks; n++) {
3328 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003329 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003330 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3331 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003332 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003333 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003334 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003335 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003336 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003337
Kevin Steves366298c2001-12-19 17:58:01 +00003338 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003339 *display_numberp = display_number;
3340 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003341}
3342
Ben Lindstrombba81212001-06-25 05:01:22 +00003343static int
Damien Miller819dbb62009-01-21 16:46:26 +11003344connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003345{
Damien Miller95def091999-11-25 00:26:21 +11003346 int sock;
3347 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348
Damien Miller3afe3752001-12-21 12:39:51 +11003349 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3350 if (sock < 0)
3351 error("socket: %.100s", strerror(errno));
3352 memset(&addr, 0, sizeof(addr));
3353 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003354 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003355 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003356 return sock;
3357 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003358 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3359 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003360}
3361
Damien Miller819dbb62009-01-21 16:46:26 +11003362static int
3363connect_local_xsocket(u_int dnr)
3364{
3365 char buf[1024];
3366 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3367 return connect_local_xsocket_path(buf);
3368}
3369
Damien Millerbd483e72000-04-30 10:00:53 +10003370int
3371x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003372{
Damien Miller57c4e872006-03-31 23:11:07 +11003373 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003374 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003375 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003376 struct addrinfo hints, *ai, *aitop;
3377 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003378 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003379
Damien Miller95def091999-11-25 00:26:21 +11003380 /* Try to open a socket for the local X server. */
3381 display = getenv("DISPLAY");
3382 if (!display) {
3383 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003384 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003385 }
Damien Miller5428f641999-11-25 11:54:57 +11003386 /*
3387 * Now we decode the value of the DISPLAY variable and make a
3388 * connection to the real X server.
3389 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003390
Damien Miller819dbb62009-01-21 16:46:26 +11003391 /* Check if the display is from launchd. */
3392#ifdef __APPLE__
3393 if (strncmp(display, "/tmp/launch", 11) == 0) {
3394 sock = connect_local_xsocket_path(display);
3395 if (sock < 0)
3396 return -1;
3397
3398 /* OK, we now have a connection to the display. */
3399 return sock;
3400 }
3401#endif
Damien Miller5428f641999-11-25 11:54:57 +11003402 /*
3403 * Check if it is a unix domain socket. Unix domain displays are in
3404 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3405 */
Damien Miller95def091999-11-25 00:26:21 +11003406 if (strncmp(display, "unix:", 5) == 0 ||
3407 display[0] == ':') {
3408 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003409 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003410 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003411 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003412 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003413 }
3414 /* Create a socket. */
3415 sock = connect_local_xsocket(display_number);
3416 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003417 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003418
3419 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003420 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003421 }
Damien Miller5428f641999-11-25 11:54:57 +11003422 /*
3423 * Connect to an inet socket. The DISPLAY value is supposedly
3424 * hostname:d[.s], where hostname may also be numeric IP address.
3425 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003426 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003427 cp = strchr(buf, ':');
3428 if (!cp) {
3429 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003430 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003431 }
Damien Miller95def091999-11-25 00:26:21 +11003432 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003433 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003434 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003435 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003436 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003437 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003438 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003439
Damien Miller34132e52000-01-14 15:45:46 +11003440 /* Look up the host address */
3441 memset(&hints, 0, sizeof(hints));
3442 hints.ai_family = IPv4or6;
3443 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003444 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003445 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003446 error("%.100s: unknown host. (%s)", buf,
3447 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003448 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003449 }
Damien Miller34132e52000-01-14 15:45:46 +11003450 for (ai = aitop; ai; ai = ai->ai_next) {
3451 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003452 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003453 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003454 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003455 continue;
3456 }
3457 /* Connect it to the display. */
3458 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003459 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003460 6000 + display_number, strerror(errno));
3461 close(sock);
3462 continue;
3463 }
3464 /* Success */
3465 break;
Damien Miller34132e52000-01-14 15:45:46 +11003466 }
Damien Miller34132e52000-01-14 15:45:46 +11003467 freeaddrinfo(aitop);
3468 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003469 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003470 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003471 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003472 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003473 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003474 return sock;
3475}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003476
Damien Millerbd483e72000-04-30 10:00:53 +10003477/*
3478 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3479 * the remote channel number. We should do whatever we want, and respond
3480 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3481 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003482
Damien Miller8473dd82006-07-24 14:08:32 +10003483/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003484void
Damien Miller630d6f42002-01-22 23:17:30 +11003485x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003486{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003487 Channel *c = NULL;
3488 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003489 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003490
3491 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003492
3493 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003494
3495 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003496 remote_host = packet_get_string(NULL);
3497 } else {
3498 remote_host = xstrdup("unknown (remote did not supply name)");
3499 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003500 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003501
3502 /* Obtain a connection to the real X display. */
3503 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003504 if (sock != -1) {
3505 /* Allocate a channel for this connection. */
3506 c = channel_new("connected x11 socket",
3507 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3508 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003509 c->remote_id = remote_id;
3510 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003511 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003512 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003513 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003514 /* Send refusal to the remote host. */
3515 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003516 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003517 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003518 /* Send a confirmation to the remote host. */
3519 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003520 packet_put_int(remote_id);
3521 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003522 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003523 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003524}
3525
Damien Miller69b69aa2000-10-28 14:19:58 +11003526/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003527/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003528void
Damien Miller630d6f42002-01-22 23:17:30 +11003529deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003530{
3531 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003532
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003533 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003534 case SSH_SMSG_AGENT_OPEN:
3535 error("Warning: ssh server tried agent forwarding.");
3536 break;
3537 case SSH_SMSG_X11_OPEN:
3538 error("Warning: ssh server tried X11 forwarding.");
3539 break;
3540 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003541 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003542 break;
3543 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003544 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003545 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3546 packet_put_int(rchan);
3547 packet_send();
3548}
3549
Damien Miller5428f641999-11-25 11:54:57 +11003550/*
3551 * Requests forwarding of X11 connections, generates fake authentication
3552 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003553 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003554 */
Damien Miller4af51302000-04-16 11:18:38 +10003555void
Damien Miller17e7ed02005-06-17 12:54:33 +10003556x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003557 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003558{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003559 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003560 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003561 char *new_data;
3562 int screen_number;
3563 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003564 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003565
Damien Millerf92c0792005-07-06 09:45:26 +10003566 if (x11_saved_display == NULL)
3567 x11_saved_display = xstrdup(disp);
3568 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003569 error("x11_request_forwarding_with_spoofing: different "
3570 "$DISPLAY already forwarded");
3571 return;
3572 }
3573
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003574 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003575 if (cp)
3576 cp = strchr(cp, '.');
3577 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003578 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003579 else
3580 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003581
Damien Miller13390022005-07-06 09:44:19 +10003582 if (x11_saved_proto == NULL) {
3583 /* Save protocol name. */
3584 x11_saved_proto = xstrdup(proto);
3585 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003586 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003587 * of the same length.
3588 */
3589 x11_saved_data = xmalloc(data_len);
3590 x11_fake_data = xmalloc(data_len);
3591 for (i = 0; i < data_len; i++) {
3592 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3593 fatal("x11_request_forwarding: bad "
3594 "authentication data: %.100s", data);
3595 if (i % 4 == 0)
3596 rnd = arc4random();
3597 x11_saved_data[i] = value;
3598 x11_fake_data[i] = rnd & 0xff;
3599 rnd >>= 8;
3600 }
3601 x11_saved_data_len = data_len;
3602 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003603 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003604
Damien Miller95def091999-11-25 00:26:21 +11003605 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003606 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003607
Damien Miller95def091999-11-25 00:26:21 +11003608 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003609 if (compat20) {
3610 channel_request_start(client_session_id, "x11-req", 0);
3611 packet_put_char(0); /* XXX bool single connection */
3612 } else {
3613 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3614 }
3615 packet_put_cstring(proto);
3616 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003617 packet_put_int(screen_number);
3618 packet_send();
3619 packet_write_wait();
3620 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003621}
3622
Ben Lindstrome9c99912001-06-09 00:41:05 +00003623
3624/* -- agent forwarding */
3625
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003626/* Sends a message to the server to request authentication fd forwarding. */
3627
Damien Miller4af51302000-04-16 11:18:38 +10003628void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003629auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003630{
Damien Miller95def091999-11-25 00:26:21 +11003631 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3632 packet_send();
3633 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003634}