blob: 8cf4242feb08f43770065795d273d41989443653 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: channels.c,v 1.260 2006/07/22 20:48:22 stevesk 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
44#include <sys/ioctl.h>
Damien Miller574c41f2006-03-15 11:40:10 +110045#include <sys/types.h>
46#include <sys/un.h>
Damien Millerefc04e72006-07-10 20:26:27 +100047#include <sys/socket.h>
48
49#include <netinet/in.h>
50#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110051
Darren Tucker39972492006-07-12 22:22:46 +100052#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100053#if defined(HAVE_NETDB_H)
54# include <netdb.h>
55#endif
Damien Millere3476ed2006-07-24 14:13:33 +100056#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110057#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100058#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
60#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "ssh1.h"
62#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#include "packet.h"
64#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "log.h"
66#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100070#include "key.h"
71#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110072#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100073#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Ben Lindstrome9c99912001-06-09 00:41:05 +000075/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
Damien Miller5428f641999-11-25 11:54:57 +110077/*
78 * Pointer to an array containing all allocated channels. The array is
79 * dynamically extended as needed.
80 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000081static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000085 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110086 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100087static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller5428f641999-11-25 11:54:57 +110089/*
90 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000091 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110092 */
Damien Miller5e953212001-01-30 09:14:00 +110093static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Ben Lindstrome9c99912001-06-09 00:41:05 +000096/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller5428f641999-11-25 11:54:57 +110098/*
99 * Data structure for storing which hosts are permitted for forward requests.
100 * The local sides of any remote forwards are stored in this array to prevent
101 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
102 * network (which might be behind a firewall).
103 */
Damien Miller95def091999-11-25 00:26:21 +1100104typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000105 char *host_to_connect; /* Connect to 'host'. */
106 u_short port_to_connect; /* Connect to 'port'. */
107 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108} ForwardPermission;
109
Damien Miller9b439df2006-07-24 14:04:00 +1000110/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000112
Damien Miller9b439df2006-07-24 14:04:00 +1000113/* List of all permitted host/port pairs to connect by the admin. */
114static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
115
116/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000118
119/* Number of permitted host/port pair in the array permitted by the admin. */
120static int num_adm_permitted_opens = 0;
121
Damien Miller5428f641999-11-25 11:54:57 +1100122/*
123 * If this is true, all opens are permitted. This is the case on the server
124 * on which we have to trust the client anyway, and the user could do
125 * anything after logging in anyway.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127static int all_opens_permitted = 0;
128
Ben Lindstrome9c99912001-06-09 00:41:05 +0000129
130/* -- X11 forwarding */
131
132/* Maximum number of fake X11 displays to try. */
133#define MAX_DISPLAYS 1000
134
Damien Miller13390022005-07-06 09:44:19 +1000135/* Saved X11 local (client) display. */
136static char *x11_saved_display = NULL;
137
Ben Lindstrome9c99912001-06-09 00:41:05 +0000138/* Saved X11 authentication protocol name. */
139static char *x11_saved_proto = NULL;
140
141/* Saved X11 authentication data. This is the real data. */
142static char *x11_saved_data = NULL;
143static u_int x11_saved_data_len = 0;
144
145/*
146 * Fake X11 authentication data. This is what the server will be sending us;
147 * we should replace any occurrences of this by the real data.
148 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100149static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000150static u_int x11_fake_data_len;
151
152
153/* -- agent forwarding */
154
155#define NUM_SOCKS 10
156
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000157/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000158static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000159
Ben Lindstrome9c99912001-06-09 00:41:05 +0000160/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000162
Ben Lindstrome9c99912001-06-09 00:41:05 +0000163/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000164
165Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100166channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000167{
168 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000169
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000170 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100171 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000172 return NULL;
173 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000174 c = channels[id];
175 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100176 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000177 return NULL;
178 }
179 return c;
180}
181
Damien Miller5428f641999-11-25 11:54:57 +1100182/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100183 * Returns the channel if it is allowed to receive protocol messages.
184 * Private channels, like listening sockets, may not receive messages.
185 */
186Channel *
187channel_lookup(int id)
188{
189 Channel *c;
190
191 if ((c = channel_by_id(id)) == NULL)
192 return (NULL);
193
Damien Millerd62f2ca2006-03-26 13:57:41 +1100194 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100195 case SSH_CHANNEL_X11_OPEN:
196 case SSH_CHANNEL_LARVAL:
197 case SSH_CHANNEL_CONNECTING:
198 case SSH_CHANNEL_DYNAMIC:
199 case SSH_CHANNEL_OPENING:
200 case SSH_CHANNEL_OPEN:
201 case SSH_CHANNEL_INPUT_DRAINING:
202 case SSH_CHANNEL_OUTPUT_DRAINING:
203 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100204 }
205 logit("Non-public channel %d, type %d.", id, c->type);
206 return (NULL);
207}
208
209/*
Damien Millere247cc42000-05-07 12:03:14 +1000210 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000211 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100212 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000213static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100214channel_register_fds(Channel *c, int rfd, int wfd, int efd,
215 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216{
Damien Miller95def091999-11-25 00:26:21 +1100217 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100218 channel_max_fd = MAX(channel_max_fd, rfd);
219 channel_max_fd = MAX(channel_max_fd, wfd);
220 channel_max_fd = MAX(channel_max_fd, efd);
221
Damien Miller5428f641999-11-25 11:54:57 +1100222 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000223
Damien Miller6f83b8e2000-05-02 09:23:45 +1000224 c->rfd = rfd;
225 c->wfd = wfd;
226 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000227 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000228 c->efd = efd;
229 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100230
Damien Miller79438cc2001-02-16 12:34:57 +1100231 /* XXX ugly hack: nonblock is only set by the server */
232 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000233 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100234 c->isatty = 1;
235 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000236 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100237 c->self, c->wfd);
238 }
239 } else {
240 c->isatty = 0;
241 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000242 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100243
Damien Miller69b69aa2000-10-28 14:19:58 +1100244 /* enable nonblocking mode */
245 if (nonblock) {
246 if (rfd != -1)
247 set_nonblock(rfd);
248 if (wfd != -1)
249 set_nonblock(wfd);
250 if (efd != -1)
251 set_nonblock(efd);
252 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000253}
254
255/*
256 * Allocate a new channel object and set its type and socket. This will cause
257 * remote_name to be freed.
258 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000259Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000260channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000261 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000263 int found;
264 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000265 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 /* Do initial allocation if this is the first call. */
268 if (channels_alloc == 0) {
269 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100270 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100271 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000272 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100273 }
274 /* Try to find a free slot where to put the new channel. */
275 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000276 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000278 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100279 break;
280 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000281 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100282 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100283 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000284 if (channels_alloc > 10000)
285 fatal("channel_new: internal error: channels_alloc %d "
286 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100287 channels = xrealloc(channels, channels_alloc + 10,
288 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000289 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100290 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100291 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000292 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100293 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100295 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100296 buffer_init(&c->input);
297 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100299 c->ostate = CHAN_OUTPUT_OPEN;
300 c->istate = CHAN_INPUT_OPEN;
301 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100302 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100303 c->self = found;
304 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000305 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000306 c->local_window = window;
307 c->local_window_max = window;
308 c->local_consumed = 0;
309 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100310 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000311 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000312 c->remote_window = 0;
313 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000314 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100315 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000316 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100317 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100318 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000319 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000320 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100321 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100322 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000323 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000325
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000326static int
327channel_find_maxfd(void)
328{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000329 u_int i;
330 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000331 Channel *c;
332
333 for (i = 0; i < channels_alloc; i++) {
334 c = channels[i];
335 if (c != NULL) {
336 max = MAX(max, c->rfd);
337 max = MAX(max, c->wfd);
338 max = MAX(max, c->efd);
339 }
340 }
341 return max;
342}
343
344int
345channel_close_fd(int *fdp)
346{
347 int ret = 0, fd = *fdp;
348
349 if (fd != -1) {
350 ret = close(fd);
351 *fdp = -1;
352 if (fd == channel_max_fd)
353 channel_max_fd = channel_find_maxfd();
354 }
355 return ret;
356}
357
Damien Miller6f83b8e2000-05-02 09:23:45 +1000358/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000359static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000360channel_close_fds(Channel *c)
361{
Damien Miller0e220db2004-06-15 10:34:08 +1000362 debug3("channel %d: close_fds r %d w %d e %d c %d",
363 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000364
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000365 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000366 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000367 channel_close_fd(&c->rfd);
368 channel_close_fd(&c->wfd);
369 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000370}
371
372/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000373void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000374channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000376 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000377 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000378
379 for (n = 0, i = 0; i < channels_alloc; i++)
380 if (channels[i])
381 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000382 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000383 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000384
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000385 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000386 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000387 xfree(s);
388
Damien Miller6f83b8e2000-05-02 09:23:45 +1000389 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000390 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000391 if (c->ctl_fd != -1)
392 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000393 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000394 buffer_free(&c->input);
395 buffer_free(&c->output);
396 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000397 if (c->remote_name) {
398 xfree(c->remote_name);
399 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100400 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000401 channels[c->self] = NULL;
402 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403}
404
Ben Lindstrome9c99912001-06-09 00:41:05 +0000405void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000406channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000408 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409
Ben Lindstrom601e4362001-06-21 03:19:23 +0000410 for (i = 0; i < channels_alloc; i++)
411 if (channels[i] != NULL)
412 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000413}
414
415/*
416 * Closes the sockets/fds of all channels. This is used to close extra file
417 * descriptors after a fork.
418 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000419void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000420channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000421{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000422 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000423
424 for (i = 0; i < channels_alloc; i++)
425 if (channels[i] != NULL)
426 channel_close_fds(channels[i]);
427}
428
429/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000430 * Stop listening to channels.
431 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000432void
433channel_stop_listening(void)
434{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000435 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000436 Channel *c;
437
438 for (i = 0; i < channels_alloc; i++) {
439 c = channels[i];
440 if (c != NULL) {
441 switch (c->type) {
442 case SSH_CHANNEL_AUTH_SOCKET:
443 case SSH_CHANNEL_PORT_LISTENER:
444 case SSH_CHANNEL_RPORT_LISTENER:
445 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000446 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000447 channel_free(c);
448 break;
449 }
450 }
451 }
452}
453
454/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000455 * Returns true if no channel has too much buffered data, and false if one or
456 * more channel is overfull.
457 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000458int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000459channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000460{
461 u_int i;
462 Channel *c;
463
464 for (i = 0; i < channels_alloc; i++) {
465 c = channels[i];
466 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000467#if 0
468 if (!compat20 &&
469 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100470 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000471 c->self, buffer_len(&c->input));
472 return 0;
473 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000474#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000475 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000476 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000477 c->self, buffer_len(&c->output),
478 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000479 return 0;
480 }
481 }
482 }
483 return 1;
484}
485
486/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000487int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000488channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000489{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000490 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000491 Channel *c;
492
493 for (i = 0; i < channels_alloc; i++) {
494 c = channels[i];
495 if (c == NULL)
496 continue;
497 switch (c->type) {
498 case SSH_CHANNEL_X11_LISTENER:
499 case SSH_CHANNEL_PORT_LISTENER:
500 case SSH_CHANNEL_RPORT_LISTENER:
501 case SSH_CHANNEL_CLOSED:
502 case SSH_CHANNEL_AUTH_SOCKET:
503 case SSH_CHANNEL_DYNAMIC:
504 case SSH_CHANNEL_CONNECTING:
505 case SSH_CHANNEL_ZOMBIE:
506 continue;
507 case SSH_CHANNEL_LARVAL:
508 if (!compat20)
509 fatal("cannot happen: SSH_CHANNEL_LARVAL");
510 continue;
511 case SSH_CHANNEL_OPENING:
512 case SSH_CHANNEL_OPEN:
513 case SSH_CHANNEL_X11_OPEN:
514 return 1;
515 case SSH_CHANNEL_INPUT_DRAINING:
516 case SSH_CHANNEL_OUTPUT_DRAINING:
517 if (!compat13)
518 fatal("cannot happen: OUT_DRAIN");
519 return 1;
520 default:
521 fatal("channel_still_open: bad channel type %d", c->type);
522 /* NOTREACHED */
523 }
524 }
525 return 0;
526}
527
528/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000529int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000530channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000531{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000532 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000533 Channel *c;
534
535 for (i = 0; i < channels_alloc; i++) {
536 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000537 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000538 continue;
539 switch (c->type) {
540 case SSH_CHANNEL_CLOSED:
541 case SSH_CHANNEL_DYNAMIC:
542 case SSH_CHANNEL_X11_LISTENER:
543 case SSH_CHANNEL_PORT_LISTENER:
544 case SSH_CHANNEL_RPORT_LISTENER:
545 case SSH_CHANNEL_OPENING:
546 case SSH_CHANNEL_CONNECTING:
547 case SSH_CHANNEL_ZOMBIE:
548 continue;
549 case SSH_CHANNEL_LARVAL:
550 case SSH_CHANNEL_AUTH_SOCKET:
551 case SSH_CHANNEL_OPEN:
552 case SSH_CHANNEL_X11_OPEN:
553 return i;
554 case SSH_CHANNEL_INPUT_DRAINING:
555 case SSH_CHANNEL_OUTPUT_DRAINING:
556 if (!compat13)
557 fatal("cannot happen: OUT_DRAIN");
558 return i;
559 default:
560 fatal("channel_find_open: bad channel type %d", c->type);
561 /* NOTREACHED */
562 }
563 }
564 return -1;
565}
566
567
568/*
569 * Returns a message describing the currently open forwarded connections,
570 * suitable for sending to the client. The message contains crlf pairs for
571 * newlines.
572 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000573char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000574channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000575{
576 Buffer buffer;
577 Channel *c;
578 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000579 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000580
581 buffer_init(&buffer);
582 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
583 buffer_append(&buffer, buf, strlen(buf));
584 for (i = 0; i < channels_alloc; i++) {
585 c = channels[i];
586 if (c == NULL)
587 continue;
588 switch (c->type) {
589 case SSH_CHANNEL_X11_LISTENER:
590 case SSH_CHANNEL_PORT_LISTENER:
591 case SSH_CHANNEL_RPORT_LISTENER:
592 case SSH_CHANNEL_CLOSED:
593 case SSH_CHANNEL_AUTH_SOCKET:
594 case SSH_CHANNEL_ZOMBIE:
595 continue;
596 case SSH_CHANNEL_LARVAL:
597 case SSH_CHANNEL_OPENING:
598 case SSH_CHANNEL_CONNECTING:
599 case SSH_CHANNEL_DYNAMIC:
600 case SSH_CHANNEL_OPEN:
601 case SSH_CHANNEL_X11_OPEN:
602 case SSH_CHANNEL_INPUT_DRAINING:
603 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000604 snprintf(buf, sizeof buf,
605 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000606 c->self, c->remote_name,
607 c->type, c->remote_id,
608 c->istate, buffer_len(&c->input),
609 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000610 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000611 buffer_append(&buffer, buf, strlen(buf));
612 continue;
613 default:
614 fatal("channel_open_message: bad channel type %d", c->type);
615 /* NOTREACHED */
616 }
617 }
618 buffer_append(&buffer, "\0", 1);
619 cp = xstrdup(buffer_ptr(&buffer));
620 buffer_free(&buffer);
621 return cp;
622}
623
624void
625channel_send_open(int id)
626{
627 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000628
Ben Lindstrome9c99912001-06-09 00:41:05 +0000629 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000630 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000631 return;
632 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000633 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000634 packet_start(SSH2_MSG_CHANNEL_OPEN);
635 packet_put_cstring(c->ctype);
636 packet_put_int(c->self);
637 packet_put_int(c->local_window);
638 packet_put_int(c->local_maxpacket);
639 packet_send();
640}
641
642void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000643channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000644{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000645 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000646
Ben Lindstrome9c99912001-06-09 00:41:05 +0000647 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000648 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649 return;
650 }
Damien Miller0e220db2004-06-15 10:34:08 +1000651 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000652 packet_start(SSH2_MSG_CHANNEL_REQUEST);
653 packet_put_int(c->remote_id);
654 packet_put_cstring(service);
655 packet_put_char(wantconfirm);
656}
Damien Miller4f7becb2006-03-26 14:10:14 +1100657
Ben Lindstrome9c99912001-06-09 00:41:05 +0000658void
Damien Miller0e220db2004-06-15 10:34:08 +1000659channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660{
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_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 return;
666 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100667 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000668 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000669}
Damien Miller4f7becb2006-03-26 14:10:14 +1100670
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671void
Damien Miller39eda6e2005-11-05 14:52:50 +1100672channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673{
Damien Millerd47c62a2005-12-13 19:33:57 +1100674 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000675
Ben Lindstrome9c99912001-06-09 00:41:05 +0000676 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000677 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678 return;
679 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000680 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100681 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000682}
Damien Miller4f7becb2006-03-26 14:10:14 +1100683
Ben Lindstrome9c99912001-06-09 00:41:05 +0000684void
685channel_cancel_cleanup(int id)
686{
Damien Millerd47c62a2005-12-13 19:33:57 +1100687 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000688
Ben Lindstrome9c99912001-06-09 00:41:05 +0000689 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000690 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 return;
692 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000693 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100694 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000695}
Damien Miller4f7becb2006-03-26 14:10:14 +1100696
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697void
Damien Miller077b2382005-12-31 16:22:32 +1100698channel_register_filter(int id, channel_infilter_fn *ifn,
699 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000700{
701 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000702
Ben Lindstrome9c99912001-06-09 00:41:05 +0000703 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000704 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 return;
706 }
Damien Miller077b2382005-12-31 16:22:32 +1100707 c->input_filter = ifn;
708 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000709}
710
711void
712channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100713 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000714{
715 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000716
Ben Lindstrome9c99912001-06-09 00:41:05 +0000717 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
718 fatal("channel_activate for non-larval channel %d.", id);
719 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
720 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100721 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000722 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
723 packet_put_int(c->remote_id);
724 packet_put_int(c->local_window);
725 packet_send();
726}
727
Damien Miller5428f641999-11-25 11:54:57 +1100728/*
Damien Millerb38eff82000-04-01 11:09:21 +1000729 * 'channel_pre*' are called just before select() to add any bits relevant to
730 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100731 */
Damien Millerb38eff82000-04-01 11:09:21 +1000732/*
733 * 'channel_post*': perform any appropriate operations for channels which
734 * have events pending.
735 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100736typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000737chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
738chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
739
Damien Miller8473dd82006-07-24 14:08:32 +1000740/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100742channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000743{
744 FD_SET(c->sock, readset);
745}
746
Damien Miller8473dd82006-07-24 14:08:32 +1000747/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000748static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100749channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000750{
751 debug3("channel %d: waiting for connection", c->self);
752 FD_SET(c->sock, writeset);
753}
754
Ben Lindstrombba81212001-06-25 05:01:22 +0000755static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100756channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000757{
758 if (buffer_len(&c->input) < packet_get_maxsize())
759 FD_SET(c->sock, readset);
760 if (buffer_len(&c->output) > 0)
761 FD_SET(c->sock, writeset);
762}
763
Ben Lindstrombba81212001-06-25 05:01:22 +0000764static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100765channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000766{
Damien Millerde6987c2002-01-22 23:20:40 +1100767 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000768
Damien Miller33b13562000-04-04 14:38:59 +1000769 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100770 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000771 buffer_len(&c->input) < limit &&
772 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000773 FD_SET(c->rfd, readset);
774 if (c->ostate == CHAN_OUTPUT_OPEN ||
775 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
776 if (buffer_len(&c->output) > 0) {
777 FD_SET(c->wfd, writeset);
778 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000779 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000780 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
781 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000782 else
783 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000784 }
785 }
786 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100787 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000788 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
789 buffer_len(&c->extended) > 0)
790 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000791 else if (!(c->flags & CHAN_EOF_SENT) &&
792 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000793 buffer_len(&c->extended) < c->remote_window)
794 FD_SET(c->efd, readset);
795 }
Damien Miller0e220db2004-06-15 10:34:08 +1000796 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000797 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000798 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
799 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000800}
801
Damien Miller8473dd82006-07-24 14:08:32 +1000802/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000803static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100804channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000805{
806 if (buffer_len(&c->input) == 0) {
807 packet_start(SSH_MSG_CHANNEL_CLOSE);
808 packet_put_int(c->remote_id);
809 packet_send();
810 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000811 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000812 }
813}
814
Damien Miller8473dd82006-07-24 14:08:32 +1000815/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000816static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100817channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000818{
819 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000820 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000821 else
Damien Millerb38eff82000-04-01 11:09:21 +1000822 FD_SET(c->sock, writeset);
823}
824
825/*
826 * This is a special state for X11 authentication spoofing. An opened X11
827 * connection (when authentication spoofing is being done) remains in this
828 * state until the first packet has been completely read. The authentication
829 * data in that packet is then substituted by the real data if it matches the
830 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000831 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000832 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000833 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000834static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000835x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000836{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000837 u_char *ucp;
838 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000839
840 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000841 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000842 return 0;
843
844 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100845 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000846 if (ucp[0] == 0x42) { /* Byte order MSB first. */
847 proto_len = 256 * ucp[6] + ucp[7];
848 data_len = 256 * ucp[8] + ucp[9];
849 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
850 proto_len = ucp[6] + 256 * ucp[7];
851 data_len = ucp[8] + 256 * ucp[9];
852 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000853 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100854 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000855 return -1;
856 }
857
858 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000859 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000860 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
861 return 0;
862
863 /* Check if authentication protocol matches. */
864 if (proto_len != strlen(x11_saved_proto) ||
865 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000866 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000867 return -1;
868 }
869 /* Check if authentication data matches our fake data. */
870 if (data_len != x11_fake_data_len ||
871 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
872 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000873 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000874 return -1;
875 }
876 /* Check fake data length */
877 if (x11_fake_data_len != x11_saved_data_len) {
878 error("X11 fake_data_len %d != saved_data_len %d",
879 x11_fake_data_len, x11_saved_data_len);
880 return -1;
881 }
882 /*
883 * Received authentication protocol and data match
884 * our fake data. Substitute the fake data with real
885 * data.
886 */
887 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
888 x11_saved_data, x11_saved_data_len);
889 return 1;
890}
891
Ben Lindstrombba81212001-06-25 05:01:22 +0000892static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100893channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000894{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000895 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000896
Damien Millerb38eff82000-04-01 11:09:21 +1000897 if (ret == 1) {
898 /* Start normal processing for the channel. */
899 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000900 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000901 } else if (ret == -1) {
902 /*
903 * We have received an X11 connection that has bad
904 * authentication information.
905 */
Damien Miller996acd22003-04-09 20:59:48 +1000906 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000907 buffer_clear(&c->input);
908 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000909 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000910 c->sock = -1;
911 c->type = SSH_CHANNEL_CLOSED;
912 packet_start(SSH_MSG_CHANNEL_CLOSE);
913 packet_put_int(c->remote_id);
914 packet_send();
915 }
916}
917
Ben Lindstrombba81212001-06-25 05:01:22 +0000918static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100919channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000920{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000921 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000922
923 /* c->force_drain = 1; */
924
Damien Millerb38eff82000-04-01 11:09:21 +1000925 if (ret == 1) {
926 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100927 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000928 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000929 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000930 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100931 chan_read_failed(c);
932 buffer_clear(&c->input);
933 chan_ibuf_empty(c);
934 buffer_clear(&c->output);
935 /* for proto v1, the peer will send an IEOF */
936 if (compat20)
937 chan_write_failed(c);
938 else
939 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000940 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000941 }
942}
943
Ben Lindstromb3921512001-04-11 15:57:50 +0000944/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000945/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000946static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100947channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000948{
Damien Millera10f5612002-09-12 09:49:15 +1000949 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000950 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100951 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000952 struct {
953 u_int8_t version;
954 u_int8_t command;
955 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000956 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000957 } s4_req, s4_rsp;
958
Ben Lindstromb3921512001-04-11 15:57:50 +0000959 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000960
961 have = buffer_len(&c->input);
962 len = sizeof(s4_req);
963 if (have < len)
964 return 0;
965 p = buffer_ptr(&c->input);
966 for (found = 0, i = len; i < have; i++) {
967 if (p[i] == '\0') {
968 found = 1;
969 break;
970 }
971 if (i > 1024) {
972 /* the peer is probably sending garbage */
973 debug("channel %d: decode socks4: too long",
974 c->self);
975 return -1;
976 }
977 }
978 if (!found)
979 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000980 buffer_get(&c->input, (char *)&s4_req.version, 1);
981 buffer_get(&c->input, (char *)&s4_req.command, 1);
982 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000983 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000984 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000985 p = buffer_ptr(&c->input);
986 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000987 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000988 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000989 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 c->self, len, have);
991 strlcpy(username, p, sizeof(username));
992 buffer_consume(&c->input, len);
993 buffer_consume(&c->input, 1); /* trailing '\0' */
994
Ben Lindstromb3921512001-04-11 15:57:50 +0000995 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000996 strlcpy(c->path, host, sizeof(c->path));
997 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100998
Damien Millerfbdeece2003-09-02 22:52:31 +1000999 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001000 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001001
Ben Lindstromb3921512001-04-11 15:57:50 +00001002 if (s4_req.command != 1) {
1003 debug("channel %d: cannot handle: socks4 cn %d",
1004 c->self, s4_req.command);
1005 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001006 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001007 s4_rsp.version = 0; /* vn: 0 for reply */
1008 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001009 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001010 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001011 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001012 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001013}
1014
Darren Tucker46471c92003-07-03 13:55:19 +10001015/* try to decode a socks5 header */
1016#define SSH_SOCKS5_AUTHDONE 0x1000
1017#define SSH_SOCKS5_NOAUTH 0x00
1018#define SSH_SOCKS5_IPV4 0x01
1019#define SSH_SOCKS5_DOMAIN 0x03
1020#define SSH_SOCKS5_IPV6 0x04
1021#define SSH_SOCKS5_CONNECT 0x01
1022#define SSH_SOCKS5_SUCCESS 0x00
1023
Damien Miller8473dd82006-07-24 14:08:32 +10001024/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001025static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001026channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001027{
1028 struct {
1029 u_int8_t version;
1030 u_int8_t command;
1031 u_int8_t reserved;
1032 u_int8_t atyp;
1033 } s5_req, s5_rsp;
1034 u_int16_t dest_port;
1035 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001036 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001037
1038 debug2("channel %d: decode socks5", c->self);
1039 p = buffer_ptr(&c->input);
1040 if (p[0] != 0x05)
1041 return -1;
1042 have = buffer_len(&c->input);
1043 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1044 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001045 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001046 return 0;
1047 nmethods = p[1];
1048 if (have < nmethods + 2)
1049 return 0;
1050 /* look for method: "NO AUTHENTICATION REQUIRED" */
1051 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1052 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1053 found = 1;
1054 break;
1055 }
1056 }
1057 if (!found) {
1058 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1059 c->self);
1060 return -1;
1061 }
1062 buffer_consume(&c->input, nmethods + 2);
1063 buffer_put_char(&c->output, 0x05); /* version */
1064 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1065 FD_SET(c->sock, writeset);
1066 c->flags |= SSH_SOCKS5_AUTHDONE;
1067 debug2("channel %d: socks5 auth done", c->self);
1068 return 0; /* need more */
1069 }
1070 debug2("channel %d: socks5 post auth", c->self);
1071 if (have < sizeof(s5_req)+1)
1072 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001073 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001074 if (s5_req.version != 0x05 ||
1075 s5_req.command != SSH_SOCKS5_CONNECT ||
1076 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001077 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001078 return -1;
1079 }
Darren Tucker47eede72005-03-14 23:08:12 +11001080 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001081 case SSH_SOCKS5_IPV4:
1082 addrlen = 4;
1083 af = AF_INET;
1084 break;
1085 case SSH_SOCKS5_DOMAIN:
1086 addrlen = p[sizeof(s5_req)];
1087 af = -1;
1088 break;
1089 case SSH_SOCKS5_IPV6:
1090 addrlen = 16;
1091 af = AF_INET6;
1092 break;
1093 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001094 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001095 return -1;
1096 }
Damien Miller0f077072006-07-10 22:21:02 +10001097 need = sizeof(s5_req) + addrlen + 2;
1098 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1099 need++;
1100 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001101 return 0;
1102 buffer_consume(&c->input, sizeof(s5_req));
1103 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1104 buffer_consume(&c->input, 1); /* host string length */
1105 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1106 buffer_get(&c->input, (char *)&dest_port, 2);
1107 dest_addr[addrlen] = '\0';
1108 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001109 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001110 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1111 return -1;
1112 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001113
Damien Millerfbdeece2003-09-02 22:52:31 +10001114 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001115 c->self, c->path, c->host_port, s5_req.command);
1116
1117 s5_rsp.version = 0x05;
1118 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1119 s5_rsp.reserved = 0; /* ignored */
1120 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1121 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1122 dest_port = 0; /* ignored */
1123
Damien Millera0fdce92006-03-26 14:28:50 +11001124 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1125 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1126 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001127 return 1;
1128}
1129
Ben Lindstromb3921512001-04-11 15:57:50 +00001130/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001131static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001132channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001133{
1134 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001135 u_int have;
1136 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001137
1138 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001139 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001140 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001141 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001142 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001143 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001144 /* need more */
1145 FD_SET(c->sock, readset);
1146 return;
1147 }
1148 /* try to guess the protocol */
1149 p = buffer_ptr(&c->input);
1150 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001151 case 0x04:
1152 ret = channel_decode_socks4(c, readset, writeset);
1153 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001154 case 0x05:
1155 ret = channel_decode_socks5(c, readset, writeset);
1156 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001157 default:
1158 ret = -1;
1159 break;
1160 }
1161 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001162 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001163 } else if (ret == 0) {
1164 debug2("channel %d: pre_dynamic: need more", c->self);
1165 /* need more */
1166 FD_SET(c->sock, readset);
1167 } else {
1168 /* switch to the next state */
1169 c->type = SSH_CHANNEL_OPENING;
1170 port_open_helper(c, "direct-tcpip");
1171 }
1172}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001173
Damien Millerb38eff82000-04-01 11:09:21 +10001174/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001175/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001176static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001177channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001178{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001179 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001180 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001181 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001182 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001183 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001184 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001185
1186 if (FD_ISSET(c->sock, readset)) {
1187 debug("X11 connection requested.");
1188 addrlen = sizeof(addr);
1189 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001190 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001191 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001192 channel_close_fd(&c->sock);
1193 chan_mark_dead(c);
1194 }
Damien Millerb38eff82000-04-01 11:09:21 +10001195 if (newsock < 0) {
1196 error("accept: %.100s", strerror(errno));
1197 return;
1198 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001199 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001200 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001201 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001202 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001203 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001204
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001205 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001206 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001207 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001208 if (compat20) {
1209 packet_start(SSH2_MSG_CHANNEL_OPEN);
1210 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001211 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001212 packet_put_int(nc->local_window_max);
1213 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001214 /* originator ipaddr and port */
1215 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001216 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001217 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001218 } else {
1219 packet_put_int(remote_port);
1220 }
Damien Millerbd483e72000-04-30 10:00:53 +10001221 packet_send();
1222 } else {
1223 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001224 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001225 if (packet_get_protocol_flags() &
1226 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001227 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001228 packet_send();
1229 }
Damien Millerd83ff352001-01-30 09:19:34 +11001230 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001231 }
1232}
1233
Ben Lindstrombba81212001-06-25 05:01:22 +00001234static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001235port_open_helper(Channel *c, char *rtype)
1236{
1237 int direct;
1238 char buf[1024];
1239 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001240 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001241
1242 direct = (strcmp(rtype, "direct-tcpip") == 0);
1243
1244 snprintf(buf, sizeof buf,
1245 "%s: listening port %d for %.100s port %d, "
1246 "connect from %.200s port %d",
1247 rtype, c->listening_port, c->path, c->host_port,
1248 remote_ipaddr, remote_port);
1249
1250 xfree(c->remote_name);
1251 c->remote_name = xstrdup(buf);
1252
1253 if (compat20) {
1254 packet_start(SSH2_MSG_CHANNEL_OPEN);
1255 packet_put_cstring(rtype);
1256 packet_put_int(c->self);
1257 packet_put_int(c->local_window_max);
1258 packet_put_int(c->local_maxpacket);
1259 if (direct) {
1260 /* target host, port */
1261 packet_put_cstring(c->path);
1262 packet_put_int(c->host_port);
1263 } else {
1264 /* listen address, port */
1265 packet_put_cstring(c->path);
1266 packet_put_int(c->listening_port);
1267 }
1268 /* originator host and port */
1269 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001270 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001271 packet_send();
1272 } else {
1273 packet_start(SSH_MSG_PORT_OPEN);
1274 packet_put_int(c->self);
1275 packet_put_cstring(c->path);
1276 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001277 if (packet_get_protocol_flags() &
1278 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001279 packet_put_cstring(c->remote_name);
1280 packet_send();
1281 }
1282 xfree(remote_ipaddr);
1283}
1284
Damien Miller5e7fd072005-11-05 14:53:39 +11001285static void
1286channel_set_reuseaddr(int fd)
1287{
1288 int on = 1;
1289
1290 /*
1291 * Set socket options.
1292 * Allow local port reuse in TIME_WAIT.
1293 */
1294 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1295 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1296}
1297
Damien Millerb38eff82000-04-01 11:09:21 +10001298/*
1299 * This socket is listening for connections to a forwarded TCP/IP port.
1300 */
Damien Miller8473dd82006-07-24 14:08:32 +10001301/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001302static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001303channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001304{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001305 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001306 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001307 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001308 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001309 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001310
Damien Millerb38eff82000-04-01 11:09:21 +10001311 if (FD_ISSET(c->sock, readset)) {
1312 debug("Connection to port %d forwarding "
1313 "to %.100s port %d requested.",
1314 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001315
Damien Miller4623a752001-10-10 15:03:58 +10001316 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1317 nextstate = SSH_CHANNEL_OPENING;
1318 rtype = "forwarded-tcpip";
1319 } else {
1320 if (c->host_port == 0) {
1321 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001322 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001323 } else {
1324 nextstate = SSH_CHANNEL_OPENING;
1325 rtype = "direct-tcpip";
1326 }
1327 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001328
Damien Millerb38eff82000-04-01 11:09:21 +10001329 addrlen = sizeof(addr);
1330 newsock = accept(c->sock, &addr, &addrlen);
1331 if (newsock < 0) {
1332 error("accept: %.100s", strerror(errno));
1333 return;
1334 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001335 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001336 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1337 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001338 nc->listening_port = c->listening_port;
1339 nc->host_port = c->host_port;
1340 strlcpy(nc->path, c->path, sizeof(nc->path));
1341
Damien Miller4623a752001-10-10 15:03:58 +10001342 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1343 /*
1344 * do not call the channel_post handler until
1345 * this flag has been reset by a pre-handler.
1346 * otherwise the FD_ISSET calls might overflow
1347 */
1348 nc->delayed = 1;
1349 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001350 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001351 }
Damien Millerb38eff82000-04-01 11:09:21 +10001352 }
1353}
1354
1355/*
1356 * This is the authentication agent socket listening for connections from
1357 * clients.
1358 */
Damien Miller8473dd82006-07-24 14:08:32 +10001359/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001360static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001361channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001362{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001363 Channel *nc;
1364 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001365 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001366 socklen_t addrlen;
1367
1368 if (FD_ISSET(c->sock, readset)) {
1369 addrlen = sizeof(addr);
1370 newsock = accept(c->sock, &addr, &addrlen);
1371 if (newsock < 0) {
1372 error("accept from auth socket: %.100s", strerror(errno));
1373 return;
1374 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001375 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001376 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1377 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001378 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001379 if (compat20) {
1380 packet_start(SSH2_MSG_CHANNEL_OPEN);
1381 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001382 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001383 packet_put_int(c->local_window_max);
1384 packet_put_int(c->local_maxpacket);
1385 } else {
1386 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001387 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001388 }
Damien Millerb38eff82000-04-01 11:09:21 +10001389 packet_send();
1390 }
1391}
1392
Damien Miller8473dd82006-07-24 14:08:32 +10001393/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001394static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001395channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001396{
Ben Lindstrom69128662001-05-08 20:07:39 +00001397 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001398 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001399
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001400 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001401 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001402 err = errno;
1403 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001404 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001405 if (err == 0) {
1406 debug("channel %d: connected", c->self);
1407 c->type = SSH_CHANNEL_OPEN;
1408 if (compat20) {
1409 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1410 packet_put_int(c->remote_id);
1411 packet_put_int(c->self);
1412 packet_put_int(c->local_window);
1413 packet_put_int(c->local_maxpacket);
1414 } else {
1415 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1416 packet_put_int(c->remote_id);
1417 packet_put_int(c->self);
1418 }
1419 } else {
1420 debug("channel %d: not connected: %s",
1421 c->self, strerror(err));
1422 if (compat20) {
1423 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1424 packet_put_int(c->remote_id);
1425 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1426 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1427 packet_put_cstring(strerror(err));
1428 packet_put_cstring("");
1429 }
1430 } else {
1431 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1432 packet_put_int(c->remote_id);
1433 }
1434 chan_mark_dead(c);
1435 }
1436 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001437 }
1438}
1439
Damien Miller8473dd82006-07-24 14:08:32 +10001440/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001441static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001442channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001443{
Darren Tucker11327cc2005-03-14 23:22:25 +11001444 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001445 int len;
1446
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001447 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001448 FD_ISSET(c->rfd, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001449 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001450 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001451 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1452 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001453#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001454 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001455#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001456 if ((!c->isatty && len <= 0) ||
1457 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001458#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001459 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001460 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001461 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001462 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001463 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001464 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001465 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001466 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001467 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001468 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001469 } else {
1470 chan_read_failed(c);
1471 }
1472 return -1;
1473 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001474 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001475 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001476 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001477 chan_read_failed(c);
1478 }
Damien Millerd27b9472005-12-13 19:29:02 +11001479 } else if (c->datagram) {
1480 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001481 } else {
1482 buffer_append(&c->input, buf, len);
1483 }
Damien Millerb38eff82000-04-01 11:09:21 +10001484 }
1485 return 1;
1486}
Damien Miller4f7becb2006-03-26 14:10:14 +11001487
Damien Miller8473dd82006-07-24 14:08:32 +10001488/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001489static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001490channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001491{
Ben Lindstrome229b252001-03-05 06:28:06 +00001492 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001493 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001494 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001495 int len;
1496
1497 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001498 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001499 FD_ISSET(c->wfd, writeset) &&
1500 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001501 if (c->output_filter != NULL) {
1502 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1503 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001504 if (c->type != SSH_CHANNEL_OPEN)
1505 chan_mark_dead(c);
1506 else
1507 chan_write_failed(c);
1508 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001509 }
1510 } else if (c->datagram) {
1511 buf = data = buffer_get_string(&c->output, &dlen);
1512 } else {
1513 buf = data = buffer_ptr(&c->output);
1514 dlen = buffer_len(&c->output);
1515 }
1516
Damien Millerd27b9472005-12-13 19:29:02 +11001517 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001518 /* ignore truncated writes, datagrams might get lost */
1519 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001520 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001521 xfree(data);
1522 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1523 return 1;
1524 if (len <= 0) {
1525 if (c->type != SSH_CHANNEL_OPEN)
1526 chan_mark_dead(c);
1527 else
1528 chan_write_failed(c);
1529 return -1;
1530 }
1531 return 1;
1532 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001533#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001534 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001535 if (compat20 && c->wfd_isatty)
1536 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001537#endif
Damien Miller077b2382005-12-31 16:22:32 +11001538
1539 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001540 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1541 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001542 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001543 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001544 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001545 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001546 return -1;
1547 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001548 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001549 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001550 c->type = SSH_CHANNEL_INPUT_DRAINING;
1551 } else {
1552 chan_write_failed(c);
1553 }
1554 return -1;
1555 }
Damien Miller077b2382005-12-31 16:22:32 +11001556 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001557 if (tcgetattr(c->wfd, &tio) == 0 &&
1558 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1559 /*
1560 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001561 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001562 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001563 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001564 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001565 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001566 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001567 }
1568 }
Damien Millerb38eff82000-04-01 11:09:21 +10001569 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001570 if (compat20 && len > 0) {
1571 c->local_consumed += len;
1572 }
1573 }
1574 return 1;
1575}
Damien Miller4f7becb2006-03-26 14:10:14 +11001576
Ben Lindstrombba81212001-06-25 05:01:22 +00001577static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001578channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001579{
Darren Tucker11327cc2005-03-14 23:22:25 +11001580 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001581 int len;
1582
Damien Miller1383bd82000-04-06 12:32:37 +10001583/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001584 if (c->efd != -1) {
1585 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1586 FD_ISSET(c->efd, writeset) &&
1587 buffer_len(&c->extended) > 0) {
1588 len = write(c->efd, buffer_ptr(&c->extended),
1589 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001590 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001591 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001592 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1593 return 1;
1594 if (len <= 0) {
1595 debug2("channel %d: closing write-efd %d",
1596 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001597 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001598 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001599 buffer_consume(&c->extended, len);
1600 c->local_consumed += len;
1601 }
1602 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1603 FD_ISSET(c->efd, readset)) {
1604 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001605 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001606 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001607 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1608 return 1;
1609 if (len <= 0) {
1610 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001611 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001612 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001613 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001614 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001615 }
Damien Miller33b13562000-04-04 14:38:59 +10001616 }
1617 }
1618 return 1;
1619}
Damien Miller4f7becb2006-03-26 14:10:14 +11001620
Damien Miller8473dd82006-07-24 14:08:32 +10001621/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001622static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001623channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001624{
1625 char buf[16];
1626 int len;
1627
1628 /* Monitor control fd to detect if the slave client exits */
1629 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1630 len = read(c->ctl_fd, buf, sizeof(buf));
1631 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1632 return 1;
1633 if (len <= 0) {
1634 debug2("channel %d: ctl read<=0", c->self);
1635 if (c->type != SSH_CHANNEL_OPEN) {
1636 debug2("channel %d: not open", c->self);
1637 chan_mark_dead(c);
1638 return -1;
1639 } else {
1640 chan_read_failed(c);
1641 chan_write_failed(c);
1642 }
1643 return -1;
1644 } else
1645 fatal("%s: unexpected data on ctl fd", __func__);
1646 }
1647 return 1;
1648}
Damien Miller4f7becb2006-03-26 14:10:14 +11001649
Damien Miller0e220db2004-06-15 10:34:08 +10001650static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001651channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001652{
Ben Lindstromb3921512001-04-11 15:57:50 +00001653 if (c->type == SSH_CHANNEL_OPEN &&
1654 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001655 c->local_window < c->local_window_max/2 &&
1656 c->local_consumed > 0) {
1657 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1658 packet_put_int(c->remote_id);
1659 packet_put_int(c->local_consumed);
1660 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001661 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001662 c->self, c->local_window,
1663 c->local_consumed);
1664 c->local_window += c->local_consumed;
1665 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001666 }
1667 return 1;
1668}
1669
Ben Lindstrombba81212001-06-25 05:01:22 +00001670static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001671channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001672{
Damien Miller4623a752001-10-10 15:03:58 +10001673 if (c->delayed)
1674 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001675 channel_handle_rfd(c, readset, writeset);
1676 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001677 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001678 return;
Damien Miller33b13562000-04-04 14:38:59 +10001679 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001680 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001681 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001682}
1683
Damien Miller8473dd82006-07-24 14:08:32 +10001684/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001685static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001686channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001687{
1688 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001689
Damien Millerb38eff82000-04-01 11:09:21 +10001690 /* Send buffered output data to the socket. */
1691 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1692 len = write(c->sock, buffer_ptr(&c->output),
1693 buffer_len(&c->output));
1694 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001695 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001696 else
1697 buffer_consume(&c->output, len);
1698 }
1699}
1700
Ben Lindstrombba81212001-06-25 05:01:22 +00001701static void
Damien Miller33b13562000-04-04 14:38:59 +10001702channel_handler_init_20(void)
1703{
Damien Millerde6987c2002-01-22 23:20:40 +11001704 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001705 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001706 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001707 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001708 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001709 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001710 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001711 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001712
Damien Millerde6987c2002-01-22 23:20:40 +11001713 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001714 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001715 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001716 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001717 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001718 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001719 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001720}
1721
Ben Lindstrombba81212001-06-25 05:01:22 +00001722static void
Damien Millerb38eff82000-04-01 11:09:21 +10001723channel_handler_init_13(void)
1724{
1725 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1726 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1727 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1728 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1729 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1730 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1731 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001732 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001733 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001734
Damien Millerde6987c2002-01-22 23:20:40 +11001735 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001736 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1737 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1738 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1739 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001740 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001741 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001742}
1743
Ben Lindstrombba81212001-06-25 05:01:22 +00001744static void
Damien Millerb38eff82000-04-01 11:09:21 +10001745channel_handler_init_15(void)
1746{
Damien Millerde6987c2002-01-22 23:20:40 +11001747 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001748 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001749 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1750 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1751 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001752 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001753 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001754
1755 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1756 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1757 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001758 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001759 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001760 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001761}
1762
Ben Lindstrombba81212001-06-25 05:01:22 +00001763static void
Damien Millerb38eff82000-04-01 11:09:21 +10001764channel_handler_init(void)
1765{
1766 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001767
Damien Miller9f0f5c62001-12-21 14:45:46 +11001768 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001769 channel_pre[i] = NULL;
1770 channel_post[i] = NULL;
1771 }
Damien Miller33b13562000-04-04 14:38:59 +10001772 if (compat20)
1773 channel_handler_init_20();
1774 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001775 channel_handler_init_13();
1776 else
1777 channel_handler_init_15();
1778}
1779
Damien Miller3ec27592001-10-12 11:35:04 +10001780/* gc dead channels */
1781static void
1782channel_garbage_collect(Channel *c)
1783{
1784 if (c == NULL)
1785 return;
1786 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001787 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001788 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001789 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001790 c->detach_user(c->self, NULL);
1791 /* if we still have a callback */
1792 if (c->detach_user != NULL)
1793 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001794 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001795 }
1796 if (!chan_is_dead(c, 1))
1797 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001798 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001799 channel_free(c);
1800}
1801
Ben Lindstrombba81212001-06-25 05:01:22 +00001802static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001803channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001804{
1805 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001806 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001807 Channel *c;
1808
1809 if (!did_init) {
1810 channel_handler_init();
1811 did_init = 1;
1812 }
1813 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001814 c = channels[i];
1815 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001816 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001817 if (ftab[c->type] != NULL)
1818 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001819 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001820 }
1821}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001822
Ben Lindstrome9c99912001-06-09 00:41:05 +00001823/*
1824 * Allocate/update select bitmasks and add any bits relevant to channels in
1825 * select bitmasks.
1826 */
Damien Miller4af51302000-04-16 11:18:38 +10001827void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001828channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001829 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001830{
Damien Miller36812092006-03-26 14:22:47 +11001831 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001832
1833 n = MAX(*maxfdp, channel_max_fd);
1834
Damien Miller36812092006-03-26 14:22:47 +11001835 nfdset = howmany(n+1, NFDBITS);
1836 /* Explicitly test here, because xrealloc isn't always called */
1837 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1838 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1839 sz = nfdset * sizeof(fd_mask);
1840
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001841 /* perhaps check sz < nalloc/2 and shrink? */
1842 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001843 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1844 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001845 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001846 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001847 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001848 memset(*readsetp, 0, sz);
1849 memset(*writesetp, 0, sz);
1850
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001851 if (!rekeying)
1852 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001853}
1854
Ben Lindstrome9c99912001-06-09 00:41:05 +00001855/*
1856 * After select, perform any appropriate operations for channels which have
1857 * events pending.
1858 */
Damien Miller4af51302000-04-16 11:18:38 +10001859void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001860channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001861{
Damien Millerb38eff82000-04-01 11:09:21 +10001862 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863}
1864
Ben Lindstrome9c99912001-06-09 00:41:05 +00001865
Damien Miller5e953212001-01-30 09:14:00 +11001866/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001867void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001868channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001869{
Damien Millerb38eff82000-04-01 11:09:21 +10001870 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001871 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001872
Damien Miller95def091999-11-25 00:26:21 +11001873 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001874 c = channels[i];
1875 if (c == NULL)
1876 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001877
Ben Lindstrome9c99912001-06-09 00:41:05 +00001878 /*
1879 * We are only interested in channels that can have buffered
1880 * incoming data.
1881 */
Damien Miller34132e52000-01-14 15:45:46 +11001882 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001883 if (c->type != SSH_CHANNEL_OPEN &&
1884 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001885 continue;
1886 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001887 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001888 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001889 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001890 if (compat20 &&
1891 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001892 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001893 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001894 continue;
1895 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001896
Damien Miller95def091999-11-25 00:26:21 +11001897 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001898 if ((c->istate == CHAN_INPUT_OPEN ||
1899 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1900 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001901 if (c->datagram) {
1902 if (len > 0) {
1903 u_char *data;
1904 u_int dlen;
1905
1906 data = buffer_get_string(&c->input,
1907 &dlen);
1908 packet_start(SSH2_MSG_CHANNEL_DATA);
1909 packet_put_int(c->remote_id);
1910 packet_put_string(data, dlen);
1911 packet_send();
1912 c->remote_window -= dlen + 4;
1913 xfree(data);
1914 }
1915 continue;
1916 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001917 /*
1918 * Send some data for the other side over the secure
1919 * connection.
1920 */
Damien Miller33b13562000-04-04 14:38:59 +10001921 if (compat20) {
1922 if (len > c->remote_window)
1923 len = c->remote_window;
1924 if (len > c->remote_maxpacket)
1925 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001926 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001927 if (packet_is_interactive()) {
1928 if (len > 1024)
1929 len = 512;
1930 } else {
1931 /* Keep the packets at reasonable size. */
1932 if (len > packet_get_maxsize()/2)
1933 len = packet_get_maxsize()/2;
1934 }
Damien Miller95def091999-11-25 00:26:21 +11001935 }
Damien Millerb38eff82000-04-01 11:09:21 +10001936 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001937 packet_start(compat20 ?
1938 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001939 packet_put_int(c->remote_id);
1940 packet_put_string(buffer_ptr(&c->input), len);
1941 packet_send();
1942 buffer_consume(&c->input, len);
1943 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001944 }
1945 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001946 if (compat13)
1947 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001948 /*
1949 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001950 * tell peer, that we will not send more data: send IEOF.
1951 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001952 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001953 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001954 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1955 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001956 else
1957 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001958 }
Damien Miller33b13562000-04-04 14:38:59 +10001959 /* Send extended data, i.e. stderr */
1960 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001961 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001962 c->remote_window > 0 &&
1963 (len = buffer_len(&c->extended)) > 0 &&
1964 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001965 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001966 c->self, c->remote_window, buffer_len(&c->extended),
1967 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001968 if (len > c->remote_window)
1969 len = c->remote_window;
1970 if (len > c->remote_maxpacket)
1971 len = c->remote_maxpacket;
1972 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1973 packet_put_int(c->remote_id);
1974 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1975 packet_put_string(buffer_ptr(&c->extended), len);
1976 packet_send();
1977 buffer_consume(&c->extended, len);
1978 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001979 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001980 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001981 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982}
1983
Ben Lindstrome9c99912001-06-09 00:41:05 +00001984
1985/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001986
1987/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001988void
Damien Miller630d6f42002-01-22 23:17:30 +11001989channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001990{
Damien Miller34132e52000-01-14 15:45:46 +11001991 int id;
Damien Miller95def091999-11-25 00:26:21 +11001992 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001993 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001994 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001995
Damien Miller95def091999-11-25 00:26:21 +11001996 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001997 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001998 c = channel_lookup(id);
1999 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002000 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002001
Damien Miller95def091999-11-25 00:26:21 +11002002 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002003 if (c->type != SSH_CHANNEL_OPEN &&
2004 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002005 return;
2006
Damien Miller95def091999-11-25 00:26:21 +11002007 /* Get the data. */
2008 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002009
Damien Millera04ad492004-01-21 11:02:09 +11002010 /*
2011 * Ignore data for protocol > 1.3 if output end is no longer open.
2012 * For protocol 2 the sending side is reducing its window as it sends
2013 * data, so we must 'fake' consumption of the data in order to ensure
2014 * that window updates are sent back. Otherwise the connection might
2015 * deadlock.
2016 */
2017 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2018 if (compat20) {
2019 c->local_window -= data_len;
2020 c->local_consumed += data_len;
2021 }
2022 xfree(data);
2023 return;
2024 }
2025
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002026 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002027 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002028 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002029 c->self, data_len, c->local_maxpacket);
2030 }
2031 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002032 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002033 c->self, data_len, c->local_window);
2034 xfree(data);
2035 return;
2036 }
2037 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002038 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002039 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002040 if (c->datagram)
2041 buffer_put_string(&c->output, data, data_len);
2042 else
2043 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002044 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002045}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002046
Damien Millerd79b4242006-03-31 23:11:44 +11002047/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002048void
Damien Miller630d6f42002-01-22 23:17:30 +11002049channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002050{
2051 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002052 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002053 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002054 Channel *c;
2055
2056 /* Get the channel number and verify it. */
2057 id = packet_get_int();
2058 c = channel_lookup(id);
2059
2060 if (c == NULL)
2061 packet_disconnect("Received extended_data for bad channel %d.", id);
2062 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002063 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002064 return;
2065 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002066 if (c->flags & CHAN_EOF_RCVD) {
2067 if (datafellows & SSH_BUG_EXTEOF)
2068 debug("channel %d: accepting ext data after eof", id);
2069 else
2070 packet_disconnect("Received extended_data after EOF "
2071 "on channel %d.", id);
2072 }
Damien Miller33b13562000-04-04 14:38:59 +10002073 tcode = packet_get_int();
2074 if (c->efd == -1 ||
2075 c->extended_usage != CHAN_EXTENDED_WRITE ||
2076 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002077 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002078 return;
2079 }
2080 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002081 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002082 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002083 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002084 c->self, data_len, c->local_window);
2085 xfree(data);
2086 return;
2087 }
Damien Millerd3444942000-09-30 14:20:03 +11002088 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002089 c->local_window -= data_len;
2090 buffer_append(&c->extended, data, data_len);
2091 xfree(data);
2092}
2093
Damien Millerd79b4242006-03-31 23:11:44 +11002094/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002095void
Damien Miller630d6f42002-01-22 23:17:30 +11002096channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002097{
2098 int id;
2099 Channel *c;
2100
Damien Millerb38eff82000-04-01 11:09:21 +10002101 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002102 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002103 c = channel_lookup(id);
2104 if (c == NULL)
2105 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2106 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002107
2108 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002109 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002110 debug("channel %d: FORCE input drain", c->self);
2111 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002112 if (buffer_len(&c->input) == 0)
2113 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002114 }
2115
Damien Millerb38eff82000-04-01 11:09:21 +10002116}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002117
Damien Millerd79b4242006-03-31 23:11:44 +11002118/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002119void
Damien Miller630d6f42002-01-22 23:17:30 +11002120channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002121{
Damien Millerb38eff82000-04-01 11:09:21 +10002122 int id;
2123 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124
Damien Millerb38eff82000-04-01 11:09:21 +10002125 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002126 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002127 c = channel_lookup(id);
2128 if (c == NULL)
2129 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002130
2131 /*
2132 * Send a confirmation that we have closed the channel and no more
2133 * data is coming for it.
2134 */
Damien Miller95def091999-11-25 00:26:21 +11002135 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002136 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002137 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002138
Damien Miller5428f641999-11-25 11:54:57 +11002139 /*
2140 * If the channel is in closed state, we have sent a close request,
2141 * and the other side will eventually respond with a confirmation.
2142 * Thus, we cannot free the channel here, because then there would be
2143 * no-one to receive the confirmation. The channel gets freed when
2144 * the confirmation arrives.
2145 */
Damien Millerb38eff82000-04-01 11:09:21 +10002146 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002147 /*
2148 * Not a closed channel - mark it as draining, which will
2149 * cause it to be freed later.
2150 */
Damien Miller76765c02002-01-22 23:21:15 +11002151 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002152 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002153 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002154}
2155
Damien Millerb38eff82000-04-01 11:09:21 +10002156/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002157/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002158void
Damien Miller630d6f42002-01-22 23:17:30 +11002159channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002160{
Damien Millerb38eff82000-04-01 11:09:21 +10002161 int id = packet_get_int();
2162 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002163
Damien Miller48b03fc2002-01-22 23:11:40 +11002164 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002165 if (c == NULL)
2166 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2167 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168}
2169
Damien Millerd79b4242006-03-31 23:11:44 +11002170/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002171void
Damien Miller630d6f42002-01-22 23:17:30 +11002172channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002173{
2174 int id = packet_get_int();
2175 Channel *c = channel_lookup(id);
2176
Damien Miller48b03fc2002-01-22 23:11:40 +11002177 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002178 if (c == NULL)
2179 packet_disconnect("Received close confirmation for "
2180 "out-of-range channel %d.", id);
2181 if (c->type != SSH_CHANNEL_CLOSED)
2182 packet_disconnect("Received close confirmation for "
2183 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002184 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002185}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002186
Damien Millerd79b4242006-03-31 23:11:44 +11002187/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002188void
Damien Miller630d6f42002-01-22 23:17:30 +11002189channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002190{
Damien Millerb38eff82000-04-01 11:09:21 +10002191 int id, remote_id;
2192 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002193
Damien Millerb38eff82000-04-01 11:09:21 +10002194 id = packet_get_int();
2195 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002196
Damien Millerb38eff82000-04-01 11:09:21 +10002197 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2198 packet_disconnect("Received open confirmation for "
2199 "non-opening channel %d.", id);
2200 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002201 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002202 c->remote_id = remote_id;
2203 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002204
2205 if (compat20) {
2206 c->remote_window = packet_get_int();
2207 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002208 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002209 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002210 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002211 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002212 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002213 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002214 c->remote_window, c->remote_maxpacket);
2215 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002216 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002217}
2218
Ben Lindstrombba81212001-06-25 05:01:22 +00002219static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002220reason2txt(int reason)
2221{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002222 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002223 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2224 return "administratively prohibited";
2225 case SSH2_OPEN_CONNECT_FAILED:
2226 return "connect failed";
2227 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2228 return "unknown channel type";
2229 case SSH2_OPEN_RESOURCE_SHORTAGE:
2230 return "resource shortage";
2231 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002232 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002233}
2234
Damien Millerd79b4242006-03-31 23:11:44 +11002235/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002236void
Damien Miller630d6f42002-01-22 23:17:30 +11002237channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002238{
Kevin Steves12057502001-02-05 14:54:34 +00002239 int id, reason;
2240 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002241 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242
Damien Millerb38eff82000-04-01 11:09:21 +10002243 id = packet_get_int();
2244 c = channel_lookup(id);
2245
2246 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2247 packet_disconnect("Received open failure for "
2248 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002249 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002250 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002251 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002252 msg = packet_get_string(NULL);
2253 lang = packet_get_string(NULL);
2254 }
Damien Miller996acd22003-04-09 20:59:48 +10002255 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002256 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002257 if (msg != NULL)
2258 xfree(msg);
2259 if (lang != NULL)
2260 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002261 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002262 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002263 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002264 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002265}
2266
Damien Millerd79b4242006-03-31 23:11:44 +11002267/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002268void
Damien Miller630d6f42002-01-22 23:17:30 +11002269channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002270{
2271 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002272 int id;
2273 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002274
2275 if (!compat20)
2276 return;
2277
2278 /* Get the channel number and verify it. */
2279 id = packet_get_int();
2280 c = channel_lookup(id);
2281
Damien Millerd47c62a2005-12-13 19:33:57 +11002282 if (c == NULL) {
2283 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002284 return;
2285 }
2286 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002287 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002288 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002289 c->remote_window += adjust;
2290}
2291
Damien Millerd79b4242006-03-31 23:11:44 +11002292/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002293void
Damien Miller630d6f42002-01-22 23:17:30 +11002294channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002296 Channel *c = NULL;
2297 u_short host_port;
2298 char *host, *originator_string;
2299 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002300
Ben Lindstrome9c99912001-06-09 00:41:05 +00002301 remote_id = packet_get_int();
2302 host = packet_get_string(NULL);
2303 host_port = packet_get_int();
2304
2305 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2306 originator_string = packet_get_string(NULL);
2307 } else {
2308 originator_string = xstrdup("unknown (remote did not supply name)");
2309 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002310 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002311 sock = channel_connect_to(host, host_port);
2312 if (sock != -1) {
2313 c = channel_new("connected socket",
2314 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2315 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002316 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002317 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002318 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002319 if (c == NULL) {
2320 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2321 packet_put_int(remote_id);
2322 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002323 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002324 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002325}
2326
2327
Ben Lindstrome9c99912001-06-09 00:41:05 +00002328/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002329
Ben Lindstrom908afed2001-10-03 17:34:59 +00002330void
2331channel_set_af(int af)
2332{
2333 IPv4or6 = af;
2334}
2335
Damien Millerb16461c2002-01-22 23:29:22 +11002336static int
2337channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2338 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002339{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002340 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002341 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002342 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002343 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002344 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002345
Damien Millerb16461c2002-01-22 23:29:22 +11002346 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2347 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002348 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002349
Damien Millerb16461c2002-01-22 23:29:22 +11002350 if (host == NULL) {
2351 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002352 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002353 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002354 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002355 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002356 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002357 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002358
Damien Miller5428f641999-11-25 11:54:57 +11002359 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002360 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002361 * specified address or wildcard. On the client, a specified bind
2362 * address will always override gateway_ports. On the server, a
2363 * gateway_ports of 1 (``yes'') will override the client's
2364 * specification and force a wildcard bind, whereas a value of 2
2365 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002366 * asked for.
2367 *
2368 * Special-case listen_addrs are:
2369 *
2370 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2371 * "" (empty string), "*" -> wildcard v4/v6
2372 * "localhost" -> loopback v4/v6
2373 */
2374 addr = NULL;
2375 if (listen_addr == NULL) {
2376 /* No address specified: default to gateway_ports setting */
2377 if (gateway_ports)
2378 wildcard = 1;
2379 } else if (gateway_ports || is_client) {
2380 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2381 strcmp(listen_addr, "0.0.0.0") == 0) ||
2382 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2383 (!is_client && gateway_ports == 1))
2384 wildcard = 1;
2385 else if (strcmp(listen_addr, "localhost") != 0)
2386 addr = listen_addr;
2387 }
2388
2389 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2390 type, wildcard, (addr == NULL) ? "NULL" : addr);
2391
2392 /*
Damien Miller34132e52000-01-14 15:45:46 +11002393 * getaddrinfo returns a loopback address if the hostname is
2394 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002395 */
Damien Miller34132e52000-01-14 15:45:46 +11002396 memset(&hints, 0, sizeof(hints));
2397 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002398 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002399 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002400 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002401 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2402 if (addr == NULL) {
2403 /* This really shouldn't happen */
2404 packet_disconnect("getaddrinfo: fatal error: %s",
2405 gai_strerror(r));
2406 } else {
Damien Millera7270302005-07-06 09:36:05 +10002407 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002408 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2409 }
Damien Millera7270302005-07-06 09:36:05 +10002410 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002411 }
Damien Miller5428f641999-11-25 11:54:57 +11002412
Damien Miller34132e52000-01-14 15:45:46 +11002413 for (ai = aitop; ai; ai = ai->ai_next) {
2414 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2415 continue;
2416 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2417 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002418 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002419 continue;
2420 }
2421 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002422 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002423 if (sock < 0) {
2424 /* this is no error since kernel may not support ipv6 */
2425 verbose("socket: %.100s", strerror(errno));
2426 continue;
2427 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002428
2429 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002430
Damien Miller34132e52000-01-14 15:45:46 +11002431 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002432
Damien Miller34132e52000-01-14 15:45:46 +11002433 /* Bind the socket to the address. */
2434 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2435 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002436 if (!ai->ai_next)
2437 error("bind: %.100s", strerror(errno));
2438 else
2439 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002440
Damien Miller34132e52000-01-14 15:45:46 +11002441 close(sock);
2442 continue;
2443 }
2444 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002445 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002446 error("listen: %.100s", strerror(errno));
2447 close(sock);
2448 continue;
2449 }
2450 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002451 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002452 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002453 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002454 strlcpy(c->path, host, sizeof(c->path));
2455 c->host_port = port_to_connect;
2456 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002457 success = 1;
2458 }
2459 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002460 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002461 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002462 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002463 return success;
Damien Miller95def091999-11-25 00:26:21 +11002464}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002465
Darren Tuckere7066df2004-05-24 10:18:05 +10002466int
2467channel_cancel_rport_listener(const char *host, u_short port)
2468{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002469 u_int i;
2470 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002471
Darren Tucker47eede72005-03-14 23:08:12 +11002472 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002473 Channel *c = channels[i];
2474
2475 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2476 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002477 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002478 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002479 channel_free(c);
2480 found = 1;
2481 }
2482 }
2483
2484 return (found);
2485}
2486
Damien Millerb16461c2002-01-22 23:29:22 +11002487/* protocol local port fwd, used by ssh (and sshd in v1) */
2488int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002489channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002490 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2491{
2492 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002493 listen_host, listen_port, host_to_connect, port_to_connect,
2494 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002495}
2496
2497/* protocol v2 remote port fwd, used by sshd */
2498int
2499channel_setup_remote_fwd_listener(const char *listen_address,
2500 u_short listen_port, int gateway_ports)
2501{
2502 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2503 listen_address, listen_port, NULL, 0, gateway_ports);
2504}
2505
Damien Miller5428f641999-11-25 11:54:57 +11002506/*
2507 * Initiate forwarding of connections to port "port" on remote host through
2508 * the secure channel to host:port from local side.
2509 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002510
Darren Tuckere7d4b192006-07-12 22:17:10 +10002511int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002512channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002513 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002514{
Damien Millerdff50992002-01-22 23:16:32 +11002515 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002516
Damien Miller95def091999-11-25 00:26:21 +11002517 /* Record locally that connection to this host/port is permitted. */
2518 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2519 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002520
Damien Miller95def091999-11-25 00:26:21 +11002521 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002522 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002523 const char *address_to_bind;
2524 if (listen_host == NULL)
2525 address_to_bind = "localhost";
2526 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2527 address_to_bind = "";
2528 else
2529 address_to_bind = listen_host;
2530
Damien Miller33b13562000-04-04 14:38:59 +10002531 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2532 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002533 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002534 packet_put_cstring(address_to_bind);
2535 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002536 packet_send();
2537 packet_write_wait();
2538 /* Assume that server accepts the request */
2539 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002540 } else {
2541 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002542 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002543 packet_put_cstring(host_to_connect);
2544 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002545 packet_send();
2546 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002547
2548 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002549 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002550 switch (type) {
2551 case SSH_SMSG_SUCCESS:
2552 success = 1;
2553 break;
2554 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002555 break;
2556 default:
2557 /* Unknown packet */
2558 packet_disconnect("Protocol error for port forward request:"
2559 "received packet type %d.", type);
2560 }
2561 }
2562 if (success) {
2563 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2564 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2565 permitted_opens[num_permitted_opens].listen_port = listen_port;
2566 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002567 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002568 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002569}
2570
Damien Miller5428f641999-11-25 11:54:57 +11002571/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002572 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002573 * local side.
2574 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002575void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002576channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002577{
2578 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002579
2580 if (!compat20)
2581 return;
2582
2583 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002584 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002585 permitted_opens[i].listen_port == port)
2586 break;
2587 }
2588 if (i >= num_permitted_opens) {
2589 debug("%s: requested forward not found", __func__);
2590 return;
2591 }
2592 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2593 packet_put_cstring("cancel-tcpip-forward");
2594 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002595 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002596 packet_put_int(port);
2597 packet_send();
2598
2599 permitted_opens[i].listen_port = 0;
2600 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002601 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002602 permitted_opens[i].host_to_connect = NULL;
2603}
2604
2605/*
Damien Miller5428f641999-11-25 11:54:57 +11002606 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2607 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002608 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002609 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002610int
Damien Millere247cc42000-05-07 12:03:14 +10002611channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002612{
Damien Milleraae6c611999-12-06 11:47:28 +11002613 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002614 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002615 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002616
Damien Miller95def091999-11-25 00:26:21 +11002617 /* Get arguments from the packet. */
2618 port = packet_get_int();
2619 hostname = packet_get_string(NULL);
2620 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002621
Damien Millerbac2d8a2000-09-05 16:13:06 +11002622#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002623 /*
2624 * Check that an unprivileged user is not trying to forward a
2625 * privileged port.
2626 */
Damien Miller95def091999-11-25 00:26:21 +11002627 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002628 packet_disconnect(
2629 "Requested forwarding of port %d but user is not root.",
2630 port);
2631 if (host_port == 0)
2632 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002633#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002634
Damien Miller0bc1bd82000-11-13 22:57:25 +11002635 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002636 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002637 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002638
2639 /* Free the argument string. */
2640 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002641
2642 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002643}
2644
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002645/*
2646 * Permits opening to any host/port if permitted_opens[] is empty. This is
2647 * usually called by the server, because the user could connect to any port
2648 * anyway, and the server has no way to know but to trust the client anyway.
2649 */
2650void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002651channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002652{
2653 if (num_permitted_opens == 0)
2654 all_opens_permitted = 1;
2655}
2656
Ben Lindstroma3700052001-04-05 23:26:32 +00002657void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002658channel_add_permitted_opens(char *host, int port)
2659{
2660 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002661 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002662 debug("allow port forwarding to host %s port %d", host, port);
2663
2664 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2665 permitted_opens[num_permitted_opens].port_to_connect = port;
2666 num_permitted_opens++;
2667
2668 all_opens_permitted = 0;
2669}
2670
Damien Millera765cf42006-07-24 14:08:13 +10002671int
Damien Miller9b439df2006-07-24 14:04:00 +10002672channel_add_adm_permitted_opens(char *host, int port)
2673{
2674 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2675 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002676 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002677
2678 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2679 = xstrdup(host);
2680 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002681 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002682}
2683
2684void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002685channel_clear_permitted_opens(void)
2686{
2687 int i;
2688
2689 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002690 if (permitted_opens[i].host_to_connect != NULL)
2691 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002692 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002693}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002694
Damien Miller9b439df2006-07-24 14:04:00 +10002695void
2696channel_clear_adm_permitted_opens(void)
2697{
2698 int i;
2699
2700 for (i = 0; i < num_adm_permitted_opens; i++)
2701 if (permitted_adm_opens[i].host_to_connect != NULL)
2702 xfree(permitted_adm_opens[i].host_to_connect);
2703 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002704}
2705
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002706/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002707static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002708connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002709{
Damien Miller34132e52000-01-14 15:45:46 +11002710 struct addrinfo hints, *ai, *aitop;
2711 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2712 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002713 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002714
Damien Miller34132e52000-01-14 15:45:46 +11002715 memset(&hints, 0, sizeof(hints));
2716 hints.ai_family = IPv4or6;
2717 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002718 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002719 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002720 error("connect_to %.100s: unknown host (%s)", host,
2721 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002722 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002723 }
Damien Miller34132e52000-01-14 15:45:46 +11002724 for (ai = aitop; ai; ai = ai->ai_next) {
2725 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2726 continue;
2727 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2728 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002729 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002730 continue;
2731 }
Damien Miller2372ace2003-05-14 13:42:23 +10002732 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002733 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002734 if (ai->ai_next == NULL)
2735 error("socket: %.100s", strerror(errno));
2736 else
2737 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002738 continue;
2739 }
Damien Miller232711f2004-06-15 10:35:30 +10002740 if (set_nonblock(sock) == -1)
2741 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002742 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2743 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002744 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002745 strerror(errno));
2746 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002747 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002748 }
2749 break; /* success */
2750
2751 }
2752 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002753 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002754 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002755 return -1;
2756 }
2757 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002758 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002759 return sock;
2760}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002761
Damien Miller0bc1bd82000-11-13 22:57:25 +11002762int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002763channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002764{
2765 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002766
Damien Miller0bc1bd82000-11-13 22:57:25 +11002767 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002768 if (permitted_opens[i].host_to_connect != NULL &&
2769 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002770 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002771 permitted_opens[i].host_to_connect,
2772 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002773 error("WARNING: Server requests forwarding for unknown listen_port %d",
2774 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002775 return -1;
2776}
Damien Millerb38eff82000-04-01 11:09:21 +10002777
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002778/* Check if connecting to that port is permitted and connect. */
2779int
2780channel_connect_to(const char *host, u_short port)
2781{
Damien Miller9b439df2006-07-24 14:04:00 +10002782 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002783
2784 permit = all_opens_permitted;
2785 if (!permit) {
2786 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002787 if (permitted_opens[i].host_to_connect != NULL &&
2788 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002789 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2790 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002791 }
Damien Miller9b439df2006-07-24 14:04:00 +10002792
2793 if (num_adm_permitted_opens > 0) {
2794 permit_adm = 0;
2795 for (i = 0; i < num_adm_permitted_opens; i++)
2796 if (permitted_adm_opens[i].host_to_connect != NULL &&
2797 permitted_adm_opens[i].port_to_connect == port &&
2798 strcmp(permitted_adm_opens[i].host_to_connect, host)
2799 == 0)
2800 permit_adm = 1;
2801 }
2802
2803 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10002804 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002805 "but the request was denied.", host, port);
2806 return -1;
2807 }
2808 return connect_to(host, port);
2809}
2810
Damien Miller0e220db2004-06-15 10:34:08 +10002811void
2812channel_send_window_changes(void)
2813{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002814 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002815 struct winsize ws;
2816
2817 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002818 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002819 channels[i]->type != SSH_CHANNEL_OPEN)
2820 continue;
2821 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2822 continue;
2823 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002824 packet_put_int((u_int)ws.ws_col);
2825 packet_put_int((u_int)ws.ws_row);
2826 packet_put_int((u_int)ws.ws_xpixel);
2827 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002828 packet_send();
2829 }
2830}
2831
Ben Lindstrome9c99912001-06-09 00:41:05 +00002832/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002833
Damien Miller5428f641999-11-25 11:54:57 +11002834/*
2835 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002836 * Returns 0 and a suitable display number for the DISPLAY variable
2837 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002838 */
Kevin Steves366298c2001-12-19 17:58:01 +00002839int
Damien Miller95c249f2002-02-05 12:11:34 +11002840x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002841 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002842{
Damien Millere7378562001-12-21 14:58:35 +11002843 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002844 int display_number, sock;
2845 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002846 struct addrinfo hints, *ai, *aitop;
2847 char strport[NI_MAXSERV];
2848 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002849
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002850 if (chanids == NULL)
2851 return -1;
2852
Damien Millera34a28b1999-12-14 10:47:15 +11002853 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002854 display_number < MAX_DISPLAYS;
2855 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002856 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002857 memset(&hints, 0, sizeof(hints));
2858 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002859 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002860 hints.ai_socktype = SOCK_STREAM;
2861 snprintf(strport, sizeof strport, "%d", port);
2862 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2863 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002864 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002865 }
Damien Miller34132e52000-01-14 15:45:46 +11002866 for (ai = aitop; ai; ai = ai->ai_next) {
2867 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2868 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002869 sock = socket(ai->ai_family, ai->ai_socktype,
2870 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002871 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002872 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002873 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002874 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002875 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002876 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002877 debug("x11_create_display_inet: Socket family %d not supported",
2878 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002879 continue;
2880 }
Damien Miller34132e52000-01-14 15:45:46 +11002881 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002882#ifdef IPV6_V6ONLY
2883 if (ai->ai_family == AF_INET6) {
2884 int on = 1;
2885 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2886 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2887 }
2888#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002889 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002890 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002891 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002892 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002893
2894 if (ai->ai_next)
2895 continue;
2896
Damien Miller34132e52000-01-14 15:45:46 +11002897 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002898 close(socks[n]);
2899 }
2900 num_socks = 0;
2901 break;
2902 }
2903 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002904#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002905 if (num_socks == NUM_SOCKS)
2906 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002907#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002908 if (x11_use_localhost) {
2909 if (num_socks == NUM_SOCKS)
2910 break;
2911 } else {
2912 break;
2913 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002914#endif
Damien Miller95def091999-11-25 00:26:21 +11002915 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002916 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002917 if (num_socks > 0)
2918 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002919 }
Damien Miller95def091999-11-25 00:26:21 +11002920 if (display_number >= MAX_DISPLAYS) {
2921 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002922 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002923 }
Damien Miller95def091999-11-25 00:26:21 +11002924 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002925 for (n = 0; n < num_socks; n++) {
2926 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002927 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002928 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002929 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002930 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002931 }
Damien Miller95def091999-11-25 00:26:21 +11002932 }
Damien Miller34132e52000-01-14 15:45:46 +11002933
Damien Miller34132e52000-01-14 15:45:46 +11002934 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002935 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002936 for (n = 0; n < num_socks; n++) {
2937 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002938 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002939 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2940 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002941 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002942 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002943 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002944 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002945 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002946
Kevin Steves366298c2001-12-19 17:58:01 +00002947 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002948 *display_numberp = display_number;
2949 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002950}
2951
Ben Lindstrombba81212001-06-25 05:01:22 +00002952static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002953connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002954{
Damien Miller95def091999-11-25 00:26:21 +11002955 int sock;
2956 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002957
Damien Miller3afe3752001-12-21 12:39:51 +11002958 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2959 if (sock < 0)
2960 error("socket: %.100s", strerror(errno));
2961 memset(&addr, 0, sizeof(addr));
2962 addr.sun_family = AF_UNIX;
2963 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002964 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002965 return sock;
2966 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002967 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2968 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002969}
2970
Damien Millerbd483e72000-04-30 10:00:53 +10002971int
2972x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002973{
Damien Miller57c4e872006-03-31 23:11:07 +11002974 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002975 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002976 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002977 struct addrinfo hints, *ai, *aitop;
2978 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002979 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002980
Damien Miller95def091999-11-25 00:26:21 +11002981 /* Try to open a socket for the local X server. */
2982 display = getenv("DISPLAY");
2983 if (!display) {
2984 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002985 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002986 }
Damien Miller5428f641999-11-25 11:54:57 +11002987 /*
2988 * Now we decode the value of the DISPLAY variable and make a
2989 * connection to the real X server.
2990 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002991
Damien Miller5428f641999-11-25 11:54:57 +11002992 /*
2993 * Check if it is a unix domain socket. Unix domain displays are in
2994 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2995 */
Damien Miller95def091999-11-25 00:26:21 +11002996 if (strncmp(display, "unix:", 5) == 0 ||
2997 display[0] == ':') {
2998 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11002999 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003000 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003001 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003002 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003003 }
3004 /* Create a socket. */
3005 sock = connect_local_xsocket(display_number);
3006 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003007 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003008
3009 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003010 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003011 }
Damien Miller5428f641999-11-25 11:54:57 +11003012 /*
3013 * Connect to an inet socket. The DISPLAY value is supposedly
3014 * hostname:d[.s], where hostname may also be numeric IP address.
3015 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003016 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003017 cp = strchr(buf, ':');
3018 if (!cp) {
3019 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003020 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003021 }
Damien Miller95def091999-11-25 00:26:21 +11003022 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003023 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003024 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003025 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003026 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003027 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003028 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003029
Damien Miller34132e52000-01-14 15:45:46 +11003030 /* Look up the host address */
3031 memset(&hints, 0, sizeof(hints));
3032 hints.ai_family = IPv4or6;
3033 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003034 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003035 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
3036 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003037 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003038 }
Damien Miller34132e52000-01-14 15:45:46 +11003039 for (ai = aitop; ai; ai = ai->ai_next) {
3040 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10003041 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003042 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003043 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003044 continue;
3045 }
3046 /* Connect it to the display. */
3047 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003048 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003049 6000 + display_number, strerror(errno));
3050 close(sock);
3051 continue;
3052 }
3053 /* Success */
3054 break;
Damien Miller34132e52000-01-14 15:45:46 +11003055 }
Damien Miller34132e52000-01-14 15:45:46 +11003056 freeaddrinfo(aitop);
3057 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003058 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003059 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003060 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003061 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003062 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003063 return sock;
3064}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003065
Damien Millerbd483e72000-04-30 10:00:53 +10003066/*
3067 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3068 * the remote channel number. We should do whatever we want, and respond
3069 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3070 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003071
Damien Miller8473dd82006-07-24 14:08:32 +10003072/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003073void
Damien Miller630d6f42002-01-22 23:17:30 +11003074x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003075{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003076 Channel *c = NULL;
3077 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003078 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003079
3080 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003081
3082 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003083
3084 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003085 remote_host = packet_get_string(NULL);
3086 } else {
3087 remote_host = xstrdup("unknown (remote did not supply name)");
3088 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003089 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003090
3091 /* Obtain a connection to the real X display. */
3092 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003093 if (sock != -1) {
3094 /* Allocate a channel for this connection. */
3095 c = channel_new("connected x11 socket",
3096 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3097 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003098 c->remote_id = remote_id;
3099 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003100 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003101 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003102 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003103 /* Send refusal to the remote host. */
3104 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003105 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003106 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003107 /* Send a confirmation to the remote host. */
3108 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003109 packet_put_int(remote_id);
3110 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003111 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003112 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003113}
3114
Damien Miller69b69aa2000-10-28 14:19:58 +11003115/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003116/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003117void
Damien Miller630d6f42002-01-22 23:17:30 +11003118deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003119{
3120 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003121
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003122 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003123 case SSH_SMSG_AGENT_OPEN:
3124 error("Warning: ssh server tried agent forwarding.");
3125 break;
3126 case SSH_SMSG_X11_OPEN:
3127 error("Warning: ssh server tried X11 forwarding.");
3128 break;
3129 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003130 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003131 break;
3132 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003133 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003134 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3135 packet_put_int(rchan);
3136 packet_send();
3137}
3138
Damien Miller5428f641999-11-25 11:54:57 +11003139/*
3140 * Requests forwarding of X11 connections, generates fake authentication
3141 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003142 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003143 */
Damien Miller4af51302000-04-16 11:18:38 +10003144void
Damien Miller17e7ed02005-06-17 12:54:33 +10003145x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003146 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003147{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003148 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003149 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003150 char *new_data;
3151 int screen_number;
3152 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003153 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003154
Damien Millerf92c0792005-07-06 09:45:26 +10003155 if (x11_saved_display == NULL)
3156 x11_saved_display = xstrdup(disp);
3157 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003158 error("x11_request_forwarding_with_spoofing: different "
3159 "$DISPLAY already forwarded");
3160 return;
3161 }
3162
Damien Miller17e7ed02005-06-17 12:54:33 +10003163 cp = disp;
3164 if (disp)
3165 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003166 if (cp)
3167 cp = strchr(cp, '.');
3168 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003169 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003170 else
3171 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003172
Damien Miller13390022005-07-06 09:44:19 +10003173 if (x11_saved_proto == NULL) {
3174 /* Save protocol name. */
3175 x11_saved_proto = xstrdup(proto);
3176 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003177 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003178 * of the same length.
3179 */
3180 x11_saved_data = xmalloc(data_len);
3181 x11_fake_data = xmalloc(data_len);
3182 for (i = 0; i < data_len; i++) {
3183 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3184 fatal("x11_request_forwarding: bad "
3185 "authentication data: %.100s", data);
3186 if (i % 4 == 0)
3187 rnd = arc4random();
3188 x11_saved_data[i] = value;
3189 x11_fake_data[i] = rnd & 0xff;
3190 rnd >>= 8;
3191 }
3192 x11_saved_data_len = data_len;
3193 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003194 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003195
Damien Miller95def091999-11-25 00:26:21 +11003196 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003197 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003198
Damien Miller95def091999-11-25 00:26:21 +11003199 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003200 if (compat20) {
3201 channel_request_start(client_session_id, "x11-req", 0);
3202 packet_put_char(0); /* XXX bool single connection */
3203 } else {
3204 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3205 }
3206 packet_put_cstring(proto);
3207 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003208 packet_put_int(screen_number);
3209 packet_send();
3210 packet_write_wait();
3211 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003212}
3213
Ben Lindstrome9c99912001-06-09 00:41:05 +00003214
3215/* -- agent forwarding */
3216
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003217/* Sends a message to the server to request authentication fd forwarding. */
3218
Damien Miller4af51302000-04-16 11:18:38 +10003219void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003220auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003221{
Damien Miller95def091999-11-25 00:26:21 +11003222 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3223 packet_send();
3224 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003225}