blob: 1cd5004c47bb976c8542f8ab919db106205a39bc [file] [log] [blame]
Damien Miller7d457182010-08-05 23:09:48 +10001/* $OpenBSD: channels.c,v 1.309 2010/08/05 13:08:42 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 ||
Damien Millerea1651c2010-07-16 13:58:37 +1000920 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000921 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;
Damien Miller7d457182010-08-05 23:09:48 +10001647 u_int dlen, olen = 0;
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 Miller7d457182010-08-05 23:09:48 +10001654 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001655 if (c->output_filter != NULL) {
1656 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1657 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001658 if (c->type != SSH_CHANNEL_OPEN)
1659 chan_mark_dead(c);
1660 else
1661 chan_write_failed(c);
1662 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001663 }
1664 } else if (c->datagram) {
1665 buf = data = buffer_get_string(&c->output, &dlen);
1666 } else {
1667 buf = data = buffer_ptr(&c->output);
1668 dlen = buffer_len(&c->output);
1669 }
1670
Damien Millerd27b9472005-12-13 19:29:02 +11001671 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001672 /* ignore truncated writes, datagrams might get lost */
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 }
Damien Miller7d457182010-08-05 23:09:48 +10001685 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001686 }
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 }
Damien Miller7d457182010-08-05 23:09:48 +10001728 out:
1729 if (compat20 && olen > 0)
1730 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001731 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);
Damien Miller7d457182010-08-05 23:09:48 +10002175 if (dlen > c->remote_window ||
2176 dlen > c->remote_maxpacket) {
2177 debug("channel %d: datagram "
2178 "too big for channel",
2179 c->self);
2180 xfree(data);
2181 continue;
2182 }
Damien Millerd27b9472005-12-13 19:29:02 +11002183 packet_start(SSH2_MSG_CHANNEL_DATA);
2184 packet_put_int(c->remote_id);
2185 packet_put_string(data, dlen);
2186 packet_send();
2187 c->remote_window -= dlen + 4;
2188 xfree(data);
2189 }
2190 continue;
2191 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002192 /*
2193 * Send some data for the other side over the secure
2194 * connection.
2195 */
Damien Miller33b13562000-04-04 14:38:59 +10002196 if (compat20) {
2197 if (len > c->remote_window)
2198 len = c->remote_window;
2199 if (len > c->remote_maxpacket)
2200 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002201 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002202 if (packet_is_interactive()) {
2203 if (len > 1024)
2204 len = 512;
2205 } else {
2206 /* Keep the packets at reasonable size. */
2207 if (len > packet_get_maxsize()/2)
2208 len = packet_get_maxsize()/2;
2209 }
Damien Miller95def091999-11-25 00:26:21 +11002210 }
Damien Millerb38eff82000-04-01 11:09:21 +10002211 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002212 packet_start(compat20 ?
2213 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002214 packet_put_int(c->remote_id);
2215 packet_put_string(buffer_ptr(&c->input), len);
2216 packet_send();
2217 buffer_consume(&c->input, len);
2218 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002219 }
2220 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002221 if (compat13)
2222 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002223 /*
2224 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002225 * tell peer, that we will not send more data: send IEOF.
2226 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002227 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002228 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002229 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2230 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002231 else
2232 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002233 }
Damien Miller33b13562000-04-04 14:38:59 +10002234 /* Send extended data, i.e. stderr */
2235 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002236 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002237 c->remote_window > 0 &&
2238 (len = buffer_len(&c->extended)) > 0 &&
2239 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002240 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002241 c->self, c->remote_window, buffer_len(&c->extended),
2242 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002243 if (len > c->remote_window)
2244 len = c->remote_window;
2245 if (len > c->remote_maxpacket)
2246 len = c->remote_maxpacket;
2247 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2248 packet_put_int(c->remote_id);
2249 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2250 packet_put_string(buffer_ptr(&c->extended), len);
2251 packet_send();
2252 buffer_consume(&c->extended, len);
2253 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002254 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002255 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002256 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002257}
2258
Ben Lindstrome9c99912001-06-09 00:41:05 +00002259
2260/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002261
2262/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002263void
Damien Miller630d6f42002-01-22 23:17:30 +11002264channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002265{
Damien Miller34132e52000-01-14 15:45:46 +11002266 int id;
Damien Miller95def091999-11-25 00:26:21 +11002267 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002268 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002269 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002270
Damien Miller95def091999-11-25 00:26:21 +11002271 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002272 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002273 c = channel_lookup(id);
2274 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002275 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002276
Damien Miller95def091999-11-25 00:26:21 +11002277 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002278 if (c->type != SSH_CHANNEL_OPEN &&
2279 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002280 return;
2281
Damien Miller95def091999-11-25 00:26:21 +11002282 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002283 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002284 win_len = data_len;
2285 if (c->datagram)
2286 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002287
Damien Millera04ad492004-01-21 11:02:09 +11002288 /*
2289 * Ignore data for protocol > 1.3 if output end is no longer open.
2290 * For protocol 2 the sending side is reducing its window as it sends
2291 * data, so we must 'fake' consumption of the data in order to ensure
2292 * that window updates are sent back. Otherwise the connection might
2293 * deadlock.
2294 */
2295 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2296 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002297 c->local_window -= win_len;
2298 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002299 }
Damien Millera04ad492004-01-21 11:02:09 +11002300 return;
2301 }
2302
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002303 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002304 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002305 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002306 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002307 }
Damien Miller7d457182010-08-05 23:09:48 +10002308 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002309 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002310 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002311 return;
2312 }
Damien Miller7d457182010-08-05 23:09:48 +10002313 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002314 }
Damien Millerd27b9472005-12-13 19:29:02 +11002315 if (c->datagram)
2316 buffer_put_string(&c->output, data, data_len);
2317 else
2318 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002319 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002320}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002321
Damien Millerd79b4242006-03-31 23:11:44 +11002322/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002323void
Damien Miller630d6f42002-01-22 23:17:30 +11002324channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002325{
2326 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002327 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002328 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002329 Channel *c;
2330
2331 /* Get the channel number and verify it. */
2332 id = packet_get_int();
2333 c = channel_lookup(id);
2334
2335 if (c == NULL)
2336 packet_disconnect("Received extended_data for bad channel %d.", id);
2337 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002338 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002339 return;
2340 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002341 if (c->flags & CHAN_EOF_RCVD) {
2342 if (datafellows & SSH_BUG_EXTEOF)
2343 debug("channel %d: accepting ext data after eof", id);
2344 else
2345 packet_disconnect("Received extended_data after EOF "
2346 "on channel %d.", id);
2347 }
Damien Miller33b13562000-04-04 14:38:59 +10002348 tcode = packet_get_int();
2349 if (c->efd == -1 ||
2350 c->extended_usage != CHAN_EXTENDED_WRITE ||
2351 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002352 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002353 return;
2354 }
2355 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002356 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002357 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002358 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002359 c->self, data_len, c->local_window);
2360 xfree(data);
2361 return;
2362 }
Damien Millerd3444942000-09-30 14:20:03 +11002363 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002364 c->local_window -= data_len;
2365 buffer_append(&c->extended, data, data_len);
2366 xfree(data);
2367}
2368
Damien Millerd79b4242006-03-31 23:11:44 +11002369/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002370void
Damien Miller630d6f42002-01-22 23:17:30 +11002371channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002372{
2373 int id;
2374 Channel *c;
2375
Damien Millerb38eff82000-04-01 11:09:21 +10002376 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002377 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002378 c = channel_lookup(id);
2379 if (c == NULL)
2380 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2381 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002382
2383 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002384 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002385 debug("channel %d: FORCE input drain", c->self);
2386 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002387 if (buffer_len(&c->input) == 0)
2388 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002389 }
2390
Damien Millerb38eff82000-04-01 11:09:21 +10002391}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002392
Damien Millerd79b4242006-03-31 23:11:44 +11002393/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002394void
Damien Miller630d6f42002-01-22 23:17:30 +11002395channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002396{
Damien Millerb38eff82000-04-01 11:09:21 +10002397 int id;
2398 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002399
Damien Millerb38eff82000-04-01 11:09:21 +10002400 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002401 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002402 c = channel_lookup(id);
2403 if (c == NULL)
2404 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002405
2406 /*
2407 * Send a confirmation that we have closed the channel and no more
2408 * data is coming for it.
2409 */
Damien Miller95def091999-11-25 00:26:21 +11002410 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002411 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002412 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002413
Damien Miller5428f641999-11-25 11:54:57 +11002414 /*
2415 * If the channel is in closed state, we have sent a close request,
2416 * and the other side will eventually respond with a confirmation.
2417 * Thus, we cannot free the channel here, because then there would be
2418 * no-one to receive the confirmation. The channel gets freed when
2419 * the confirmation arrives.
2420 */
Damien Millerb38eff82000-04-01 11:09:21 +10002421 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002422 /*
2423 * Not a closed channel - mark it as draining, which will
2424 * cause it to be freed later.
2425 */
Damien Miller76765c02002-01-22 23:21:15 +11002426 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002427 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002428 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002429}
2430
Damien Millerb38eff82000-04-01 11:09:21 +10002431/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002432/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002433void
Damien Miller630d6f42002-01-22 23:17:30 +11002434channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002435{
Damien Millerb38eff82000-04-01 11:09:21 +10002436 int id = packet_get_int();
2437 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002438
Damien Miller48b03fc2002-01-22 23:11:40 +11002439 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002440 if (c == NULL)
2441 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2442 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002443}
2444
Damien Millerd79b4242006-03-31 23:11:44 +11002445/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002446void
Damien Miller630d6f42002-01-22 23:17:30 +11002447channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002448{
2449 int id = packet_get_int();
2450 Channel *c = channel_lookup(id);
2451
Damien Miller48b03fc2002-01-22 23:11:40 +11002452 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002453 if (c == NULL)
2454 packet_disconnect("Received close confirmation for "
2455 "out-of-range channel %d.", id);
2456 if (c->type != SSH_CHANNEL_CLOSED)
2457 packet_disconnect("Received close confirmation for "
2458 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002459 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002460}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002461
Damien Millerd79b4242006-03-31 23:11:44 +11002462/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002463void
Damien Miller630d6f42002-01-22 23:17:30 +11002464channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002465{
Damien Millerb38eff82000-04-01 11:09:21 +10002466 int id, remote_id;
2467 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002468
Damien Millerb38eff82000-04-01 11:09:21 +10002469 id = packet_get_int();
2470 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002471
Damien Millerb38eff82000-04-01 11:09:21 +10002472 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2473 packet_disconnect("Received open confirmation for "
2474 "non-opening channel %d.", id);
2475 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002476 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002477 c->remote_id = remote_id;
2478 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002479
2480 if (compat20) {
2481 c->remote_window = packet_get_int();
2482 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002483 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002484 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002485 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002486 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002487 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002488 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002489 c->remote_window, c->remote_maxpacket);
2490 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002491 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002492}
2493
Ben Lindstrombba81212001-06-25 05:01:22 +00002494static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002495reason2txt(int reason)
2496{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002497 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002498 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2499 return "administratively prohibited";
2500 case SSH2_OPEN_CONNECT_FAILED:
2501 return "connect failed";
2502 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2503 return "unknown channel type";
2504 case SSH2_OPEN_RESOURCE_SHORTAGE:
2505 return "resource shortage";
2506 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002507 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002508}
2509
Damien Millerd79b4242006-03-31 23:11:44 +11002510/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002511void
Damien Miller630d6f42002-01-22 23:17:30 +11002512channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002513{
Kevin Steves12057502001-02-05 14:54:34 +00002514 int id, reason;
2515 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002516 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002517
Damien Millerb38eff82000-04-01 11:09:21 +10002518 id = packet_get_int();
2519 c = channel_lookup(id);
2520
2521 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2522 packet_disconnect("Received open failure for "
2523 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002524 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002525 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002526 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002527 msg = packet_get_string(NULL);
2528 lang = packet_get_string(NULL);
2529 }
Damien Miller996acd22003-04-09 20:59:48 +10002530 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002531 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002532 if (msg != NULL)
2533 xfree(msg);
2534 if (lang != NULL)
2535 xfree(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002536 if (c->open_confirm) {
2537 debug2("callback start");
2538 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2539 debug2("callback done");
2540 }
Damien Miller33b13562000-04-04 14:38:59 +10002541 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002542 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002543 /* Schedule the channel for cleanup/deletion. */
2544 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002545}
2546
Damien Millerd79b4242006-03-31 23:11:44 +11002547/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002548void
Damien Miller630d6f42002-01-22 23:17:30 +11002549channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002550{
2551 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002552 int id;
2553 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002554
2555 if (!compat20)
2556 return;
2557
2558 /* Get the channel number and verify it. */
2559 id = packet_get_int();
2560 c = channel_lookup(id);
2561
Damien Millerd47c62a2005-12-13 19:33:57 +11002562 if (c == NULL) {
2563 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002564 return;
2565 }
2566 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002567 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002568 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002569 c->remote_window += adjust;
2570}
2571
Damien Millerd79b4242006-03-31 23:11:44 +11002572/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002573void
Damien Miller630d6f42002-01-22 23:17:30 +11002574channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002575{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002576 Channel *c = NULL;
2577 u_short host_port;
2578 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002579 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002580
Ben Lindstrome9c99912001-06-09 00:41:05 +00002581 remote_id = packet_get_int();
2582 host = packet_get_string(NULL);
2583 host_port = packet_get_int();
2584
2585 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2586 originator_string = packet_get_string(NULL);
2587 } else {
2588 originator_string = xstrdup("unknown (remote did not supply name)");
2589 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002590 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002591 c = channel_connect_to(host, host_port,
2592 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002593 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002594 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002595 if (c == NULL) {
2596 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2597 packet_put_int(remote_id);
2598 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002599 } else
2600 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002601}
2602
Damien Millerb84886b2008-05-19 15:05:07 +10002603/* ARGSUSED */
2604void
2605channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2606{
2607 Channel *c;
2608 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002609 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002610
2611 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002612 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002613
Damien Miller16a73072008-12-08 09:55:25 +11002614 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002615 packet_check_eom();
2616
Damien Miller16a73072008-12-08 09:55:25 +11002617 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002618
Damien Miller16a73072008-12-08 09:55:25 +11002619 if ((c = channel_lookup(id)) == NULL) {
2620 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002621 return;
2622 }
2623 ;
2624 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2625 return;
2626 cc->cb(type, c, cc->ctx);
2627 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2628 bzero(cc, sizeof(*cc));
2629 xfree(cc);
2630}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002631
Ben Lindstrome9c99912001-06-09 00:41:05 +00002632/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002633
Ben Lindstrom908afed2001-10-03 17:34:59 +00002634void
2635channel_set_af(int af)
2636{
2637 IPv4or6 = af;
2638}
2639
Damien Millerb16461c2002-01-22 23:29:22 +11002640static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002641channel_setup_fwd_listener(int type, const char *listen_addr,
2642 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002643 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002644{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002645 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002646 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002647 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002648 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002649 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002650 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002651
Damien Millerb16461c2002-01-22 23:29:22 +11002652 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2653 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002654 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002655
Damien Millerb16461c2002-01-22 23:29:22 +11002656 if (host == NULL) {
2657 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002658 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002659 }
Damien Miller9576ac42009-01-28 16:30:33 +11002660 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002661 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002662 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002663 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002664
Damien Miller5428f641999-11-25 11:54:57 +11002665 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002666 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002667 * specified address or wildcard. On the client, a specified bind
2668 * address will always override gateway_ports. On the server, a
2669 * gateway_ports of 1 (``yes'') will override the client's
2670 * specification and force a wildcard bind, whereas a value of 2
2671 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002672 * asked for.
2673 *
2674 * Special-case listen_addrs are:
2675 *
2676 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2677 * "" (empty string), "*" -> wildcard v4/v6
2678 * "localhost" -> loopback v4/v6
2679 */
2680 addr = NULL;
2681 if (listen_addr == NULL) {
2682 /* No address specified: default to gateway_ports setting */
2683 if (gateway_ports)
2684 wildcard = 1;
2685 } else if (gateway_ports || is_client) {
2686 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002687 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002688 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2689 (!is_client && gateway_ports == 1))
2690 wildcard = 1;
2691 else if (strcmp(listen_addr, "localhost") != 0)
2692 addr = listen_addr;
2693 }
2694
2695 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2696 type, wildcard, (addr == NULL) ? "NULL" : addr);
2697
2698 /*
Damien Miller34132e52000-01-14 15:45:46 +11002699 * getaddrinfo returns a loopback address if the hostname is
2700 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002701 */
Damien Miller34132e52000-01-14 15:45:46 +11002702 memset(&hints, 0, sizeof(hints));
2703 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002704 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002705 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002706 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002707 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2708 if (addr == NULL) {
2709 /* This really shouldn't happen */
2710 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002711 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002712 } else {
Damien Millera7270302005-07-06 09:36:05 +10002713 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002714 "getaddrinfo(%.64s): %s", addr,
2715 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002716 }
Damien Millera7270302005-07-06 09:36:05 +10002717 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002718 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002719 if (allocated_listen_port != NULL)
2720 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002721 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002722 switch (ai->ai_family) {
2723 case AF_INET:
2724 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2725 sin_port;
2726 break;
2727 case AF_INET6:
2728 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2729 sin6_port;
2730 break;
2731 default:
Damien Miller34132e52000-01-14 15:45:46 +11002732 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002733 }
2734 /*
2735 * If allocating a port for -R forwards, then use the
2736 * same port for all address families.
2737 */
2738 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2739 allocated_listen_port != NULL && *allocated_listen_port > 0)
2740 *lport_p = htons(*allocated_listen_port);
2741
Damien Miller34132e52000-01-14 15:45:46 +11002742 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2743 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002744 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002745 continue;
2746 }
2747 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002748 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002749 if (sock < 0) {
2750 /* this is no error since kernel may not support ipv6 */
2751 verbose("socket: %.100s", strerror(errno));
2752 continue;
2753 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002754
2755 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002756 if (ai->ai_family == AF_INET6)
2757 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002758
Damien Miller4bf648f2009-02-14 16:28:21 +11002759 debug("Local forwarding listening on %s port %s.",
2760 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002761
Damien Miller34132e52000-01-14 15:45:46 +11002762 /* Bind the socket to the address. */
2763 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2764 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002765 if (!ai->ai_next)
2766 error("bind: %.100s", strerror(errno));
2767 else
2768 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002769
Damien Miller34132e52000-01-14 15:45:46 +11002770 close(sock);
2771 continue;
2772 }
2773 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002774 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002775 error("listen: %.100s", strerror(errno));
2776 close(sock);
2777 continue;
2778 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002779
2780 /*
2781 * listen_port == 0 requests a dynamically allocated port -
2782 * record what we got.
2783 */
2784 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2785 allocated_listen_port != NULL &&
2786 *allocated_listen_port == 0) {
2787 *allocated_listen_port = get_sock_port(sock, 1);
2788 debug("Allocated listen port %d",
2789 *allocated_listen_port);
2790 }
2791
Damien Miller34132e52000-01-14 15:45:46 +11002792 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002793 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002794 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002795 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002796 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002797 c->host_port = port_to_connect;
2798 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002799 success = 1;
2800 }
2801 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002802 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002803 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002804 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002805 return success;
Damien Miller95def091999-11-25 00:26:21 +11002806}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002807
Darren Tuckere7066df2004-05-24 10:18:05 +10002808int
2809channel_cancel_rport_listener(const char *host, u_short port)
2810{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002811 u_int i;
2812 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002813
Darren Tucker47eede72005-03-14 23:08:12 +11002814 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002815 Channel *c = channels[i];
2816
2817 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002818 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002819 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002820 channel_free(c);
2821 found = 1;
2822 }
2823 }
2824
2825 return (found);
2826}
2827
Damien Millerb16461c2002-01-22 23:29:22 +11002828/* protocol local port fwd, used by ssh (and sshd in v1) */
2829int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002830channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002831 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2832{
2833 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002834 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002835 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002836}
2837
2838/* protocol v2 remote port fwd, used by sshd */
2839int
2840channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002841 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002842{
2843 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002844 listen_address, listen_port, allocated_listen_port,
2845 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002846}
2847
Damien Miller5428f641999-11-25 11:54:57 +11002848/*
2849 * Initiate forwarding of connections to port "port" on remote host through
2850 * the secure channel to host:port from local side.
2851 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002852
Darren Tuckere7d4b192006-07-12 22:17:10 +10002853int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002854channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002855 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002856{
Damien Millerdff50992002-01-22 23:16:32 +11002857 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002858
Damien Miller95def091999-11-25 00:26:21 +11002859 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002860 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002861 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002862 if (listen_host == NULL) {
2863 if (datafellows & SSH_BUG_RFWD_ADDR)
2864 address_to_bind = "127.0.0.1";
2865 else
2866 address_to_bind = "localhost";
2867 } else if (*listen_host == '\0' ||
2868 strcmp(listen_host, "*") == 0) {
2869 if (datafellows & SSH_BUG_RFWD_ADDR)
2870 address_to_bind = "0.0.0.0";
2871 else
2872 address_to_bind = "";
2873 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002874 address_to_bind = listen_host;
2875
Damien Miller33b13562000-04-04 14:38:59 +10002876 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2877 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002878 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002879 packet_put_cstring(address_to_bind);
2880 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002881 packet_send();
2882 packet_write_wait();
2883 /* Assume that server accepts the request */
2884 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002885 } else {
2886 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002887 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002888 packet_put_cstring(host_to_connect);
2889 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002890 packet_send();
2891 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002892
2893 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002894 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002895 switch (type) {
2896 case SSH_SMSG_SUCCESS:
2897 success = 1;
2898 break;
2899 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002900 break;
2901 default:
2902 /* Unknown packet */
2903 packet_disconnect("Protocol error for port forward request:"
2904 "received packet type %d.", type);
2905 }
2906 }
2907 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10002908 /* Record that connection to this host/port is permitted. */
2909 permitted_opens = xrealloc(permitted_opens,
2910 num_permitted_opens + 1, sizeof(*permitted_opens));
Damien Miller0bc1bd82000-11-13 22:57:25 +11002911 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2912 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2913 permitted_opens[num_permitted_opens].listen_port = listen_port;
2914 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002915 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002916 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002917}
2918
Damien Miller5428f641999-11-25 11:54:57 +11002919/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002920 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002921 * local side.
2922 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002923void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002924channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002925{
2926 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002927
2928 if (!compat20)
2929 return;
2930
2931 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002932 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002933 permitted_opens[i].listen_port == port)
2934 break;
2935 }
2936 if (i >= num_permitted_opens) {
2937 debug("%s: requested forward not found", __func__);
2938 return;
2939 }
2940 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2941 packet_put_cstring("cancel-tcpip-forward");
2942 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002943 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002944 packet_put_int(port);
2945 packet_send();
2946
2947 permitted_opens[i].listen_port = 0;
2948 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002949 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002950 permitted_opens[i].host_to_connect = NULL;
2951}
2952
2953/*
Damien Miller5428f641999-11-25 11:54:57 +11002954 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2955 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002956 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002957 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002958int
Damien Millere247cc42000-05-07 12:03:14 +10002959channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002960{
Damien Milleraae6c611999-12-06 11:47:28 +11002961 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002962 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002963 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002964
Damien Miller95def091999-11-25 00:26:21 +11002965 /* Get arguments from the packet. */
2966 port = packet_get_int();
2967 hostname = packet_get_string(NULL);
2968 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002969
Damien Millerbac2d8a2000-09-05 16:13:06 +11002970#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002971 /*
2972 * Check that an unprivileged user is not trying to forward a
2973 * privileged port.
2974 */
Damien Miller95def091999-11-25 00:26:21 +11002975 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002976 packet_disconnect(
2977 "Requested forwarding of port %d but user is not root.",
2978 port);
2979 if (host_port == 0)
2980 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002981#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002982
Damien Miller0bc1bd82000-11-13 22:57:25 +11002983 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002984 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002985 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002986
2987 /* Free the argument string. */
2988 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002989
2990 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002991}
2992
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002993/*
2994 * Permits opening to any host/port if permitted_opens[] is empty. This is
2995 * usually called by the server, because the user could connect to any port
2996 * anyway, and the server has no way to know but to trust the client anyway.
2997 */
2998void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002999channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003000{
3001 if (num_permitted_opens == 0)
3002 all_opens_permitted = 1;
3003}
3004
Ben Lindstroma3700052001-04-05 23:26:32 +00003005void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003006channel_add_permitted_opens(char *host, int port)
3007{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003008 debug("allow port forwarding to host %s port %d", host, port);
3009
Damien Miller232cfb12010-06-26 09:50:30 +10003010 permitted_opens = xrealloc(permitted_opens,
3011 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003012 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3013 permitted_opens[num_permitted_opens].port_to_connect = port;
3014 num_permitted_opens++;
3015
3016 all_opens_permitted = 0;
3017}
3018
Damien Millera765cf42006-07-24 14:08:13 +10003019int
Damien Miller9b439df2006-07-24 14:04:00 +10003020channel_add_adm_permitted_opens(char *host, int port)
3021{
Damien Millera765cf42006-07-24 14:08:13 +10003022 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003023
Damien Miller232cfb12010-06-26 09:50:30 +10003024 permitted_adm_opens = xrealloc(permitted_adm_opens,
3025 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003026 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3027 = xstrdup(host);
3028 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003029 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003030}
3031
3032void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003033channel_clear_permitted_opens(void)
3034{
3035 int i;
3036
3037 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003038 if (permitted_opens[i].host_to_connect != NULL)
3039 xfree(permitted_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003040 if (num_permitted_opens > 0) {
3041 xfree(permitted_opens);
3042 permitted_opens = NULL;
3043 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003044 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003045}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003046
Damien Miller9b439df2006-07-24 14:04:00 +10003047void
3048channel_clear_adm_permitted_opens(void)
3049{
3050 int i;
3051
3052 for (i = 0; i < num_adm_permitted_opens; i++)
3053 if (permitted_adm_opens[i].host_to_connect != NULL)
3054 xfree(permitted_adm_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003055 if (num_adm_permitted_opens > 0) {
3056 xfree(permitted_adm_opens);
3057 permitted_adm_opens = NULL;
3058 }
Damien Miller9b439df2006-07-24 14:04:00 +10003059 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003060}
3061
Darren Tuckere7140f22008-06-10 23:01:51 +10003062void
3063channel_print_adm_permitted_opens(void)
3064{
Damien Miller6ef17492008-07-16 22:42:06 +10003065 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003066
Damien Millerb53d8a12009-01-28 16:13:04 +11003067 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003068 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003069 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003070 return;
3071 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003072 for (i = 0; i < num_adm_permitted_opens; i++)
3073 if (permitted_adm_opens[i].host_to_connect != NULL)
3074 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3075 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003076 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003077}
3078
Damien Millerbd740252008-05-19 15:37:09 +10003079/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003080static int
Damien Millerbd740252008-05-19 15:37:09 +10003081connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003082{
Damien Millerbd740252008-05-19 15:37:09 +10003083 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003084 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003085
Damien Millerbd740252008-05-19 15:37:09 +10003086 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3087 if (cctx->ai->ai_family != AF_INET &&
3088 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003089 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003090 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3091 ntop, sizeof(ntop), strport, sizeof(strport),
3092 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3093 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003094 continue;
3095 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003096 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3097 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003098 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003099 error("socket: %.100s", strerror(errno));
3100 else
3101 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003102 continue;
3103 }
Damien Miller232711f2004-06-15 10:35:30 +10003104 if (set_nonblock(sock) == -1)
3105 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003106 if (connect(sock, cctx->ai->ai_addr,
3107 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3108 debug("connect_next: host %.100s ([%.100s]:%s): "
3109 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003110 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003111 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003112 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003113 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003114 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003115 }
Damien Millerbd740252008-05-19 15:37:09 +10003116 debug("connect_next: host %.100s ([%.100s]:%s) "
3117 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3118 cctx->ai = cctx->ai->ai_next;
3119 set_nodelay(sock);
3120 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003121 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003122 return -1;
3123}
Damien Millerb38eff82000-04-01 11:09:21 +10003124
Damien Millerbd740252008-05-19 15:37:09 +10003125static void
3126channel_connect_ctx_free(struct channel_connect *cctx)
3127{
3128 xfree(cctx->host);
3129 if (cctx->aitop)
3130 freeaddrinfo(cctx->aitop);
3131 bzero(cctx, sizeof(*cctx));
3132 cctx->host = NULL;
3133 cctx->ai = cctx->aitop = NULL;
3134}
3135
3136/* Return CONNECTING channel to remote host, port */
3137static Channel *
3138connect_to(const char *host, u_short port, char *ctype, char *rname)
3139{
3140 struct addrinfo hints;
3141 int gaierr;
3142 int sock = -1;
3143 char strport[NI_MAXSERV];
3144 struct channel_connect cctx;
3145 Channel *c;
3146
Damien Miller2bcb8662008-07-12 17:12:29 +10003147 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003148 memset(&hints, 0, sizeof(hints));
3149 hints.ai_family = IPv4or6;
3150 hints.ai_socktype = SOCK_STREAM;
3151 snprintf(strport, sizeof strport, "%d", port);
3152 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3153 error("connect_to %.100s: unknown host (%s)", host,
3154 ssh_gai_strerror(gaierr));
3155 return NULL;
3156 }
3157
3158 cctx.host = xstrdup(host);
3159 cctx.port = port;
3160 cctx.ai = cctx.aitop;
3161
3162 if ((sock = connect_next(&cctx)) == -1) {
3163 error("connect to %.100s port %d failed: %s",
3164 host, port, strerror(errno));
3165 channel_connect_ctx_free(&cctx);
3166 return NULL;
3167 }
3168 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3169 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3170 c->connect_ctx = cctx;
3171 return c;
3172}
3173
3174Channel *
3175channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3176{
3177 int i;
3178
3179 for (i = 0; i < num_permitted_opens; i++) {
3180 if (permitted_opens[i].host_to_connect != NULL &&
3181 permitted_opens[i].listen_port == listen_port) {
3182 return connect_to(
3183 permitted_opens[i].host_to_connect,
3184 permitted_opens[i].port_to_connect, ctype, rname);
3185 }
3186 }
3187 error("WARNING: Server requests forwarding for unknown listen_port %d",
3188 listen_port);
3189 return NULL;
3190}
3191
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003192/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003193Channel *
3194channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003195{
Damien Miller9b439df2006-07-24 14:04:00 +10003196 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003197
3198 permit = all_opens_permitted;
3199 if (!permit) {
3200 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003201 if (permitted_opens[i].host_to_connect != NULL &&
3202 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003203 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3204 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003205 }
Damien Miller9b439df2006-07-24 14:04:00 +10003206
3207 if (num_adm_permitted_opens > 0) {
3208 permit_adm = 0;
3209 for (i = 0; i < num_adm_permitted_opens; i++)
3210 if (permitted_adm_opens[i].host_to_connect != NULL &&
3211 permitted_adm_opens[i].port_to_connect == port &&
3212 strcmp(permitted_adm_opens[i].host_to_connect, host)
3213 == 0)
3214 permit_adm = 1;
3215 }
3216
3217 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003218 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003219 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003220 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003221 }
Damien Millerbd740252008-05-19 15:37:09 +10003222 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003223}
3224
Damien Miller0e220db2004-06-15 10:34:08 +10003225void
3226channel_send_window_changes(void)
3227{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003228 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003229 struct winsize ws;
3230
3231 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003232 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003233 channels[i]->type != SSH_CHANNEL_OPEN)
3234 continue;
3235 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3236 continue;
3237 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003238 packet_put_int((u_int)ws.ws_col);
3239 packet_put_int((u_int)ws.ws_row);
3240 packet_put_int((u_int)ws.ws_xpixel);
3241 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003242 packet_send();
3243 }
3244}
3245
Ben Lindstrome9c99912001-06-09 00:41:05 +00003246/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003247
Damien Miller5428f641999-11-25 11:54:57 +11003248/*
3249 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003250 * Returns 0 and a suitable display number for the DISPLAY variable
3251 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003252 */
Kevin Steves366298c2001-12-19 17:58:01 +00003253int
Damien Miller95c249f2002-02-05 12:11:34 +11003254x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003255 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003256{
Damien Millere7378562001-12-21 14:58:35 +11003257 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003258 int display_number, sock;
3259 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003260 struct addrinfo hints, *ai, *aitop;
3261 char strport[NI_MAXSERV];
3262 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003263
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003264 if (chanids == NULL)
3265 return -1;
3266
Damien Millera34a28b1999-12-14 10:47:15 +11003267 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003268 display_number < MAX_DISPLAYS;
3269 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003270 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003271 memset(&hints, 0, sizeof(hints));
3272 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003273 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003274 hints.ai_socktype = SOCK_STREAM;
3275 snprintf(strport, sizeof strport, "%d", port);
3276 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003277 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003278 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003279 }
Damien Miller34132e52000-01-14 15:45:46 +11003280 for (ai = aitop; ai; ai = ai->ai_next) {
3281 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3282 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003283 sock = socket(ai->ai_family, ai->ai_socktype,
3284 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003285 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003286 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3287#ifdef EPFNOSUPPORT
3288 && (errno != EPFNOSUPPORT)
3289#endif
3290 ) {
Damien Millere2192732000-01-17 13:22:55 +11003291 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003292 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003293 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003294 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003295 debug("x11_create_display_inet: Socket family %d not supported",
3296 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003297 continue;
3298 }
Damien Miller34132e52000-01-14 15:45:46 +11003299 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003300 if (ai->ai_family == AF_INET6)
3301 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003302 if (x11_use_localhost)
3303 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003304 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003305 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003306 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003307
Damien Miller34132e52000-01-14 15:45:46 +11003308 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003309 close(socks[n]);
3310 }
3311 num_socks = 0;
3312 break;
3313 }
3314 socks[num_socks++] = sock;
3315 if (num_socks == NUM_SOCKS)
3316 break;
Damien Miller95def091999-11-25 00:26:21 +11003317 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003318 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003319 if (num_socks > 0)
3320 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003321 }
Damien Miller95def091999-11-25 00:26:21 +11003322 if (display_number >= MAX_DISPLAYS) {
3323 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003324 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003325 }
Damien Miller95def091999-11-25 00:26:21 +11003326 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003327 for (n = 0; n < num_socks; n++) {
3328 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003329 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003330 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003331 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003332 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003333 }
Damien Miller95def091999-11-25 00:26:21 +11003334 }
Damien Miller34132e52000-01-14 15:45:46 +11003335
Damien Miller34132e52000-01-14 15:45:46 +11003336 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003337 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003338 for (n = 0; n < num_socks; n++) {
3339 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003340 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003341 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3342 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003343 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003344 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003345 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003346 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003347 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003348
Kevin Steves366298c2001-12-19 17:58:01 +00003349 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003350 *display_numberp = display_number;
3351 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003352}
3353
Ben Lindstrombba81212001-06-25 05:01:22 +00003354static int
Damien Miller819dbb62009-01-21 16:46:26 +11003355connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003356{
Damien Miller95def091999-11-25 00:26:21 +11003357 int sock;
3358 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003359
Damien Miller3afe3752001-12-21 12:39:51 +11003360 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3361 if (sock < 0)
3362 error("socket: %.100s", strerror(errno));
3363 memset(&addr, 0, sizeof(addr));
3364 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003365 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003366 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003367 return sock;
3368 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003369 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3370 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003371}
3372
Damien Miller819dbb62009-01-21 16:46:26 +11003373static int
3374connect_local_xsocket(u_int dnr)
3375{
3376 char buf[1024];
3377 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3378 return connect_local_xsocket_path(buf);
3379}
3380
Damien Millerbd483e72000-04-30 10:00:53 +10003381int
3382x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003383{
Damien Miller57c4e872006-03-31 23:11:07 +11003384 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003385 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003386 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003387 struct addrinfo hints, *ai, *aitop;
3388 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003389 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003390
Damien Miller95def091999-11-25 00:26:21 +11003391 /* Try to open a socket for the local X server. */
3392 display = getenv("DISPLAY");
3393 if (!display) {
3394 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003395 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003396 }
Damien Miller5428f641999-11-25 11:54:57 +11003397 /*
3398 * Now we decode the value of the DISPLAY variable and make a
3399 * connection to the real X server.
3400 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003401
Damien Miller819dbb62009-01-21 16:46:26 +11003402 /* Check if the display is from launchd. */
3403#ifdef __APPLE__
3404 if (strncmp(display, "/tmp/launch", 11) == 0) {
3405 sock = connect_local_xsocket_path(display);
3406 if (sock < 0)
3407 return -1;
3408
3409 /* OK, we now have a connection to the display. */
3410 return sock;
3411 }
3412#endif
Damien Miller5428f641999-11-25 11:54:57 +11003413 /*
3414 * Check if it is a unix domain socket. Unix domain displays are in
3415 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3416 */
Damien Miller95def091999-11-25 00:26:21 +11003417 if (strncmp(display, "unix:", 5) == 0 ||
3418 display[0] == ':') {
3419 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003420 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003421 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003422 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003423 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003424 }
3425 /* Create a socket. */
3426 sock = connect_local_xsocket(display_number);
3427 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003428 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003429
3430 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003431 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003432 }
Damien Miller5428f641999-11-25 11:54:57 +11003433 /*
3434 * Connect to an inet socket. The DISPLAY value is supposedly
3435 * hostname:d[.s], where hostname may also be numeric IP address.
3436 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003437 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003438 cp = strchr(buf, ':');
3439 if (!cp) {
3440 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003441 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003442 }
Damien Miller95def091999-11-25 00:26:21 +11003443 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003444 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003445 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003446 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003447 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003448 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003449 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003450
Damien Miller34132e52000-01-14 15:45:46 +11003451 /* Look up the host address */
3452 memset(&hints, 0, sizeof(hints));
3453 hints.ai_family = IPv4or6;
3454 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003455 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003456 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003457 error("%.100s: unknown host. (%s)", buf,
3458 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003459 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003460 }
Damien Miller34132e52000-01-14 15:45:46 +11003461 for (ai = aitop; ai; ai = ai->ai_next) {
3462 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003463 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003464 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003465 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003466 continue;
3467 }
3468 /* Connect it to the display. */
3469 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003470 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003471 6000 + display_number, strerror(errno));
3472 close(sock);
3473 continue;
3474 }
3475 /* Success */
3476 break;
Damien Miller34132e52000-01-14 15:45:46 +11003477 }
Damien Miller34132e52000-01-14 15:45:46 +11003478 freeaddrinfo(aitop);
3479 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003480 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003481 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003482 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003483 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003484 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003485 return sock;
3486}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003487
Damien Millerbd483e72000-04-30 10:00:53 +10003488/*
3489 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3490 * the remote channel number. We should do whatever we want, and respond
3491 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3492 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003493
Damien Miller8473dd82006-07-24 14:08:32 +10003494/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003495void
Damien Miller630d6f42002-01-22 23:17:30 +11003496x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003497{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003498 Channel *c = NULL;
3499 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003500 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003501
3502 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003503
3504 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003505
3506 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003507 remote_host = packet_get_string(NULL);
3508 } else {
3509 remote_host = xstrdup("unknown (remote did not supply name)");
3510 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003511 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003512
3513 /* Obtain a connection to the real X display. */
3514 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003515 if (sock != -1) {
3516 /* Allocate a channel for this connection. */
3517 c = channel_new("connected x11 socket",
3518 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3519 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003520 c->remote_id = remote_id;
3521 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003522 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003523 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003524 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003525 /* Send refusal to the remote host. */
3526 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003527 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003528 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003529 /* Send a confirmation to the remote host. */
3530 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003531 packet_put_int(remote_id);
3532 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003533 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003534 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003535}
3536
Damien Miller69b69aa2000-10-28 14:19:58 +11003537/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003538/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003539void
Damien Miller630d6f42002-01-22 23:17:30 +11003540deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003541{
3542 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003543
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003544 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003545 case SSH_SMSG_AGENT_OPEN:
3546 error("Warning: ssh server tried agent forwarding.");
3547 break;
3548 case SSH_SMSG_X11_OPEN:
3549 error("Warning: ssh server tried X11 forwarding.");
3550 break;
3551 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003552 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003553 break;
3554 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003555 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003556 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3557 packet_put_int(rchan);
3558 packet_send();
3559}
3560
Damien Miller5428f641999-11-25 11:54:57 +11003561/*
3562 * Requests forwarding of X11 connections, generates fake authentication
3563 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003564 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003565 */
Damien Miller4af51302000-04-16 11:18:38 +10003566void
Damien Miller17e7ed02005-06-17 12:54:33 +10003567x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003568 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003569{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003570 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003571 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003572 char *new_data;
3573 int screen_number;
3574 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003575 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003576
Damien Millerf92c0792005-07-06 09:45:26 +10003577 if (x11_saved_display == NULL)
3578 x11_saved_display = xstrdup(disp);
3579 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003580 error("x11_request_forwarding_with_spoofing: different "
3581 "$DISPLAY already forwarded");
3582 return;
3583 }
3584
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003585 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003586 if (cp)
3587 cp = strchr(cp, '.');
3588 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003589 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003590 else
3591 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003592
Damien Miller13390022005-07-06 09:44:19 +10003593 if (x11_saved_proto == NULL) {
3594 /* Save protocol name. */
3595 x11_saved_proto = xstrdup(proto);
3596 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003597 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003598 * of the same length.
3599 */
3600 x11_saved_data = xmalloc(data_len);
3601 x11_fake_data = xmalloc(data_len);
3602 for (i = 0; i < data_len; i++) {
3603 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3604 fatal("x11_request_forwarding: bad "
3605 "authentication data: %.100s", data);
3606 if (i % 4 == 0)
3607 rnd = arc4random();
3608 x11_saved_data[i] = value;
3609 x11_fake_data[i] = rnd & 0xff;
3610 rnd >>= 8;
3611 }
3612 x11_saved_data_len = data_len;
3613 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003614 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003615
Damien Miller95def091999-11-25 00:26:21 +11003616 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003617 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003618
Damien Miller95def091999-11-25 00:26:21 +11003619 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003620 if (compat20) {
3621 channel_request_start(client_session_id, "x11-req", 0);
3622 packet_put_char(0); /* XXX bool single connection */
3623 } else {
3624 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3625 }
3626 packet_put_cstring(proto);
3627 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003628 packet_put_int(screen_number);
3629 packet_send();
3630 packet_write_wait();
3631 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003632}
3633
Ben Lindstrome9c99912001-06-09 00:41:05 +00003634
3635/* -- agent forwarding */
3636
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003637/* Sends a message to the server to request authentication fd forwarding. */
3638
Damien Miller4af51302000-04-16 11:18:38 +10003639void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003640auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003641{
Damien Miller95def091999-11-25 00:26:21 +11003642 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3643 packet_send();
3644 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003645}