blob: 0f7e1a872aa812d0a2e00c62aa6c5d61b6eef17a [file] [log] [blame]
Damien Millerf6dff7c2011-09-22 21:38:52 +10001/* $OpenBSD: channels.c,v 1.312 2011/09/09 22:46:44 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 Millerf6dff7c2011-09-22 21:38:52 +1000305 c->listening_addr = NULL;
306 c->listening_port = 0;
Damien Miller5144df92002-01-22 23:28:45 +1100307 c->ostate = CHAN_OUTPUT_OPEN;
308 c->istate = CHAN_INPUT_OPEN;
309 c->flags = 0;
Damien Millerd310d512008-06-16 07:59:23 +1000310 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0);
Damien Miller95def091999-11-25 00:26:21 +1100311 c->self = found;
312 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000313 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000314 c->local_window = window;
315 c->local_window_max = window;
316 c->local_consumed = 0;
317 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100318 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000319 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000320 c->remote_window = 0;
321 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000322 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100323 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000324 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100325 c->detach_close = 0;
Damien Millerb84886b2008-05-19 15:05:07 +1000326 c->open_confirm = NULL;
327 c->open_confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000328 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100329 c->output_filter = NULL;
Darren Tucker84c56f52008-06-13 04:55:46 +1000330 c->filter_ctx = NULL;
331 c->filter_cleanup = NULL;
Damien Millere1537f92010-01-26 13:26:22 +1100332 c->ctl_chan = -1;
333 c->mux_rcb = NULL;
334 c->mux_ctx = NULL;
Damien Millerd530f5f2010-05-21 14:57:10 +1000335 c->mux_pause = 0;
Darren Tucker876045b2010-01-08 17:08:00 +1100336 c->delayed = 1; /* prevent call to channel_post handler */
Damien Millerb84886b2008-05-19 15:05:07 +1000337 TAILQ_INIT(&c->status_confirms);
Damien Miller95def091999-11-25 00:26:21 +1100338 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000339 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000341
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000342static int
343channel_find_maxfd(void)
344{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000345 u_int i;
346 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000347 Channel *c;
348
349 for (i = 0; i < channels_alloc; i++) {
350 c = channels[i];
351 if (c != NULL) {
352 max = MAX(max, c->rfd);
353 max = MAX(max, c->wfd);
354 max = MAX(max, c->efd);
355 }
356 }
357 return max;
358}
359
360int
361channel_close_fd(int *fdp)
362{
363 int ret = 0, fd = *fdp;
364
365 if (fd != -1) {
366 ret = close(fd);
367 *fdp = -1;
368 if (fd == channel_max_fd)
369 channel_max_fd = channel_find_maxfd();
370 }
371 return ret;
372}
373
Damien Miller6f83b8e2000-05-02 09:23:45 +1000374/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000375static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000376channel_close_fds(Channel *c)
377{
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000378 channel_close_fd(&c->sock);
379 channel_close_fd(&c->rfd);
380 channel_close_fd(&c->wfd);
381 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000382}
383
384/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000385void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000386channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000388 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000389 u_int i, n;
Damien Millerb84886b2008-05-19 15:05:07 +1000390 struct channel_confirm *cc;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000391
392 for (n = 0, i = 0; i < channels_alloc; i++)
393 if (channels[i])
394 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000395 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000396 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000397
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000398 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000399 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000400 xfree(s);
401
Damien Miller6f83b8e2000-05-02 09:23:45 +1000402 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000403 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000404 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 buffer_free(&c->input);
406 buffer_free(&c->output);
407 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000408 if (c->remote_name) {
409 xfree(c->remote_name);
410 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100411 }
Damien Millera1c1b6c2009-01-28 16:29:49 +1100412 if (c->path) {
413 xfree(c->path);
414 c->path = NULL;
415 }
Damien Millerf6dff7c2011-09-22 21:38:52 +1000416 if (c->listening_addr) {
417 xfree(c->listening_addr);
418 c->listening_addr = NULL;
419 }
Damien Millerb84886b2008-05-19 15:05:07 +1000420 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
421 if (cc->abandon_cb != NULL)
422 cc->abandon_cb(c, cc->ctx);
423 TAILQ_REMOVE(&c->status_confirms, cc, entry);
424 bzero(cc, sizeof(*cc));
425 xfree(cc);
426 }
Darren Tucker84c56f52008-06-13 04:55:46 +1000427 if (c->filter_cleanup != NULL && c->filter_ctx != NULL)
428 c->filter_cleanup(c->self, c->filter_ctx);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000429 channels[c->self] = NULL;
430 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431}
432
Ben Lindstrome9c99912001-06-09 00:41:05 +0000433void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000434channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000435{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000436 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000437
Ben Lindstrom601e4362001-06-21 03:19:23 +0000438 for (i = 0; i < channels_alloc; i++)
439 if (channels[i] != NULL)
440 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000441}
442
443/*
444 * Closes the sockets/fds of all channels. This is used to close extra file
445 * descriptors after a fork.
446 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000447void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000448channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000449{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000450 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000451
452 for (i = 0; i < channels_alloc; i++)
453 if (channels[i] != NULL)
454 channel_close_fds(channels[i]);
455}
456
457/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000458 * Stop listening to channels.
459 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000460void
461channel_stop_listening(void)
462{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000463 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000464 Channel *c;
465
466 for (i = 0; i < channels_alloc; i++) {
467 c = channels[i];
468 if (c != NULL) {
469 switch (c->type) {
470 case SSH_CHANNEL_AUTH_SOCKET:
471 case SSH_CHANNEL_PORT_LISTENER:
472 case SSH_CHANNEL_RPORT_LISTENER:
473 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000474 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000475 channel_free(c);
476 break;
477 }
478 }
479 }
480}
481
482/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000483 * Returns true if no channel has too much buffered data, and false if one or
484 * more channel is overfull.
485 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000486int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000487channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000488{
489 u_int i;
490 Channel *c;
491
492 for (i = 0; i < channels_alloc; i++) {
493 c = channels[i];
494 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000495#if 0
496 if (!compat20 &&
497 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100498 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000499 c->self, buffer_len(&c->input));
500 return 0;
501 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000502#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000503 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000504 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000505 c->self, buffer_len(&c->output),
506 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000507 return 0;
508 }
509 }
510 }
511 return 1;
512}
513
514/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000515int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000516channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000517{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000518 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000519 Channel *c;
520
521 for (i = 0; i < channels_alloc; i++) {
522 c = channels[i];
523 if (c == NULL)
524 continue;
525 switch (c->type) {
526 case SSH_CHANNEL_X11_LISTENER:
527 case SSH_CHANNEL_PORT_LISTENER:
528 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100529 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000530 case SSH_CHANNEL_CLOSED:
531 case SSH_CHANNEL_AUTH_SOCKET:
532 case SSH_CHANNEL_DYNAMIC:
533 case SSH_CHANNEL_CONNECTING:
534 case SSH_CHANNEL_ZOMBIE:
535 continue;
536 case SSH_CHANNEL_LARVAL:
537 if (!compat20)
538 fatal("cannot happen: SSH_CHANNEL_LARVAL");
539 continue;
540 case SSH_CHANNEL_OPENING:
541 case SSH_CHANNEL_OPEN:
542 case SSH_CHANNEL_X11_OPEN:
Damien Millere1537f92010-01-26 13:26:22 +1100543 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000544 return 1;
545 case SSH_CHANNEL_INPUT_DRAINING:
546 case SSH_CHANNEL_OUTPUT_DRAINING:
547 if (!compat13)
548 fatal("cannot happen: OUT_DRAIN");
549 return 1;
550 default:
551 fatal("channel_still_open: bad channel type %d", c->type);
552 /* NOTREACHED */
553 }
554 }
555 return 0;
556}
557
558/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000559int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000560channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000561{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000562 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000563 Channel *c;
564
565 for (i = 0; i < channels_alloc; i++) {
566 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000567 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000568 continue;
569 switch (c->type) {
570 case SSH_CHANNEL_CLOSED:
571 case SSH_CHANNEL_DYNAMIC:
572 case SSH_CHANNEL_X11_LISTENER:
573 case SSH_CHANNEL_PORT_LISTENER:
574 case SSH_CHANNEL_RPORT_LISTENER:
Damien Millere1537f92010-01-26 13:26:22 +1100575 case SSH_CHANNEL_MUX_LISTENER:
576 case SSH_CHANNEL_MUX_CLIENT:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000577 case SSH_CHANNEL_OPENING:
578 case SSH_CHANNEL_CONNECTING:
579 case SSH_CHANNEL_ZOMBIE:
580 continue;
581 case SSH_CHANNEL_LARVAL:
582 case SSH_CHANNEL_AUTH_SOCKET:
583 case SSH_CHANNEL_OPEN:
584 case SSH_CHANNEL_X11_OPEN:
585 return i;
586 case SSH_CHANNEL_INPUT_DRAINING:
587 case SSH_CHANNEL_OUTPUT_DRAINING:
588 if (!compat13)
589 fatal("cannot happen: OUT_DRAIN");
590 return i;
591 default:
592 fatal("channel_find_open: bad channel type %d", c->type);
593 /* NOTREACHED */
594 }
595 }
596 return -1;
597}
598
599
600/*
601 * Returns a message describing the currently open forwarded connections,
602 * suitable for sending to the client. The message contains crlf pairs for
603 * newlines.
604 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000605char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000606channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000607{
608 Buffer buffer;
609 Channel *c;
610 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000611 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000612
613 buffer_init(&buffer);
614 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
615 buffer_append(&buffer, buf, strlen(buf));
616 for (i = 0; i < channels_alloc; i++) {
617 c = channels[i];
618 if (c == NULL)
619 continue;
620 switch (c->type) {
621 case SSH_CHANNEL_X11_LISTENER:
622 case SSH_CHANNEL_PORT_LISTENER:
623 case SSH_CHANNEL_RPORT_LISTENER:
624 case SSH_CHANNEL_CLOSED:
625 case SSH_CHANNEL_AUTH_SOCKET:
626 case SSH_CHANNEL_ZOMBIE:
Damien Millere1537f92010-01-26 13:26:22 +1100627 case SSH_CHANNEL_MUX_CLIENT:
628 case SSH_CHANNEL_MUX_LISTENER:
Ben Lindstrome9c99912001-06-09 00:41:05 +0000629 continue;
630 case SSH_CHANNEL_LARVAL:
631 case SSH_CHANNEL_OPENING:
632 case SSH_CHANNEL_CONNECTING:
633 case SSH_CHANNEL_DYNAMIC:
634 case SSH_CHANNEL_OPEN:
635 case SSH_CHANNEL_X11_OPEN:
636 case SSH_CHANNEL_INPUT_DRAINING:
637 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000638 snprintf(buf, sizeof buf,
Damien Millere1537f92010-01-26 13:26:22 +1100639 " #%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 +0000640 c->self, c->remote_name,
641 c->type, c->remote_id,
642 c->istate, buffer_len(&c->input),
643 c->ostate, buffer_len(&c->output),
Damien Millere1537f92010-01-26 13:26:22 +1100644 c->rfd, c->wfd, c->ctl_chan);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645 buffer_append(&buffer, buf, strlen(buf));
646 continue;
647 default:
648 fatal("channel_open_message: bad channel type %d", c->type);
649 /* NOTREACHED */
650 }
651 }
652 buffer_append(&buffer, "\0", 1);
653 cp = xstrdup(buffer_ptr(&buffer));
654 buffer_free(&buffer);
655 return cp;
656}
657
658void
659channel_send_open(int id)
660{
661 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000662
Ben Lindstrome9c99912001-06-09 00:41:05 +0000663 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000664 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 return;
666 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000667 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000668 packet_start(SSH2_MSG_CHANNEL_OPEN);
669 packet_put_cstring(c->ctype);
670 packet_put_int(c->self);
671 packet_put_int(c->local_window);
672 packet_put_int(c->local_maxpacket);
673 packet_send();
674}
675
676void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000677channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000679 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000680
Ben Lindstrome9c99912001-06-09 00:41:05 +0000681 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000682 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000683 return;
684 }
Damien Miller0e220db2004-06-15 10:34:08 +1000685 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686 packet_start(SSH2_MSG_CHANNEL_REQUEST);
687 packet_put_int(c->remote_id);
688 packet_put_cstring(service);
689 packet_put_char(wantconfirm);
690}
Damien Miller4f7becb2006-03-26 14:10:14 +1100691
Ben Lindstrome9c99912001-06-09 00:41:05 +0000692void
Damien Millerb84886b2008-05-19 15:05:07 +1000693channel_register_status_confirm(int id, channel_confirm_cb *cb,
694 channel_confirm_abandon_cb *abandon_cb, void *ctx)
695{
696 struct channel_confirm *cc;
697 Channel *c;
698
699 if ((c = channel_lookup(id)) == NULL)
700 fatal("channel_register_expect: %d: bad id", id);
701
702 cc = xmalloc(sizeof(*cc));
703 cc->cb = cb;
704 cc->abandon_cb = abandon_cb;
705 cc->ctx = ctx;
706 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
707}
708
709void
Damien Millerd530f5f2010-05-21 14:57:10 +1000710channel_register_open_confirm(int id, channel_open_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711{
712 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000713
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714 if (c == NULL) {
Damien Millera0094332008-11-03 19:26:35 +1100715 logit("channel_register_open_confirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716 return;
717 }
Damien Millerb84886b2008-05-19 15:05:07 +1000718 c->open_confirm = fn;
719 c->open_confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000720}
Damien Miller4f7becb2006-03-26 14:10:14 +1100721
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722void
Damien Miller39eda6e2005-11-05 14:52:50 +1100723channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724{
Damien Millerd47c62a2005-12-13 19:33:57 +1100725 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000726
Ben Lindstrome9c99912001-06-09 00:41:05 +0000727 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000728 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000729 return;
730 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000731 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100732 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000733}
Damien Miller4f7becb2006-03-26 14:10:14 +1100734
Ben Lindstrome9c99912001-06-09 00:41:05 +0000735void
736channel_cancel_cleanup(int id)
737{
Damien Millerd47c62a2005-12-13 19:33:57 +1100738 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000739
Ben Lindstrome9c99912001-06-09 00:41:05 +0000740 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000741 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000742 return;
743 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000744 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100745 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000746}
Damien Miller4f7becb2006-03-26 14:10:14 +1100747
Ben Lindstrome9c99912001-06-09 00:41:05 +0000748void
Damien Miller077b2382005-12-31 16:22:32 +1100749channel_register_filter(int id, channel_infilter_fn *ifn,
Darren Tucker84c56f52008-06-13 04:55:46 +1000750 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000751{
752 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000753
Ben Lindstrome9c99912001-06-09 00:41:05 +0000754 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000755 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000756 return;
757 }
Damien Miller077b2382005-12-31 16:22:32 +1100758 c->input_filter = ifn;
759 c->output_filter = ofn;
Darren Tucker2fb66ca2008-06-13 04:49:33 +1000760 c->filter_ctx = ctx;
Darren Tucker84c56f52008-06-13 04:55:46 +1000761 c->filter_cleanup = cfn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762}
763
764void
765channel_set_fds(int id, int rfd, int wfd, int efd,
Darren Tuckered3cdc02008-06-16 23:29:18 +1000766 int extusage, int nonblock, int is_tty, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000767{
768 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000769
Ben Lindstrome9c99912001-06-09 00:41:05 +0000770 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
771 fatal("channel_activate for non-larval channel %d.", id);
Darren Tuckered3cdc02008-06-16 23:29:18 +1000772 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, is_tty);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000773 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100774 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000775 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
776 packet_put_int(c->remote_id);
777 packet_put_int(c->local_window);
778 packet_send();
779}
780
Damien Miller5428f641999-11-25 11:54:57 +1100781/*
Damien Millerb38eff82000-04-01 11:09:21 +1000782 * 'channel_pre*' are called just before select() to add any bits relevant to
783 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100784 */
Damien Millerb38eff82000-04-01 11:09:21 +1000785/*
786 * 'channel_post*': perform any appropriate operations for channels which
787 * have events pending.
788 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100789typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000790chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
791chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
792
Damien Miller8473dd82006-07-24 14:08:32 +1000793/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000794static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100795channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000796{
797 FD_SET(c->sock, readset);
798}
799
Damien Miller8473dd82006-07-24 14:08:32 +1000800/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100802channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000803{
804 debug3("channel %d: waiting for connection", c->self);
805 FD_SET(c->sock, writeset);
806}
807
Ben Lindstrombba81212001-06-25 05:01:22 +0000808static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100809channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000810{
811 if (buffer_len(&c->input) < packet_get_maxsize())
812 FD_SET(c->sock, readset);
813 if (buffer_len(&c->output) > 0)
814 FD_SET(c->sock, writeset);
815}
816
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100818channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000819{
Damien Millerde6987c2002-01-22 23:20:40 +1100820 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000821
Damien Miller33b13562000-04-04 14:38:59 +1000822 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100823 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000824 buffer_len(&c->input) < limit &&
825 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000826 FD_SET(c->rfd, readset);
827 if (c->ostate == CHAN_OUTPUT_OPEN ||
828 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
829 if (buffer_len(&c->output) > 0) {
830 FD_SET(c->wfd, writeset);
831 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000832 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000833 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
834 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000835 else
836 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000837 }
838 }
839 /** XXX check close conditions, too */
Damien Millerd654dd22008-05-19 16:05:41 +1000840 if (compat20 && c->efd != -1 &&
841 !(c->istate == CHAN_INPUT_CLOSED && c->ostate == CHAN_OUTPUT_CLOSED)) {
Damien Miller33b13562000-04-04 14:38:59 +1000842 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
843 buffer_len(&c->extended) > 0)
844 FD_SET(c->efd, writeset);
Damien Miller8853ca52010-06-26 10:00:14 +1000845 else if (c->efd != -1 && !(c->flags & CHAN_EOF_SENT) &&
846 (c->extended_usage == CHAN_EXTENDED_READ ||
847 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Miller33b13562000-04-04 14:38:59 +1000848 buffer_len(&c->extended) < c->remote_window)
849 FD_SET(c->efd, readset);
850 }
Damien Miller0e220db2004-06-15 10:34:08 +1000851 /* XXX: What about efd? races? */
Damien Miller33b13562000-04-04 14:38:59 +1000852}
853
Damien Miller8473dd82006-07-24 14:08:32 +1000854/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000855static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100856channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000857{
858 if (buffer_len(&c->input) == 0) {
859 packet_start(SSH_MSG_CHANNEL_CLOSE);
860 packet_put_int(c->remote_id);
861 packet_send();
862 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000863 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000864 }
865}
866
Damien Miller8473dd82006-07-24 14:08:32 +1000867/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100869channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000870{
871 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000872 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000873 else
Damien Millerb38eff82000-04-01 11:09:21 +1000874 FD_SET(c->sock, writeset);
875}
876
877/*
878 * This is a special state for X11 authentication spoofing. An opened X11
879 * connection (when authentication spoofing is being done) remains in this
880 * state until the first packet has been completely read. The authentication
881 * data in that packet is then substituted by the real data if it matches the
882 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000883 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000884 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000885 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000886static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000887x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000888{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000889 u_char *ucp;
890 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000891
892 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000893 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000894 return 0;
895
896 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100897 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000898 if (ucp[0] == 0x42) { /* Byte order MSB first. */
899 proto_len = 256 * ucp[6] + ucp[7];
900 data_len = 256 * ucp[8] + ucp[9];
901 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
902 proto_len = ucp[6] + 256 * ucp[7];
903 data_len = ucp[8] + 256 * ucp[9];
904 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000905 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100906 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000907 return -1;
908 }
909
910 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000911 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000912 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
913 return 0;
914
915 /* Check if authentication protocol matches. */
916 if (proto_len != strlen(x11_saved_proto) ||
917 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000918 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000919 return -1;
920 }
921 /* Check if authentication data matches our fake data. */
922 if (data_len != x11_fake_data_len ||
Damien Millerea1651c2010-07-16 13:58:37 +1000923 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3),
Damien Millerb38eff82000-04-01 11:09:21 +1000924 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000925 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000926 return -1;
927 }
928 /* Check fake data length */
929 if (x11_fake_data_len != x11_saved_data_len) {
930 error("X11 fake_data_len %d != saved_data_len %d",
931 x11_fake_data_len, x11_saved_data_len);
932 return -1;
933 }
934 /*
935 * Received authentication protocol and data match
936 * our fake data. Substitute the fake data with real
937 * data.
938 */
939 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
940 x11_saved_data, x11_saved_data_len);
941 return 1;
942}
943
Ben Lindstrombba81212001-06-25 05:01:22 +0000944static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100945channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000946{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000947 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000948
Damien Millerb38eff82000-04-01 11:09:21 +1000949 if (ret == 1) {
950 /* Start normal processing for the channel. */
951 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000952 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000953 } else if (ret == -1) {
954 /*
955 * We have received an X11 connection that has bad
956 * authentication information.
957 */
Damien Miller996acd22003-04-09 20:59:48 +1000958 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000959 buffer_clear(&c->input);
960 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000961 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000962 c->sock = -1;
963 c->type = SSH_CHANNEL_CLOSED;
964 packet_start(SSH_MSG_CHANNEL_CLOSE);
965 packet_put_int(c->remote_id);
966 packet_send();
967 }
968}
969
Ben Lindstrombba81212001-06-25 05:01:22 +0000970static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100971channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000972{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000973 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000974
975 /* c->force_drain = 1; */
976
Damien Millerb38eff82000-04-01 11:09:21 +1000977 if (ret == 1) {
978 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100979 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000980 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000981 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000982 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100983 chan_read_failed(c);
984 buffer_clear(&c->input);
985 chan_ibuf_empty(c);
986 buffer_clear(&c->output);
987 /* for proto v1, the peer will send an IEOF */
988 if (compat20)
989 chan_write_failed(c);
990 else
991 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000992 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000993 }
994}
995
Damien Millere1537f92010-01-26 13:26:22 +1100996static void
997channel_pre_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
998{
Damien Millerd530f5f2010-05-21 14:57:10 +1000999 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause &&
Damien Millere1537f92010-01-26 13:26:22 +11001000 buffer_check_alloc(&c->input, CHAN_RBUF))
1001 FD_SET(c->rfd, readset);
1002 if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
1003 /* clear buffer immediately (discard any partial packet) */
1004 buffer_clear(&c->input);
1005 chan_ibuf_empty(c);
1006 /* Start output drain. XXX just kill chan? */
1007 chan_rcvd_oclose(c);
1008 }
1009 if (c->ostate == CHAN_OUTPUT_OPEN ||
1010 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
1011 if (buffer_len(&c->output) > 0)
1012 FD_SET(c->wfd, writeset);
1013 else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN)
1014 chan_obuf_empty(c);
1015 }
1016}
1017
Ben Lindstromb3921512001-04-11 15:57:50 +00001018/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +10001019/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001020static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001021channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001022{
Damien Millera10f5612002-09-12 09:49:15 +10001023 char *p, *host;
Damien Miller1781f532009-01-28 16:24:41 +11001024 u_int len, have, i, found, need;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001025 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001026 struct {
1027 u_int8_t version;
1028 u_int8_t command;
1029 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +00001030 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001031 } s4_req, s4_rsp;
1032
Ben Lindstromb3921512001-04-11 15:57:50 +00001033 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001034
1035 have = buffer_len(&c->input);
1036 len = sizeof(s4_req);
1037 if (have < len)
1038 return 0;
1039 p = buffer_ptr(&c->input);
Damien Miller1781f532009-01-28 16:24:41 +11001040
1041 need = 1;
1042 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1043 if (p[4] == 0 && p[5] == 0 && p[6] == 0 && p[7] != 0) {
1044 debug2("channel %d: socks4a request", c->self);
1045 /* ... and needs an extra string (the hostname) */
1046 need = 2;
1047 }
1048 /* Check for terminating NUL on the string(s) */
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001049 for (found = 0, i = len; i < have; i++) {
1050 if (p[i] == '\0') {
Damien Miller1781f532009-01-28 16:24:41 +11001051 found++;
1052 if (found == need)
1053 break;
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001054 }
1055 if (i > 1024) {
1056 /* the peer is probably sending garbage */
1057 debug("channel %d: decode socks4: too long",
1058 c->self);
1059 return -1;
1060 }
1061 }
Damien Miller1781f532009-01-28 16:24:41 +11001062 if (found < need)
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001063 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001064 buffer_get(&c->input, (char *)&s4_req.version, 1);
1065 buffer_get(&c->input, (char *)&s4_req.command, 1);
1066 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +00001067 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +00001068 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001069 p = buffer_ptr(&c->input);
1070 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001071 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Damien Miller1781f532009-01-28 16:24:41 +11001072 len++; /* trailing '\0' */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001073 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +00001074 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001075 c->self, len, have);
1076 strlcpy(username, p, sizeof(username));
1077 buffer_consume(&c->input, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001078
Damien Millera1c1b6c2009-01-28 16:29:49 +11001079 if (c->path != NULL) {
1080 xfree(c->path);
1081 c->path = NULL;
1082 }
Damien Miller1781f532009-01-28 16:24:41 +11001083 if (need == 1) { /* SOCKS4: one string */
1084 host = inet_ntoa(s4_req.dest_addr);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001085 c->path = xstrdup(host);
Damien Miller1781f532009-01-28 16:24:41 +11001086 } else { /* SOCKS4A: two strings */
1087 have = buffer_len(&c->input);
1088 p = buffer_ptr(&c->input);
1089 len = strlen(p);
1090 debug2("channel %d: decode socks4a: host %s/%d",
1091 c->self, p, len);
1092 len++; /* trailing '\0' */
1093 if (len > have)
1094 fatal("channel %d: decode socks4a: len %d > have %d",
1095 c->self, len, have);
Damien Millera1c1b6c2009-01-28 16:29:49 +11001096 if (len > NI_MAXHOST) {
Damien Miller1781f532009-01-28 16:24:41 +11001097 error("channel %d: hostname \"%.100s\" too long",
1098 c->self, p);
1099 return -1;
1100 }
Damien Millera1c1b6c2009-01-28 16:29:49 +11001101 c->path = xstrdup(p);
Damien Miller1781f532009-01-28 16:24:41 +11001102 buffer_consume(&c->input, len);
1103 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001104 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001105
Damien Millerfbdeece2003-09-02 22:52:31 +10001106 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Damien Miller1781f532009-01-28 16:24:41 +11001107 c->self, c->path, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001108
Ben Lindstromb3921512001-04-11 15:57:50 +00001109 if (s4_req.command != 1) {
Damien Miller1781f532009-01-28 16:24:41 +11001110 debug("channel %d: cannot handle: %s cn %d",
1111 c->self, need == 1 ? "SOCKS4" : "SOCKS4A", s4_req.command);
Ben Lindstromb3921512001-04-11 15:57:50 +00001112 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001113 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001114 s4_rsp.version = 0; /* vn: 0 for reply */
1115 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001116 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001117 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001118 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001119 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001120}
1121
Darren Tucker46471c92003-07-03 13:55:19 +10001122/* try to decode a socks5 header */
1123#define SSH_SOCKS5_AUTHDONE 0x1000
1124#define SSH_SOCKS5_NOAUTH 0x00
1125#define SSH_SOCKS5_IPV4 0x01
1126#define SSH_SOCKS5_DOMAIN 0x03
1127#define SSH_SOCKS5_IPV6 0x04
1128#define SSH_SOCKS5_CONNECT 0x01
1129#define SSH_SOCKS5_SUCCESS 0x00
1130
Damien Miller8473dd82006-07-24 14:08:32 +10001131/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001132static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001133channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001134{
1135 struct {
1136 u_int8_t version;
1137 u_int8_t command;
1138 u_int8_t reserved;
1139 u_int8_t atyp;
1140 } s5_req, s5_rsp;
1141 u_int16_t dest_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001142 u_char *p, dest_addr[255+1], ntop[INET6_ADDRSTRLEN];
Damien Miller0f077072006-07-10 22:21:02 +10001143 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001144
1145 debug2("channel %d: decode socks5", c->self);
1146 p = buffer_ptr(&c->input);
1147 if (p[0] != 0x05)
1148 return -1;
1149 have = buffer_len(&c->input);
1150 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1151 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001152 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001153 return 0;
1154 nmethods = p[1];
1155 if (have < nmethods + 2)
1156 return 0;
1157 /* look for method: "NO AUTHENTICATION REQUIRED" */
Damien Miller80163902007-01-05 16:30:16 +11001158 for (found = 0, i = 2; i < nmethods + 2; i++) {
Damien Miller4dec5d72006-08-05 11:38:40 +10001159 if (p[i] == SSH_SOCKS5_NOAUTH) {
Darren Tucker46471c92003-07-03 13:55:19 +10001160 found = 1;
1161 break;
1162 }
1163 }
1164 if (!found) {
1165 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1166 c->self);
1167 return -1;
1168 }
1169 buffer_consume(&c->input, nmethods + 2);
1170 buffer_put_char(&c->output, 0x05); /* version */
1171 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1172 FD_SET(c->sock, writeset);
1173 c->flags |= SSH_SOCKS5_AUTHDONE;
1174 debug2("channel %d: socks5 auth done", c->self);
1175 return 0; /* need more */
1176 }
1177 debug2("channel %d: socks5 post auth", c->self);
1178 if (have < sizeof(s5_req)+1)
1179 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001180 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001181 if (s5_req.version != 0x05 ||
1182 s5_req.command != SSH_SOCKS5_CONNECT ||
1183 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001184 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001185 return -1;
1186 }
Darren Tucker47eede72005-03-14 23:08:12 +11001187 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001188 case SSH_SOCKS5_IPV4:
1189 addrlen = 4;
1190 af = AF_INET;
1191 break;
1192 case SSH_SOCKS5_DOMAIN:
1193 addrlen = p[sizeof(s5_req)];
1194 af = -1;
1195 break;
1196 case SSH_SOCKS5_IPV6:
1197 addrlen = 16;
1198 af = AF_INET6;
1199 break;
1200 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001201 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001202 return -1;
1203 }
Damien Miller0f077072006-07-10 22:21:02 +10001204 need = sizeof(s5_req) + addrlen + 2;
1205 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1206 need++;
1207 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001208 return 0;
1209 buffer_consume(&c->input, sizeof(s5_req));
1210 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1211 buffer_consume(&c->input, 1); /* host string length */
1212 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1213 buffer_get(&c->input, (char *)&dest_port, 2);
1214 dest_addr[addrlen] = '\0';
Damien Millera1c1b6c2009-01-28 16:29:49 +11001215 if (c->path != NULL) {
1216 xfree(c->path);
1217 c->path = NULL;
1218 }
1219 if (s5_req.atyp == SSH_SOCKS5_DOMAIN) {
Damien Miller9576ac42009-01-28 16:30:33 +11001220 if (addrlen >= NI_MAXHOST) {
Damien Millera1c1b6c2009-01-28 16:29:49 +11001221 error("channel %d: dynamic request: socks5 hostname "
1222 "\"%.100s\" too long", c->self, dest_addr);
1223 return -1;
1224 }
1225 c->path = xstrdup(dest_addr);
1226 } else {
1227 if (inet_ntop(af, dest_addr, ntop, sizeof(ntop)) == NULL)
1228 return -1;
1229 c->path = xstrdup(ntop);
1230 }
Darren Tucker46471c92003-07-03 13:55:19 +10001231 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001232
Damien Millerfbdeece2003-09-02 22:52:31 +10001233 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001234 c->self, c->path, c->host_port, s5_req.command);
1235
1236 s5_rsp.version = 0x05;
1237 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1238 s5_rsp.reserved = 0; /* ignored */
1239 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1240 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1241 dest_port = 0; /* ignored */
1242
Damien Millera0fdce92006-03-26 14:28:50 +11001243 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1244 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1245 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001246 return 1;
1247}
1248
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001249Channel *
Damien Millere1537f92010-01-26 13:26:22 +11001250channel_connect_stdio_fwd(const char *host_to_connect, u_short port_to_connect,
1251 int in, int out)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001252{
1253 Channel *c;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001254
1255 debug("channel_connect_stdio_fwd %s:%d", host_to_connect,
1256 port_to_connect);
1257
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001258 c = channel_new("stdio-forward", SSH_CHANNEL_OPENING, in, out,
1259 -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1260 0, "stdio-forward", /*nonblock*/0);
1261
1262 c->path = xstrdup(host_to_connect);
1263 c->host_port = port_to_connect;
1264 c->listening_port = 0;
1265 c->force_drain = 1;
1266
1267 channel_register_fds(c, in, out, -1, 0, 1, 0);
1268 port_open_helper(c, "direct-tcpip");
1269
1270 return c;
1271}
1272
Ben Lindstromb3921512001-04-11 15:57:50 +00001273/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001274static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001275channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001276{
1277 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001278 u_int have;
1279 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001280
1281 have = buffer_len(&c->input);
Ben Lindstromb3921512001-04-11 15:57:50 +00001282 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001283 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001284 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001285 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001286 /* need more */
1287 FD_SET(c->sock, readset);
1288 return;
1289 }
1290 /* try to guess the protocol */
1291 p = buffer_ptr(&c->input);
1292 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001293 case 0x04:
1294 ret = channel_decode_socks4(c, readset, writeset);
1295 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001296 case 0x05:
1297 ret = channel_decode_socks5(c, readset, writeset);
1298 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001299 default:
1300 ret = -1;
1301 break;
1302 }
1303 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001304 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001305 } else if (ret == 0) {
1306 debug2("channel %d: pre_dynamic: need more", c->self);
1307 /* need more */
1308 FD_SET(c->sock, readset);
1309 } else {
1310 /* switch to the next state */
1311 c->type = SSH_CHANNEL_OPENING;
1312 port_open_helper(c, "direct-tcpip");
1313 }
1314}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001315
Damien Millerb38eff82000-04-01 11:09:21 +10001316/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001317/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001318static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001319channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001320{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001321 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001322 struct sockaddr_storage addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001323 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001324 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001325 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001326 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001327
1328 if (FD_ISSET(c->sock, readset)) {
1329 debug("X11 connection requested.");
1330 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001331 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001332 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001333 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001334 channel_close_fd(&c->sock);
1335 chan_mark_dead(c);
1336 }
Damien Millerb38eff82000-04-01 11:09:21 +10001337 if (newsock < 0) {
1338 error("accept: %.100s", strerror(errno));
1339 return;
1340 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001341 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001342 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001343 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001344 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001345 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001346
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001347 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001348 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001349 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001350 if (compat20) {
1351 packet_start(SSH2_MSG_CHANNEL_OPEN);
1352 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001353 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001354 packet_put_int(nc->local_window_max);
1355 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001356 /* originator ipaddr and port */
1357 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001358 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001359 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001360 } else {
1361 packet_put_int(remote_port);
1362 }
Damien Millerbd483e72000-04-30 10:00:53 +10001363 packet_send();
1364 } else {
1365 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001366 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001367 if (packet_get_protocol_flags() &
1368 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001369 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001370 packet_send();
1371 }
Damien Millerd83ff352001-01-30 09:19:34 +11001372 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001373 }
1374}
1375
Ben Lindstrombba81212001-06-25 05:01:22 +00001376static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001377port_open_helper(Channel *c, char *rtype)
1378{
1379 int direct;
1380 char buf[1024];
1381 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001382 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001383
Damien Millerd6369432010-02-02 17:02:07 +11001384 if (remote_port == -1) {
1385 /* Fake addr/port to appease peers that validate it (Tectia) */
1386 xfree(remote_ipaddr);
1387 remote_ipaddr = xstrdup("127.0.0.1");
1388 remote_port = 65535;
1389 }
1390
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001391 direct = (strcmp(rtype, "direct-tcpip") == 0);
1392
1393 snprintf(buf, sizeof buf,
1394 "%s: listening port %d for %.100s port %d, "
1395 "connect from %.200s port %d",
1396 rtype, c->listening_port, c->path, c->host_port,
1397 remote_ipaddr, remote_port);
1398
1399 xfree(c->remote_name);
1400 c->remote_name = xstrdup(buf);
1401
1402 if (compat20) {
1403 packet_start(SSH2_MSG_CHANNEL_OPEN);
1404 packet_put_cstring(rtype);
1405 packet_put_int(c->self);
1406 packet_put_int(c->local_window_max);
1407 packet_put_int(c->local_maxpacket);
1408 if (direct) {
1409 /* target host, port */
1410 packet_put_cstring(c->path);
1411 packet_put_int(c->host_port);
1412 } else {
1413 /* listen address, port */
1414 packet_put_cstring(c->path);
1415 packet_put_int(c->listening_port);
1416 }
1417 /* originator host and port */
1418 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001419 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001420 packet_send();
1421 } else {
1422 packet_start(SSH_MSG_PORT_OPEN);
1423 packet_put_int(c->self);
1424 packet_put_cstring(c->path);
1425 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001426 if (packet_get_protocol_flags() &
1427 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001428 packet_put_cstring(c->remote_name);
1429 packet_send();
1430 }
1431 xfree(remote_ipaddr);
1432}
1433
Damien Miller5e7fd072005-11-05 14:53:39 +11001434static void
1435channel_set_reuseaddr(int fd)
1436{
1437 int on = 1;
1438
1439 /*
1440 * Set socket options.
1441 * Allow local port reuse in TIME_WAIT.
1442 */
1443 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1444 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1445}
1446
Damien Millerb38eff82000-04-01 11:09:21 +10001447/*
1448 * This socket is listening for connections to a forwarded TCP/IP port.
1449 */
Damien Miller8473dd82006-07-24 14:08:32 +10001450/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001451static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001452channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001453{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001454 Channel *nc;
Damien Miller163886f2008-07-14 11:28:58 +10001455 struct sockaddr_storage addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001456 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001457 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001458 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001459
Damien Millerb38eff82000-04-01 11:09:21 +10001460 if (FD_ISSET(c->sock, readset)) {
1461 debug("Connection to port %d forwarding "
1462 "to %.100s port %d requested.",
1463 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001464
Damien Miller4623a752001-10-10 15:03:58 +10001465 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1466 nextstate = SSH_CHANNEL_OPENING;
1467 rtype = "forwarded-tcpip";
1468 } else {
1469 if (c->host_port == 0) {
1470 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001471 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001472 } else {
1473 nextstate = SSH_CHANNEL_OPENING;
1474 rtype = "direct-tcpip";
1475 }
1476 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001477
Damien Millerb38eff82000-04-01 11:09:21 +10001478 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001479 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001480 if (newsock < 0) {
1481 error("accept: %.100s", strerror(errno));
1482 return;
1483 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001484 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001485 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1486 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001487 nc->listening_port = c->listening_port;
1488 nc->host_port = c->host_port;
Damien Millera1c1b6c2009-01-28 16:29:49 +11001489 if (c->path != NULL)
1490 nc->path = xstrdup(c->path);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001491
Darren Tucker876045b2010-01-08 17:08:00 +11001492 if (nextstate != SSH_CHANNEL_DYNAMIC)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001493 port_open_helper(nc, rtype);
Damien Millerb38eff82000-04-01 11:09:21 +10001494 }
1495}
1496
1497/*
1498 * This is the authentication agent socket listening for connections from
1499 * clients.
1500 */
Damien Miller8473dd82006-07-24 14:08:32 +10001501/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001502static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001503channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001504{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001505 Channel *nc;
1506 int newsock;
Damien Miller163886f2008-07-14 11:28:58 +10001507 struct sockaddr_storage addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001508 socklen_t addrlen;
1509
1510 if (FD_ISSET(c->sock, readset)) {
1511 addrlen = sizeof(addr);
Damien Miller163886f2008-07-14 11:28:58 +10001512 newsock = accept(c->sock, (struct sockaddr *)&addr, &addrlen);
Damien Millerb38eff82000-04-01 11:09:21 +10001513 if (newsock < 0) {
1514 error("accept from auth socket: %.100s", strerror(errno));
1515 return;
1516 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001517 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001518 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1519 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001520 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001521 if (compat20) {
1522 packet_start(SSH2_MSG_CHANNEL_OPEN);
1523 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001524 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001525 packet_put_int(c->local_window_max);
1526 packet_put_int(c->local_maxpacket);
1527 } else {
1528 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001529 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001530 }
Damien Millerb38eff82000-04-01 11:09:21 +10001531 packet_send();
1532 }
1533}
1534
Damien Miller8473dd82006-07-24 14:08:32 +10001535/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001536static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001537channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001538{
Damien Millerbd740252008-05-19 15:37:09 +10001539 int err = 0, sock;
Ben Lindstrom11180952001-07-04 05:13:35 +00001540 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001541
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001542 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001543 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001544 err = errno;
1545 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001546 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001547 if (err == 0) {
Damien Millerbd740252008-05-19 15:37:09 +10001548 debug("channel %d: connected to %s port %d",
1549 c->self, c->connect_ctx.host, c->connect_ctx.port);
1550 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001551 c->type = SSH_CHANNEL_OPEN;
1552 if (compat20) {
1553 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1554 packet_put_int(c->remote_id);
1555 packet_put_int(c->self);
1556 packet_put_int(c->local_window);
1557 packet_put_int(c->local_maxpacket);
1558 } else {
1559 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1560 packet_put_int(c->remote_id);
1561 packet_put_int(c->self);
1562 }
1563 } else {
Damien Millerbd740252008-05-19 15:37:09 +10001564 debug("channel %d: connection failed: %s",
Ben Lindstrom69128662001-05-08 20:07:39 +00001565 c->self, strerror(err));
Damien Millerbd740252008-05-19 15:37:09 +10001566 /* Try next address, if any */
1567 if ((sock = connect_next(&c->connect_ctx)) > 0) {
1568 close(c->sock);
1569 c->sock = c->rfd = c->wfd = sock;
1570 channel_max_fd = channel_find_maxfd();
1571 return;
1572 }
1573 /* Exhausted all addresses */
1574 error("connect_to %.100s port %d: failed.",
1575 c->connect_ctx.host, c->connect_ctx.port);
1576 channel_connect_ctx_free(&c->connect_ctx);
Ben Lindstrom69128662001-05-08 20:07:39 +00001577 if (compat20) {
1578 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1579 packet_put_int(c->remote_id);
1580 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1581 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1582 packet_put_cstring(strerror(err));
1583 packet_put_cstring("");
1584 }
1585 } else {
1586 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1587 packet_put_int(c->remote_id);
1588 }
1589 chan_mark_dead(c);
1590 }
1591 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001592 }
1593}
1594
Damien Miller8473dd82006-07-24 14:08:32 +10001595/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001596static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001597channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001598{
Darren Tucker11327cc2005-03-14 23:22:25 +11001599 char buf[CHAN_RBUF];
Damien Miller835284b2007-06-11 13:03:16 +10001600 int len, force;
Damien Millerb38eff82000-04-01 11:09:21 +10001601
Damien Miller835284b2007-06-11 13:03:16 +10001602 force = c->isatty && c->detach_close && c->istate != CHAN_INPUT_CLOSED;
1603 if (c->rfd != -1 && (force || FD_ISSET(c->rfd, readset))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001604 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001605 len = read(c->rfd, buf, sizeof(buf));
Damien Millerd8968ad2008-07-04 23:10:49 +10001606 if (len < 0 && (errno == EINTR ||
1607 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001608 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001609#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001610 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001611#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001612 if ((!c->isatty && len <= 0) ||
1613 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001614#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001615 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001616 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001617 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001618 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001619 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001620 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001621 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001622 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001623 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001624 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001625 } else {
1626 chan_read_failed(c);
1627 }
1628 return -1;
1629 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001630 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001631 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001632 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001633 chan_read_failed(c);
1634 }
Damien Millerd27b9472005-12-13 19:29:02 +11001635 } else if (c->datagram) {
1636 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001637 } else {
1638 buffer_append(&c->input, buf, len);
1639 }
Damien Millerb38eff82000-04-01 11:09:21 +10001640 }
1641 return 1;
1642}
Damien Miller4f7becb2006-03-26 14:10:14 +11001643
Damien Miller8473dd82006-07-24 14:08:32 +10001644/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001645static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001646channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001647{
Ben Lindstrome229b252001-03-05 06:28:06 +00001648 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001649 u_char *data = NULL, *buf;
Damien Miller7d457182010-08-05 23:09:48 +10001650 u_int dlen, olen = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001651 int len;
1652
1653 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001654 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001655 FD_ISSET(c->wfd, writeset) &&
1656 buffer_len(&c->output) > 0) {
Damien Miller7d457182010-08-05 23:09:48 +10001657 olen = buffer_len(&c->output);
Damien Miller077b2382005-12-31 16:22:32 +11001658 if (c->output_filter != NULL) {
1659 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1660 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001661 if (c->type != SSH_CHANNEL_OPEN)
1662 chan_mark_dead(c);
1663 else
1664 chan_write_failed(c);
1665 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001666 }
1667 } else if (c->datagram) {
1668 buf = data = buffer_get_string(&c->output, &dlen);
1669 } else {
1670 buf = data = buffer_ptr(&c->output);
1671 dlen = buffer_len(&c->output);
1672 }
1673
Damien Millerd27b9472005-12-13 19:29:02 +11001674 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001675 /* ignore truncated writes, datagrams might get lost */
Damien Miller077b2382005-12-31 16:22:32 +11001676 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001677 xfree(data);
Damien Millerd8968ad2008-07-04 23:10:49 +10001678 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1679 errno == EWOULDBLOCK))
Damien Millerd27b9472005-12-13 19:29:02 +11001680 return 1;
1681 if (len <= 0) {
1682 if (c->type != SSH_CHANNEL_OPEN)
1683 chan_mark_dead(c);
1684 else
1685 chan_write_failed(c);
1686 return -1;
1687 }
Damien Miller7d457182010-08-05 23:09:48 +10001688 goto out;
Damien Millerd27b9472005-12-13 19:29:02 +11001689 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001690#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001691 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001692 if (compat20 && c->wfd_isatty)
1693 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001694#endif
Damien Miller077b2382005-12-31 16:22:32 +11001695
1696 len = write(c->wfd, buf, dlen);
Damien Millerd8968ad2008-07-04 23:10:49 +10001697 if (len < 0 &&
1698 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
Damien Miller6f83b8e2000-05-02 09:23:45 +10001699 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001700 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001701 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001702 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001703 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001704 return -1;
1705 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001706 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001707 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001708 c->type = SSH_CHANNEL_INPUT_DRAINING;
1709 } else {
1710 chan_write_failed(c);
1711 }
1712 return -1;
1713 }
Darren Tucker3980b632009-08-28 11:02:37 +10001714#ifndef BROKEN_TCGETATTR_ICANON
Damien Miller077b2382005-12-31 16:22:32 +11001715 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001716 if (tcgetattr(c->wfd, &tio) == 0 &&
1717 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1718 /*
1719 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001720 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001721 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001722 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001723 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001724 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001725 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001726 }
1727 }
Darren Tucker3980b632009-08-28 11:02:37 +10001728#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001729 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001730 }
Damien Miller7d457182010-08-05 23:09:48 +10001731 out:
1732 if (compat20 && olen > 0)
1733 c->local_consumed += olen - buffer_len(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +10001734 return 1;
1735}
Damien Miller4f7becb2006-03-26 14:10:14 +11001736
Ben Lindstrombba81212001-06-25 05:01:22 +00001737static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001738channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001739{
Darren Tucker11327cc2005-03-14 23:22:25 +11001740 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001741 int len;
1742
Damien Miller1383bd82000-04-06 12:32:37 +10001743/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001744 if (c->efd != -1) {
1745 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1746 FD_ISSET(c->efd, writeset) &&
1747 buffer_len(&c->extended) > 0) {
1748 len = write(c->efd, buffer_ptr(&c->extended),
1749 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001750 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001751 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001752 if (len < 0 && (errno == EINTR || errno == EAGAIN ||
1753 errno == EWOULDBLOCK))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001754 return 1;
1755 if (len <= 0) {
1756 debug2("channel %d: closing write-efd %d",
1757 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001758 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001759 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001760 buffer_consume(&c->extended, len);
1761 c->local_consumed += len;
1762 }
Damien Miller8853ca52010-06-26 10:00:14 +10001763 } else if (c->efd != -1 &&
1764 (c->extended_usage == CHAN_EXTENDED_READ ||
1765 c->extended_usage == CHAN_EXTENDED_IGNORE) &&
Damien Millere42bd242007-01-29 10:16:28 +11001766 (c->detach_close || FD_ISSET(c->efd, readset))) {
Damien Miller33b13562000-04-04 14:38:59 +10001767 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001768 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001769 c->self, len, c->efd);
Damien Millerd8968ad2008-07-04 23:10:49 +10001770 if (len < 0 && (errno == EINTR || ((errno == EAGAIN ||
1771 errno == EWOULDBLOCK) && !c->detach_close)))
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001772 return 1;
1773 if (len <= 0) {
1774 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001775 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001776 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001777 } else {
Damien Miller8853ca52010-06-26 10:00:14 +10001778 if (c->extended_usage == CHAN_EXTENDED_IGNORE) {
1779 debug3("channel %d: discard efd",
1780 c->self);
1781 } else
1782 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001783 }
Damien Miller33b13562000-04-04 14:38:59 +10001784 }
1785 }
1786 return 1;
1787}
Damien Miller4f7becb2006-03-26 14:10:14 +11001788
Damien Miller0e220db2004-06-15 10:34:08 +10001789static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001790channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001791{
Ben Lindstromb3921512001-04-11 15:57:50 +00001792 if (c->type == SSH_CHANNEL_OPEN &&
1793 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Darren Tuckerae09cb82007-06-25 19:04:46 +10001794 ((c->local_window_max - c->local_window >
Damien Miller3191a8e2007-06-11 18:33:15 +10001795 c->local_maxpacket*3) ||
1796 c->local_window < c->local_window_max/2) &&
Damien Miller33b13562000-04-04 14:38:59 +10001797 c->local_consumed > 0) {
1798 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1799 packet_put_int(c->remote_id);
1800 packet_put_int(c->local_consumed);
1801 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001802 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001803 c->self, c->local_window,
1804 c->local_consumed);
1805 c->local_window += c->local_consumed;
1806 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001807 }
1808 return 1;
1809}
1810
Ben Lindstrombba81212001-06-25 05:01:22 +00001811static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001812channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001813{
1814 channel_handle_rfd(c, readset, writeset);
1815 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001816 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001817 return;
Damien Miller33b13562000-04-04 14:38:59 +10001818 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001819 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001820}
1821
Damien Millere1537f92010-01-26 13:26:22 +11001822static u_int
1823read_mux(Channel *c, u_int need)
1824{
1825 char buf[CHAN_RBUF];
1826 int len;
1827 u_int rlen;
1828
1829 if (buffer_len(&c->input) < need) {
1830 rlen = need - buffer_len(&c->input);
1831 len = read(c->rfd, buf, MIN(rlen, CHAN_RBUF));
1832 if (len <= 0) {
1833 if (errno != EINTR && errno != EAGAIN) {
1834 debug2("channel %d: ctl read<=0 rfd %d len %d",
1835 c->self, c->rfd, len);
1836 chan_read_failed(c);
1837 return 0;
1838 }
1839 } else
1840 buffer_append(&c->input, buf, len);
1841 }
1842 return buffer_len(&c->input);
1843}
1844
1845static void
1846channel_post_mux_client(Channel *c, fd_set *readset, fd_set *writeset)
1847{
1848 u_int need;
1849 ssize_t len;
1850
1851 if (!compat20)
1852 fatal("%s: entered with !compat20", __func__);
1853
Damien Millerd530f5f2010-05-21 14:57:10 +10001854 if (c->rfd != -1 && !c->mux_pause && FD_ISSET(c->rfd, readset) &&
Damien Millere1537f92010-01-26 13:26:22 +11001855 (c->istate == CHAN_INPUT_OPEN ||
1856 c->istate == CHAN_INPUT_WAIT_DRAIN)) {
1857 /*
1858 * Don't not read past the precise end of packets to
1859 * avoid disrupting fd passing.
1860 */
1861 if (read_mux(c, 4) < 4) /* read header */
1862 return;
1863 need = get_u32(buffer_ptr(&c->input));
1864#define CHANNEL_MUX_MAX_PACKET (256 * 1024)
1865 if (need > CHANNEL_MUX_MAX_PACKET) {
1866 debug2("channel %d: packet too big %u > %u",
1867 c->self, CHANNEL_MUX_MAX_PACKET, need);
1868 chan_rcvd_oclose(c);
1869 return;
1870 }
1871 if (read_mux(c, need + 4) < need + 4) /* read body */
1872 return;
1873 if (c->mux_rcb(c) != 0) {
1874 debug("channel %d: mux_rcb failed", c->self);
1875 chan_mark_dead(c);
1876 return;
1877 }
1878 }
1879
1880 if (c->wfd != -1 && FD_ISSET(c->wfd, writeset) &&
1881 buffer_len(&c->output) > 0) {
1882 len = write(c->wfd, buffer_ptr(&c->output),
1883 buffer_len(&c->output));
1884 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1885 return;
1886 if (len <= 0) {
1887 chan_mark_dead(c);
1888 return;
1889 }
1890 buffer_consume(&c->output, len);
1891 }
1892}
1893
1894static void
1895channel_post_mux_listener(Channel *c, fd_set *readset, fd_set *writeset)
1896{
1897 Channel *nc;
1898 struct sockaddr_storage addr;
1899 socklen_t addrlen;
1900 int newsock;
1901 uid_t euid;
1902 gid_t egid;
1903
1904 if (!FD_ISSET(c->sock, readset))
1905 return;
1906
1907 debug("multiplexing control connection");
1908
1909 /*
1910 * Accept connection on control socket
1911 */
1912 memset(&addr, 0, sizeof(addr));
1913 addrlen = sizeof(addr);
1914 if ((newsock = accept(c->sock, (struct sockaddr*)&addr,
1915 &addrlen)) == -1) {
1916 error("%s accept: %s", __func__, strerror(errno));
1917 return;
1918 }
1919
1920 if (getpeereid(newsock, &euid, &egid) < 0) {
1921 error("%s getpeereid failed: %s", __func__,
1922 strerror(errno));
1923 close(newsock);
1924 return;
1925 }
1926 if ((euid != 0) && (getuid() != euid)) {
1927 error("multiplex uid mismatch: peer euid %u != uid %u",
1928 (u_int)euid, (u_int)getuid());
1929 close(newsock);
1930 return;
1931 }
1932 nc = channel_new("multiplex client", SSH_CHANNEL_MUX_CLIENT,
1933 newsock, newsock, -1, c->local_window_max,
1934 c->local_maxpacket, 0, "mux-control", 1);
1935 nc->mux_rcb = c->mux_rcb;
1936 debug3("%s: new mux channel %d fd %d", __func__,
1937 nc->self, nc->sock);
1938 /* establish state */
1939 nc->mux_rcb(nc);
1940 /* mux state transitions must not elicit protocol messages */
1941 nc->flags |= CHAN_LOCAL;
1942}
1943
Damien Miller8473dd82006-07-24 14:08:32 +10001944/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001945static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001946channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001947{
1948 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001949
Damien Millerb38eff82000-04-01 11:09:21 +10001950 /* Send buffered output data to the socket. */
1951 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1952 len = write(c->sock, buffer_ptr(&c->output),
1953 buffer_len(&c->output));
1954 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001955 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001956 else
1957 buffer_consume(&c->output, len);
1958 }
1959}
1960
Ben Lindstrombba81212001-06-25 05:01:22 +00001961static void
Damien Miller33b13562000-04-04 14:38:59 +10001962channel_handler_init_20(void)
1963{
Damien Millerde6987c2002-01-22 23:20:40 +11001964 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001965 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001966 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001967 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001968 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001969 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001970 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001971 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millere1537f92010-01-26 13:26:22 +11001972 channel_pre[SSH_CHANNEL_MUX_LISTENER] = &channel_pre_listener;
1973 channel_pre[SSH_CHANNEL_MUX_CLIENT] = &channel_pre_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001974
Damien Millerde6987c2002-01-22 23:20:40 +11001975 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001976 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001977 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001978 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001979 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001980 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001981 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millere1537f92010-01-26 13:26:22 +11001982 channel_post[SSH_CHANNEL_MUX_LISTENER] = &channel_post_mux_listener;
1983 channel_post[SSH_CHANNEL_MUX_CLIENT] = &channel_post_mux_client;
Damien Miller33b13562000-04-04 14:38:59 +10001984}
1985
Ben Lindstrombba81212001-06-25 05:01:22 +00001986static void
Damien Millerb38eff82000-04-01 11:09:21 +10001987channel_handler_init_13(void)
1988{
1989 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1990 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1991 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1992 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1993 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1994 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1995 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001996 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001997 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001998
Damien Millerde6987c2002-01-22 23:20:40 +11001999 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002000 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2001 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2002 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
2003 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002004 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002005 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002006}
2007
Ben Lindstrombba81212001-06-25 05:01:22 +00002008static void
Damien Millerb38eff82000-04-01 11:09:21 +10002009channel_handler_init_15(void)
2010{
Damien Millerde6987c2002-01-22 23:20:40 +11002011 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10002012 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002013 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
2014 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
2015 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002016 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00002017 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10002018
2019 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
2020 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
2021 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11002022 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002023 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11002024 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10002025}
2026
Ben Lindstrombba81212001-06-25 05:01:22 +00002027static void
Damien Millerb38eff82000-04-01 11:09:21 +10002028channel_handler_init(void)
2029{
2030 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002031
Damien Miller9f0f5c62001-12-21 14:45:46 +11002032 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10002033 channel_pre[i] = NULL;
2034 channel_post[i] = NULL;
2035 }
Damien Miller33b13562000-04-04 14:38:59 +10002036 if (compat20)
2037 channel_handler_init_20();
2038 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10002039 channel_handler_init_13();
2040 else
2041 channel_handler_init_15();
2042}
2043
Damien Miller3ec27592001-10-12 11:35:04 +10002044/* gc dead channels */
2045static void
2046channel_garbage_collect(Channel *c)
2047{
2048 if (c == NULL)
2049 return;
2050 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11002051 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10002052 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002053 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002054 c->detach_user(c->self, NULL);
2055 /* if we still have a callback */
2056 if (c->detach_user != NULL)
2057 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002058 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002059 }
2060 if (!chan_is_dead(c, 1))
2061 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10002062 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10002063 channel_free(c);
2064}
2065
Ben Lindstrombba81212001-06-25 05:01:22 +00002066static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002067channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10002068{
2069 static int did_init = 0;
Darren Tucker876045b2010-01-08 17:08:00 +11002070 u_int i, oalloc;
Damien Millerb38eff82000-04-01 11:09:21 +10002071 Channel *c;
2072
2073 if (!did_init) {
2074 channel_handler_init();
2075 did_init = 1;
2076 }
Darren Tucker876045b2010-01-08 17:08:00 +11002077 for (i = 0, oalloc = channels_alloc; i < oalloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002078 c = channels[i];
2079 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10002080 continue;
Darren Tucker876045b2010-01-08 17:08:00 +11002081 if (c->delayed) {
2082 if (ftab == channel_pre)
2083 c->delayed = 0;
2084 else
2085 continue;
2086 }
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00002087 if (ftab[c->type] != NULL)
2088 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10002089 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002090 }
2091}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002092
Ben Lindstrome9c99912001-06-09 00:41:05 +00002093/*
2094 * Allocate/update select bitmasks and add any bits relevant to channels in
2095 * select bitmasks.
2096 */
Damien Miller4af51302000-04-16 11:18:38 +10002097void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002098channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002099 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002100{
Damien Miller36812092006-03-26 14:22:47 +11002101 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11002102
2103 n = MAX(*maxfdp, channel_max_fd);
2104
Damien Miller36812092006-03-26 14:22:47 +11002105 nfdset = howmany(n+1, NFDBITS);
2106 /* Explicitly test here, because xrealloc isn't always called */
2107 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
2108 fatal("channel_prepare_select: max_fd (%d) is too large", n);
2109 sz = nfdset * sizeof(fd_mask);
2110
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002111 /* perhaps check sz < nalloc/2 and shrink? */
2112 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11002113 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
2114 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002115 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11002116 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00002117 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11002118 memset(*readsetp, 0, sz);
2119 memset(*writesetp, 0, sz);
2120
Ben Lindstrombe2cc432001-04-04 23:46:07 +00002121 if (!rekeying)
2122 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002123}
2124
Ben Lindstrome9c99912001-06-09 00:41:05 +00002125/*
2126 * After select, perform any appropriate operations for channels which have
2127 * events pending.
2128 */
Damien Miller4af51302000-04-16 11:18:38 +10002129void
Damien Millerd62f2ca2006-03-26 13:57:41 +11002130channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131{
Damien Millerb38eff82000-04-01 11:09:21 +10002132 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002133}
2134
Ben Lindstrome9c99912001-06-09 00:41:05 +00002135
Damien Miller5e953212001-01-30 09:14:00 +11002136/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10002137void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002138channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139{
Damien Millerb38eff82000-04-01 11:09:21 +10002140 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002141 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002142
Damien Miller95def091999-11-25 00:26:21 +11002143 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002144 c = channels[i];
2145 if (c == NULL)
2146 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002147
Ben Lindstrome9c99912001-06-09 00:41:05 +00002148 /*
2149 * We are only interested in channels that can have buffered
2150 * incoming data.
2151 */
Damien Miller34132e52000-01-14 15:45:46 +11002152 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10002153 if (c->type != SSH_CHANNEL_OPEN &&
2154 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11002155 continue;
2156 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10002157 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002158 continue;
Damien Miller34132e52000-01-14 15:45:46 +11002159 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002160 if (compat20 &&
2161 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002162 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10002163 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002164 continue;
2165 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002166
Damien Miller95def091999-11-25 00:26:21 +11002167 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002168 if ((c->istate == CHAN_INPUT_OPEN ||
2169 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
2170 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11002171 if (c->datagram) {
2172 if (len > 0) {
2173 u_char *data;
2174 u_int dlen;
2175
2176 data = buffer_get_string(&c->input,
2177 &dlen);
Damien Miller7d457182010-08-05 23:09:48 +10002178 if (dlen > c->remote_window ||
2179 dlen > c->remote_maxpacket) {
2180 debug("channel %d: datagram "
2181 "too big for channel",
2182 c->self);
2183 xfree(data);
2184 continue;
2185 }
Damien Millerd27b9472005-12-13 19:29:02 +11002186 packet_start(SSH2_MSG_CHANNEL_DATA);
2187 packet_put_int(c->remote_id);
2188 packet_put_string(data, dlen);
2189 packet_send();
2190 c->remote_window -= dlen + 4;
2191 xfree(data);
2192 }
2193 continue;
2194 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002195 /*
2196 * Send some data for the other side over the secure
2197 * connection.
2198 */
Damien Miller33b13562000-04-04 14:38:59 +10002199 if (compat20) {
2200 if (len > c->remote_window)
2201 len = c->remote_window;
2202 if (len > c->remote_maxpacket)
2203 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11002204 } else {
Damien Miller33b13562000-04-04 14:38:59 +10002205 if (packet_is_interactive()) {
2206 if (len > 1024)
2207 len = 512;
2208 } else {
2209 /* Keep the packets at reasonable size. */
2210 if (len > packet_get_maxsize()/2)
2211 len = packet_get_maxsize()/2;
2212 }
Damien Miller95def091999-11-25 00:26:21 +11002213 }
Damien Millerb38eff82000-04-01 11:09:21 +10002214 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10002215 packet_start(compat20 ?
2216 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10002217 packet_put_int(c->remote_id);
2218 packet_put_string(buffer_ptr(&c->input), len);
2219 packet_send();
2220 buffer_consume(&c->input, len);
2221 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10002222 }
2223 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11002224 if (compat13)
2225 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11002226 /*
2227 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00002228 * tell peer, that we will not send more data: send IEOF.
2229 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11002230 */
Ben Lindstromcf159442002-03-26 03:26:24 +00002231 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10002232 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2233 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00002234 else
2235 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11002236 }
Damien Miller33b13562000-04-04 14:38:59 +10002237 /* Send extended data, i.e. stderr */
2238 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00002239 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10002240 c->remote_window > 0 &&
2241 (len = buffer_len(&c->extended)) > 0 &&
2242 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002243 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002244 c->self, c->remote_window, buffer_len(&c->extended),
2245 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10002246 if (len > c->remote_window)
2247 len = c->remote_window;
2248 if (len > c->remote_maxpacket)
2249 len = c->remote_maxpacket;
2250 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
2251 packet_put_int(c->remote_id);
2252 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
2253 packet_put_string(buffer_ptr(&c->extended), len);
2254 packet_send();
2255 buffer_consume(&c->extended, len);
2256 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00002257 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10002258 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002259 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002260}
2261
Ben Lindstrome9c99912001-06-09 00:41:05 +00002262
2263/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11002264
2265/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002266void
Damien Miller630d6f42002-01-22 23:17:30 +11002267channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002268{
Damien Miller34132e52000-01-14 15:45:46 +11002269 int id;
Damien Miller95def091999-11-25 00:26:21 +11002270 char *data;
Damien Miller7d457182010-08-05 23:09:48 +10002271 u_int data_len, win_len;
Damien Millerb38eff82000-04-01 11:09:21 +10002272 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002273
Damien Miller95def091999-11-25 00:26:21 +11002274 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11002275 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002276 c = channel_lookup(id);
2277 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002278 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002279
Damien Miller95def091999-11-25 00:26:21 +11002280 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002281 if (c->type != SSH_CHANNEL_OPEN &&
2282 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002283 return;
2284
Damien Miller95def091999-11-25 00:26:21 +11002285 /* Get the data. */
Damien Millerdb255ca2008-05-19 14:59:37 +10002286 data = packet_get_string_ptr(&data_len);
Damien Miller7d457182010-08-05 23:09:48 +10002287 win_len = data_len;
2288 if (c->datagram)
2289 win_len += 4; /* string length header */
Damien Millerb38eff82000-04-01 11:09:21 +10002290
Damien Millera04ad492004-01-21 11:02:09 +11002291 /*
2292 * Ignore data for protocol > 1.3 if output end is no longer open.
2293 * For protocol 2 the sending side is reducing its window as it sends
2294 * data, so we must 'fake' consumption of the data in order to ensure
2295 * that window updates are sent back. Otherwise the connection might
2296 * deadlock.
2297 */
2298 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2299 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002300 c->local_window -= win_len;
2301 c->local_consumed += win_len;
Damien Millera04ad492004-01-21 11:02:09 +11002302 }
Damien Millera04ad492004-01-21 11:02:09 +11002303 return;
2304 }
2305
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002306 if (compat20) {
Damien Miller7d457182010-08-05 23:09:48 +10002307 if (win_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002308 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller7d457182010-08-05 23:09:48 +10002309 c->self, win_len, c->local_maxpacket);
Damien Miller33b13562000-04-04 14:38:59 +10002310 }
Damien Miller7d457182010-08-05 23:09:48 +10002311 if (win_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002312 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller7d457182010-08-05 23:09:48 +10002313 c->self, win_len, c->local_window);
Damien Miller33b13562000-04-04 14:38:59 +10002314 return;
2315 }
Damien Miller7d457182010-08-05 23:09:48 +10002316 c->local_window -= win_len;
Damien Miller33b13562000-04-04 14:38:59 +10002317 }
Damien Millerd27b9472005-12-13 19:29:02 +11002318 if (c->datagram)
2319 buffer_put_string(&c->output, data, data_len);
2320 else
2321 buffer_append(&c->output, data, data_len);
Damien Millerdb255ca2008-05-19 14:59:37 +10002322 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002323}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002324
Damien Millerd79b4242006-03-31 23:11:44 +11002325/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002326void
Damien Miller630d6f42002-01-22 23:17:30 +11002327channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002328{
2329 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002330 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002331 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002332 Channel *c;
2333
2334 /* Get the channel number and verify it. */
2335 id = packet_get_int();
2336 c = channel_lookup(id);
2337
2338 if (c == NULL)
2339 packet_disconnect("Received extended_data for bad channel %d.", id);
2340 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002341 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002342 return;
2343 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002344 if (c->flags & CHAN_EOF_RCVD) {
2345 if (datafellows & SSH_BUG_EXTEOF)
2346 debug("channel %d: accepting ext data after eof", id);
2347 else
2348 packet_disconnect("Received extended_data after EOF "
2349 "on channel %d.", id);
2350 }
Damien Miller33b13562000-04-04 14:38:59 +10002351 tcode = packet_get_int();
2352 if (c->efd == -1 ||
2353 c->extended_usage != CHAN_EXTENDED_WRITE ||
2354 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002355 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002356 return;
2357 }
2358 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002359 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002360 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002361 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002362 c->self, data_len, c->local_window);
2363 xfree(data);
2364 return;
2365 }
Damien Millerd3444942000-09-30 14:20:03 +11002366 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002367 c->local_window -= data_len;
2368 buffer_append(&c->extended, data, data_len);
2369 xfree(data);
2370}
2371
Damien Millerd79b4242006-03-31 23:11:44 +11002372/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002373void
Damien Miller630d6f42002-01-22 23:17:30 +11002374channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002375{
2376 int id;
2377 Channel *c;
2378
Damien Millerb38eff82000-04-01 11:09:21 +10002379 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002380 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002381 c = channel_lookup(id);
2382 if (c == NULL)
2383 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2384 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002385
2386 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002387 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002388 debug("channel %d: FORCE input drain", c->self);
2389 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002390 if (buffer_len(&c->input) == 0)
2391 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002392 }
2393
Damien Millerb38eff82000-04-01 11:09:21 +10002394}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002395
Damien Millerd79b4242006-03-31 23:11:44 +11002396/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002397void
Damien Miller630d6f42002-01-22 23:17:30 +11002398channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002399{
Damien Millerb38eff82000-04-01 11:09:21 +10002400 int id;
2401 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002402
Damien Millerb38eff82000-04-01 11:09:21 +10002403 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002404 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002405 c = channel_lookup(id);
2406 if (c == NULL)
2407 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002408
2409 /*
2410 * Send a confirmation that we have closed the channel and no more
2411 * data is coming for it.
2412 */
Damien Miller95def091999-11-25 00:26:21 +11002413 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002414 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002415 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002416
Damien Miller5428f641999-11-25 11:54:57 +11002417 /*
2418 * If the channel is in closed state, we have sent a close request,
2419 * and the other side will eventually respond with a confirmation.
2420 * Thus, we cannot free the channel here, because then there would be
2421 * no-one to receive the confirmation. The channel gets freed when
2422 * the confirmation arrives.
2423 */
Damien Millerb38eff82000-04-01 11:09:21 +10002424 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002425 /*
2426 * Not a closed channel - mark it as draining, which will
2427 * cause it to be freed later.
2428 */
Damien Miller76765c02002-01-22 23:21:15 +11002429 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002430 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002431 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432}
2433
Damien Millerb38eff82000-04-01 11:09:21 +10002434/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002435/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002436void
Damien Miller630d6f42002-01-22 23:17:30 +11002437channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002438{
Damien Millerb38eff82000-04-01 11:09:21 +10002439 int id = packet_get_int();
2440 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002441
Damien Miller48b03fc2002-01-22 23:11:40 +11002442 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002443 if (c == NULL)
2444 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2445 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002446}
2447
Damien Millerd79b4242006-03-31 23:11:44 +11002448/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002449void
Damien Miller630d6f42002-01-22 23:17:30 +11002450channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002451{
2452 int id = packet_get_int();
2453 Channel *c = channel_lookup(id);
2454
Damien Miller48b03fc2002-01-22 23:11:40 +11002455 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002456 if (c == NULL)
2457 packet_disconnect("Received close confirmation for "
2458 "out-of-range channel %d.", id);
2459 if (c->type != SSH_CHANNEL_CLOSED)
2460 packet_disconnect("Received close confirmation for "
2461 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002462 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002463}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002464
Damien Millerd79b4242006-03-31 23:11:44 +11002465/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002466void
Damien Miller630d6f42002-01-22 23:17:30 +11002467channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002468{
Damien Millerb38eff82000-04-01 11:09:21 +10002469 int id, remote_id;
2470 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002471
Damien Millerb38eff82000-04-01 11:09:21 +10002472 id = packet_get_int();
2473 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002474
Damien Millerb38eff82000-04-01 11:09:21 +10002475 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2476 packet_disconnect("Received open confirmation for "
2477 "non-opening channel %d.", id);
2478 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002479 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002480 c->remote_id = remote_id;
2481 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002482
2483 if (compat20) {
2484 c->remote_window = packet_get_int();
2485 c->remote_maxpacket = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002486 if (c->open_confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002487 debug2("callback start");
Damien Millerd530f5f2010-05-21 14:57:10 +10002488 c->open_confirm(c->self, 1, c->open_confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002489 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002490 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002491 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002492 c->remote_window, c->remote_maxpacket);
2493 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002494 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002495}
2496
Ben Lindstrombba81212001-06-25 05:01:22 +00002497static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002498reason2txt(int reason)
2499{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002500 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002501 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2502 return "administratively prohibited";
2503 case SSH2_OPEN_CONNECT_FAILED:
2504 return "connect failed";
2505 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2506 return "unknown channel type";
2507 case SSH2_OPEN_RESOURCE_SHORTAGE:
2508 return "resource shortage";
2509 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002510 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002511}
2512
Damien Millerd79b4242006-03-31 23:11:44 +11002513/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002514void
Damien Miller630d6f42002-01-22 23:17:30 +11002515channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002516{
Kevin Steves12057502001-02-05 14:54:34 +00002517 int id, reason;
2518 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002519 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002520
Damien Millerb38eff82000-04-01 11:09:21 +10002521 id = packet_get_int();
2522 c = channel_lookup(id);
2523
2524 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2525 packet_disconnect("Received open failure for "
2526 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002527 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002528 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002529 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002530 msg = packet_get_string(NULL);
2531 lang = packet_get_string(NULL);
2532 }
Damien Miller996acd22003-04-09 20:59:48 +10002533 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002534 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002535 if (msg != NULL)
2536 xfree(msg);
2537 if (lang != NULL)
2538 xfree(lang);
Damien Millerd530f5f2010-05-21 14:57:10 +10002539 if (c->open_confirm) {
2540 debug2("callback start");
2541 c->open_confirm(c->self, 0, c->open_confirm_ctx);
2542 debug2("callback done");
2543 }
Damien Miller33b13562000-04-04 14:38:59 +10002544 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002545 packet_check_eom();
Damien Miller7a606212009-01-28 16:22:34 +11002546 /* Schedule the channel for cleanup/deletion. */
2547 chan_mark_dead(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002548}
2549
Damien Millerd79b4242006-03-31 23:11:44 +11002550/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002551void
Damien Miller630d6f42002-01-22 23:17:30 +11002552channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002553{
2554 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002555 int id;
2556 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002557
2558 if (!compat20)
2559 return;
2560
2561 /* Get the channel number and verify it. */
2562 id = packet_get_int();
2563 c = channel_lookup(id);
2564
Damien Millerd47c62a2005-12-13 19:33:57 +11002565 if (c == NULL) {
2566 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002567 return;
2568 }
2569 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002570 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002571 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002572 c->remote_window += adjust;
2573}
2574
Damien Millerd79b4242006-03-31 23:11:44 +11002575/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002576void
Damien Miller630d6f42002-01-22 23:17:30 +11002577channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002578{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002579 Channel *c = NULL;
2580 u_short host_port;
2581 char *host, *originator_string;
Damien Millerbd740252008-05-19 15:37:09 +10002582 int remote_id;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002583
Ben Lindstrome9c99912001-06-09 00:41:05 +00002584 remote_id = packet_get_int();
2585 host = packet_get_string(NULL);
2586 host_port = packet_get_int();
2587
2588 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2589 originator_string = packet_get_string(NULL);
2590 } else {
2591 originator_string = xstrdup("unknown (remote did not supply name)");
2592 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002593 packet_check_eom();
Damien Millerbd740252008-05-19 15:37:09 +10002594 c = channel_connect_to(host, host_port,
2595 "connected socket", originator_string);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002596 xfree(originator_string);
Damien Millerbd740252008-05-19 15:37:09 +10002597 xfree(host);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002598 if (c == NULL) {
2599 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2600 packet_put_int(remote_id);
2601 packet_send();
Damien Millerbd740252008-05-19 15:37:09 +10002602 } else
2603 c->remote_id = remote_id;
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002604}
2605
Damien Millerb84886b2008-05-19 15:05:07 +10002606/* ARGSUSED */
2607void
2608channel_input_status_confirm(int type, u_int32_t seq, void *ctxt)
2609{
2610 Channel *c;
2611 struct channel_confirm *cc;
Damien Miller16a73072008-12-08 09:55:25 +11002612 int id;
Damien Millerb84886b2008-05-19 15:05:07 +10002613
2614 /* Reset keepalive timeout */
Darren Tuckerf7288d72009-06-21 18:12:20 +10002615 packet_set_alive_timeouts(0);
Damien Millerb84886b2008-05-19 15:05:07 +10002616
Damien Miller16a73072008-12-08 09:55:25 +11002617 id = packet_get_int();
Damien Millerb84886b2008-05-19 15:05:07 +10002618 packet_check_eom();
2619
Damien Miller16a73072008-12-08 09:55:25 +11002620 debug2("channel_input_status_confirm: type %d id %d", type, id);
Damien Millerb84886b2008-05-19 15:05:07 +10002621
Damien Miller16a73072008-12-08 09:55:25 +11002622 if ((c = channel_lookup(id)) == NULL) {
2623 logit("channel_input_status_confirm: %d: unknown", id);
Damien Millerb84886b2008-05-19 15:05:07 +10002624 return;
2625 }
2626 ;
2627 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2628 return;
2629 cc->cb(type, c, cc->ctx);
2630 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2631 bzero(cc, sizeof(*cc));
2632 xfree(cc);
2633}
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002634
Ben Lindstrome9c99912001-06-09 00:41:05 +00002635/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002636
Ben Lindstrom908afed2001-10-03 17:34:59 +00002637void
2638channel_set_af(int af)
2639{
2640 IPv4or6 = af;
2641}
2642
Damien Millerf6dff7c2011-09-22 21:38:52 +10002643
2644/*
2645 * Determine whether or not a port forward listens to loopback, the
2646 * specified address or wildcard. On the client, a specified bind
2647 * address will always override gateway_ports. On the server, a
2648 * gateway_ports of 1 (``yes'') will override the client's specification
2649 * and force a wildcard bind, whereas a value of 2 (``clientspecified'')
2650 * will bind to whatever address the client asked for.
2651 *
2652 * Special-case listen_addrs are:
2653 *
2654 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2655 * "" (empty string), "*" -> wildcard v4/v6
2656 * "localhost" -> loopback v4/v6
2657 */
2658static const char *
2659channel_fwd_bind_addr(const char *listen_addr, int *wildcardp,
2660 int is_client, int gateway_ports)
2661{
2662 const char *addr = NULL;
2663 int wildcard = 0;
2664
2665 if (listen_addr == NULL) {
2666 /* No address specified: default to gateway_ports setting */
2667 if (gateway_ports)
2668 wildcard = 1;
2669 } else if (gateway_ports || is_client) {
2670 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2671 strcmp(listen_addr, "0.0.0.0") == 0 && is_client == 0) ||
2672 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2673 (!is_client && gateway_ports == 1))
2674 wildcard = 1;
2675 else if (strcmp(listen_addr, "localhost") != 0)
2676 addr = listen_addr;
2677 }
2678 if (wildcardp != NULL)
2679 *wildcardp = wildcard;
2680 return addr;
2681}
2682
Damien Millerb16461c2002-01-22 23:29:22 +11002683static int
Damien Miller4bf648f2009-02-14 16:28:21 +11002684channel_setup_fwd_listener(int type, const char *listen_addr,
2685 u_short listen_port, int *allocated_listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002686 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002687{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002688 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002689 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002690 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002691 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002692 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller4bf648f2009-02-14 16:28:21 +11002693 in_port_t *lport_p;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002694
Damien Millerb16461c2002-01-22 23:29:22 +11002695 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2696 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002697 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002698
Damien Millerb16461c2002-01-22 23:29:22 +11002699 if (host == NULL) {
2700 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002701 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002702 }
Damien Miller9576ac42009-01-28 16:30:33 +11002703 if (strlen(host) >= NI_MAXHOST) {
Kevin Steves12057502001-02-05 14:54:34 +00002704 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002705 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002706 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002707
Damien Millerf6dff7c2011-09-22 21:38:52 +10002708 /* Determine the bind address, cf. channel_fwd_bind_addr() comment */
2709 addr = channel_fwd_bind_addr(listen_addr, &wildcard,
2710 is_client, gateway_ports);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002711 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2712 type, wildcard, (addr == NULL) ? "NULL" : addr);
2713
2714 /*
Damien Miller34132e52000-01-14 15:45:46 +11002715 * getaddrinfo returns a loopback address if the hostname is
2716 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002717 */
Damien Miller34132e52000-01-14 15:45:46 +11002718 memset(&hints, 0, sizeof(hints));
2719 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002720 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002721 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002722 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002723 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2724 if (addr == NULL) {
2725 /* This really shouldn't happen */
2726 packet_disconnect("getaddrinfo: fatal error: %s",
Darren Tucker4abde772007-12-29 02:43:51 +11002727 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002728 } else {
Damien Millera7270302005-07-06 09:36:05 +10002729 error("channel_setup_fwd_listener: "
Darren Tucker4abde772007-12-29 02:43:51 +11002730 "getaddrinfo(%.64s): %s", addr,
2731 ssh_gai_strerror(r));
Damien Millerf91ee4c2005-03-01 21:24:33 +11002732 }
Damien Millera7270302005-07-06 09:36:05 +10002733 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002734 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002735 if (allocated_listen_port != NULL)
2736 *allocated_listen_port = 0;
Damien Miller34132e52000-01-14 15:45:46 +11002737 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller4bf648f2009-02-14 16:28:21 +11002738 switch (ai->ai_family) {
2739 case AF_INET:
2740 lport_p = &((struct sockaddr_in *)ai->ai_addr)->
2741 sin_port;
2742 break;
2743 case AF_INET6:
2744 lport_p = &((struct sockaddr_in6 *)ai->ai_addr)->
2745 sin6_port;
2746 break;
2747 default:
Damien Miller34132e52000-01-14 15:45:46 +11002748 continue;
Damien Miller4bf648f2009-02-14 16:28:21 +11002749 }
2750 /*
2751 * If allocating a port for -R forwards, then use the
2752 * same port for all address families.
2753 */
2754 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2755 allocated_listen_port != NULL && *allocated_listen_port > 0)
2756 *lport_p = htons(*allocated_listen_port);
2757
Damien Miller34132e52000-01-14 15:45:46 +11002758 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2759 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002760 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002761 continue;
2762 }
2763 /* Create a port to listen for the host. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11002764 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002765 if (sock < 0) {
2766 /* this is no error since kernel may not support ipv6 */
2767 verbose("socket: %.100s", strerror(errno));
2768 continue;
2769 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002770
2771 channel_set_reuseaddr(sock);
Damien Miller04ee0f82009-11-18 17:48:30 +11002772 if (ai->ai_family == AF_INET6)
2773 sock_set_v6only(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002774
Damien Miller4bf648f2009-02-14 16:28:21 +11002775 debug("Local forwarding listening on %s port %s.",
2776 ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002777
Damien Miller34132e52000-01-14 15:45:46 +11002778 /* Bind the socket to the address. */
2779 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2780 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002781 if (!ai->ai_next)
2782 error("bind: %.100s", strerror(errno));
2783 else
2784 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002785
Damien Miller34132e52000-01-14 15:45:46 +11002786 close(sock);
2787 continue;
2788 }
2789 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002790 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002791 error("listen: %.100s", strerror(errno));
2792 close(sock);
2793 continue;
2794 }
Damien Miller4bf648f2009-02-14 16:28:21 +11002795
2796 /*
2797 * listen_port == 0 requests a dynamically allocated port -
2798 * record what we got.
2799 */
2800 if (type == SSH_CHANNEL_RPORT_LISTENER && listen_port == 0 &&
2801 allocated_listen_port != NULL &&
2802 *allocated_listen_port == 0) {
2803 *allocated_listen_port = get_sock_port(sock, 1);
2804 debug("Allocated listen port %d",
2805 *allocated_listen_port);
2806 }
2807
Damien Miller34132e52000-01-14 15:45:46 +11002808 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002809 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002810 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002811 0, "port listener", 1);
Damien Millera1c1b6c2009-01-28 16:29:49 +11002812 c->path = xstrdup(host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002813 c->host_port = port_to_connect;
2814 c->listening_port = listen_port;
Damien Millerf6dff7c2011-09-22 21:38:52 +10002815 c->listening_addr = addr == NULL ? NULL : xstrdup(addr);
Damien Miller34132e52000-01-14 15:45:46 +11002816 success = 1;
2817 }
2818 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002819 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002820 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002821 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002822 return success;
Damien Miller95def091999-11-25 00:26:21 +11002823}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002824
Darren Tuckere7066df2004-05-24 10:18:05 +10002825int
2826channel_cancel_rport_listener(const char *host, u_short port)
2827{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002828 u_int i;
2829 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002830
Darren Tucker47eede72005-03-14 23:08:12 +11002831 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002832 Channel *c = channels[i];
Damien Millerf6dff7c2011-09-22 21:38:52 +10002833 if (c == NULL || c->type != SSH_CHANNEL_RPORT_LISTENER)
2834 continue;
2835 if (strcmp(c->path, host) == 0 && c->listening_port == port) {
2836 debug2("%s: close channel %d", __func__, i);
2837 channel_free(c);
2838 found = 1;
2839 }
2840 }
Darren Tuckere7066df2004-05-24 10:18:05 +10002841
Damien Millerf6dff7c2011-09-22 21:38:52 +10002842 return (found);
2843}
2844
2845int
2846channel_cancel_lport_listener(const char *lhost, u_short lport,
2847 u_short cport, int gateway_ports)
2848{
2849 u_int i;
2850 int found = 0;
2851 const char *addr = channel_fwd_bind_addr(lhost, NULL, 1, gateway_ports);
2852
2853 for (i = 0; i < channels_alloc; i++) {
2854 Channel *c = channels[i];
2855 if (c == NULL || c->type != SSH_CHANNEL_PORT_LISTENER)
2856 continue;
2857 if (c->listening_port != lport || c->host_port != cport)
2858 continue;
2859 if ((c->listening_addr == NULL && addr != NULL) ||
2860 (c->listening_addr != NULL && addr == NULL))
2861 continue;
2862 if (addr == NULL || strcmp(c->listening_addr, addr) == 0) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002863 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002864 channel_free(c);
2865 found = 1;
2866 }
2867 }
2868
2869 return (found);
2870}
2871
Damien Millerb16461c2002-01-22 23:29:22 +11002872/* protocol local port fwd, used by ssh (and sshd in v1) */
2873int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002874channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002875 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2876{
2877 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002878 listen_host, listen_port, NULL, host_to_connect, port_to_connect,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002879 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002880}
2881
2882/* protocol v2 remote port fwd, used by sshd */
2883int
2884channel_setup_remote_fwd_listener(const char *listen_address,
Damien Miller4bf648f2009-02-14 16:28:21 +11002885 u_short listen_port, int *allocated_listen_port, int gateway_ports)
Damien Millerb16461c2002-01-22 23:29:22 +11002886{
2887 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
Damien Miller4bf648f2009-02-14 16:28:21 +11002888 listen_address, listen_port, allocated_listen_port,
2889 NULL, 0, gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002890}
2891
Damien Miller5428f641999-11-25 11:54:57 +11002892/*
Damien Millerf6dff7c2011-09-22 21:38:52 +10002893 * Translate the requested rfwd listen host to something usable for
2894 * this server.
2895 */
2896static const char *
2897channel_rfwd_bind_host(const char *listen_host)
2898{
2899 if (listen_host == NULL) {
2900 if (datafellows & SSH_BUG_RFWD_ADDR)
2901 return "127.0.0.1";
2902 else
2903 return "localhost";
2904 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
2905 if (datafellows & SSH_BUG_RFWD_ADDR)
2906 return "0.0.0.0";
2907 else
2908 return "";
2909 } else
2910 return listen_host;
2911}
2912
2913/*
Damien Miller5428f641999-11-25 11:54:57 +11002914 * Initiate forwarding of connections to port "port" on remote host through
2915 * the secure channel to host:port from local side.
2916 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002917int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002918channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002919 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002920{
Damien Millerdff50992002-01-22 23:16:32 +11002921 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002922
Damien Miller95def091999-11-25 00:26:21 +11002923 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002924 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002925 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2926 packet_put_cstring("tcpip-forward");
Damien Millerf6dff7c2011-09-22 21:38:52 +10002927 packet_put_char(1); /* boolean: want reply */
2928 packet_put_cstring(channel_rfwd_bind_host(listen_host));
Damien Miller33b13562000-04-04 14:38:59 +10002929 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002930 packet_send();
2931 packet_write_wait();
2932 /* Assume that server accepts the request */
2933 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002934 } else {
2935 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002936 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002937 packet_put_cstring(host_to_connect);
2938 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002939 packet_send();
2940 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002941
2942 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002943 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002944 switch (type) {
2945 case SSH_SMSG_SUCCESS:
2946 success = 1;
2947 break;
2948 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002949 break;
2950 default:
2951 /* Unknown packet */
2952 packet_disconnect("Protocol error for port forward request:"
2953 "received packet type %d.", type);
2954 }
2955 }
2956 if (success) {
Damien Miller232cfb12010-06-26 09:50:30 +10002957 /* Record that connection to this host/port is permitted. */
2958 permitted_opens = xrealloc(permitted_opens,
2959 num_permitted_opens + 1, sizeof(*permitted_opens));
Damien Miller0bc1bd82000-11-13 22:57:25 +11002960 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2961 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2962 permitted_opens[num_permitted_opens].listen_port = listen_port;
2963 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002964 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002965 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002966}
2967
Damien Miller5428f641999-11-25 11:54:57 +11002968/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002969 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002970 * local side.
2971 */
Damien Millerf6dff7c2011-09-22 21:38:52 +10002972int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002973channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002974{
2975 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002976
2977 if (!compat20)
Damien Millerf6dff7c2011-09-22 21:38:52 +10002978 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10002979
2980 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002981 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002982 permitted_opens[i].listen_port == port)
2983 break;
2984 }
2985 if (i >= num_permitted_opens) {
2986 debug("%s: requested forward not found", __func__);
Damien Millerf6dff7c2011-09-22 21:38:52 +10002987 return -1;
Darren Tuckere7066df2004-05-24 10:18:05 +10002988 }
2989 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2990 packet_put_cstring("cancel-tcpip-forward");
2991 packet_put_char(0);
Damien Millerf6dff7c2011-09-22 21:38:52 +10002992 packet_put_cstring(channel_rfwd_bind_host(host));
Darren Tuckere7066df2004-05-24 10:18:05 +10002993 packet_put_int(port);
2994 packet_send();
2995
2996 permitted_opens[i].listen_port = 0;
2997 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002998 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002999 permitted_opens[i].host_to_connect = NULL;
Damien Millerf6dff7c2011-09-22 21:38:52 +10003000
3001 return 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10003002}
3003
3004/*
Damien Miller5428f641999-11-25 11:54:57 +11003005 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
3006 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10003007 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11003008 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003009int
Damien Millere247cc42000-05-07 12:03:14 +10003010channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003011{
Damien Milleraae6c611999-12-06 11:47:28 +11003012 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10003013 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11003014 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003015
Damien Miller95def091999-11-25 00:26:21 +11003016 /* Get arguments from the packet. */
3017 port = packet_get_int();
3018 hostname = packet_get_string(NULL);
3019 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003020
Damien Millerbac2d8a2000-09-05 16:13:06 +11003021#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11003022 /*
3023 * Check that an unprivileged user is not trying to forward a
3024 * privileged port.
3025 */
Damien Miller95def091999-11-25 00:26:21 +11003026 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10003027 packet_disconnect(
3028 "Requested forwarding of port %d but user is not root.",
3029 port);
3030 if (host_port == 0)
3031 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11003032#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10003033
Damien Miller0bc1bd82000-11-13 22:57:25 +11003034 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10003035 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11003036 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11003037
3038 /* Free the argument string. */
3039 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10003040
3041 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003042}
3043
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003044/*
3045 * Permits opening to any host/port if permitted_opens[] is empty. This is
3046 * usually called by the server, because the user could connect to any port
3047 * anyway, and the server has no way to know but to trust the client anyway.
3048 */
3049void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003050channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003051{
3052 if (num_permitted_opens == 0)
3053 all_opens_permitted = 1;
3054}
3055
Ben Lindstroma3700052001-04-05 23:26:32 +00003056void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003057channel_add_permitted_opens(char *host, int port)
3058{
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003059 debug("allow port forwarding to host %s port %d", host, port);
3060
Damien Miller232cfb12010-06-26 09:50:30 +10003061 permitted_opens = xrealloc(permitted_opens,
3062 num_permitted_opens + 1, sizeof(*permitted_opens));
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003063 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
3064 permitted_opens[num_permitted_opens].port_to_connect = port;
3065 num_permitted_opens++;
3066
3067 all_opens_permitted = 0;
3068}
3069
Damien Millera765cf42006-07-24 14:08:13 +10003070int
Damien Miller9b439df2006-07-24 14:04:00 +10003071channel_add_adm_permitted_opens(char *host, int port)
3072{
Damien Millera765cf42006-07-24 14:08:13 +10003073 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10003074
Damien Miller232cfb12010-06-26 09:50:30 +10003075 permitted_adm_opens = xrealloc(permitted_adm_opens,
3076 num_adm_permitted_opens + 1, sizeof(*permitted_adm_opens));
Damien Miller9b439df2006-07-24 14:04:00 +10003077 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
3078 = xstrdup(host);
3079 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10003080 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10003081}
3082
3083void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003084channel_clear_permitted_opens(void)
3085{
3086 int i;
3087
3088 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003089 if (permitted_opens[i].host_to_connect != NULL)
3090 xfree(permitted_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003091 if (num_permitted_opens > 0) {
3092 xfree(permitted_opens);
3093 permitted_opens = NULL;
3094 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003095 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10003096}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003097
Damien Miller9b439df2006-07-24 14:04:00 +10003098void
3099channel_clear_adm_permitted_opens(void)
3100{
3101 int i;
3102
3103 for (i = 0; i < num_adm_permitted_opens; i++)
3104 if (permitted_adm_opens[i].host_to_connect != NULL)
3105 xfree(permitted_adm_opens[i].host_to_connect);
Damien Miller232cfb12010-06-26 09:50:30 +10003106 if (num_adm_permitted_opens > 0) {
3107 xfree(permitted_adm_opens);
3108 permitted_adm_opens = NULL;
3109 }
Damien Miller9b439df2006-07-24 14:04:00 +10003110 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003111}
3112
Darren Tuckere7140f22008-06-10 23:01:51 +10003113void
3114channel_print_adm_permitted_opens(void)
3115{
Damien Miller6ef17492008-07-16 22:42:06 +10003116 int i;
Darren Tuckere7140f22008-06-10 23:01:51 +10003117
Damien Millerb53d8a12009-01-28 16:13:04 +11003118 printf("permitopen");
Darren Tucker22662e82008-11-11 16:40:22 +11003119 if (num_adm_permitted_opens == 0) {
Damien Millerb53d8a12009-01-28 16:13:04 +11003120 printf(" any\n");
Darren Tucker22662e82008-11-11 16:40:22 +11003121 return;
3122 }
Darren Tuckere7140f22008-06-10 23:01:51 +10003123 for (i = 0; i < num_adm_permitted_opens; i++)
3124 if (permitted_adm_opens[i].host_to_connect != NULL)
3125 printf(" %s:%d", permitted_adm_opens[i].host_to_connect,
3126 permitted_adm_opens[i].port_to_connect);
Damien Millerb53d8a12009-01-28 16:13:04 +11003127 printf("\n");
Darren Tuckere7140f22008-06-10 23:01:51 +10003128}
3129
Damien Millerbd740252008-05-19 15:37:09 +10003130/* Try to start non-blocking connect to next host in cctx list */
Ben Lindstrombba81212001-06-25 05:01:22 +00003131static int
Damien Millerbd740252008-05-19 15:37:09 +10003132connect_next(struct channel_connect *cctx)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003133{
Damien Millerbd740252008-05-19 15:37:09 +10003134 int sock, saved_errno;
Damien Miller34132e52000-01-14 15:45:46 +11003135 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +11003136
Damien Millerbd740252008-05-19 15:37:09 +10003137 for (; cctx->ai; cctx->ai = cctx->ai->ai_next) {
3138 if (cctx->ai->ai_family != AF_INET &&
3139 cctx->ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +11003140 continue;
Damien Millerbd740252008-05-19 15:37:09 +10003141 if (getnameinfo(cctx->ai->ai_addr, cctx->ai->ai_addrlen,
3142 ntop, sizeof(ntop), strport, sizeof(strport),
3143 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3144 error("connect_next: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11003145 continue;
3146 }
Darren Tucker7bd98e72010-01-10 10:31:12 +11003147 if ((sock = socket(cctx->ai->ai_family, cctx->ai->ai_socktype,
3148 cctx->ai->ai_protocol)) == -1) {
Damien Millerbd740252008-05-19 15:37:09 +10003149 if (cctx->ai->ai_next == NULL)
Damien Millerb46b9f32003-01-10 21:45:12 +11003150 error("socket: %.100s", strerror(errno));
3151 else
3152 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003153 continue;
3154 }
Damien Miller232711f2004-06-15 10:35:30 +10003155 if (set_nonblock(sock) == -1)
3156 fatal("%s: set_nonblock(%d)", __func__, sock);
Damien Millerbd740252008-05-19 15:37:09 +10003157 if (connect(sock, cctx->ai->ai_addr,
3158 cctx->ai->ai_addrlen) == -1 && errno != EINPROGRESS) {
3159 debug("connect_next: host %.100s ([%.100s]:%s): "
3160 "%.100s", cctx->host, ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11003161 strerror(errno));
Damien Millerbd740252008-05-19 15:37:09 +10003162 saved_errno = errno;
Damien Miller34132e52000-01-14 15:45:46 +11003163 close(sock);
Damien Millerbd740252008-05-19 15:37:09 +10003164 errno = saved_errno;
Kevin Stevesef4eea92001-02-05 12:42:17 +00003165 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11003166 }
Damien Millerbd740252008-05-19 15:37:09 +10003167 debug("connect_next: host %.100s ([%.100s]:%s) "
3168 "in progress, fd=%d", cctx->host, ntop, strport, sock);
3169 cctx->ai = cctx->ai->ai_next;
3170 set_nodelay(sock);
3171 return sock;
Damien Miller34132e52000-01-14 15:45:46 +11003172 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11003173 return -1;
3174}
Damien Millerb38eff82000-04-01 11:09:21 +10003175
Damien Millerbd740252008-05-19 15:37:09 +10003176static void
3177channel_connect_ctx_free(struct channel_connect *cctx)
3178{
3179 xfree(cctx->host);
3180 if (cctx->aitop)
3181 freeaddrinfo(cctx->aitop);
3182 bzero(cctx, sizeof(*cctx));
3183 cctx->host = NULL;
3184 cctx->ai = cctx->aitop = NULL;
3185}
3186
3187/* Return CONNECTING channel to remote host, port */
3188static Channel *
3189connect_to(const char *host, u_short port, char *ctype, char *rname)
3190{
3191 struct addrinfo hints;
3192 int gaierr;
3193 int sock = -1;
3194 char strport[NI_MAXSERV];
3195 struct channel_connect cctx;
3196 Channel *c;
3197
Damien Miller2bcb8662008-07-12 17:12:29 +10003198 memset(&cctx, 0, sizeof(cctx));
Damien Millerbd740252008-05-19 15:37:09 +10003199 memset(&hints, 0, sizeof(hints));
3200 hints.ai_family = IPv4or6;
3201 hints.ai_socktype = SOCK_STREAM;
3202 snprintf(strport, sizeof strport, "%d", port);
3203 if ((gaierr = getaddrinfo(host, strport, &hints, &cctx.aitop)) != 0) {
3204 error("connect_to %.100s: unknown host (%s)", host,
3205 ssh_gai_strerror(gaierr));
3206 return NULL;
3207 }
3208
3209 cctx.host = xstrdup(host);
3210 cctx.port = port;
3211 cctx.ai = cctx.aitop;
3212
3213 if ((sock = connect_next(&cctx)) == -1) {
3214 error("connect to %.100s port %d failed: %s",
3215 host, port, strerror(errno));
3216 channel_connect_ctx_free(&cctx);
3217 return NULL;
3218 }
3219 c = channel_new(ctype, SSH_CHANNEL_CONNECTING, sock, sock, -1,
3220 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, rname, 1);
3221 c->connect_ctx = cctx;
3222 return c;
3223}
3224
3225Channel *
3226channel_connect_by_listen_address(u_short listen_port, char *ctype, char *rname)
3227{
3228 int i;
3229
3230 for (i = 0; i < num_permitted_opens; i++) {
3231 if (permitted_opens[i].host_to_connect != NULL &&
3232 permitted_opens[i].listen_port == listen_port) {
3233 return connect_to(
3234 permitted_opens[i].host_to_connect,
3235 permitted_opens[i].port_to_connect, ctype, rname);
3236 }
3237 }
3238 error("WARNING: Server requests forwarding for unknown listen_port %d",
3239 listen_port);
3240 return NULL;
3241}
3242
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003243/* Check if connecting to that port is permitted and connect. */
Damien Millerbd740252008-05-19 15:37:09 +10003244Channel *
3245channel_connect_to(const char *host, u_short port, char *ctype, char *rname)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003246{
Damien Miller9b439df2006-07-24 14:04:00 +10003247 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003248
3249 permit = all_opens_permitted;
3250 if (!permit) {
3251 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10003252 if (permitted_opens[i].host_to_connect != NULL &&
3253 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003254 strcmp(permitted_opens[i].host_to_connect, host) == 0)
3255 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003256 }
Damien Miller9b439df2006-07-24 14:04:00 +10003257
3258 if (num_adm_permitted_opens > 0) {
3259 permit_adm = 0;
3260 for (i = 0; i < num_adm_permitted_opens; i++)
3261 if (permitted_adm_opens[i].host_to_connect != NULL &&
3262 permitted_adm_opens[i].port_to_connect == port &&
3263 strcmp(permitted_adm_opens[i].host_to_connect, host)
3264 == 0)
3265 permit_adm = 1;
3266 }
3267
3268 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10003269 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003270 "but the request was denied.", host, port);
Damien Millerbd740252008-05-19 15:37:09 +10003271 return NULL;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003272 }
Damien Millerbd740252008-05-19 15:37:09 +10003273 return connect_to(host, port, ctype, rname);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00003274}
3275
Damien Miller0e220db2004-06-15 10:34:08 +10003276void
3277channel_send_window_changes(void)
3278{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10003279 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10003280 struct winsize ws;
3281
3282 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11003283 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10003284 channels[i]->type != SSH_CHANNEL_OPEN)
3285 continue;
3286 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
3287 continue;
3288 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11003289 packet_put_int((u_int)ws.ws_col);
3290 packet_put_int((u_int)ws.ws_row);
3291 packet_put_int((u_int)ws.ws_xpixel);
3292 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10003293 packet_send();
3294 }
3295}
3296
Ben Lindstrome9c99912001-06-09 00:41:05 +00003297/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003298
Damien Miller5428f641999-11-25 11:54:57 +11003299/*
3300 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003301 * Returns 0 and a suitable display number for the DISPLAY variable
3302 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11003303 */
Kevin Steves366298c2001-12-19 17:58:01 +00003304int
Damien Miller95c249f2002-02-05 12:11:34 +11003305x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10003306 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003307{
Damien Millere7378562001-12-21 14:58:35 +11003308 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11003309 int display_number, sock;
3310 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11003311 struct addrinfo hints, *ai, *aitop;
3312 char strport[NI_MAXSERV];
3313 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003314
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003315 if (chanids == NULL)
3316 return -1;
3317
Damien Millera34a28b1999-12-14 10:47:15 +11003318 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11003319 display_number < MAX_DISPLAYS;
3320 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11003321 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11003322 memset(&hints, 0, sizeof(hints));
3323 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11003324 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11003325 hints.ai_socktype = SOCK_STREAM;
3326 snprintf(strport, sizeof strport, "%d", port);
3327 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003328 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00003329 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003330 }
Damien Miller34132e52000-01-14 15:45:46 +11003331 for (ai = aitop; ai; ai = ai->ai_next) {
3332 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
3333 continue;
Darren Tucker7bd98e72010-01-10 10:31:12 +11003334 sock = socket(ai->ai_family, ai->ai_socktype,
3335 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003336 if (sock < 0) {
Damien Miller6480c632010-03-26 11:09:44 +11003337 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)
3338#ifdef EPFNOSUPPORT
3339 && (errno != EPFNOSUPPORT)
3340#endif
3341 ) {
Damien Millere2192732000-01-17 13:22:55 +11003342 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10003343 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00003344 return -1;
Damien Millere2192732000-01-17 13:22:55 +11003345 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11003346 debug("x11_create_display_inet: Socket family %d not supported",
3347 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11003348 continue;
3349 }
Damien Miller34132e52000-01-14 15:45:46 +11003350 }
Damien Miller04ee0f82009-11-18 17:48:30 +11003351 if (ai->ai_family == AF_INET6)
3352 sock_set_v6only(sock);
Damien Miller4401e452008-06-12 06:05:12 +10003353 if (x11_use_localhost)
3354 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11003355 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003356 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003357 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11003358
Damien Miller34132e52000-01-14 15:45:46 +11003359 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11003360 close(socks[n]);
3361 }
3362 num_socks = 0;
3363 break;
3364 }
3365 socks[num_socks++] = sock;
3366 if (num_socks == NUM_SOCKS)
3367 break;
Damien Miller95def091999-11-25 00:26:21 +11003368 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00003369 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11003370 if (num_socks > 0)
3371 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003372 }
Damien Miller95def091999-11-25 00:26:21 +11003373 if (display_number >= MAX_DISPLAYS) {
3374 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00003375 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003376 }
Damien Miller95def091999-11-25 00:26:21 +11003377 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11003378 for (n = 0; n < num_socks; n++) {
3379 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11003380 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11003381 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11003382 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00003383 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11003384 }
Damien Miller95def091999-11-25 00:26:21 +11003385 }
Damien Miller34132e52000-01-14 15:45:46 +11003386
Damien Miller34132e52000-01-14 15:45:46 +11003387 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11003388 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11003389 for (n = 0; n < num_socks; n++) {
3390 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11003391 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10003392 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
3393 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003394 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11003395 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003396 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11003397 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10003398 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003399
Kevin Steves366298c2001-12-19 17:58:01 +00003400 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00003401 *display_numberp = display_number;
3402 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003403}
3404
Ben Lindstrombba81212001-06-25 05:01:22 +00003405static int
Damien Miller819dbb62009-01-21 16:46:26 +11003406connect_local_xsocket_path(const char *pathname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003407{
Damien Miller95def091999-11-25 00:26:21 +11003408 int sock;
3409 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003410
Damien Miller3afe3752001-12-21 12:39:51 +11003411 sock = socket(AF_UNIX, SOCK_STREAM, 0);
3412 if (sock < 0)
3413 error("socket: %.100s", strerror(errno));
3414 memset(&addr, 0, sizeof(addr));
3415 addr.sun_family = AF_UNIX;
Damien Miller819dbb62009-01-21 16:46:26 +11003416 strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
Damien Miller90967402006-03-26 14:07:26 +11003417 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11003418 return sock;
3419 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11003420 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
3421 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003422}
3423
Damien Miller819dbb62009-01-21 16:46:26 +11003424static int
3425connect_local_xsocket(u_int dnr)
3426{
3427 char buf[1024];
3428 snprintf(buf, sizeof buf, _PATH_UNIX_X, dnr);
3429 return connect_local_xsocket_path(buf);
3430}
3431
Damien Millerbd483e72000-04-30 10:00:53 +10003432int
3433x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003434{
Damien Miller57c4e872006-03-31 23:11:07 +11003435 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11003436 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10003437 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11003438 struct addrinfo hints, *ai, *aitop;
3439 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11003440 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003441
Damien Miller95def091999-11-25 00:26:21 +11003442 /* Try to open a socket for the local X server. */
3443 display = getenv("DISPLAY");
3444 if (!display) {
3445 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10003446 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003447 }
Damien Miller5428f641999-11-25 11:54:57 +11003448 /*
3449 * Now we decode the value of the DISPLAY variable and make a
3450 * connection to the real X server.
3451 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003452
Damien Miller819dbb62009-01-21 16:46:26 +11003453 /* Check if the display is from launchd. */
3454#ifdef __APPLE__
3455 if (strncmp(display, "/tmp/launch", 11) == 0) {
3456 sock = connect_local_xsocket_path(display);
3457 if (sock < 0)
3458 return -1;
3459
3460 /* OK, we now have a connection to the display. */
3461 return sock;
3462 }
3463#endif
Damien Miller5428f641999-11-25 11:54:57 +11003464 /*
3465 * Check if it is a unix domain socket. Unix domain displays are in
3466 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3467 */
Damien Miller95def091999-11-25 00:26:21 +11003468 if (strncmp(display, "unix:", 5) == 0 ||
3469 display[0] == ':') {
3470 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003471 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003472 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003473 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003474 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003475 }
3476 /* Create a socket. */
3477 sock = connect_local_xsocket(display_number);
3478 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003479 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003480
3481 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003482 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003483 }
Damien Miller5428f641999-11-25 11:54:57 +11003484 /*
3485 * Connect to an inet socket. The DISPLAY value is supposedly
3486 * hostname:d[.s], where hostname may also be numeric IP address.
3487 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003488 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003489 cp = strchr(buf, ':');
3490 if (!cp) {
3491 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003492 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003493 }
Damien Miller95def091999-11-25 00:26:21 +11003494 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003495 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003496 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003497 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003498 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003499 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003500 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003501
Damien Miller34132e52000-01-14 15:45:46 +11003502 /* Look up the host address */
3503 memset(&hints, 0, sizeof(hints));
3504 hints.ai_family = IPv4or6;
3505 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003506 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003507 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
Darren Tucker4abde772007-12-29 02:43:51 +11003508 error("%.100s: unknown host. (%s)", buf,
3509 ssh_gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003510 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003511 }
Damien Miller34132e52000-01-14 15:45:46 +11003512 for (ai = aitop; ai; ai = ai->ai_next) {
3513 /* Create a socket. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11003514 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003515 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003516 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003517 continue;
3518 }
3519 /* Connect it to the display. */
3520 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003521 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003522 6000 + display_number, strerror(errno));
3523 close(sock);
3524 continue;
3525 }
3526 /* Success */
3527 break;
Damien Miller34132e52000-01-14 15:45:46 +11003528 }
Damien Miller34132e52000-01-14 15:45:46 +11003529 freeaddrinfo(aitop);
3530 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003531 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003532 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003533 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003534 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003535 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003536 return sock;
3537}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003538
Damien Millerbd483e72000-04-30 10:00:53 +10003539/*
3540 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3541 * the remote channel number. We should do whatever we want, and respond
3542 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3543 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003544
Damien Miller8473dd82006-07-24 14:08:32 +10003545/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003546void
Damien Miller630d6f42002-01-22 23:17:30 +11003547x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003548{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003549 Channel *c = NULL;
3550 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003551 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003552
3553 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003554
3555 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003556
3557 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003558 remote_host = packet_get_string(NULL);
3559 } else {
3560 remote_host = xstrdup("unknown (remote did not supply name)");
3561 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003562 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003563
3564 /* Obtain a connection to the real X display. */
3565 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003566 if (sock != -1) {
3567 /* Allocate a channel for this connection. */
3568 c = channel_new("connected x11 socket",
3569 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3570 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003571 c->remote_id = remote_id;
3572 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003573 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003574 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003575 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003576 /* Send refusal to the remote host. */
3577 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003578 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003579 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003580 /* Send a confirmation to the remote host. */
3581 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003582 packet_put_int(remote_id);
3583 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003584 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003585 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003586}
3587
Damien Miller69b69aa2000-10-28 14:19:58 +11003588/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003589/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003590void
Damien Miller630d6f42002-01-22 23:17:30 +11003591deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003592{
3593 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003594
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003595 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003596 case SSH_SMSG_AGENT_OPEN:
3597 error("Warning: ssh server tried agent forwarding.");
3598 break;
3599 case SSH_SMSG_X11_OPEN:
3600 error("Warning: ssh server tried X11 forwarding.");
3601 break;
3602 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003603 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003604 break;
3605 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003606 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003607 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3608 packet_put_int(rchan);
3609 packet_send();
3610}
3611
Damien Miller5428f641999-11-25 11:54:57 +11003612/*
3613 * Requests forwarding of X11 connections, generates fake authentication
3614 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003615 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003616 */
Damien Miller4af51302000-04-16 11:18:38 +10003617void
Damien Miller17e7ed02005-06-17 12:54:33 +10003618x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Miller6d7b4372011-06-23 08:31:57 +10003619 const char *proto, const char *data, int want_reply)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003620{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003621 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003622 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003623 char *new_data;
3624 int screen_number;
3625 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003626 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003627
Damien Millerf92c0792005-07-06 09:45:26 +10003628 if (x11_saved_display == NULL)
3629 x11_saved_display = xstrdup(disp);
3630 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003631 error("x11_request_forwarding_with_spoofing: different "
3632 "$DISPLAY already forwarded");
3633 return;
3634 }
3635
Damien Millerd5fe0ba2006-08-30 11:07:39 +10003636 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003637 if (cp)
3638 cp = strchr(cp, '.');
3639 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003640 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003641 else
3642 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003643
Damien Miller13390022005-07-06 09:44:19 +10003644 if (x11_saved_proto == NULL) {
3645 /* Save protocol name. */
3646 x11_saved_proto = xstrdup(proto);
3647 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003648 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003649 * of the same length.
3650 */
3651 x11_saved_data = xmalloc(data_len);
3652 x11_fake_data = xmalloc(data_len);
3653 for (i = 0; i < data_len; i++) {
3654 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3655 fatal("x11_request_forwarding: bad "
3656 "authentication data: %.100s", data);
3657 if (i % 4 == 0)
3658 rnd = arc4random();
3659 x11_saved_data[i] = value;
3660 x11_fake_data[i] = rnd & 0xff;
3661 rnd >>= 8;
3662 }
3663 x11_saved_data_len = data_len;
3664 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003665 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003666
Damien Miller95def091999-11-25 00:26:21 +11003667 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003668 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003669
Damien Miller95def091999-11-25 00:26:21 +11003670 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003671 if (compat20) {
Damien Miller6d7b4372011-06-23 08:31:57 +10003672 channel_request_start(client_session_id, "x11-req", want_reply);
Damien Millerbd483e72000-04-30 10:00:53 +10003673 packet_put_char(0); /* XXX bool single connection */
3674 } else {
3675 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3676 }
3677 packet_put_cstring(proto);
3678 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003679 packet_put_int(screen_number);
3680 packet_send();
3681 packet_write_wait();
3682 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003683}
3684
Ben Lindstrome9c99912001-06-09 00:41:05 +00003685
3686/* -- agent forwarding */
3687
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003688/* Sends a message to the server to request authentication fd forwarding. */
3689
Damien Miller4af51302000-04-16 11:18:38 +10003690void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003691auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003692{
Damien Miller95def091999-11-25 00:26:21 +11003693 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3694 packet_send();
3695 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003696}