blob: 24d4a9f4256f2b53708658ff4bc334b1cf9d78dd [file] [log] [blame]
Damien Miller6d7b4372011-06-23 08:31:57 +10001/* $OpenBSD: channels.c,v 1.311 2011/06/22 22: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{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000376 channel_close_fd(&c->sock);
377 channel_close_fd(&c->rfd);
378 channel_close_fd(&c->wfd);
379 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000380}
381
382/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000383void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000384channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000386 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000387 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000388 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000389
390 for (n = 0, i = 0; i < channels_alloc; i++)
391 if (channels[i])
392 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000393 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000394 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000395
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000396 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000397 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000398 xfree(s);
399
Damien Miller6f83b8e2000-05-02 09:23:45 +1000400 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000401 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000402 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000403 buffer_free(&c->input);
404 buffer_free(&c->output);
405 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 if (c->remote_name) {
407 xfree(c->remote_name);
408 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100409 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100410 if (c->path) {
411 xfree(c->path);
412 c->path = NULL;
413 }
Damien Millerb84886b2008-05-19 15:05:07 +1000414 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
415 if (cc->abandon_cb != NULL)
416 cc->abandon_cb(c, cc->ctx);
417 TAILQ_REMOVE(&c->status_confirms, cc, entry);
418 bzero(cc, sizeof(*cc));
419 xfree(cc);
420 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000421 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
422 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000423 channels[c->self] = NULL;
424 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425}
426
Ben Lindstrome9c99912001-06-09 00:41:05 +0000427void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000428channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000429{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000430 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000431
Ben Lindstrom601e4362001-06-21 03:19:23 +0000432 for (i = 0; i < channels_alloc; i++)
433 if (channels[i] != NULL)
434 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435}
436
437/*
438 * Closes the sockets/fds of all channels. This is used to close extra file
439 * descriptors after a fork.
440 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000442channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000443{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000444 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000445
446 for (i = 0; i < channels_alloc; i++)
447 if (channels[i] != NULL)
448 channel_close_fds(channels[i]);
449}
450
451/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000452 * Stop listening to channels.
453 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000454void
455channel_stop_listening(void)
456{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000457 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000458 Channel *c;
459
460 for (i = 0; i < channels_alloc; i++) {
461 c = channels[i];
462 if (c != NULL) {
463 switch (c->type) {
464 case SSH_CHANNEL_AUTH_SOCKET:
465 case SSH_CHANNEL_PORT_LISTENER:
466 case SSH_CHANNEL_RPORT_LISTENER:
467 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000468 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000469 channel_free(c);
470 break;
471 }
472 }
473 }
474}
475
476/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000477 * Returns true if no channel has too much buffered data, and false if one or
478 * more channel is overfull.
479 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000480int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000481channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000482{
483 u_int i;
484 Channel *c;
485
486 for (i = 0; i < channels_alloc; i++) {
487 c = channels[i];
488 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000489#if 0
490 if (!compat20 &&
491 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100492 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000493 c->self, buffer_len(&c->input));
494 return 0;
495 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000496#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000497 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000498 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000499 c->self, buffer_len(&c->output),
500 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000501 return 0;
502 }
503 }
504 }
505 return 1;
506}
507
508/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000509int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000510channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000511{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000512 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000513 Channel *c;
514
515 for (i = 0; i < channels_alloc; i++) {
516 c = channels[i];
517 if (c == NULL)
518 continue;
519 switch (c->type) {
520 case SSH_CHANNEL_X11_LISTENER:
521 case SSH_CHANNEL_PORT_LISTENER:
522 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100523 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000524 case SSH_CHANNEL_CLOSED:
525 case SSH_CHANNEL_AUTH_SOCKET:
526 case SSH_CHANNEL_DYNAMIC:
527 case SSH_CHANNEL_CONNECTING:
528 case SSH_CHANNEL_ZOMBIE:
529 continue;
530 case SSH_CHANNEL_LARVAL:
531 if (!compat20)
532 fatal("cannot happen: SSH_CHANNEL_LARVAL");
533 continue;
534 case SSH_CHANNEL_OPENING:
535 case SSH_CHANNEL_OPEN:
536 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100537 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000538 return 1;
539 case SSH_CHANNEL_INPUT_DRAINING:
540 case SSH_CHANNEL_OUTPUT_DRAINING:
541 if (!compat13)
542 fatal("cannot happen: OUT_DRAIN");
543 return 1;
544 default:
545 fatal("channel_still_open: bad channel type %d", c->type);
546 /* NOTREACHED */
547 }
548 }
549 return 0;
550}
551
552/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000553int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000554channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000555{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000556 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000557 Channel *c;
558
559 for (i = 0; i < channels_alloc; i++) {
560 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000561 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000562 continue;
563 switch (c->type) {
564 case SSH_CHANNEL_CLOSED:
565 case SSH_CHANNEL_DYNAMIC:
566 case SSH_CHANNEL_X11_LISTENER:
567 case SSH_CHANNEL_PORT_LISTENER:
568 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100569 case SSH_CHANNEL_MUX_LISTENER:
570 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000571 case SSH_CHANNEL_OPENING:
572 case SSH_CHANNEL_CONNECTING:
573 case SSH_CHANNEL_ZOMBIE:
574 continue;
575 case SSH_CHANNEL_LARVAL:
576 case SSH_CHANNEL_AUTH_SOCKET:
577 case SSH_CHANNEL_OPEN:
578 case SSH_CHANNEL_X11_OPEN:
579 return i;
580 case SSH_CHANNEL_INPUT_DRAINING:
581 case SSH_CHANNEL_OUTPUT_DRAINING:
582 if (!compat13)
583 fatal("cannot happen: OUT_DRAIN");
584 return i;
585 default:
586 fatal("channel_find_open: bad channel type %d", c->type);
587 /* NOTREACHED */
588 }
589 }
590 return -1;
591}
592
593
594/*
595 * Returns a message describing the currently open forwarded connections,
596 * suitable for sending to the client. The message contains crlf pairs for
597 * newlines.
598 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000599char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000600channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000601{
602 Buffer buffer;
603 Channel *c;
604 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000605 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606
607 buffer_init(&buffer);
608 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
609 buffer_append(&buffer, buf, strlen(buf));
610 for (i = 0; i < channels_alloc; i++) {
611 c = channels[i];
612 if (c == NULL)
613 continue;
614 switch (c->type) {
615 case SSH_CHANNEL_X11_LISTENER:
616 case SSH_CHANNEL_PORT_LISTENER:
617 case SSH_CHANNEL_RPORT_LISTENER:
618 case SSH_CHANNEL_CLOSED:
619 case SSH_CHANNEL_AUTH_SOCKET:
620 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100621 case SSH_CHANNEL_MUX_CLIENT:
622 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623 continue;
624 case SSH_CHANNEL_LARVAL:
625 case SSH_CHANNEL_OPENING:
626 case SSH_CHANNEL_CONNECTING:
627 case SSH_CHANNEL_DYNAMIC:
628 case SSH_CHANNEL_OPEN:
629 case SSH_CHANNEL_X11_OPEN:
630 case SSH_CHANNEL_INPUT_DRAINING:
631 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000632 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100633 " #%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 +0000634 c->self, c->remote_name,
635 c->type, c->remote_id,
636 c->istate, buffer_len(&c->input),
637 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100638 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000639 buffer_append(&buffer, buf, strlen(buf));
640 continue;
641 default:
642 fatal("channel_open_message: bad channel type %d", c->type);
643 /* NOTREACHED */
644 }
645 }
646 buffer_append(&buffer, "\0", 1);
647 cp = xstrdup(buffer_ptr(&buffer));
648 buffer_free(&buffer);
649 return cp;
650}
651
652void
653channel_send_open(int id)
654{
655 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000656
Ben Lindstrome9c99912001-06-09 00:41:05 +0000657 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000658 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000659 return;
660 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000661 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662 packet_start(SSH2_MSG_CHANNEL_OPEN);
663 packet_put_cstring(c->ctype);
664 packet_put_int(c->self);
665 packet_put_int(c->local_window);
666 packet_put_int(c->local_maxpacket);
667 packet_send();
668}
669
670void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000671channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000672{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000673 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000674
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000676 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000677 return;
678 }
Damien Miller0e220db2004-06-15 10:34:08 +1000679 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 packet_start(SSH2_MSG_CHANNEL_REQUEST);
681 packet_put_int(c->remote_id);
682 packet_put_cstring(service);
683 packet_put_char(wantconfirm);
684}
Damien Miller4f7becb2006-03-26 14:10:14 +1100685
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686void
Damien Millerb84886b2008-05-19 15:05:07 +1000687channel_register_status_confirm(int id, channel_confirm_cb *cb,
688 channel_confirm_abandon_cb *abandon_cb, void *ctx)
689{
690 struct channel_confirm *cc;
691 Channel *c;
692
693 if ((c = channel_lookup(id)) == NULL)
694 fatal("channel_register_expect: %d: bad id", id);
695
696 cc = xmalloc(sizeof(*cc));
697 cc->cb = cb;
698 cc->abandon_cb = abandon_cb;
699 cc->ctx = ctx;
700 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
701}
702
703void
Damien Millerd530f5f2010-05-21 14:57:10 +1000704channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705{
706 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000707
Ben Lindstrome9c99912001-06-09 00:41:05 +0000708 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100709 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000710 return;
711 }
Damien Millerb84886b2008-05-19 15:05:07 +1000712 c->open_confirm = fn;
713 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714}
Damien Miller4f7becb2006-03-26 14:10:14 +1100715
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716void
Damien Miller39eda6e2005-11-05 14:52:50 +1100717channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000718{
Damien Millerd47c62a2005-12-13 19:33:57 +1100719 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000720
Ben Lindstrome9c99912001-06-09 00:41:05 +0000721 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000722 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000723 return;
724 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000725 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100726 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727}
Damien Miller4f7becb2006-03-26 14:10:14 +1100728
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729void
730channel_cancel_cleanup(int id)
731{
Damien Millerd47c62a2005-12-13 19:33:57 +1100732 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000733
Ben Lindstrome9c99912001-06-09 00:41:05 +0000734 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000735 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000736 return;
737 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000738 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100739 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740}
Damien Miller4f7becb2006-03-26 14:10:14 +1100741
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742void
Damien Miller077b2382005-12-31 16:22:32 +1100743channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000744 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000745{
746 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000747
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000749 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000750 return;
751 }
Damien Miller077b2382005-12-31 16:22:32 +1100752 c->input_filter = ifn;
753 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000754 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000755 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756}
757
758void
759channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000760 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000761{
762 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000763
Ben Lindstrome9c99912001-06-09 00:41:05 +0000764 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
765 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000766 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100768 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000769 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
770 packet_put_int(c->remote_id);
771 packet_put_int(c->local_window);
772 packet_send();
773}
774
Damien Miller5428f641999-11-25 11:54:57 +1100775/*
Damien Millerb38eff82000-04-01 11:09:21 +1000776 * 'channel_pre*' are called just before select() to add any bits relevant to
777 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100778 */
Damien Millerb38eff82000-04-01 11:09:21 +1000779/*
780 * 'channel_post*': perform any appropriate operations for channels which
781 * have events pending.
782 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100783typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000784chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
785chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
786
Damien Miller8473dd82006-07-24 14:08:32 +1000787/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100789channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000790{
791 FD_SET(c->sock, readset);
792}
793
Damien Miller8473dd82006-07-24 14:08:32 +1000794/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000795static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100796channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000797{
798 debug3("channel %d: waiting for connection", c->self);
799 FD_SET(c->sock, writeset);
800}
801
Ben Lindstrombba81212001-06-25 05:01:22 +0000802static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100803channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000804{
805 if (buffer_len(&c->input) < packet_get_maxsize())
806 FD_SET(c->sock, readset);
807 if (buffer_len(&c->output) > 0)
808 FD_SET(c->sock, writeset);
809}
810
Ben Lindstrombba81212001-06-25 05:01:22 +0000811static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100812channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000813{
Damien Millerde6987c2002-01-22 23:20:40 +1100814 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000815
Damien Miller33b13562000-04-04 14:38:59 +1000816 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100817 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000818 buffer_len(&c->input) < limit &&
819 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000820 FD_SET(c->rfd, readset);
821 if (c->ostate == CHAN_OUTPUT_OPEN ||
822 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
823 if (buffer_len(&c->output) > 0) {
824 FD_SET(c->wfd, writeset);
825 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000826 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000827 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
828 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000829 else
830 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000831 }
832 }
833 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000834 if (compat20 && c->efd != -1 &&
835 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000836 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
837 buffer_len(&c->extended) > 0)
838 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000839 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
840 (c->extended_usage == CHAN_EXTENDED_READ ||
841 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000842 buffer_len(&c->extended) < c->remote_window)
843 FD_SET(c->efd, readset);
844 }
Damien Miller0e220db2004-06-15 10:34:08 +1000845 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000846}
847
Damien Miller8473dd82006-07-24 14:08:32 +1000848/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100850channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000851{
852 if (buffer_len(&c->input) == 0) {
853 packet_start(SSH_MSG_CHANNEL_CLOSE);
854 packet_put_int(c->remote_id);
855 packet_send();
856 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000857 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000858 }
859}
860
Damien Miller8473dd82006-07-24 14:08:32 +1000861/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000862static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100863channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000864{
865 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000866 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000867 else
Damien Millerb38eff82000-04-01 11:09:21 +1000868 FD_SET(c->sock, writeset);
869}
870
871/*
872 * This is a special state for X11 authentication spoofing. An opened X11
873 * connection (when authentication spoofing is being done) remains in this
874 * state until the first packet has been completely read. The authentication
875 * data in that packet is then substituted by the real data if it matches the
876 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000877 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000878 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000879 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000880static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000881x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000882{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000883 u_char *ucp;
884 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000885
886 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000887 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000888 return 0;
889
890 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100891 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000892 if (ucp[0] == 0x42) { /* Byte order MSB first. */
893 proto_len = 256 * ucp[6] + ucp[7];
894 data_len = 256 * ucp[8] + ucp[9];
895 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
896 proto_len = ucp[6] + 256 * ucp[7];
897 data_len = ucp[8] + 256 * ucp[9];
898 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000899 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100900 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000901 return -1;
902 }
903
904 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000905 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000906 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
907 return 0;
908
909 /* Check if authentication protocol matches. */
910 if (proto_len != strlen(x11_saved_proto) ||
911 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000912 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000913 return -1;
914 }
915 /* Check if authentication data matches our fake data. */
916 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000917 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000918 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000919 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000920 return -1;
921 }
922 /* Check fake data length */
923 if (x11_fake_data_len != x11_saved_data_len) {
924 error("X11 fake_data_len %d != saved_data_len %d",
925 x11_fake_data_len, x11_saved_data_len);
926 return -1;
927 }
928 /*
929 * Received authentication protocol and data match
930 * our fake data. Substitute the fake data with real
931 * data.
932 */
933 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
934 x11_saved_data, x11_saved_data_len);
935 return 1;
936}
937
Ben Lindstrombba81212001-06-25 05:01:22 +0000938static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100939channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000940{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000941 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000942
Damien Millerb38eff82000-04-01 11:09:21 +1000943 if (ret == 1) {
944 /* Start normal processing for the channel. */
945 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000946 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000947 } else if (ret == -1) {
948 /*
949 * We have received an X11 connection that has bad
950 * authentication information.
951 */
Damien Miller996acd22003-04-09 20:59:48 +1000952 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000953 buffer_clear(&c->input);
954 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000955 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000956 c->sock = -1;
957 c->type = SSH_CHANNEL_CLOSED;
958 packet_start(SSH_MSG_CHANNEL_CLOSE);
959 packet_put_int(c->remote_id);
960 packet_send();
961 }
962}
963
Ben Lindstrombba81212001-06-25 05:01:22 +0000964static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100965channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000966{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000967 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000968
969 /* c->force_drain = 1; */
970
Damien Millerb38eff82000-04-01 11:09:21 +1000971 if (ret == 1) {
972 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100973 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000974 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000975 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000976 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100977 chan_read_failed(c);
978 buffer_clear(&c->input);
979 chan_ibuf_empty(c);
980 buffer_clear(&c->output);
981 /* for proto v1, the peer will send an IEOF */
982 if (compat20)
983 chan_write_failed(c);
984 else
985 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000986 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000987 }
988}
989
Damien Millere1537f92010-01-26 13:26:22 +1100990static void
991channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
992{
Damien Millerd530f5f2010-05-21 14:57:10 +1000993 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +1100994 buffer_check_alloc(&c->input, CHAN_RBUF))
995 FD_SET(c->rfd, readset);
996 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
997 /* clear buffer immediately (discard any partial packet) */
998 buffer_clear(&c->input);
999 chan_ibuf_empty(c);
1000 /* Start output drain. XXX just kill chan? */
1001 chan_rcvd_oclose(c);
1002 }
1003 if (c->ostate == CHAN_OUTPUT_OPEN ||
1004 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1005 if (buffer_len(&c->output) > 0)
1006 FD_SET(c->wfd, writeset);
1007 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1008 chan_obuf_empty(c);
1009 }
1010}
1011
Ben Lindstromb3921512001-04-11 15:57:50 +00001012/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001013/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001014static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001015channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001016{
Damien Millera10f5612002-09-12 09:49:15 +10001017 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001018 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001019 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001020 struct {
1021 u_int8_t version;
1022 u_int8_t command;
1023 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001024 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001025 } s4_req, s4_rsp;
1026
Ben Lindstromb3921512001-04-11 15:57:50 +00001027 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001028
1029 have = buffer_len(&c->input);
1030 len = sizeof(s4_req);
1031 if (have < len)
1032 return 0;
1033 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001034
1035 need = 1;
1036 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1037 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1038 debug2("channel %d: socks4a request", c->self);
1039 /* ... and needs an extra string (the hostname) */
1040 need = 2;
1041 }
1042 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001043 for (found = 0, i = len; i < have; i++) {
1044 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001045 found++;
1046 if (found == need)
1047 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001048 }
1049 if (i > 1024) {
1050 /* the peer is probably sending garbage */
1051 debug("channel %d: decode socks4: too long",
1052 c->self);
1053 return -1;
1054 }
1055 }
Damien Miller1781f532009-01-28 16:24:41 +11001056 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001057 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001058 buffer_get(&c->input, (char *)&s4_req.version, 1);
1059 buffer_get(&c->input, (char *)&s4_req.command, 1);
1060 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001061 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001062 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001063 p = buffer_ptr(&c->input);
1064 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001065 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001066 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001067 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001068 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001069 c->self, len, have);
1070 strlcpy(username, p, sizeof(username));
1071 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001072
Damien Millera1c1b6c2009-01-28 16:29:49 +11001073 if (c->path != NULL) {
1074 xfree(c->path);
1075 c->path = NULL;
1076 }
Damien Miller1781f532009-01-28 16:24:41 +11001077 if (need == 1) { /* SOCKS4: one string */
1078 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001079 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001080 } else { /* SOCKS4A: two strings */
1081 have = buffer_len(&c->input);
1082 p = buffer_ptr(&c->input);
1083 len = strlen(p);
1084 debug2("channel %d: decode socks4a: host %s/%d",
1085 c->self, p, len);
1086 len++; /* trailing '\0' */
1087 if (len > have)
1088 fatal("channel %d: decode socks4a: len %d > have %d",
1089 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001090 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001091 error("channel %d: hostname \"%.100s\" too long",
1092 c->self, p);
1093 return -1;
1094 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001095 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001096 buffer_consume(&c->input, len);
1097 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001098 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001099
Damien Millerfbdeece2003-09-02 22:52:31 +10001100 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001101 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001102
Ben Lindstromb3921512001-04-11 15:57:50 +00001103 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001104 debug("channel %d: cannot handle: %s cn %d",
1105 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001106 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001107 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001108 s4_rsp.version = 0; /* vn: 0 for reply */
1109 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001110 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001111 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001112 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001113 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001114}
1115
Darren Tucker46471c92003-07-03 13:55:19 +10001116/* try to decode a socks5 header */
1117#define SSH_SOCKS5_AUTHDONE 0x1000
1118#define SSH_SOCKS5_NOAUTH 0x00
1119#define SSH_SOCKS5_IPV4 0x01
1120#define SSH_SOCKS5_DOMAIN 0x03
1121#define SSH_SOCKS5_IPV6 0x04
1122#define SSH_SOCKS5_CONNECT 0x01
1123#define SSH_SOCKS5_SUCCESS 0x00
1124
Damien Miller8473dd82006-07-24 14:08:32 +10001125/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001126static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001127channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001128{
1129 struct {
1130 u_int8_t version;
1131 u_int8_t command;
1132 u_int8_t reserved;
1133 u_int8_t atyp;
1134 } s5_req, s5_rsp;
1135 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001136 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001137 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001138
1139 debug2("channel %d: decode socks5", c->self);
1140 p = buffer_ptr(&c->input);
1141 if (p[0] != 0x05)
1142 return -1;
1143 have = buffer_len(&c->input);
1144 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1145 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001146 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001147 return 0;
1148 nmethods = p[1];
1149 if (have < nmethods + 2)
1150 return 0;
1151 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001152 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001153 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001154 found = 1;
1155 break;
1156 }
1157 }
1158 if (!found) {
1159 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1160 c->self);
1161 return -1;
1162 }
1163 buffer_consume(&c->input, nmethods + 2);
1164 buffer_put_char(&c->output, 0x05); /* version */
1165 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1166 FD_SET(c->sock, writeset);
1167 c->flags |= SSH_SOCKS5_AUTHDONE;
1168 debug2("channel %d: socks5 auth done", c->self);
1169 return 0; /* need more */
1170 }
1171 debug2("channel %d: socks5 post auth", c->self);
1172 if (have < sizeof(s5_req)+1)
1173 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001174 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001175 if (s5_req.version != 0x05 ||
1176 s5_req.command != SSH_SOCKS5_CONNECT ||
1177 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001178 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001179 return -1;
1180 }
Darren Tucker47eede72005-03-14 23:08:12 +11001181 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001182 case SSH_SOCKS5_IPV4:
1183 addrlen = 4;
1184 af = AF_INET;
1185 break;
1186 case SSH_SOCKS5_DOMAIN:
1187 addrlen = p[sizeof(s5_req)];
1188 af = -1;
1189 break;
1190 case SSH_SOCKS5_IPV6:
1191 addrlen = 16;
1192 af = AF_INET6;
1193 break;
1194 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001195 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001196 return -1;
1197 }
Damien Miller0f077072006-07-10 22:21:02 +10001198 need = sizeof(s5_req) + addrlen + 2;
1199 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1200 need++;
1201 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001202 return 0;
1203 buffer_consume(&c->input, sizeof(s5_req));
1204 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1205 buffer_consume(&c->input, 1); /* host string length */
1206 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1207 buffer_get(&c->input, (char *)&dest_port, 2);
1208 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001209 if (c->path != NULL) {
1210 xfree(c->path);
1211 c->path = NULL;
1212 }
1213 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001214 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001215 error("channel %d: dynamic request: socks5 hostname "
1216 "\"%.100s\" too long", c->self, dest_addr);
1217 return -1;
1218 }
1219 c->path = xstrdup(dest_addr);
1220 } else {
1221 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1222 return -1;
1223 c->path = xstrdup(ntop);
1224 }
Darren Tucker46471c92003-07-03 13:55:19 +10001225 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001226
Damien Millerfbdeece2003-09-02 22:52:31 +10001227 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001228 c->self, c->path, c->host_port, s5_req.command);
1229
1230 s5_rsp.version = 0x05;
1231 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1232 s5_rsp.reserved = 0; /* ignored */
1233 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1234 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1235 dest_port = 0; /* ignored */
1236
Damien Millera0fdce92006-03-26 14:28:50 +11001237 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1238 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1239 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001240 return 1;
1241}
1242
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001243Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001244channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1245 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001246{
1247 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001248
1249 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1250 port_to_connect);
1251
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001252 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1253 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1254 0, "stdio-forward", /*nonblock*/0);
1255
1256 c->path = xstrdup(host_to_connect);
1257 c->host_port = port_to_connect;
1258 c->listening_port = 0;
1259 c->force_drain = 1;
1260
1261 channel_register_fds(c, in, out, -1, 0, 1, 0);
1262 port_open_helper(c, "direct-tcpip");
1263
1264 return c;
1265}
1266
Ben Lindstromb3921512001-04-11 15:57:50 +00001267/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001268static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001269channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001270{
1271 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001272 u_int have;
1273 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001274
1275 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001276 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001277 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001278 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001279 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001280 /* need more */
1281 FD_SET(c->sock, readset);
1282 return;
1283 }
1284 /* try to guess the protocol */
1285 p = buffer_ptr(&c->input);
1286 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001287 case 0x04:
1288 ret = channel_decode_socks4(c, readset, writeset);
1289 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001290 case 0x05:
1291 ret = channel_decode_socks5(c, readset, writeset);
1292 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001293 default:
1294 ret = -1;
1295 break;
1296 }
1297 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001298 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001299 } else if (ret == 0) {
1300 debug2("channel %d: pre_dynamic: need more", c->self);
1301 /* need more */
1302 FD_SET(c->sock, readset);
1303 } else {
1304 /* switch to the next state */
1305 c->type = SSH_CHANNEL_OPENING;
1306 port_open_helper(c, "direct-tcpip");
1307 }
1308}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001309
Damien Millerb38eff82000-04-01 11:09:21 +10001310/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001311/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001312static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001313channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001314{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001315 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001316 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001317 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001318 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001319 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001320 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001321
1322 if (FD_ISSET(c->sock, readset)) {
1323 debug("X11 connection requested.");
1324 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001325 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001326 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001327 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001328 channel_close_fd(&c->sock);
1329 chan_mark_dead(c);
1330 }
Damien Millerb38eff82000-04-01 11:09:21 +10001331 if (newsock < 0) {
1332 error("accept: %.100s", strerror(errno));
1333 return;
1334 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001335 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001336 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001337 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001338 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001339 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001340
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001341 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001342 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001343 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001344 if (compat20) {
1345 packet_start(SSH2_MSG_CHANNEL_OPEN);
1346 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001347 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001348 packet_put_int(nc->local_window_max);
1349 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001350 /* originator ipaddr and port */
1351 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001352 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001353 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001354 } else {
1355 packet_put_int(remote_port);
1356 }
Damien Millerbd483e72000-04-30 10:00:53 +10001357 packet_send();
1358 } else {
1359 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001360 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001361 if (packet_get_protocol_flags() &
1362 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001363 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001364 packet_send();
1365 }
Damien Millerd83ff352001-01-30 09:19:34 +11001366 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001367 }
1368}
1369
Ben Lindstrombba81212001-06-25 05:01:22 +00001370static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001371port_open_helper(Channel *c, char *rtype)
1372{
1373 int direct;
1374 char buf[1024];
1375 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001376 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001377
Damien Millerd6369432010-02-02 17:02:07 +11001378 if (remote_port == -1) {
1379 /* Fake addr/port to appease peers that validate it (Tectia) */
1380 xfree(remote_ipaddr);
1381 remote_ipaddr = xstrdup("127.0.0.1");
1382 remote_port = 65535;
1383 }
1384
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001385 direct = (strcmp(rtype, "direct-tcpip") == 0);
1386
1387 snprintf(buf, sizeof buf,
1388 "%s: listening port %d for %.100s port %d, "
1389 "connect from %.200s port %d",
1390 rtype, c->listening_port, c->path, c->host_port,
1391 remote_ipaddr, remote_port);
1392
1393 xfree(c->remote_name);
1394 c->remote_name = xstrdup(buf);
1395
1396 if (compat20) {
1397 packet_start(SSH2_MSG_CHANNEL_OPEN);
1398 packet_put_cstring(rtype);
1399 packet_put_int(c->self);
1400 packet_put_int(c->local_window_max);
1401 packet_put_int(c->local_maxpacket);
1402 if (direct) {
1403 /* target host, port */
1404 packet_put_cstring(c->path);
1405 packet_put_int(c->host_port);
1406 } else {
1407 /* listen address, port */
1408 packet_put_cstring(c->path);
1409 packet_put_int(c->listening_port);
1410 }
1411 /* originator host and port */
1412 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001413 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001414 packet_send();
1415 } else {
1416 packet_start(SSH_MSG_PORT_OPEN);
1417 packet_put_int(c->self);
1418 packet_put_cstring(c->path);
1419 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001420 if (packet_get_protocol_flags() &
1421 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001422 packet_put_cstring(c->remote_name);
1423 packet_send();
1424 }
1425 xfree(remote_ipaddr);
1426}
1427
Damien Miller5e7fd072005-11-05 14:53:39 +11001428static void
1429channel_set_reuseaddr(int fd)
1430{
1431 int on = 1;
1432
1433 /*
1434 * Set socket options.
1435 * Allow local port reuse in TIME_WAIT.
1436 */
1437 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1438 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1439}
1440
Damien Millerb38eff82000-04-01 11:09:21 +10001441/*
1442 * This socket is listening for connections to a forwarded TCP/IP port.
1443 */
Damien Miller8473dd82006-07-24 14:08:32 +10001444/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001445static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001446channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001447{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001448 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001449 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001450 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001451 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001452 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001453
Damien Millerb38eff82000-04-01 11:09:21 +10001454 if (FD_ISSET(c->sock, readset)) {
1455 debug("Connection to port %d forwarding "
1456 "to %.100s port %d requested.",
1457 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001458
Damien Miller4623a752001-10-10 15:03:58 +10001459 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1460 nextstate = SSH_CHANNEL_OPENING;
1461 rtype = "forwarded-tcpip";
1462 } else {
1463 if (c->host_port == 0) {
1464 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001465 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001466 } else {
1467 nextstate = SSH_CHANNEL_OPENING;
1468 rtype = "direct-tcpip";
1469 }
1470 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001471
Damien Millerb38eff82000-04-01 11:09:21 +10001472 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001473 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001474 if (newsock < 0) {
1475 error("accept: %.100s", strerror(errno));
1476 return;
1477 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001478 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001479 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1480 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001481 nc->listening_port = c->listening_port;
1482 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001483 if (c->path != NULL)
1484 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001485
Darren Tucker876045b2010-01-08 17:08:00 +11001486 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001487 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001488 }
1489}
1490
1491/*
1492 * This is the authentication agent socket listening for connections from
1493 * clients.
1494 */
Damien Miller8473dd82006-07-24 14:08:32 +10001495/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001496static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001497channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001498{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001499 Channel *nc;
1500 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001501 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001502 socklen_t addrlen;
1503
1504 if (FD_ISSET(c->sock, readset)) {
1505 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001506 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001507 if (newsock < 0) {
1508 error("accept from auth socket: %.100s", strerror(errno));
1509 return;
1510 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001511 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001512 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1513 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001514 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001515 if (compat20) {
1516 packet_start(SSH2_MSG_CHANNEL_OPEN);
1517 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001518 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001519 packet_put_int(c->local_window_max);
1520 packet_put_int(c->local_maxpacket);
1521 } else {
1522 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001523 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001524 }
Damien Millerb38eff82000-04-01 11:09:21 +10001525 packet_send();
1526 }
1527}
1528
Damien Miller8473dd82006-07-24 14:08:32 +10001529/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001530static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001531channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001532{
Damien Millerbd740252008-05-19 15:37:09 +10001533 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001534 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001535
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001536 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001537 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001538 err = errno;
1539 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001540 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001541 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001542 debug("channel %d: connected to %s port %d",
1543 c->self, c->connect_ctx.host, c->connect_ctx.port);
1544 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001545 c->type = SSH_CHANNEL_OPEN;
1546 if (compat20) {
1547 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1548 packet_put_int(c->remote_id);
1549 packet_put_int(c->self);
1550 packet_put_int(c->local_window);
1551 packet_put_int(c->local_maxpacket);
1552 } else {
1553 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1554 packet_put_int(c->remote_id);
1555 packet_put_int(c->self);
1556 }
1557 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001558 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001559 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001560 /* Try next address, if any */
1561 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1562 close(c->sock);
1563 c->sock = c->rfd = c->wfd = sock;
1564 channel_max_fd = channel_find_maxfd();
1565 return;
1566 }
1567 /* Exhausted all addresses */
1568 error("connect_to %.100s port %d: failed.",
1569 c->connect_ctx.host, c->connect_ctx.port);
1570 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001571 if (compat20) {
1572 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1573 packet_put_int(c->remote_id);
1574 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1575 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1576 packet_put_cstring(strerror(err));
1577 packet_put_cstring("");
1578 }
1579 } else {
1580 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1581 packet_put_int(c->remote_id);
1582 }
1583 chan_mark_dead(c);
1584 }
1585 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001586 }
1587}
1588
Damien Miller8473dd82006-07-24 14:08:32 +10001589/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001590static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001591channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001592{
Darren Tucker11327cc2005-03-14 23:22:25 +11001593 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001594 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001595
Damien Miller835284b2007-06-11 13:03:16 +10001596 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1597 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001598 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001599 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001600 if (len < 0 && (errno == EINTR ||
1601 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001602 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001603#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001604 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001605#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001606 if ((!c->isatty && len <= 0) ||
1607 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001608#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001609 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001610 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001611 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001612 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001613 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001614 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001615 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001616 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001617 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001618 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001619 } else {
1620 chan_read_failed(c);
1621 }
1622 return -1;
1623 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001624 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001625 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001626 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001627 chan_read_failed(c);
1628 }
Damien Millerd27b9472005-12-13 19:29:02 +11001629 } else if (c->datagram) {
1630 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001631 } else {
1632 buffer_append(&c->input, buf, len);
1633 }
Damien Millerb38eff82000-04-01 11:09:21 +10001634 }
1635 return 1;
1636}
Damien Miller4f7becb2006-03-26 14:10:14 +11001637
Damien Miller8473dd82006-07-24 14:08:32 +10001638/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001639static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001640channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001641{
Ben Lindstrome229b252001-03-05 06:28:06 +00001642 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001643 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001644 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001645 int len;
1646
1647 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001648 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001649 FD_ISSET(c->wfd, writeset) &&
1650 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001651 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001652 if (c->output_filter != NULL) {
1653 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1654 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001655 if (c->type != SSH_CHANNEL_OPEN)
1656 chan_mark_dead(c);
1657 else
1658 chan_write_failed(c);
1659 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001660 }
1661 } else if (c->datagram) {
1662 buf = data = buffer_get_string(&c->output, &dlen);
1663 } else {
1664 buf = data = buffer_ptr(&c->output);
1665 dlen = buffer_len(&c->output);
1666 }
1667
Damien Millerd27b9472005-12-13 19:29:02 +11001668 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001669 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001670 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001671 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001672 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1673 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001674 return 1;
1675 if (len <= 0) {
1676 if (c->type != SSH_CHANNEL_OPEN)
1677 chan_mark_dead(c);
1678 else
1679 chan_write_failed(c);
1680 return -1;
1681 }
Damien Miller7d457182010-08-05 23:09:48 +10001682 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001683 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001684#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001685 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001686 if (compat20 && c->wfd_isatty)
1687 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001688#endif
Damien Miller077b2382005-12-31 16:22:32 +11001689
1690 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001691 if (len < 0 &&
1692 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001693 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001694 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001695 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001696 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001697 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001698 return -1;
1699 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001700 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001701 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001702 c->type = SSH_CHANNEL_INPUT_DRAINING;
1703 } else {
1704 chan_write_failed(c);
1705 }
1706 return -1;
1707 }
Darren Tucker3980b632009-08-28 11:02:37 +10001708#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001709 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001710 if (tcgetattr(c->wfd, &tio) == 0 &&
1711 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1712 /*
1713 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001714 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001715 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001716 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001717 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001718 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001719 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001720 }
1721 }
Darren Tucker3980b632009-08-28 11:02:37 +10001722#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001723 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001724 }
Damien Miller7d457182010-08-05 23:09:48 +10001725 out:
1726 if (compat20 && olen > 0)
1727 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001728 return 1;
1729}
Damien Miller4f7becb2006-03-26 14:10:14 +11001730
Ben Lindstrombba81212001-06-25 05:01:22 +00001731static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001732channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001733{
Darren Tucker11327cc2005-03-14 23:22:25 +11001734 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001735 int len;
1736
Damien Miller1383bd82000-04-06 12:32:37 +10001737/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001738 if (c->efd != -1) {
1739 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1740 FD_ISSET(c->efd, writeset) &&
1741 buffer_len(&c->extended) > 0) {
1742 len = write(c->efd, buffer_ptr(&c->extended),
1743 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001744 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001745 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001746 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1747 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001748 return 1;
1749 if (len <= 0) {
1750 debug2("channel %d: closing write-efd %d",
1751 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001752 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001753 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001754 buffer_consume(&c->extended, len);
1755 c->local_consumed += len;
1756 }
Damien Miller8853ca52010-06-26 10:00:14 +10001757 } else if (c->efd != -1 &&
1758 (c->extended_usage == CHAN_EXTENDED_READ ||
1759 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001760 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001761 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001762 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001763 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001764 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1765 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001766 return 1;
1767 if (len <= 0) {
1768 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001769 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001770 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001771 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001772 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1773 debug3("channel %d: discard efd",
1774 c->self);
1775 } else
1776 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001777 }
Damien Miller33b13562000-04-04 14:38:59 +10001778 }
1779 }
1780 return 1;
1781}
Damien Miller4f7becb2006-03-26 14:10:14 +11001782
Damien Miller0e220db2004-06-15 10:34:08 +10001783static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001784channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001785{
Ben Lindstromb3921512001-04-11 15:57:50 +00001786 if (c->type == SSH_CHANNEL_OPEN &&
1787 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001788 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001789 c->local_maxpacket*3) ||
1790 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001791 c->local_consumed > 0) {
1792 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1793 packet_put_int(c->remote_id);
1794 packet_put_int(c->local_consumed);
1795 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001796 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001797 c->self, c->local_window,
1798 c->local_consumed);
1799 c->local_window += c->local_consumed;
1800 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001801 }
1802 return 1;
1803}
1804
Ben Lindstrombba81212001-06-25 05:01:22 +00001805static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001806channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001807{
1808 channel_handle_rfd(c, readset, writeset);
1809 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001810 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001811 return;
Damien Miller33b13562000-04-04 14:38:59 +10001812 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001813 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001814}
1815
Damien Millere1537f92010-01-26 13:26:22 +11001816static u_int
1817read_mux(Channel *c, u_int need)
1818{
1819 char buf[CHAN_RBUF];
1820 int len;
1821 u_int rlen;
1822
1823 if (buffer_len(&c->input) < need) {
1824 rlen = need - buffer_len(&c->input);
1825 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1826 if (len <= 0) {
1827 if (errno != EINTR && errno != EAGAIN) {
1828 debug2("channel %d: ctl read<=0 rfd %d len %d",
1829 c->self, c->rfd, len);
1830 chan_read_failed(c);
1831 return 0;
1832 }
1833 } else
1834 buffer_append(&c->input, buf, len);
1835 }
1836 return buffer_len(&c->input);
1837}
1838
1839static void
1840channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1841{
1842 u_int need;
1843 ssize_t len;
1844
1845 if (!compat20)
1846 fatal("%s: entered with !compat20", __func__);
1847
Damien Millerd530f5f2010-05-21 14:57:10 +10001848 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001849 (c->istate == CHAN_INPUT_OPEN ||
1850 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1851 /*
1852 * Don't not read past the precise end of packets to
1853 * avoid disrupting fd passing.
1854 */
1855 if (read_mux(c, 4) < 4) /* read header */
1856 return;
1857 need = get_u32(buffer_ptr(&c->input));
1858#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1859 if (need > CHANNEL_MUX_MAX_PACKET) {
1860 debug2("channel %d: packet too big %u > %u",
1861 c->self, CHANNEL_MUX_MAX_PACKET, need);
1862 chan_rcvd_oclose(c);
1863 return;
1864 }
1865 if (read_mux(c, need + 4) < need + 4) /* read body */
1866 return;
1867 if (c->mux_rcb(c) != 0) {
1868 debug("channel %d: mux_rcb failed", c->self);
1869 chan_mark_dead(c);
1870 return;
1871 }
1872 }
1873
1874 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1875 buffer_len(&c->output) > 0) {
1876 len = write(c->wfd, buffer_ptr(&c->output),
1877 buffer_len(&c->output));
1878 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1879 return;
1880 if (len <= 0) {
1881 chan_mark_dead(c);
1882 return;
1883 }
1884 buffer_consume(&c->output, len);
1885 }
1886}
1887
1888static void
1889channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1890{
1891 Channel *nc;
1892 struct sockaddr_storage addr;
1893 socklen_t addrlen;
1894 int newsock;
1895 uid_t euid;
1896 gid_t egid;
1897
1898 if (!FD_ISSET(c->sock, readset))
1899 return;
1900
1901 debug("multiplexing control connection");
1902
1903 /*
1904 * Accept connection on control socket
1905 */
1906 memset(&addr, 0, sizeof(addr));
1907 addrlen = sizeof(addr);
1908 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1909 &addrlen)) == -1) {
1910 error("%s accept: %s", __func__, strerror(errno));
1911 return;
1912 }
1913
1914 if (getpeereid(newsock, &euid, &egid) < 0) {
1915 error("%s getpeereid failed: %s", __func__,
1916 strerror(errno));
1917 close(newsock);
1918 return;
1919 }
1920 if ((euid != 0) && (getuid() != euid)) {
1921 error("multiplex uid mismatch: peer euid %u != uid %u",
1922 (u_int)euid, (u_int)getuid());
1923 close(newsock);
1924 return;
1925 }
1926 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1927 newsock, newsock, -1, c->local_window_max,
1928 c->local_maxpacket, 0, "mux-control", 1);
1929 nc->mux_rcb = c->mux_rcb;
1930 debug3("%s: new mux channel %d fd %d", __func__,
1931 nc->self, nc->sock);
1932 /* establish state */
1933 nc->mux_rcb(nc);
1934 /* mux state transitions must not elicit protocol messages */
1935 nc->flags |= CHAN_LOCAL;
1936}
1937
Damien Miller8473dd82006-07-24 14:08:32 +10001938/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001939static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001940channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001941{
1942 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001943
Damien Millerb38eff82000-04-01 11:09:21 +10001944 /* Send buffered output data to the socket. */
1945 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1946 len = write(c->sock, buffer_ptr(&c->output),
1947 buffer_len(&c->output));
1948 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001949 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001950 else
1951 buffer_consume(&c->output, len);
1952 }
1953}
1954
Ben Lindstrombba81212001-06-25 05:01:22 +00001955static void
Damien Miller33b13562000-04-04 14:38:59 +10001956channel_handler_init_20(void)
1957{
Damien Millerde6987c2002-01-22 23:20:40 +11001958 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001959 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001960 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001961 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001962 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001963 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001964 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001965 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001966 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1967 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001968
Damien Millerde6987c2002-01-22 23:20:40 +11001969 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001970 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001971 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001972 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001973 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001974 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001975 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001976 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1977 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001978}
1979
Ben Lindstrombba81212001-06-25 05:01:22 +00001980static void
Damien Millerb38eff82000-04-01 11:09:21 +10001981channel_handler_init_13(void)
1982{
1983 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1984 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1985 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1986 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1987 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1988 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1989 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001990 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001991 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001992
Damien Millerde6987c2002-01-22 23:20:40 +11001993 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001994 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1995 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1996 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1997 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001998 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001999 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002000}
2001
Ben Lindstrombba81212001-06-25 05:01:22 +00002002static void
Damien Millerb38eff82000-04-01 11:09:21 +10002003channel_handler_init_15(void)
2004{
Damien Millerde6987c2002-01-22 23:20:40 +11002005 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002006 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002007 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2008 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2009 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002010 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002011 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002012
2013 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2014 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2015 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002016 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002017 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002018 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002019}
2020
Ben Lindstrombba81212001-06-25 05:01:22 +00002021static void
Damien Millerb38eff82000-04-01 11:09:21 +10002022channel_handler_init(void)
2023{
2024 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002025
Damien Miller9f0f5c62001-12-21 14:45:46 +11002026 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002027 channel_pre[i] = NULL;
2028 channel_post[i] = NULL;
2029 }
Damien Miller33b13562000-04-04 14:38:59 +10002030 if (compat20)
2031 channel_handler_init_20();
2032 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002033 channel_handler_init_13();
2034 else
2035 channel_handler_init_15();
2036}
2037
Damien Miller3ec27592001-10-12 11:35:04 +10002038/* gc dead channels */
2039static void
2040channel_garbage_collect(Channel *c)
2041{
2042 if (c == NULL)
2043 return;
2044 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002045 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002046 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002047 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002048 c->detach_user(c->self, NULL);
2049 /* if we still have a callback */
2050 if (c->detach_user != NULL)
2051 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002052 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002053 }
2054 if (!chan_is_dead(c, 1))
2055 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002056 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002057 channel_free(c);
2058}
2059
Ben Lindstrombba81212001-06-25 05:01:22 +00002060static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002061channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002062{
2063 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002064 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002065 Channel *c;
2066
2067 if (!did_init) {
2068 channel_handler_init();
2069 did_init = 1;
2070 }
Darren Tucker876045b2010-01-08 17:08:00 +11002071 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002072 c = channels[i];
2073 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002074 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002075 if (c->delayed) {
2076 if (ftab == channel_pre)
2077 c->delayed = 0;
2078 else
2079 continue;
2080 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00002081 if (ftab[c->type] != NULL)
2082 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10002083 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002084 }
2085}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002086
Ben Lindstrome9c99912001-06-09 00:41:05 +00002087/*
2088 * Allocate/update select bitmasks and add any bits relevant to channels in
2089 * select bitmasks.
2090 */
Damien Miller4af51302000-04-16 11:18:38 +10002091void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002092channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002093 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002094{
Damien Miller36812092006-03-26 14:22:47 +11002095 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002096
2097 n = MAX(*maxfdp, channel_max_fd);
2098
Damien Miller36812092006-03-26 14:22:47 +11002099 nfdset = howmany(n+1, NFDBITS);
2100 /* Explicitly test here, because xrealloc isn't always called */
2101 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2102 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2103 sz = nfdset * sizeof(fd_mask);
2104
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002105 /* perhaps check sz < nalloc/2 and shrink? */
2106 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002107 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2108 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002109 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002110 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002111 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002112 memset(*readsetp, 0, sz);
2113 memset(*writesetp, 0, sz);
2114
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002115 if (!rekeying)
2116 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002117}
2118
Ben Lindstrome9c99912001-06-09 00:41:05 +00002119/*
2120 * After select, perform any appropriate operations for channels which have
2121 * events pending.
2122 */
Damien Miller4af51302000-04-16 11:18:38 +10002123void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002124channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002125{
Damien Millerb38eff82000-04-01 11:09:21 +10002126 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002127}
2128
Ben Lindstrome9c99912001-06-09 00:41:05 +00002129
Damien Miller5e953212001-01-30 09:14:00 +11002130/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002131void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002132channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002133{
Damien Millerb38eff82000-04-01 11:09:21 +10002134 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002135 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002136
Damien Miller95def091999-11-25 00:26:21 +11002137 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002138 c = channels[i];
2139 if (c == NULL)
2140 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002141
Ben Lindstrome9c99912001-06-09 00:41:05 +00002142 /*
2143 * We are only interested in channels that can have buffered
2144 * incoming data.
2145 */
Damien Miller34132e52000-01-14 15:45:46 +11002146 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002147 if (c->type != SSH_CHANNEL_OPEN &&
2148 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002149 continue;
2150 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002151 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002152 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002153 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002154 if (compat20 &&
2155 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002156 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002157 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002158 continue;
2159 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002160
Damien Miller95def091999-11-25 00:26:21 +11002161 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002162 if ((c->istate == CHAN_INPUT_OPEN ||
2163 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2164 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002165 if (c->datagram) {
2166 if (len > 0) {
2167 u_char *data;
2168 u_int dlen;
2169
2170 data = buffer_get_string(&c->input,
2171 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002172 if (dlen > c->remote_window ||
2173 dlen > c->remote_maxpacket) {
2174 debug("channel %d: datagram "
2175 "too big for channel",
2176 c->self);
2177 xfree(data);
2178 continue;
2179 }
Damien Millerd27b9472005-12-13 19:29:02 +11002180 packet_start(SSH2_MSG_CHANNEL_DATA);
2181 packet_put_int(c->remote_id);
2182 packet_put_string(data, dlen);
2183 packet_send();
2184 c->remote_window -= dlen + 4;
2185 xfree(data);
2186 }
2187 continue;
2188 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002189 /*
2190 * Send some data for the other side over the secure
2191 * connection.
2192 */
Damien Miller33b13562000-04-04 14:38:59 +10002193 if (compat20) {
2194 if (len > c->remote_window)
2195 len = c->remote_window;
2196 if (len > c->remote_maxpacket)
2197 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002198 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002199 if (packet_is_interactive()) {
2200 if (len > 1024)
2201 len = 512;
2202 } else {
2203 /* Keep the packets at reasonable size. */
2204 if (len > packet_get_maxsize()/2)
2205 len = packet_get_maxsize()/2;
2206 }
Damien Miller95def091999-11-25 00:26:21 +11002207 }
Damien Millerb38eff82000-04-01 11:09:21 +10002208 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002209 packet_start(compat20 ?
2210 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002211 packet_put_int(c->remote_id);
2212 packet_put_string(buffer_ptr(&c->input), len);
2213 packet_send();
2214 buffer_consume(&c->input, len);
2215 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002216 }
2217 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002218 if (compat13)
2219 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002220 /*
2221 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002222 * tell peer, that we will not send more data: send IEOF.
2223 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002224 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002225 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002226 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2227 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002228 else
2229 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002230 }
Damien Miller33b13562000-04-04 14:38:59 +10002231 /* Send extended data, i.e. stderr */
2232 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002233 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002234 c->remote_window > 0 &&
2235 (len = buffer_len(&c->extended)) > 0 &&
2236 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002237 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002238 c->self, c->remote_window, buffer_len(&c->extended),
2239 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002240 if (len > c->remote_window)
2241 len = c->remote_window;
2242 if (len > c->remote_maxpacket)
2243 len = c->remote_maxpacket;
2244 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2245 packet_put_int(c->remote_id);
2246 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2247 packet_put_string(buffer_ptr(&c->extended), len);
2248 packet_send();
2249 buffer_consume(&c->extended, len);
2250 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002251 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002252 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002253 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002254}
2255
Ben Lindstrome9c99912001-06-09 00:41:05 +00002256
2257/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002258
2259/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002260void
Damien Miller630d6f42002-01-22 23:17:30 +11002261channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002262{
Damien Miller34132e52000-01-14 15:45:46 +11002263 int id;
Damien Miller95def091999-11-25 00:26:21 +11002264 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002265 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002266 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267
Damien Miller95def091999-11-25 00:26:21 +11002268 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002269 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002270 c = channel_lookup(id);
2271 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002272 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002273
Damien Miller95def091999-11-25 00:26:21 +11002274 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002275 if (c->type != SSH_CHANNEL_OPEN &&
2276 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002277 return;
2278
Damien Miller95def091999-11-25 00:26:21 +11002279 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002280 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002281 win_len = data_len;
2282 if (c->datagram)
2283 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002284
Damien Millera04ad492004-01-21 11:02:09 +11002285 /*
2286 * Ignore data for protocol > 1.3 if output end is no longer open.
2287 * For protocol 2 the sending side is reducing its window as it sends
2288 * data, so we must 'fake' consumption of the data in order to ensure
2289 * that window updates are sent back. Otherwise the connection might
2290 * deadlock.
2291 */
2292 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2293 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002294 c->local_window -= win_len;
2295 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002296 }
Damien Millera04ad492004-01-21 11:02:09 +11002297 return;
2298 }
2299
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002300 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002301 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002302 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002303 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002304 }
Damien Miller7d457182010-08-05 23:09:48 +10002305 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002306 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002307 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002308 return;
2309 }
Damien Miller7d457182010-08-05 23:09:48 +10002310 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002311 }
Damien Millerd27b9472005-12-13 19:29:02 +11002312 if (c->datagram)
2313 buffer_put_string(&c->output, data, data_len);
2314 else
2315 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002316 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002317}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002318
Damien Millerd79b4242006-03-31 23:11:44 +11002319/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002320void
Damien Miller630d6f42002-01-22 23:17:30 +11002321channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002322{
2323 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002324 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002325 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002326 Channel *c;
2327
2328 /* Get the channel number and verify it. */
2329 id = packet_get_int();
2330 c = channel_lookup(id);
2331
2332 if (c == NULL)
2333 packet_disconnect("Received extended_data for bad channel %d.", id);
2334 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002335 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002336 return;
2337 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002338 if (c->flags & CHAN_EOF_RCVD) {
2339 if (datafellows & SSH_BUG_EXTEOF)
2340 debug("channel %d: accepting ext data after eof", id);
2341 else
2342 packet_disconnect("Received extended_data after EOF "
2343 "on channel %d.", id);
2344 }
Damien Miller33b13562000-04-04 14:38:59 +10002345 tcode = packet_get_int();
2346 if (c->efd == -1 ||
2347 c->extended_usage != CHAN_EXTENDED_WRITE ||
2348 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002349 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002350 return;
2351 }
2352 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002353 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002354 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002355 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002356 c->self, data_len, c->local_window);
2357 xfree(data);
2358 return;
2359 }
Damien Millerd3444942000-09-30 14:20:03 +11002360 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002361 c->local_window -= data_len;
2362 buffer_append(&c->extended, data, data_len);
2363 xfree(data);
2364}
2365
Damien Millerd79b4242006-03-31 23:11:44 +11002366/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002367void
Damien Miller630d6f42002-01-22 23:17:30 +11002368channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002369{
2370 int id;
2371 Channel *c;
2372
Damien Millerb38eff82000-04-01 11:09:21 +10002373 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002374 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002375 c = channel_lookup(id);
2376 if (c == NULL)
2377 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2378 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002379
2380 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002381 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002382 debug("channel %d: FORCE input drain", c->self);
2383 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002384 if (buffer_len(&c->input) == 0)
2385 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002386 }
2387
Damien Millerb38eff82000-04-01 11:09:21 +10002388}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002389
Damien Millerd79b4242006-03-31 23:11:44 +11002390/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002391void
Damien Miller630d6f42002-01-22 23:17:30 +11002392channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002393{
Damien Millerb38eff82000-04-01 11:09:21 +10002394 int id;
2395 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002396
Damien Millerb38eff82000-04-01 11:09:21 +10002397 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002398 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002399 c = channel_lookup(id);
2400 if (c == NULL)
2401 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002402
2403 /*
2404 * Send a confirmation that we have closed the channel and no more
2405 * data is coming for it.
2406 */
Damien Miller95def091999-11-25 00:26:21 +11002407 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002408 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002409 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002410
Damien Miller5428f641999-11-25 11:54:57 +11002411 /*
2412 * If the channel is in closed state, we have sent a close request,
2413 * and the other side will eventually respond with a confirmation.
2414 * Thus, we cannot free the channel here, because then there would be
2415 * no-one to receive the confirmation. The channel gets freed when
2416 * the confirmation arrives.
2417 */
Damien Millerb38eff82000-04-01 11:09:21 +10002418 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002419 /*
2420 * Not a closed channel - mark it as draining, which will
2421 * cause it to be freed later.
2422 */
Damien Miller76765c02002-01-22 23:21:15 +11002423 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002424 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002425 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002426}
2427
Damien Millerb38eff82000-04-01 11:09:21 +10002428/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002429/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002430void
Damien Miller630d6f42002-01-22 23:17:30 +11002431channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432{
Damien Millerb38eff82000-04-01 11:09:21 +10002433 int id = packet_get_int();
2434 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002435
Damien Miller48b03fc2002-01-22 23:11:40 +11002436 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002437 if (c == NULL)
2438 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2439 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002440}
2441
Damien Millerd79b4242006-03-31 23:11:44 +11002442/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002443void
Damien Miller630d6f42002-01-22 23:17:30 +11002444channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002445{
2446 int id = packet_get_int();
2447 Channel *c = channel_lookup(id);
2448
Damien Miller48b03fc2002-01-22 23:11:40 +11002449 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002450 if (c == NULL)
2451 packet_disconnect("Received close confirmation for "
2452 "out-of-range channel %d.", id);
2453 if (c->type != SSH_CHANNEL_CLOSED)
2454 packet_disconnect("Received close confirmation for "
2455 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002456 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002457}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002458
Damien Millerd79b4242006-03-31 23:11:44 +11002459/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002460void
Damien Miller630d6f42002-01-22 23:17:30 +11002461channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002462{
Damien Millerb38eff82000-04-01 11:09:21 +10002463 int id, remote_id;
2464 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002465
Damien Millerb38eff82000-04-01 11:09:21 +10002466 id = packet_get_int();
2467 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002468
Damien Millerb38eff82000-04-01 11:09:21 +10002469 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2470 packet_disconnect("Received open confirmation for "
2471 "non-opening channel %d.", id);
2472 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002473 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002474 c->remote_id = remote_id;
2475 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002476
2477 if (compat20) {
2478 c->remote_window = packet_get_int();
2479 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002480 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002481 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002482 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002483 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002484 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002485 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002486 c->remote_window, c->remote_maxpacket);
2487 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002488 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002489}
2490
Ben Lindstrombba81212001-06-25 05:01:22 +00002491static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002492reason2txt(int reason)
2493{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002494 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002495 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2496 return "administratively prohibited";
2497 case SSH2_OPEN_CONNECT_FAILED:
2498 return "connect failed";
2499 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2500 return "unknown channel type";
2501 case SSH2_OPEN_RESOURCE_SHORTAGE:
2502 return "resource shortage";
2503 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002504 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002505}
2506
Damien Millerd79b4242006-03-31 23:11:44 +11002507/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002508void
Damien Miller630d6f42002-01-22 23:17:30 +11002509channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002510{
Kevin Steves12057502001-02-05 14:54:34 +00002511 int id, reason;
2512 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002513 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514
Damien Millerb38eff82000-04-01 11:09:21 +10002515 id = packet_get_int();
2516 c = channel_lookup(id);
2517
2518 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2519 packet_disconnect("Received open failure for "
2520 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002521 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002522 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002523 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002524 msg = packet_get_string(NULL);
2525 lang = packet_get_string(NULL);
2526 }
Damien Miller996acd22003-04-09 20:59:48 +10002527 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002528 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002529 if (msg != NULL)
2530 xfree(msg);
2531 if (lang != NULL)
2532 xfree(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002533 if (c->open_confirm) {
2534 debug2("callback start");
2535 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2536 debug2("callback done");
2537 }
Damien Miller33b13562000-04-04 14:38:59 +10002538 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002539 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002540 /* Schedule the channel for cleanup/deletion. */
2541 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002542}
2543
Damien Millerd79b4242006-03-31 23:11:44 +11002544/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002545void
Damien Miller630d6f42002-01-22 23:17:30 +11002546channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002547{
2548 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002549 int id;
2550 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002551
2552 if (!compat20)
2553 return;
2554
2555 /* Get the channel number and verify it. */
2556 id = packet_get_int();
2557 c = channel_lookup(id);
2558
Damien Millerd47c62a2005-12-13 19:33:57 +11002559 if (c == NULL) {
2560 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002561 return;
2562 }
2563 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002564 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002565 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002566 c->remote_window += adjust;
2567}
2568
Damien Millerd79b4242006-03-31 23:11:44 +11002569/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002570void
Damien Miller630d6f42002-01-22 23:17:30 +11002571channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002572{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002573 Channel *c = NULL;
2574 u_short host_port;
2575 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002576 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002577
Ben Lindstrome9c99912001-06-09 00:41:05 +00002578 remote_id = packet_get_int();
2579 host = packet_get_string(NULL);
2580 host_port = packet_get_int();
2581
2582 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2583 originator_string = packet_get_string(NULL);
2584 } else {
2585 originator_string = xstrdup("unknown (remote did not supply name)");
2586 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002587 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002588 c = channel_connect_to(host, host_port,
2589 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002590 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002591 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002592 if (c == NULL) {
2593 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2594 packet_put_int(remote_id);
2595 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002596 } else
2597 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002598}
2599
Damien Millerb84886b2008-05-19 15:05:07 +10002600/* ARGSUSED */
2601void
2602channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2603{
2604 Channel *c;
2605 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002606 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002607
2608 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002609 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002610
Damien Miller16a73072008-12-08 09:55:25 +11002611 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002612 packet_check_eom();
2613
Damien Miller16a73072008-12-08 09:55:25 +11002614 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002615
Damien Miller16a73072008-12-08 09:55:25 +11002616 if ((c = channel_lookup(id)) == NULL) {
2617 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002618 return;
2619 }
2620 ;
2621 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2622 return;
2623 cc->cb(type, c, cc->ctx);
2624 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2625 bzero(cc, sizeof(*cc));
2626 xfree(cc);
2627}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002628
Ben Lindstrome9c99912001-06-09 00:41:05 +00002629/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002630
Ben Lindstrom908afed2001-10-03 17:34:59 +00002631void
2632channel_set_af(int af)
2633{
2634 IPv4or6 = af;
2635}
2636
Damien Millerb16461c2002-01-22 23:29:22 +11002637static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002638channel_setup_fwd_listener(int type, const char *listen_addr,
2639 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002640 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002641{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002642 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002643 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002644 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002645 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002646 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002647 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002648
Damien Millerb16461c2002-01-22 23:29:22 +11002649 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2650 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002651 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002652
Damien Millerb16461c2002-01-22 23:29:22 +11002653 if (host == NULL) {
2654 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002655 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002656 }
Damien Miller9576ac42009-01-28 16:30:33 +11002657 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002658 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002659 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002660 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002661
Damien Miller5428f641999-11-25 11:54:57 +11002662 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002663 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002664 * specified address or wildcard. On the client, a specified bind
2665 * address will always override gateway_ports. On the server, a
2666 * gateway_ports of 1 (``yes'') will override the client's
2667 * specification and force a wildcard bind, whereas a value of 2
2668 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002669 * asked for.
2670 *
2671 * Special-case listen_addrs are:
2672 *
2673 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2674 * "" (empty string), "*" -> wildcard v4/v6
2675 * "localhost" -> loopback v4/v6
2676 */
2677 addr = NULL;
2678 if (listen_addr == NULL) {
2679 /* No address specified: default to gateway_ports setting */
2680 if (gateway_ports)
2681 wildcard = 1;
2682 } else if (gateway_ports || is_client) {
2683 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
Damien Miller3de49f82008-02-10 22:25:24 +11002684 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
Damien Millerf91ee4c2005-03-01 21:24:33 +11002685 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2686 (!is_client && gateway_ports == 1))
2687 wildcard = 1;
2688 else if (strcmp(listen_addr, "localhost") != 0)
2689 addr = listen_addr;
2690 }
2691
2692 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2693 type, wildcard, (addr == NULL) ? "NULL" : addr);
2694
2695 /*
Damien Miller34132e52000-01-14 15:45:46 +11002696 * getaddrinfo returns a loopback address if the hostname is
2697 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002698 */
Damien Miller34132e52000-01-14 15:45:46 +11002699 memset(&hints, 0, sizeof(hints));
2700 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002701 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002702 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002703 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002704 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2705 if (addr == NULL) {
2706 /* This really shouldn't happen */
2707 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002708 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002709 } else {
Damien Millera7270302005-07-06 09:36:05 +10002710 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002711 "getaddrinfo(%.64s): %s", addr,
2712 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002713 }
Damien Millera7270302005-07-06 09:36:05 +10002714 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002715 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002716 if (allocated_listen_port != NULL)
2717 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002718 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002719 switch (ai->ai_family) {
2720 case AF_INET:
2721 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2722 sin_port;
2723 break;
2724 case AF_INET6:
2725 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2726 sin6_port;
2727 break;
2728 default:
Damien Miller34132e52000-01-14 15:45:46 +11002729 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002730 }
2731 /*
2732 * If allocating a port for -R forwards, then use the
2733 * same port for all address families.
2734 */
2735 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2736 allocated_listen_port != NULL && *allocated_listen_port > 0)
2737 *lport_p = htons(*allocated_listen_port);
2738
Damien Miller34132e52000-01-14 15:45:46 +11002739 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2740 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002741 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002742 continue;
2743 }
2744 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002745 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002746 if (sock < 0) {
2747 /* this is no error since kernel may not support ipv6 */
2748 verbose("socket: %.100s", strerror(errno));
2749 continue;
2750 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002751
2752 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002753 if (ai->ai_family == AF_INET6)
2754 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002755
Damien Miller4bf648f2009-02-14 16:28:21 +11002756 debug("Local forwarding listening on %s port %s.",
2757 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002758
Damien Miller34132e52000-01-14 15:45:46 +11002759 /* Bind the socket to the address. */
2760 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2761 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002762 if (!ai->ai_next)
2763 error("bind: %.100s", strerror(errno));
2764 else
2765 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002766
Damien Miller34132e52000-01-14 15:45:46 +11002767 close(sock);
2768 continue;
2769 }
2770 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002771 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002772 error("listen: %.100s", strerror(errno));
2773 close(sock);
2774 continue;
2775 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002776
2777 /*
2778 * listen_port == 0 requests a dynamically allocated port -
2779 * record what we got.
2780 */
2781 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2782 allocated_listen_port != NULL &&
2783 *allocated_listen_port == 0) {
2784 *allocated_listen_port = get_sock_port(sock, 1);
2785 debug("Allocated listen port %d",
2786 *allocated_listen_port);
2787 }
2788
Damien Miller34132e52000-01-14 15:45:46 +11002789 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002790 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002791 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002792 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002793 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002794 c->host_port = port_to_connect;
2795 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002796 success = 1;
2797 }
2798 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002799 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002800 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002801 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002802 return success;
Damien Miller95def091999-11-25 00:26:21 +11002803}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002804
Darren Tuckere7066df2004-05-24 10:18:05 +10002805int
2806channel_cancel_rport_listener(const char *host, u_short port)
2807{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002808 u_int i;
2809 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002810
Darren Tucker47eede72005-03-14 23:08:12 +11002811 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002812 Channel *c = channels[i];
2813
2814 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
Damien Millera1c1b6c2009-01-28 16:29:49 +11002815 strcmp(c->path, host) == 0 && c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002816 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002817 channel_free(c);
2818 found = 1;
2819 }
2820 }
2821
2822 return (found);
2823}
2824
Damien Millerb16461c2002-01-22 23:29:22 +11002825/* protocol local port fwd, used by ssh (and sshd in v1) */
2826int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002827channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002828 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2829{
2830 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002831 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002832 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002833}
2834
2835/* protocol v2 remote port fwd, used by sshd */
2836int
2837channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002838 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002839{
2840 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002841 listen_address, listen_port, allocated_listen_port,
2842 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002843}
2844
Damien Miller5428f641999-11-25 11:54:57 +11002845/*
2846 * Initiate forwarding of connections to port "port" on remote host through
2847 * the secure channel to host:port from local side.
2848 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849
Darren Tuckere7d4b192006-07-12 22:17:10 +10002850int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002851channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002852 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002853{
Damien Millerdff50992002-01-22 23:16:32 +11002854 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002855
Damien Miller95def091999-11-25 00:26:21 +11002856 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002857 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002858 const char *address_to_bind;
Damien Miller1ec46262007-01-05 16:26:45 +11002859 if (listen_host == NULL) {
2860 if (datafellows & SSH_BUG_RFWD_ADDR)
2861 address_to_bind = "127.0.0.1";
2862 else
2863 address_to_bind = "localhost";
2864 } else if (*listen_host == '\0' ||
2865 strcmp(listen_host, "*") == 0) {
2866 if (datafellows & SSH_BUG_RFWD_ADDR)
2867 address_to_bind = "0.0.0.0";
2868 else
2869 address_to_bind = "";
2870 } else
Damien Millerf91ee4c2005-03-01 21:24:33 +11002871 address_to_bind = listen_host;
2872
Damien Miller33b13562000-04-04 14:38:59 +10002873 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2874 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002875 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002876 packet_put_cstring(address_to_bind);
2877 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002878 packet_send();
2879 packet_write_wait();
2880 /* Assume that server accepts the request */
2881 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002882 } else {
2883 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002884 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002885 packet_put_cstring(host_to_connect);
2886 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002887 packet_send();
2888 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002889
2890 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002891 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002892 switch (type) {
2893 case SSH_SMSG_SUCCESS:
2894 success = 1;
2895 break;
2896 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002897 break;
2898 default:
2899 /* Unknown packet */
2900 packet_disconnect("Protocol error for port forward request:"
2901 "received packet type %d.", type);
2902 }
2903 }
2904 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10002905 /* Record that connection to this host/port is permitted. */
2906 permitted_opens = xrealloc(permitted_opens,
2907 num_permitted_opens + 1, sizeof(*permitted_opens));
Damien Miller0bc1bd82000-11-13 22:57:25 +11002908 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2909 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2910 permitted_opens[num_permitted_opens].listen_port = listen_port;
2911 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002912 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002913 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002914}
2915
Damien Miller5428f641999-11-25 11:54:57 +11002916/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002917 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002918 * local side.
2919 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002920void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002921channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002922{
2923 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002924
2925 if (!compat20)
2926 return;
2927
2928 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002929 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002930 permitted_opens[i].listen_port == port)
2931 break;
2932 }
2933 if (i >= num_permitted_opens) {
2934 debug("%s: requested forward not found", __func__);
2935 return;
2936 }
2937 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2938 packet_put_cstring("cancel-tcpip-forward");
2939 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002940 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002941 packet_put_int(port);
2942 packet_send();
2943
2944 permitted_opens[i].listen_port = 0;
2945 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002946 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002947 permitted_opens[i].host_to_connect = NULL;
2948}
2949
2950/*
Damien Miller5428f641999-11-25 11:54:57 +11002951 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2952 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002953 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002954 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002955int
Damien Millere247cc42000-05-07 12:03:14 +10002956channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002957{
Damien Milleraae6c611999-12-06 11:47:28 +11002958 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002959 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002960 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002961
Damien Miller95def091999-11-25 00:26:21 +11002962 /* Get arguments from the packet. */
2963 port = packet_get_int();
2964 hostname = packet_get_string(NULL);
2965 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002966
Damien Millerbac2d8a2000-09-05 16:13:06 +11002967#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002968 /*
2969 * Check that an unprivileged user is not trying to forward a
2970 * privileged port.
2971 */
Damien Miller95def091999-11-25 00:26:21 +11002972 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002973 packet_disconnect(
2974 "Requested forwarding of port %d but user is not root.",
2975 port);
2976 if (host_port == 0)
2977 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002978#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002979
Damien Miller0bc1bd82000-11-13 22:57:25 +11002980 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002981 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002982 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002983
2984 /* Free the argument string. */
2985 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002986
2987 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002988}
2989
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002990/*
2991 * Permits opening to any host/port if permitted_opens[] is empty. This is
2992 * usually called by the server, because the user could connect to any port
2993 * anyway, and the server has no way to know but to trust the client anyway.
2994 */
2995void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002996channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002997{
2998 if (num_permitted_opens == 0)
2999 all_opens_permitted = 1;
3000}
3001
Ben Lindstroma3700052001-04-05 23:26:32 +00003002void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003003channel_add_permitted_opens(char *host, int port)
3004{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003005 debug("allow port forwarding to host %s port %d", host, port);
3006
Damien Miller232cfb12010-06-26 09:50:30 +10003007 permitted_opens = xrealloc(permitted_opens,
3008 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003009 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3010 permitted_opens[num_permitted_opens].port_to_connect = port;
3011 num_permitted_opens++;
3012
3013 all_opens_permitted = 0;
3014}
3015
Damien Millera765cf42006-07-24 14:08:13 +10003016int
Damien Miller9b439df2006-07-24 14:04:00 +10003017channel_add_adm_permitted_opens(char *host, int port)
3018{
Damien Millera765cf42006-07-24 14:08:13 +10003019 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003020
Damien Miller232cfb12010-06-26 09:50:30 +10003021 permitted_adm_opens = xrealloc(permitted_adm_opens,
3022 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003023 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3024 = xstrdup(host);
3025 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003026 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003027}
3028
3029void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003030channel_clear_permitted_opens(void)
3031{
3032 int i;
3033
3034 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003035 if (permitted_opens[i].host_to_connect != NULL)
3036 xfree(permitted_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003037 if (num_permitted_opens > 0) {
3038 xfree(permitted_opens);
3039 permitted_opens = NULL;
3040 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003041 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003042}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003043
Damien Miller9b439df2006-07-24 14:04:00 +10003044void
3045channel_clear_adm_permitted_opens(void)
3046{
3047 int i;
3048
3049 for (i = 0; i < num_adm_permitted_opens; i++)
3050 if (permitted_adm_opens[i].host_to_connect != NULL)
3051 xfree(permitted_adm_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003052 if (num_adm_permitted_opens > 0) {
3053 xfree(permitted_adm_opens);
3054 permitted_adm_opens = NULL;
3055 }
Damien Miller9b439df2006-07-24 14:04:00 +10003056 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003057}
3058
Darren Tuckere7140f22008-06-10 23:01:51 +10003059void
3060channel_print_adm_permitted_opens(void)
3061{
Damien Miller6ef17492008-07-16 22:42:06 +10003062 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003063
Damien Millerb53d8a12009-01-28 16:13:04 +11003064 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003065 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003066 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003067 return;
3068 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003069 for (i = 0; i < num_adm_permitted_opens; i++)
3070 if (permitted_adm_opens[i].host_to_connect != NULL)
3071 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3072 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003073 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003074}
3075
Damien Millerbd740252008-05-19 15:37:09 +10003076/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003077static int
Damien Millerbd740252008-05-19 15:37:09 +10003078connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003079{
Damien Millerbd740252008-05-19 15:37:09 +10003080 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003081 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003082
Damien Millerbd740252008-05-19 15:37:09 +10003083 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3084 if (cctx->ai->ai_family != AF_INET &&
3085 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003086 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003087 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3088 ntop, sizeof(ntop), strport, sizeof(strport),
3089 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3090 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003091 continue;
3092 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003093 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3094 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003095 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003096 error("socket: %.100s", strerror(errno));
3097 else
3098 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003099 continue;
3100 }
Damien Miller232711f2004-06-15 10:35:30 +10003101 if (set_nonblock(sock) == -1)
3102 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003103 if (connect(sock, cctx->ai->ai_addr,
3104 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3105 debug("connect_next: host %.100s ([%.100s]:%s): "
3106 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003107 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003108 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003109 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003110 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003111 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003112 }
Damien Millerbd740252008-05-19 15:37:09 +10003113 debug("connect_next: host %.100s ([%.100s]:%s) "
3114 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3115 cctx->ai = cctx->ai->ai_next;
3116 set_nodelay(sock);
3117 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003118 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003119 return -1;
3120}
Damien Millerb38eff82000-04-01 11:09:21 +10003121
Damien Millerbd740252008-05-19 15:37:09 +10003122static void
3123channel_connect_ctx_free(struct channel_connect *cctx)
3124{
3125 xfree(cctx->host);
3126 if (cctx->aitop)
3127 freeaddrinfo(cctx->aitop);
3128 bzero(cctx, sizeof(*cctx));
3129 cctx->host = NULL;
3130 cctx->ai = cctx->aitop = NULL;
3131}
3132
3133/* Return CONNECTING channel to remote host, port */
3134static Channel *
3135connect_to(const char *host, u_short port, char *ctype, char *rname)
3136{
3137 struct addrinfo hints;
3138 int gaierr;
3139 int sock = -1;
3140 char strport[NI_MAXSERV];
3141 struct channel_connect cctx;
3142 Channel *c;
3143
Damien Miller2bcb8662008-07-12 17:12:29 +10003144 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003145 memset(&hints, 0, sizeof(hints));
3146 hints.ai_family = IPv4or6;
3147 hints.ai_socktype = SOCK_STREAM;
3148 snprintf(strport, sizeof strport, "%d", port);
3149 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3150 error("connect_to %.100s: unknown host (%s)", host,
3151 ssh_gai_strerror(gaierr));
3152 return NULL;
3153 }
3154
3155 cctx.host = xstrdup(host);
3156 cctx.port = port;
3157 cctx.ai = cctx.aitop;
3158
3159 if ((sock = connect_next(&cctx)) == -1) {
3160 error("connect to %.100s port %d failed: %s",
3161 host, port, strerror(errno));
3162 channel_connect_ctx_free(&cctx);
3163 return NULL;
3164 }
3165 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3166 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3167 c->connect_ctx = cctx;
3168 return c;
3169}
3170
3171Channel *
3172channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3173{
3174 int i;
3175
3176 for (i = 0; i < num_permitted_opens; i++) {
3177 if (permitted_opens[i].host_to_connect != NULL &&
3178 permitted_opens[i].listen_port == listen_port) {
3179 return connect_to(
3180 permitted_opens[i].host_to_connect,
3181 permitted_opens[i].port_to_connect, ctype, rname);
3182 }
3183 }
3184 error("WARNING: Server requests forwarding for unknown listen_port %d",
3185 listen_port);
3186 return NULL;
3187}
3188
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003189/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003190Channel *
3191channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003192{
Damien Miller9b439df2006-07-24 14:04:00 +10003193 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003194
3195 permit = all_opens_permitted;
3196 if (!permit) {
3197 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003198 if (permitted_opens[i].host_to_connect != NULL &&
3199 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003200 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3201 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003202 }
Damien Miller9b439df2006-07-24 14:04:00 +10003203
3204 if (num_adm_permitted_opens > 0) {
3205 permit_adm = 0;
3206 for (i = 0; i < num_adm_permitted_opens; i++)
3207 if (permitted_adm_opens[i].host_to_connect != NULL &&
3208 permitted_adm_opens[i].port_to_connect == port &&
3209 strcmp(permitted_adm_opens[i].host_to_connect, host)
3210 == 0)
3211 permit_adm = 1;
3212 }
3213
3214 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003215 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003216 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003217 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003218 }
Damien Millerbd740252008-05-19 15:37:09 +10003219 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003220}
3221
Damien Miller0e220db2004-06-15 10:34:08 +10003222void
3223channel_send_window_changes(void)
3224{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003225 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003226 struct winsize ws;
3227
3228 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003229 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003230 channels[i]->type != SSH_CHANNEL_OPEN)
3231 continue;
3232 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3233 continue;
3234 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003235 packet_put_int((u_int)ws.ws_col);
3236 packet_put_int((u_int)ws.ws_row);
3237 packet_put_int((u_int)ws.ws_xpixel);
3238 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003239 packet_send();
3240 }
3241}
3242
Ben Lindstrome9c99912001-06-09 00:41:05 +00003243/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003244
Damien Miller5428f641999-11-25 11:54:57 +11003245/*
3246 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003247 * Returns 0 and a suitable display number for the DISPLAY variable
3248 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003249 */
Kevin Steves366298c2001-12-19 17:58:01 +00003250int
Damien Miller95c249f2002-02-05 12:11:34 +11003251x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003252 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003253{
Damien Millere7378562001-12-21 14:58:35 +11003254 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003255 int display_number, sock;
3256 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003257 struct addrinfo hints, *ai, *aitop;
3258 char strport[NI_MAXSERV];
3259 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003260
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003261 if (chanids == NULL)
3262 return -1;
3263
Damien Millera34a28b1999-12-14 10:47:15 +11003264 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003265 display_number < MAX_DISPLAYS;
3266 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003267 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003268 memset(&hints, 0, sizeof(hints));
3269 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003270 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003271 hints.ai_socktype = SOCK_STREAM;
3272 snprintf(strport, sizeof strport, "%d", port);
3273 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003274 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003275 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003276 }
Damien Miller34132e52000-01-14 15:45:46 +11003277 for (ai = aitop; ai; ai = ai->ai_next) {
3278 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3279 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003280 sock = socket(ai->ai_family, ai->ai_socktype,
3281 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003282 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003283 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3284#ifdef EPFNOSUPPORT
3285 && (errno != EPFNOSUPPORT)
3286#endif
3287 ) {
Damien Millere2192732000-01-17 13:22:55 +11003288 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003289 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003290 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003291 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003292 debug("x11_create_display_inet: Socket family %d not supported",
3293 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003294 continue;
3295 }
Damien Miller34132e52000-01-14 15:45:46 +11003296 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003297 if (ai->ai_family == AF_INET6)
3298 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003299 if (x11_use_localhost)
3300 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003301 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003302 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003303 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003304
Damien Miller34132e52000-01-14 15:45:46 +11003305 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003306 close(socks[n]);
3307 }
3308 num_socks = 0;
3309 break;
3310 }
3311 socks[num_socks++] = sock;
3312 if (num_socks == NUM_SOCKS)
3313 break;
Damien Miller95def091999-11-25 00:26:21 +11003314 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003315 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003316 if (num_socks > 0)
3317 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003318 }
Damien Miller95def091999-11-25 00:26:21 +11003319 if (display_number >= MAX_DISPLAYS) {
3320 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003321 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003322 }
Damien Miller95def091999-11-25 00:26:21 +11003323 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003324 for (n = 0; n < num_socks; n++) {
3325 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003326 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003327 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003328 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003329 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003330 }
Damien Miller95def091999-11-25 00:26:21 +11003331 }
Damien Miller34132e52000-01-14 15:45:46 +11003332
Damien Miller34132e52000-01-14 15:45:46 +11003333 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003334 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003335 for (n = 0; n < num_socks; n++) {
3336 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003337 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003338 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3339 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003340 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003341 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003342 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003343 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003344 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003345
Kevin Steves366298c2001-12-19 17:58:01 +00003346 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003347 *display_numberp = display_number;
3348 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003349}
3350
Ben Lindstrombba81212001-06-25 05:01:22 +00003351static int
Damien Miller819dbb62009-01-21 16:46:26 +11003352connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003353{
Damien Miller95def091999-11-25 00:26:21 +11003354 int sock;
3355 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003356
Damien Miller3afe3752001-12-21 12:39:51 +11003357 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3358 if (sock < 0)
3359 error("socket: %.100s", strerror(errno));
3360 memset(&addr, 0, sizeof(addr));
3361 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003362 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003363 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003364 return sock;
3365 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003366 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3367 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003368}
3369
Damien Miller819dbb62009-01-21 16:46:26 +11003370static int
3371connect_local_xsocket(u_int dnr)
3372{
3373 char buf[1024];
3374 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3375 return connect_local_xsocket_path(buf);
3376}
3377
Damien Millerbd483e72000-04-30 10:00:53 +10003378int
3379x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003380{
Damien Miller57c4e872006-03-31 23:11:07 +11003381 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003382 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003383 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003384 struct addrinfo hints, *ai, *aitop;
3385 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003386 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003387
Damien Miller95def091999-11-25 00:26:21 +11003388 /* Try to open a socket for the local X server. */
3389 display = getenv("DISPLAY");
3390 if (!display) {
3391 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003392 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003393 }
Damien Miller5428f641999-11-25 11:54:57 +11003394 /*
3395 * Now we decode the value of the DISPLAY variable and make a
3396 * connection to the real X server.
3397 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003398
Damien Miller819dbb62009-01-21 16:46:26 +11003399 /* Check if the display is from launchd. */
3400#ifdef __APPLE__
3401 if (strncmp(display, "/tmp/launch", 11) == 0) {
3402 sock = connect_local_xsocket_path(display);
3403 if (sock < 0)
3404 return -1;
3405
3406 /* OK, we now have a connection to the display. */
3407 return sock;
3408 }
3409#endif
Damien Miller5428f641999-11-25 11:54:57 +11003410 /*
3411 * Check if it is a unix domain socket. Unix domain displays are in
3412 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3413 */
Damien Miller95def091999-11-25 00:26:21 +11003414 if (strncmp(display, "unix:", 5) == 0 ||
3415 display[0] == ':') {
3416 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003417 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003418 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003419 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003420 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003421 }
3422 /* Create a socket. */
3423 sock = connect_local_xsocket(display_number);
3424 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003425 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003426
3427 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003428 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003429 }
Damien Miller5428f641999-11-25 11:54:57 +11003430 /*
3431 * Connect to an inet socket. The DISPLAY value is supposedly
3432 * hostname:d[.s], where hostname may also be numeric IP address.
3433 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003434 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003435 cp = strchr(buf, ':');
3436 if (!cp) {
3437 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003438 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003439 }
Damien Miller95def091999-11-25 00:26:21 +11003440 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003441 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003442 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003443 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003444 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003445 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003446 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003447
Damien Miller34132e52000-01-14 15:45:46 +11003448 /* Look up the host address */
3449 memset(&hints, 0, sizeof(hints));
3450 hints.ai_family = IPv4or6;
3451 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003452 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003453 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003454 error("%.100s: unknown host. (%s)", buf,
3455 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003456 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003457 }
Damien Miller34132e52000-01-14 15:45:46 +11003458 for (ai = aitop; ai; ai = ai->ai_next) {
3459 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003460 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003461 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003462 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003463 continue;
3464 }
3465 /* Connect it to the display. */
3466 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003467 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003468 6000 + display_number, strerror(errno));
3469 close(sock);
3470 continue;
3471 }
3472 /* Success */
3473 break;
Damien Miller34132e52000-01-14 15:45:46 +11003474 }
Damien Miller34132e52000-01-14 15:45:46 +11003475 freeaddrinfo(aitop);
3476 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003477 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003478 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003479 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003480 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003481 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003482 return sock;
3483}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003484
Damien Millerbd483e72000-04-30 10:00:53 +10003485/*
3486 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3487 * the remote channel number. We should do whatever we want, and respond
3488 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3489 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003490
Damien Miller8473dd82006-07-24 14:08:32 +10003491/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003492void
Damien Miller630d6f42002-01-22 23:17:30 +11003493x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003494{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003495 Channel *c = NULL;
3496 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003497 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003498
3499 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003500
3501 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003502
3503 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003504 remote_host = packet_get_string(NULL);
3505 } else {
3506 remote_host = xstrdup("unknown (remote did not supply name)");
3507 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003508 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003509
3510 /* Obtain a connection to the real X display. */
3511 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003512 if (sock != -1) {
3513 /* Allocate a channel for this connection. */
3514 c = channel_new("connected x11 socket",
3515 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3516 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003517 c->remote_id = remote_id;
3518 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003519 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003520 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003521 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003522 /* Send refusal to the remote host. */
3523 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003524 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003525 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003526 /* Send a confirmation to the remote host. */
3527 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003528 packet_put_int(remote_id);
3529 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003530 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003531 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003532}
3533
Damien Miller69b69aa2000-10-28 14:19:58 +11003534/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003535/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003536void
Damien Miller630d6f42002-01-22 23:17:30 +11003537deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003538{
3539 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003540
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003541 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003542 case SSH_SMSG_AGENT_OPEN:
3543 error("Warning: ssh server tried agent forwarding.");
3544 break;
3545 case SSH_SMSG_X11_OPEN:
3546 error("Warning: ssh server tried X11 forwarding.");
3547 break;
3548 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003549 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003550 break;
3551 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003552 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003553 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3554 packet_put_int(rchan);
3555 packet_send();
3556}
3557
Damien Miller5428f641999-11-25 11:54:57 +11003558/*
3559 * Requests forwarding of X11 connections, generates fake authentication
3560 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003561 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003562 */
Damien Miller4af51302000-04-16 11:18:38 +10003563void
Damien Miller17e7ed02005-06-17 12:54:33 +10003564x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003565 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003566{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003567 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003568 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003569 char *new_data;
3570 int screen_number;
3571 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003572 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003573
Damien Millerf92c0792005-07-06 09:45:26 +10003574 if (x11_saved_display == NULL)
3575 x11_saved_display = xstrdup(disp);
3576 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003577 error("x11_request_forwarding_with_spoofing: different "
3578 "$DISPLAY already forwarded");
3579 return;
3580 }
3581
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003582 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003583 if (cp)
3584 cp = strchr(cp, '.');
3585 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003586 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003587 else
3588 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003589
Damien Miller13390022005-07-06 09:44:19 +10003590 if (x11_saved_proto == NULL) {
3591 /* Save protocol name. */
3592 x11_saved_proto = xstrdup(proto);
3593 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003594 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003595 * of the same length.
3596 */
3597 x11_saved_data = xmalloc(data_len);
3598 x11_fake_data = xmalloc(data_len);
3599 for (i = 0; i < data_len; i++) {
3600 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3601 fatal("x11_request_forwarding: bad "
3602 "authentication data: %.100s", data);
3603 if (i % 4 == 0)
3604 rnd = arc4random();
3605 x11_saved_data[i] = value;
3606 x11_fake_data[i] = rnd & 0xff;
3607 rnd >>= 8;
3608 }
3609 x11_saved_data_len = data_len;
3610 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003611 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003612
Damien Miller95def091999-11-25 00:26:21 +11003613 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003614 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003615
Damien Miller95def091999-11-25 00:26:21 +11003616 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003617 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003618 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003619 packet_put_char(0); /* XXX bool single connection */
3620 } else {
3621 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3622 }
3623 packet_put_cstring(proto);
3624 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003625 packet_put_int(screen_number);
3626 packet_send();
3627 packet_write_wait();
3628 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003629}
3630
Ben Lindstrome9c99912001-06-09 00:41:05 +00003631
3632/* -- agent forwarding */
3633
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003634/* Sends a message to the server to request authentication fd forwarding. */
3635
Damien Miller4af51302000-04-16 11:18:38 +10003636void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003637auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003638{
Damien Miller95def091999-11-25 00:26:21 +11003639 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3640 packet_send();
3641 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003642}