blob: b8c4e7e742a5176fb916f927497effa3d7815bb1 [file] [log] [blame]
Damien Millere7a1e5c2006-08-05 11:34:19 +10001/* $OpenBSD: channels.c,v 1.262 2006/07/26 13:57:17 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>
Damien Miller9aec9192006-08-05 10:57:45 +100048#ifdef HAVE_SYS_TIME_H
49# include <sys/time.h>
50#endif
Damien Millerefc04e72006-07-10 20:26:27 +100051
52#include <netinet/in.h>
53#include <arpa/inet.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110054
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100056#include <netdb.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Miller99bd21e2006-03-15 11:11:28 +110059#include <termios.h>
Damien Millere6b3b612006-07-24 14:01:23 +100060#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
62#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063#include "ssh1.h"
64#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "packet.h"
66#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "log.h"
68#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100072#include "key.h"
73#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110074#include "pathnames.h"
Darren Tucker46471c92003-07-03 13:55:19 +100075#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
Ben Lindstrome9c99912001-06-09 00:41:05 +000077/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Miller5428f641999-11-25 11:54:57 +110079/*
80 * Pointer to an array containing all allocated channels. The array is
81 * dynamically extended as needed.
82 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000083static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller5428f641999-11-25 11:54:57 +110085/*
86 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000087 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110088 */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100089static u_int channels_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090
Damien Miller5428f641999-11-25 11:54:57 +110091/*
92 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000093 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110094 */
Damien Miller5e953212001-01-30 09:14:00 +110095static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Ben Lindstrome9c99912001-06-09 00:41:05 +000098/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Data structure for storing which hosts are permitted for forward requests.
102 * The local sides of any remote forwards are stored in this array to prevent
103 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
104 * network (which might be behind a firewall).
105 */
Damien Miller95def091999-11-25 00:26:21 +1100106typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000107 char *host_to_connect; /* Connect to 'host'. */
108 u_short port_to_connect; /* Connect to 'port'. */
109 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110} ForwardPermission;
111
Damien Miller9b439df2006-07-24 14:04:00 +1000112/* List of all permitted host/port pairs to connect by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +0000114
Damien Miller9b439df2006-07-24 14:04:00 +1000115/* List of all permitted host/port pairs to connect by the admin. */
116static ForwardPermission permitted_adm_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
117
118/* Number of permitted host/port pairs in the array permitted by the user. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119static int num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +1000120
121/* Number of permitted host/port pair in the array permitted by the admin. */
122static int num_adm_permitted_opens = 0;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * If this is true, all opens are permitted. This is the case on the server
126 * on which we have to trust the client anyway, and the user could do
127 * anything after logging in anyway.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129static int all_opens_permitted = 0;
130
Ben Lindstrome9c99912001-06-09 00:41:05 +0000131
132/* -- X11 forwarding */
133
134/* Maximum number of fake X11 displays to try. */
135#define MAX_DISPLAYS 1000
136
Damien Miller13390022005-07-06 09:44:19 +1000137/* Saved X11 local (client) display. */
138static char *x11_saved_display = NULL;
139
Ben Lindstrome9c99912001-06-09 00:41:05 +0000140/* Saved X11 authentication protocol name. */
141static char *x11_saved_proto = NULL;
142
143/* Saved X11 authentication data. This is the real data. */
144static char *x11_saved_data = NULL;
145static u_int x11_saved_data_len = 0;
146
147/*
148 * Fake X11 authentication data. This is what the server will be sending us;
149 * we should replace any occurrences of this by the real data.
150 */
Damien Miller4ae97f12006-03-26 14:08:10 +1100151static u_char *x11_fake_data = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000152static u_int x11_fake_data_len;
153
154
155/* -- agent forwarding */
156
157#define NUM_SOCKS 10
158
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000159/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000160static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000161
Ben Lindstrome9c99912001-06-09 00:41:05 +0000162/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000163static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000164
Ben Lindstrome9c99912001-06-09 00:41:05 +0000165/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000166
167Channel *
Damien Millerd47c62a2005-12-13 19:33:57 +1100168channel_by_id(int id)
Damien Millerb38eff82000-04-01 11:09:21 +1000169{
170 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000171
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000172 if (id < 0 || (u_int)id >= channels_alloc) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100173 logit("channel_by_id: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000174 return NULL;
175 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000176 c = channels[id];
177 if (c == NULL) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100178 logit("channel_by_id: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000179 return NULL;
180 }
181 return c;
182}
183
Damien Miller5428f641999-11-25 11:54:57 +1100184/*
Damien Millerd47c62a2005-12-13 19:33:57 +1100185 * Returns the channel if it is allowed to receive protocol messages.
186 * Private channels, like listening sockets, may not receive messages.
187 */
188Channel *
189channel_lookup(int id)
190{
191 Channel *c;
192
193 if ((c = channel_by_id(id)) == NULL)
194 return (NULL);
195
Damien Millerd62f2ca2006-03-26 13:57:41 +1100196 switch (c->type) {
Damien Millerd47c62a2005-12-13 19:33:57 +1100197 case SSH_CHANNEL_X11_OPEN:
198 case SSH_CHANNEL_LARVAL:
199 case SSH_CHANNEL_CONNECTING:
200 case SSH_CHANNEL_DYNAMIC:
201 case SSH_CHANNEL_OPENING:
202 case SSH_CHANNEL_OPEN:
203 case SSH_CHANNEL_INPUT_DRAINING:
204 case SSH_CHANNEL_OUTPUT_DRAINING:
205 return (c);
Damien Millerd47c62a2005-12-13 19:33:57 +1100206 }
207 logit("Non-public channel %d, type %d.", id, c->type);
208 return (NULL);
209}
210
211/*
Damien Millere247cc42000-05-07 12:03:14 +1000212 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000213 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100214 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100216channel_register_fds(Channel *c, int rfd, int wfd, int efd,
217 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218{
Damien Miller95def091999-11-25 00:26:21 +1100219 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100220 channel_max_fd = MAX(channel_max_fd, rfd);
221 channel_max_fd = MAX(channel_max_fd, wfd);
222 channel_max_fd = MAX(channel_max_fd, efd);
223
Damien Miller5428f641999-11-25 11:54:57 +1100224 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000225
Damien Miller6f83b8e2000-05-02 09:23:45 +1000226 c->rfd = rfd;
227 c->wfd = wfd;
228 c->sock = (rfd == wfd) ? rfd : -1;
Damien Miller0e220db2004-06-15 10:34:08 +1000229 c->ctl_fd = -1; /* XXX: set elsewhere */
Damien Miller6f83b8e2000-05-02 09:23:45 +1000230 c->efd = efd;
231 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100232
Damien Miller79438cc2001-02-16 12:34:57 +1100233 /* XXX ugly hack: nonblock is only set by the server */
234 if (nonblock && isatty(c->rfd)) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000235 debug2("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100236 c->isatty = 1;
237 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000238 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100239 c->self, c->wfd);
240 }
241 } else {
242 c->isatty = 0;
243 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000244 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100245
Damien Miller69b69aa2000-10-28 14:19:58 +1100246 /* enable nonblocking mode */
247 if (nonblock) {
248 if (rfd != -1)
249 set_nonblock(rfd);
250 if (wfd != -1)
251 set_nonblock(wfd);
252 if (efd != -1)
253 set_nonblock(efd);
254 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000255}
256
257/*
258 * Allocate a new channel object and set its type and socket. This will cause
259 * remote_name to be freed.
260 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000261Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000262channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000263 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000264{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000265 int found;
266 u_int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +1000267 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Do initial allocation if this is the first call. */
270 if (channels_alloc == 0) {
271 channels_alloc = 10;
Damien Miller07d86be2006-03-26 14:19:21 +1100272 channels = xcalloc(channels_alloc, sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100273 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000274 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100275 }
276 /* Try to find a free slot where to put the new channel. */
277 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000278 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100279 /* Found a free slot. */
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000280 found = (int)i;
Damien Miller95def091999-11-25 00:26:21 +1100281 break;
282 }
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000283 if (found < 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100284 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100285 found = channels_alloc;
Damien Miller9403aa22002-06-26 19:14:43 +1000286 if (channels_alloc > 10000)
287 fatal("channel_new: internal error: channels_alloc %d "
288 "too big.", channels_alloc);
Damien Miller36812092006-03-26 14:22:47 +1100289 channels = xrealloc(channels, channels_alloc + 10,
290 sizeof(Channel *));
Damien Miller5efcecc2003-09-17 07:31:14 +1000291 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100292 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100293 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000294 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100295 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000296 /* Initialize and return new channel. */
Damien Miller07d86be2006-03-26 14:19:21 +1100297 c = channels[found] = xcalloc(1, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100298 buffer_init(&c->input);
299 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000300 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100301 c->ostate = CHAN_OUTPUT_OPEN;
302 c->istate = CHAN_INPUT_OPEN;
303 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100304 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100305 c->self = found;
306 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000307 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000308 c->local_window = window;
309 c->local_window_max = window;
310 c->local_consumed = 0;
311 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100312 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000313 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000314 c->remote_window = 0;
315 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000316 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100317 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000318 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100319 c->detach_close = 0;
Damien Miller67f0bc02002-02-05 12:23:08 +1100320 c->confirm = NULL;
Damien Miller0e220db2004-06-15 10:34:08 +1000321 c->confirm_ctx = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000322 c->input_filter = NULL;
Damien Miller077b2382005-12-31 16:22:32 +1100323 c->output_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100324 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000325 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000327
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000328static int
329channel_find_maxfd(void)
330{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000331 u_int i;
332 int max = 0;
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000333 Channel *c;
334
335 for (i = 0; i < channels_alloc; i++) {
336 c = channels[i];
337 if (c != NULL) {
338 max = MAX(max, c->rfd);
339 max = MAX(max, c->wfd);
340 max = MAX(max, c->efd);
341 }
342 }
343 return max;
344}
345
346int
347channel_close_fd(int *fdp)
348{
349 int ret = 0, fd = *fdp;
350
351 if (fd != -1) {
352 ret = close(fd);
353 *fdp = -1;
354 if (fd == channel_max_fd)
355 channel_max_fd = channel_find_maxfd();
356 }
357 return ret;
358}
359
Damien Miller6f83b8e2000-05-02 09:23:45 +1000360/* Close all channel fd/socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000361static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000362channel_close_fds(Channel *c)
363{
Damien Miller0e220db2004-06-15 10:34:08 +1000364 debug3("channel %d: close_fds r %d w %d e %d c %d",
365 c->self, c->rfd, c->wfd, c->efd, c->ctl_fd);
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000366
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000367 channel_close_fd(&c->sock);
Damien Miller0e220db2004-06-15 10:34:08 +1000368 channel_close_fd(&c->ctl_fd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000369 channel_close_fd(&c->rfd);
370 channel_close_fd(&c->wfd);
371 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000372}
373
374/* Free the channel and close its fd/socket. */
Damien Miller4af51302000-04-16 11:18:38 +1000375void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000376channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000378 char *s;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000379 u_int i, n;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000380
381 for (n = 0, i = 0; i < channels_alloc; i++)
382 if (channels[i])
383 n++;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000384 debug("channel %d: free: %s, nchannels %u", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000385 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000386
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000387 s = channel_open_message();
Damien Millerfbdeece2003-09-02 22:52:31 +1000388 debug3("channel %d: status: %s", c->self, s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000389 xfree(s);
390
Damien Miller6f83b8e2000-05-02 09:23:45 +1000391 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000392 shutdown(c->sock, SHUT_RDWR);
Damien Miller0e220db2004-06-15 10:34:08 +1000393 if (c->ctl_fd != -1)
394 shutdown(c->ctl_fd, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000395 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000396 buffer_free(&c->input);
397 buffer_free(&c->output);
398 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000399 if (c->remote_name) {
400 xfree(c->remote_name);
401 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100402 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000403 channels[c->self] = NULL;
404 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405}
406
Ben Lindstrome9c99912001-06-09 00:41:05 +0000407void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000408channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000409{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000410 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000411
Ben Lindstrom601e4362001-06-21 03:19:23 +0000412 for (i = 0; i < channels_alloc; i++)
413 if (channels[i] != NULL)
414 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000415}
416
417/*
418 * Closes the sockets/fds of all channels. This is used to close extra file
419 * descriptors after a fork.
420 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000421void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000422channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000423{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000424 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000425
426 for (i = 0; i < channels_alloc; i++)
427 if (channels[i] != NULL)
428 channel_close_fds(channels[i]);
429}
430
431/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000432 * Stop listening to channels.
433 */
Ben Lindstrom809744e2001-07-04 05:26:06 +0000434void
435channel_stop_listening(void)
436{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000437 u_int i;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000438 Channel *c;
439
440 for (i = 0; i < channels_alloc; i++) {
441 c = channels[i];
442 if (c != NULL) {
443 switch (c->type) {
444 case SSH_CHANNEL_AUTH_SOCKET:
445 case SSH_CHANNEL_PORT_LISTENER:
446 case SSH_CHANNEL_RPORT_LISTENER:
447 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000448 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000449 channel_free(c);
450 break;
451 }
452 }
453 }
454}
455
456/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000457 * Returns true if no channel has too much buffered data, and false if one or
458 * more channel is overfull.
459 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000460int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000461channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000462{
463 u_int i;
464 Channel *c;
465
466 for (i = 0; i < channels_alloc; i++) {
467 c = channels[i];
468 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000469#if 0
470 if (!compat20 &&
471 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100472 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000473 c->self, buffer_len(&c->input));
474 return 0;
475 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000476#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000477 if (buffer_len(&c->output) > packet_get_maxsize()) {
Darren Tucker502d3842003-06-28 12:38:01 +1000478 debug2("channel %d: big output buffer %u > %u",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000479 c->self, buffer_len(&c->output),
480 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000481 return 0;
482 }
483 }
484 }
485 return 1;
486}
487
488/* Returns true if any channel is still open. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000489int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000490channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000491{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000492 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000493 Channel *c;
494
495 for (i = 0; i < channels_alloc; i++) {
496 c = channels[i];
497 if (c == NULL)
498 continue;
499 switch (c->type) {
500 case SSH_CHANNEL_X11_LISTENER:
501 case SSH_CHANNEL_PORT_LISTENER:
502 case SSH_CHANNEL_RPORT_LISTENER:
503 case SSH_CHANNEL_CLOSED:
504 case SSH_CHANNEL_AUTH_SOCKET:
505 case SSH_CHANNEL_DYNAMIC:
506 case SSH_CHANNEL_CONNECTING:
507 case SSH_CHANNEL_ZOMBIE:
508 continue;
509 case SSH_CHANNEL_LARVAL:
510 if (!compat20)
511 fatal("cannot happen: SSH_CHANNEL_LARVAL");
512 continue;
513 case SSH_CHANNEL_OPENING:
514 case SSH_CHANNEL_OPEN:
515 case SSH_CHANNEL_X11_OPEN:
516 return 1;
517 case SSH_CHANNEL_INPUT_DRAINING:
518 case SSH_CHANNEL_OUTPUT_DRAINING:
519 if (!compat13)
520 fatal("cannot happen: OUT_DRAIN");
521 return 1;
522 default:
523 fatal("channel_still_open: bad channel type %d", c->type);
524 /* NOTREACHED */
525 }
526 }
527 return 0;
528}
529
530/* Returns the id of an open channel suitable for keepaliving */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000531int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000532channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000533{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000534 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000535 Channel *c;
536
537 for (i = 0; i < channels_alloc; i++) {
538 c = channels[i];
Damien Miller3bbd8782004-06-18 22:23:22 +1000539 if (c == NULL || c->remote_id < 0)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000540 continue;
541 switch (c->type) {
542 case SSH_CHANNEL_CLOSED:
543 case SSH_CHANNEL_DYNAMIC:
544 case SSH_CHANNEL_X11_LISTENER:
545 case SSH_CHANNEL_PORT_LISTENER:
546 case SSH_CHANNEL_RPORT_LISTENER:
547 case SSH_CHANNEL_OPENING:
548 case SSH_CHANNEL_CONNECTING:
549 case SSH_CHANNEL_ZOMBIE:
550 continue;
551 case SSH_CHANNEL_LARVAL:
552 case SSH_CHANNEL_AUTH_SOCKET:
553 case SSH_CHANNEL_OPEN:
554 case SSH_CHANNEL_X11_OPEN:
555 return i;
556 case SSH_CHANNEL_INPUT_DRAINING:
557 case SSH_CHANNEL_OUTPUT_DRAINING:
558 if (!compat13)
559 fatal("cannot happen: OUT_DRAIN");
560 return i;
561 default:
562 fatal("channel_find_open: bad channel type %d", c->type);
563 /* NOTREACHED */
564 }
565 }
566 return -1;
567}
568
569
570/*
571 * Returns a message describing the currently open forwarded connections,
572 * suitable for sending to the client. The message contains crlf pairs for
573 * newlines.
574 */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000575char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000576channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000577{
578 Buffer buffer;
579 Channel *c;
580 char buf[1024], *cp;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +1000581 u_int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000582
583 buffer_init(&buffer);
584 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
585 buffer_append(&buffer, buf, strlen(buf));
586 for (i = 0; i < channels_alloc; i++) {
587 c = channels[i];
588 if (c == NULL)
589 continue;
590 switch (c->type) {
591 case SSH_CHANNEL_X11_LISTENER:
592 case SSH_CHANNEL_PORT_LISTENER:
593 case SSH_CHANNEL_RPORT_LISTENER:
594 case SSH_CHANNEL_CLOSED:
595 case SSH_CHANNEL_AUTH_SOCKET:
596 case SSH_CHANNEL_ZOMBIE:
597 continue;
598 case SSH_CHANNEL_LARVAL:
599 case SSH_CHANNEL_OPENING:
600 case SSH_CHANNEL_CONNECTING:
601 case SSH_CHANNEL_DYNAMIC:
602 case SSH_CHANNEL_OPEN:
603 case SSH_CHANNEL_X11_OPEN:
604 case SSH_CHANNEL_INPUT_DRAINING:
605 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Miller0e220db2004-06-15 10:34:08 +1000606 snprintf(buf, sizeof buf,
607 " #%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 +0000608 c->self, c->remote_name,
609 c->type, c->remote_id,
610 c->istate, buffer_len(&c->input),
611 c->ostate, buffer_len(&c->output),
Damien Miller0e220db2004-06-15 10:34:08 +1000612 c->rfd, c->wfd, c->ctl_fd);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000613 buffer_append(&buffer, buf, strlen(buf));
614 continue;
615 default:
616 fatal("channel_open_message: bad channel type %d", c->type);
617 /* NOTREACHED */
618 }
619 }
620 buffer_append(&buffer, "\0", 1);
621 cp = xstrdup(buffer_ptr(&buffer));
622 buffer_free(&buffer);
623 return cp;
624}
625
626void
627channel_send_open(int id)
628{
629 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000630
Ben Lindstrome9c99912001-06-09 00:41:05 +0000631 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000632 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000633 return;
634 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000635 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000636 packet_start(SSH2_MSG_CHANNEL_OPEN);
637 packet_put_cstring(c->ctype);
638 packet_put_int(c->self);
639 packet_put_int(c->local_window);
640 packet_put_int(c->local_maxpacket);
641 packet_send();
642}
643
644void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000645channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000646{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000647 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000648
Ben Lindstrome9c99912001-06-09 00:41:05 +0000649 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000650 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000651 return;
652 }
Damien Miller0e220db2004-06-15 10:34:08 +1000653 debug2("channel %d: request %s confirm %d", id, service, wantconfirm);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000654 packet_start(SSH2_MSG_CHANNEL_REQUEST);
655 packet_put_int(c->remote_id);
656 packet_put_cstring(service);
657 packet_put_char(wantconfirm);
658}
Damien Miller4f7becb2006-03-26 14:10:14 +1100659
Ben Lindstrome9c99912001-06-09 00:41:05 +0000660void
Damien Miller0e220db2004-06-15 10:34:08 +1000661channel_register_confirm(int id, channel_callback_fn *fn, void *ctx)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000662{
663 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000664
Ben Lindstrome9c99912001-06-09 00:41:05 +0000665 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000666 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000667 return;
668 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100669 c->confirm = fn;
Damien Miller0e220db2004-06-15 10:34:08 +1000670 c->confirm_ctx = ctx;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000671}
Damien Miller4f7becb2006-03-26 14:10:14 +1100672
Ben Lindstrome9c99912001-06-09 00:41:05 +0000673void
Damien Miller39eda6e2005-11-05 14:52:50 +1100674channel_register_cleanup(int id, channel_callback_fn *fn, int do_close)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000675{
Damien Millerd47c62a2005-12-13 19:33:57 +1100676 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000677
Ben Lindstrome9c99912001-06-09 00:41:05 +0000678 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000679 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000680 return;
681 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000682 c->detach_user = fn;
Damien Miller39eda6e2005-11-05 14:52:50 +1100683 c->detach_close = do_close;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000684}
Damien Miller4f7becb2006-03-26 14:10:14 +1100685
Ben Lindstrome9c99912001-06-09 00:41:05 +0000686void
687channel_cancel_cleanup(int id)
688{
Damien Millerd47c62a2005-12-13 19:33:57 +1100689 Channel *c = channel_by_id(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000690
Ben Lindstrome9c99912001-06-09 00:41:05 +0000691 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000692 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000693 return;
694 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000695 c->detach_user = NULL;
Damien Miller39eda6e2005-11-05 14:52:50 +1100696 c->detach_close = 0;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000697}
Damien Miller4f7becb2006-03-26 14:10:14 +1100698
Ben Lindstrome9c99912001-06-09 00:41:05 +0000699void
Damien Miller077b2382005-12-31 16:22:32 +1100700channel_register_filter(int id, channel_infilter_fn *ifn,
701 channel_outfilter_fn *ofn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000702{
703 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000704
Ben Lindstrome9c99912001-06-09 00:41:05 +0000705 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000706 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000707 return;
708 }
Damien Miller077b2382005-12-31 16:22:32 +1100709 c->input_filter = ifn;
710 c->output_filter = ofn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000711}
712
713void
714channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100715 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000716{
717 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000718
Ben Lindstrome9c99912001-06-09 00:41:05 +0000719 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
720 fatal("channel_activate for non-larval channel %d.", id);
721 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
722 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100723 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000724 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
725 packet_put_int(c->remote_id);
726 packet_put_int(c->local_window);
727 packet_send();
728}
729
Damien Miller5428f641999-11-25 11:54:57 +1100730/*
Damien Millerb38eff82000-04-01 11:09:21 +1000731 * 'channel_pre*' are called just before select() to add any bits relevant to
732 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100733 */
Damien Millerb38eff82000-04-01 11:09:21 +1000734/*
735 * 'channel_post*': perform any appropriate operations for channels which
736 * have events pending.
737 */
Damien Millerd62f2ca2006-03-26 13:57:41 +1100738typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000739chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
740chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
741
Damien Miller8473dd82006-07-24 14:08:32 +1000742/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000743static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100744channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000745{
746 FD_SET(c->sock, readset);
747}
748
Damien Miller8473dd82006-07-24 14:08:32 +1000749/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000750static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100751channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000752{
753 debug3("channel %d: waiting for connection", c->self);
754 FD_SET(c->sock, writeset);
755}
756
Ben Lindstrombba81212001-06-25 05:01:22 +0000757static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100758channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000759{
760 if (buffer_len(&c->input) < packet_get_maxsize())
761 FD_SET(c->sock, readset);
762 if (buffer_len(&c->output) > 0)
763 FD_SET(c->sock, writeset);
764}
765
Ben Lindstrombba81212001-06-25 05:01:22 +0000766static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100767channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000768{
Damien Millerde6987c2002-01-22 23:20:40 +1100769 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000770
Damien Miller33b13562000-04-04 14:38:59 +1000771 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100772 limit > 0 &&
Damien Miller499a0d52006-04-23 12:06:03 +1000773 buffer_len(&c->input) < limit &&
774 buffer_check_alloc(&c->input, CHAN_RBUF))
Damien Miller33b13562000-04-04 14:38:59 +1000775 FD_SET(c->rfd, readset);
776 if (c->ostate == CHAN_OUTPUT_OPEN ||
777 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
778 if (buffer_len(&c->output) > 0) {
779 FD_SET(c->wfd, writeset);
780 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000781 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +1000782 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
783 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000784 else
785 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000786 }
787 }
788 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100789 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000790 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
791 buffer_len(&c->extended) > 0)
792 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000793 else if (!(c->flags & CHAN_EOF_SENT) &&
794 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000795 buffer_len(&c->extended) < c->remote_window)
796 FD_SET(c->efd, readset);
797 }
Damien Miller0e220db2004-06-15 10:34:08 +1000798 /* XXX: What about efd? races? */
Darren Tuckerfc959702004-07-17 16:12:08 +1000799 if (compat20 && c->ctl_fd != -1 &&
Damien Miller0e220db2004-06-15 10:34:08 +1000800 c->istate == CHAN_INPUT_OPEN && c->ostate == CHAN_OUTPUT_OPEN)
801 FD_SET(c->ctl_fd, readset);
Damien Miller33b13562000-04-04 14:38:59 +1000802}
803
Damien Miller8473dd82006-07-24 14:08:32 +1000804/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000805static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100806channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000807{
808 if (buffer_len(&c->input) == 0) {
809 packet_start(SSH_MSG_CHANNEL_CLOSE);
810 packet_put_int(c->remote_id);
811 packet_send();
812 c->type = SSH_CHANNEL_CLOSED;
Damien Millerfbdeece2003-09-02 22:52:31 +1000813 debug2("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000814 }
815}
816
Damien Miller8473dd82006-07-24 14:08:32 +1000817/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000818static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100819channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000820{
821 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000822 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000823 else
Damien Millerb38eff82000-04-01 11:09:21 +1000824 FD_SET(c->sock, writeset);
825}
826
827/*
828 * This is a special state for X11 authentication spoofing. An opened X11
829 * connection (when authentication spoofing is being done) remains in this
830 * state until the first packet has been completely read. The authentication
831 * data in that packet is then substituted by the real data if it matches the
832 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000833 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000834 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000835 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000837x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000838{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000839 u_char *ucp;
840 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000841
842 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000843 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000844 return 0;
845
846 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100847 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000848 if (ucp[0] == 0x42) { /* Byte order MSB first. */
849 proto_len = 256 * ucp[6] + ucp[7];
850 data_len = 256 * ucp[8] + ucp[9];
851 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
852 proto_len = ucp[6] + 256 * ucp[7];
853 data_len = ucp[8] + 256 * ucp[9];
854 } else {
Damien Millerfbdeece2003-09-02 22:52:31 +1000855 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100856 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000857 return -1;
858 }
859
860 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000861 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000862 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
863 return 0;
864
865 /* Check if authentication protocol matches. */
866 if (proto_len != strlen(x11_saved_proto) ||
867 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000868 debug2("X11 connection uses different authentication protocol.");
Damien Millerb38eff82000-04-01 11:09:21 +1000869 return -1;
870 }
871 /* Check if authentication data matches our fake data. */
872 if (data_len != x11_fake_data_len ||
873 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
874 x11_fake_data, x11_fake_data_len) != 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +1000875 debug2("X11 auth data does not match fake data.");
Damien Millerb38eff82000-04-01 11:09:21 +1000876 return -1;
877 }
878 /* Check fake data length */
879 if (x11_fake_data_len != x11_saved_data_len) {
880 error("X11 fake_data_len %d != saved_data_len %d",
881 x11_fake_data_len, x11_saved_data_len);
882 return -1;
883 }
884 /*
885 * Received authentication protocol and data match
886 * our fake data. Substitute the fake data with real
887 * data.
888 */
889 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
890 x11_saved_data, x11_saved_data_len);
891 return 1;
892}
893
Ben Lindstrombba81212001-06-25 05:01:22 +0000894static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100895channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000896{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000897 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000898
Damien Millerb38eff82000-04-01 11:09:21 +1000899 if (ret == 1) {
900 /* Start normal processing for the channel. */
901 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000902 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000903 } else if (ret == -1) {
904 /*
905 * We have received an X11 connection that has bad
906 * authentication information.
907 */
Damien Miller996acd22003-04-09 20:59:48 +1000908 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000909 buffer_clear(&c->input);
910 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000911 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000912 c->sock = -1;
913 c->type = SSH_CHANNEL_CLOSED;
914 packet_start(SSH_MSG_CHANNEL_CLOSE);
915 packet_put_int(c->remote_id);
916 packet_send();
917 }
918}
919
Ben Lindstrombba81212001-06-25 05:01:22 +0000920static void
Damien Millerd62f2ca2006-03-26 13:57:41 +1100921channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000922{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000923 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000924
925 /* c->force_drain = 1; */
926
Damien Millerb38eff82000-04-01 11:09:21 +1000927 if (ret == 1) {
928 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100929 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000930 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000931 logit("X11 connection rejected because of wrong authentication.");
Damien Millerfbdeece2003-09-02 22:52:31 +1000932 debug2("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100933 chan_read_failed(c);
934 buffer_clear(&c->input);
935 chan_ibuf_empty(c);
936 buffer_clear(&c->output);
937 /* for proto v1, the peer will send an IEOF */
938 if (compat20)
939 chan_write_failed(c);
940 else
941 c->type = SSH_CHANNEL_OPEN;
Damien Millerfbdeece2003-09-02 22:52:31 +1000942 debug2("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerb38eff82000-04-01 11:09:21 +1000943 }
944}
945
Ben Lindstromb3921512001-04-11 15:57:50 +0000946/* try to decode a socks4 header */
Damien Miller8473dd82006-07-24 14:08:32 +1000947/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +0000948static int
Damien Millerd62f2ca2006-03-26 13:57:41 +1100949channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000950{
Damien Millera10f5612002-09-12 09:49:15 +1000951 char *p, *host;
Damien Millereccb9de2005-06-17 12:59:34 +1000952 u_int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100953 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000954 struct {
955 u_int8_t version;
956 u_int8_t command;
957 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000958 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000959 } s4_req, s4_rsp;
960
Ben Lindstromb3921512001-04-11 15:57:50 +0000961 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000962
963 have = buffer_len(&c->input);
964 len = sizeof(s4_req);
965 if (have < len)
966 return 0;
967 p = buffer_ptr(&c->input);
968 for (found = 0, i = len; i < have; i++) {
969 if (p[i] == '\0') {
970 found = 1;
971 break;
972 }
973 if (i > 1024) {
974 /* the peer is probably sending garbage */
975 debug("channel %d: decode socks4: too long",
976 c->self);
977 return -1;
978 }
979 }
980 if (!found)
981 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000982 buffer_get(&c->input, (char *)&s4_req.version, 1);
983 buffer_get(&c->input, (char *)&s4_req.command, 1);
984 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000985 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000986 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000987 p = buffer_ptr(&c->input);
988 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000989 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000990 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000991 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000992 c->self, len, have);
993 strlcpy(username, p, sizeof(username));
994 buffer_consume(&c->input, len);
995 buffer_consume(&c->input, 1); /* trailing '\0' */
996
Ben Lindstromb3921512001-04-11 15:57:50 +0000997 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000998 strlcpy(c->path, host, sizeof(c->path));
999 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001000
Damien Millerfbdeece2003-09-02 22:52:31 +10001001 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001002 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001003
Ben Lindstromb3921512001-04-11 15:57:50 +00001004 if (s4_req.command != 1) {
1005 debug("channel %d: cannot handle: socks4 cn %d",
1006 c->self, s4_req.command);
1007 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001008 }
Ben Lindstromb3921512001-04-11 15:57:50 +00001009 s4_rsp.version = 0; /* vn: 0 for reply */
1010 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001011 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +00001012 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Damien Millera0fdce92006-03-26 14:28:50 +11001013 buffer_append(&c->output, &s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +00001014 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001015}
1016
Darren Tucker46471c92003-07-03 13:55:19 +10001017/* try to decode a socks5 header */
1018#define SSH_SOCKS5_AUTHDONE 0x1000
1019#define SSH_SOCKS5_NOAUTH 0x00
1020#define SSH_SOCKS5_IPV4 0x01
1021#define SSH_SOCKS5_DOMAIN 0x03
1022#define SSH_SOCKS5_IPV6 0x04
1023#define SSH_SOCKS5_CONNECT 0x01
1024#define SSH_SOCKS5_SUCCESS 0x00
1025
Damien Miller8473dd82006-07-24 14:08:32 +10001026/* ARGSUSED */
Darren Tucker46471c92003-07-03 13:55:19 +10001027static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001028channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
Darren Tucker46471c92003-07-03 13:55:19 +10001029{
1030 struct {
1031 u_int8_t version;
1032 u_int8_t command;
1033 u_int8_t reserved;
1034 u_int8_t atyp;
1035 } s5_req, s5_rsp;
1036 u_int16_t dest_port;
1037 u_char *p, dest_addr[255+1];
Damien Miller0f077072006-07-10 22:21:02 +10001038 u_int have, need, i, found, nmethods, addrlen, af;
Darren Tucker46471c92003-07-03 13:55:19 +10001039
1040 debug2("channel %d: decode socks5", c->self);
1041 p = buffer_ptr(&c->input);
1042 if (p[0] != 0x05)
1043 return -1;
1044 have = buffer_len(&c->input);
1045 if (!(c->flags & SSH_SOCKS5_AUTHDONE)) {
1046 /* format: ver | nmethods | methods */
Damien Millera8e06ce2003-11-21 23:48:55 +11001047 if (have < 2)
Darren Tucker46471c92003-07-03 13:55:19 +10001048 return 0;
1049 nmethods = p[1];
1050 if (have < nmethods + 2)
1051 return 0;
1052 /* look for method: "NO AUTHENTICATION REQUIRED" */
1053 for (found = 0, i = 2 ; i < nmethods + 2; i++) {
1054 if (p[i] == SSH_SOCKS5_NOAUTH ) {
1055 found = 1;
1056 break;
1057 }
1058 }
1059 if (!found) {
1060 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1061 c->self);
1062 return -1;
1063 }
1064 buffer_consume(&c->input, nmethods + 2);
1065 buffer_put_char(&c->output, 0x05); /* version */
1066 buffer_put_char(&c->output, SSH_SOCKS5_NOAUTH); /* method */
1067 FD_SET(c->sock, writeset);
1068 c->flags |= SSH_SOCKS5_AUTHDONE;
1069 debug2("channel %d: socks5 auth done", c->self);
1070 return 0; /* need more */
1071 }
1072 debug2("channel %d: socks5 post auth", c->self);
1073 if (have < sizeof(s5_req)+1)
1074 return 0; /* need more */
Damien Millere3b21a52006-03-26 14:29:06 +11001075 memcpy(&s5_req, p, sizeof(s5_req));
Darren Tucker46471c92003-07-03 13:55:19 +10001076 if (s5_req.version != 0x05 ||
1077 s5_req.command != SSH_SOCKS5_CONNECT ||
1078 s5_req.reserved != 0x00) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001079 debug2("channel %d: only socks5 connect supported", c->self);
Darren Tucker46471c92003-07-03 13:55:19 +10001080 return -1;
1081 }
Darren Tucker47eede72005-03-14 23:08:12 +11001082 switch (s5_req.atyp){
Darren Tucker46471c92003-07-03 13:55:19 +10001083 case SSH_SOCKS5_IPV4:
1084 addrlen = 4;
1085 af = AF_INET;
1086 break;
1087 case SSH_SOCKS5_DOMAIN:
1088 addrlen = p[sizeof(s5_req)];
1089 af = -1;
1090 break;
1091 case SSH_SOCKS5_IPV6:
1092 addrlen = 16;
1093 af = AF_INET6;
1094 break;
1095 default:
Damien Millerfbdeece2003-09-02 22:52:31 +10001096 debug2("channel %d: bad socks5 atyp %d", c->self, s5_req.atyp);
Darren Tucker46471c92003-07-03 13:55:19 +10001097 return -1;
1098 }
Damien Miller0f077072006-07-10 22:21:02 +10001099 need = sizeof(s5_req) + addrlen + 2;
1100 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1101 need++;
1102 if (have < need)
Darren Tucker46471c92003-07-03 13:55:19 +10001103 return 0;
1104 buffer_consume(&c->input, sizeof(s5_req));
1105 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
1106 buffer_consume(&c->input, 1); /* host string length */
1107 buffer_get(&c->input, (char *)&dest_addr, addrlen);
1108 buffer_get(&c->input, (char *)&dest_port, 2);
1109 dest_addr[addrlen] = '\0';
1110 if (s5_req.atyp == SSH_SOCKS5_DOMAIN)
Darren Tucker1f8311c2004-05-13 16:39:33 +10001111 strlcpy(c->path, (char *)dest_addr, sizeof(c->path));
Darren Tucker46471c92003-07-03 13:55:19 +10001112 else if (inet_ntop(af, dest_addr, c->path, sizeof(c->path)) == NULL)
1113 return -1;
1114 c->host_port = ntohs(dest_port);
Damien Miller787b2ec2003-11-21 23:56:47 +11001115
Damien Millerfbdeece2003-09-02 22:52:31 +10001116 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
Darren Tucker46471c92003-07-03 13:55:19 +10001117 c->self, c->path, c->host_port, s5_req.command);
1118
1119 s5_rsp.version = 0x05;
1120 s5_rsp.command = SSH_SOCKS5_SUCCESS;
1121 s5_rsp.reserved = 0; /* ignored */
1122 s5_rsp.atyp = SSH_SOCKS5_IPV4;
1123 ((struct in_addr *)&dest_addr)->s_addr = INADDR_ANY;
1124 dest_port = 0; /* ignored */
1125
Damien Millera0fdce92006-03-26 14:28:50 +11001126 buffer_append(&c->output, &s5_rsp, sizeof(s5_rsp));
1127 buffer_append(&c->output, &dest_addr, sizeof(struct in_addr));
1128 buffer_append(&c->output, &dest_port, sizeof(dest_port));
Darren Tucker46471c92003-07-03 13:55:19 +10001129 return 1;
1130}
1131
Ben Lindstromb3921512001-04-11 15:57:50 +00001132/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +00001133static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001134channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstromb3921512001-04-11 15:57:50 +00001135{
1136 u_char *p;
Damien Millereccb9de2005-06-17 12:59:34 +10001137 u_int have;
1138 int ret;
Ben Lindstromb3921512001-04-11 15:57:50 +00001139
1140 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +10001141 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +00001142 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +00001143 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +00001144 /* check if the fixed size part of the packet is in buffer. */
Darren Tucker46471c92003-07-03 13:55:19 +10001145 if (have < 3) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001146 /* need more */
1147 FD_SET(c->sock, readset);
1148 return;
1149 }
1150 /* try to guess the protocol */
1151 p = buffer_ptr(&c->input);
1152 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +00001153 case 0x04:
1154 ret = channel_decode_socks4(c, readset, writeset);
1155 break;
Darren Tucker46471c92003-07-03 13:55:19 +10001156 case 0x05:
1157 ret = channel_decode_socks5(c, readset, writeset);
1158 break;
Ben Lindstromb3921512001-04-11 15:57:50 +00001159 default:
1160 ret = -1;
1161 break;
1162 }
1163 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001164 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001165 } else if (ret == 0) {
1166 debug2("channel %d: pre_dynamic: need more", c->self);
1167 /* need more */
1168 FD_SET(c->sock, readset);
1169 } else {
1170 /* switch to the next state */
1171 c->type = SSH_CHANNEL_OPENING;
1172 port_open_helper(c, "direct-tcpip");
1173 }
1174}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001175
Damien Millerb38eff82000-04-01 11:09:21 +10001176/* This is our fake X11 server socket. */
Damien Miller8473dd82006-07-24 14:08:32 +10001177/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001178static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001179channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001180{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001181 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001182 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +11001183 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001184 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +11001185 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +10001186 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +10001187
1188 if (FD_ISSET(c->sock, readset)) {
1189 debug("X11 connection requested.");
1190 addrlen = sizeof(addr);
1191 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +11001192 if (c->single_connection) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001193 debug2("single_connection: closing X11 listener.");
Damien Millere7378562001-12-21 14:58:35 +11001194 channel_close_fd(&c->sock);
1195 chan_mark_dead(c);
1196 }
Damien Millerb38eff82000-04-01 11:09:21 +10001197 if (newsock < 0) {
1198 error("accept: %.100s", strerror(errno));
1199 return;
1200 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001201 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001202 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001203 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001204 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001205 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001206
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001207 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001208 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001209 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001210 if (compat20) {
1211 packet_start(SSH2_MSG_CHANNEL_OPEN);
1212 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001213 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001214 packet_put_int(nc->local_window_max);
1215 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001216 /* originator ipaddr and port */
1217 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001218 if (datafellows & SSH_BUG_X11FWD) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001219 debug2("ssh2 x11 bug compat mode");
Damien Miller30c3d422000-05-09 11:02:59 +10001220 } else {
1221 packet_put_int(remote_port);
1222 }
Damien Millerbd483e72000-04-30 10:00:53 +10001223 packet_send();
1224 } else {
1225 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001226 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001227 if (packet_get_protocol_flags() &
1228 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001229 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001230 packet_send();
1231 }
Damien Millerd83ff352001-01-30 09:19:34 +11001232 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001233 }
1234}
1235
Ben Lindstrombba81212001-06-25 05:01:22 +00001236static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001237port_open_helper(Channel *c, char *rtype)
1238{
1239 int direct;
1240 char buf[1024];
1241 char *remote_ipaddr = get_peer_ipaddr(c->sock);
Damien Miller677257f2005-06-17 12:55:03 +10001242 int remote_port = get_peer_port(c->sock);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001243
1244 direct = (strcmp(rtype, "direct-tcpip") == 0);
1245
1246 snprintf(buf, sizeof buf,
1247 "%s: listening port %d for %.100s port %d, "
1248 "connect from %.200s port %d",
1249 rtype, c->listening_port, c->path, c->host_port,
1250 remote_ipaddr, remote_port);
1251
1252 xfree(c->remote_name);
1253 c->remote_name = xstrdup(buf);
1254
1255 if (compat20) {
1256 packet_start(SSH2_MSG_CHANNEL_OPEN);
1257 packet_put_cstring(rtype);
1258 packet_put_int(c->self);
1259 packet_put_int(c->local_window_max);
1260 packet_put_int(c->local_maxpacket);
1261 if (direct) {
1262 /* target host, port */
1263 packet_put_cstring(c->path);
1264 packet_put_int(c->host_port);
1265 } else {
1266 /* listen address, port */
1267 packet_put_cstring(c->path);
1268 packet_put_int(c->listening_port);
1269 }
1270 /* originator host and port */
1271 packet_put_cstring(remote_ipaddr);
Damien Miller677257f2005-06-17 12:55:03 +10001272 packet_put_int((u_int)remote_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001273 packet_send();
1274 } else {
1275 packet_start(SSH_MSG_PORT_OPEN);
1276 packet_put_int(c->self);
1277 packet_put_cstring(c->path);
1278 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001279 if (packet_get_protocol_flags() &
1280 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001281 packet_put_cstring(c->remote_name);
1282 packet_send();
1283 }
1284 xfree(remote_ipaddr);
1285}
1286
Damien Miller5e7fd072005-11-05 14:53:39 +11001287static void
1288channel_set_reuseaddr(int fd)
1289{
1290 int on = 1;
1291
1292 /*
1293 * Set socket options.
1294 * Allow local port reuse in TIME_WAIT.
1295 */
1296 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
1297 error("setsockopt SO_REUSEADDR fd %d: %s", fd, strerror(errno));
1298}
1299
Damien Millerb38eff82000-04-01 11:09:21 +10001300/*
1301 * This socket is listening for connections to a forwarded TCP/IP port.
1302 */
Damien Miller8473dd82006-07-24 14:08:32 +10001303/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001304static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001305channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001306{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001307 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001308 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001309 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001310 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001311 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001312
Damien Millerb38eff82000-04-01 11:09:21 +10001313 if (FD_ISSET(c->sock, readset)) {
1314 debug("Connection to port %d forwarding "
1315 "to %.100s port %d requested.",
1316 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001317
Damien Miller4623a752001-10-10 15:03:58 +10001318 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1319 nextstate = SSH_CHANNEL_OPENING;
1320 rtype = "forwarded-tcpip";
1321 } else {
1322 if (c->host_port == 0) {
1323 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001324 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001325 } else {
1326 nextstate = SSH_CHANNEL_OPENING;
1327 rtype = "direct-tcpip";
1328 }
1329 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001330
Damien Millerb38eff82000-04-01 11:09:21 +10001331 addrlen = sizeof(addr);
1332 newsock = accept(c->sock, &addr, &addrlen);
1333 if (newsock < 0) {
1334 error("accept: %.100s", strerror(errno));
1335 return;
1336 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001337 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001338 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1339 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001340 nc->listening_port = c->listening_port;
1341 nc->host_port = c->host_port;
1342 strlcpy(nc->path, c->path, sizeof(nc->path));
1343
Damien Miller4623a752001-10-10 15:03:58 +10001344 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1345 /*
1346 * do not call the channel_post handler until
1347 * this flag has been reset by a pre-handler.
1348 * otherwise the FD_ISSET calls might overflow
1349 */
1350 nc->delayed = 1;
1351 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001352 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001353 }
Damien Millerb38eff82000-04-01 11:09:21 +10001354 }
1355}
1356
1357/*
1358 * This is the authentication agent socket listening for connections from
1359 * clients.
1360 */
Damien Miller8473dd82006-07-24 14:08:32 +10001361/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001362static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001363channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001364{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001365 Channel *nc;
1366 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001367 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001368 socklen_t addrlen;
1369
1370 if (FD_ISSET(c->sock, readset)) {
1371 addrlen = sizeof(addr);
1372 newsock = accept(c->sock, &addr, &addrlen);
1373 if (newsock < 0) {
1374 error("accept from auth socket: %.100s", strerror(errno));
1375 return;
1376 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001377 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001378 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1379 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001380 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001381 if (compat20) {
1382 packet_start(SSH2_MSG_CHANNEL_OPEN);
1383 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001384 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001385 packet_put_int(c->local_window_max);
1386 packet_put_int(c->local_maxpacket);
1387 } else {
1388 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001389 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001390 }
Damien Millerb38eff82000-04-01 11:09:21 +10001391 packet_send();
1392 }
1393}
1394
Damien Miller8473dd82006-07-24 14:08:32 +10001395/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001396static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001397channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001398{
Ben Lindstrom69128662001-05-08 20:07:39 +00001399 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001400 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001401
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001402 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001403 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001404 err = errno;
1405 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001406 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001407 if (err == 0) {
1408 debug("channel %d: connected", c->self);
1409 c->type = SSH_CHANNEL_OPEN;
1410 if (compat20) {
1411 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1412 packet_put_int(c->remote_id);
1413 packet_put_int(c->self);
1414 packet_put_int(c->local_window);
1415 packet_put_int(c->local_maxpacket);
1416 } else {
1417 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1418 packet_put_int(c->remote_id);
1419 packet_put_int(c->self);
1420 }
1421 } else {
1422 debug("channel %d: not connected: %s",
1423 c->self, strerror(err));
1424 if (compat20) {
1425 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1426 packet_put_int(c->remote_id);
1427 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1428 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1429 packet_put_cstring(strerror(err));
1430 packet_put_cstring("");
1431 }
1432 } else {
1433 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1434 packet_put_int(c->remote_id);
1435 }
1436 chan_mark_dead(c);
1437 }
1438 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001439 }
1440}
1441
Damien Miller8473dd82006-07-24 14:08:32 +10001442/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001443static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001444channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001445{
Darren Tucker11327cc2005-03-14 23:22:25 +11001446 char buf[CHAN_RBUF];
Damien Millerb38eff82000-04-01 11:09:21 +10001447 int len;
1448
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001449 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001450 FD_ISSET(c->rfd, readset)) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001451 errno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001452 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001453 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1454 return 1;
Darren Tucker9afe1152006-06-23 21:24:12 +10001455#ifndef PTY_ZEROREAD
Damien Millerb38eff82000-04-01 11:09:21 +10001456 if (len <= 0) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001457#else
Darren Tucker144e8d62006-06-25 08:25:25 +10001458 if ((!c->isatty && len <= 0) ||
1459 (c->isatty && (len < 0 || (len == 0 && errno != 0)))) {
Darren Tucker9afe1152006-06-23 21:24:12 +10001460#endif
Damien Millerfbdeece2003-09-02 22:52:31 +10001461 debug2("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001462 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001463 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001464 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001465 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001466 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001467 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001468 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001469 c->type = SSH_CHANNEL_INPUT_DRAINING;
Damien Millerfbdeece2003-09-02 22:52:31 +10001470 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001471 } else {
1472 chan_read_failed(c);
1473 }
1474 return -1;
1475 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001476 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001477 if (c->input_filter(c, buf, len) == -1) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001478 debug2("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001479 chan_read_failed(c);
1480 }
Damien Millerd27b9472005-12-13 19:29:02 +11001481 } else if (c->datagram) {
1482 buffer_put_string(&c->input, buf, len);
Damien Millerad833b32000-08-23 10:46:23 +10001483 } else {
1484 buffer_append(&c->input, buf, len);
1485 }
Damien Millerb38eff82000-04-01 11:09:21 +10001486 }
1487 return 1;
1488}
Damien Miller4f7becb2006-03-26 14:10:14 +11001489
Damien Miller8473dd82006-07-24 14:08:32 +10001490/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001491static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001492channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001493{
Ben Lindstrome229b252001-03-05 06:28:06 +00001494 struct termios tio;
Damien Miller077b2382005-12-31 16:22:32 +11001495 u_char *data = NULL, *buf;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001496 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001497 int len;
1498
1499 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001500 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001501 FD_ISSET(c->wfd, writeset) &&
1502 buffer_len(&c->output) > 0) {
Damien Miller077b2382005-12-31 16:22:32 +11001503 if (c->output_filter != NULL) {
1504 if ((buf = c->output_filter(c, &data, &dlen)) == NULL) {
1505 debug2("channel %d: filter stops", c->self);
Damien Millere204f6a2006-01-31 21:47:15 +11001506 if (c->type != SSH_CHANNEL_OPEN)
1507 chan_mark_dead(c);
1508 else
1509 chan_write_failed(c);
1510 return -1;
Damien Miller077b2382005-12-31 16:22:32 +11001511 }
1512 } else if (c->datagram) {
1513 buf = data = buffer_get_string(&c->output, &dlen);
1514 } else {
1515 buf = data = buffer_ptr(&c->output);
1516 dlen = buffer_len(&c->output);
1517 }
1518
Damien Millerd27b9472005-12-13 19:29:02 +11001519 if (c->datagram) {
Damien Millerd27b9472005-12-13 19:29:02 +11001520 /* ignore truncated writes, datagrams might get lost */
1521 c->local_consumed += dlen + 4;
Damien Miller077b2382005-12-31 16:22:32 +11001522 len = write(c->wfd, buf, dlen);
Damien Millerd27b9472005-12-13 19:29:02 +11001523 xfree(data);
1524 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1525 return 1;
1526 if (len <= 0) {
1527 if (c->type != SSH_CHANNEL_OPEN)
1528 chan_mark_dead(c);
1529 else
1530 chan_write_failed(c);
1531 return -1;
1532 }
1533 return 1;
1534 }
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001535#ifdef _AIX
Damien Millera8e06ce2003-11-21 23:48:55 +11001536 /* XXX: Later AIX versions can't push as much data to tty */
Darren Tucker240fdfa2003-11-22 14:10:02 +11001537 if (compat20 && c->wfd_isatty)
1538 dlen = MIN(dlen, 8*1024);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001539#endif
Damien Miller077b2382005-12-31 16:22:32 +11001540
1541 len = write(c->wfd, buf, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001542 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1543 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001544 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001545 if (c->type != SSH_CHANNEL_OPEN) {
Damien Millerfbdeece2003-09-02 22:52:31 +10001546 debug2("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001547 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001548 return -1;
1549 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001550 buffer_clear(&c->output);
Damien Millerfbdeece2003-09-02 22:52:31 +10001551 debug2("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001552 c->type = SSH_CHANNEL_INPUT_DRAINING;
1553 } else {
1554 chan_write_failed(c);
1555 }
1556 return -1;
1557 }
Damien Miller077b2382005-12-31 16:22:32 +11001558 if (compat20 && c->isatty && dlen >= 1 && buf[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001559 if (tcgetattr(c->wfd, &tio) == 0 &&
1560 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1561 /*
1562 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001563 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001564 * size of a SSH2_MSG_CHANNEL_DATA message
Damien Miller077b2382005-12-31 16:22:32 +11001565 * (4 byte channel id + buf)
Damien Miller79438cc2001-02-16 12:34:57 +11001566 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001567 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001568 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001569 }
1570 }
Damien Millerb38eff82000-04-01 11:09:21 +10001571 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001572 if (compat20 && len > 0) {
1573 c->local_consumed += len;
1574 }
1575 }
1576 return 1;
1577}
Damien Miller4f7becb2006-03-26 14:10:14 +11001578
Ben Lindstrombba81212001-06-25 05:01:22 +00001579static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001580channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller33b13562000-04-04 14:38:59 +10001581{
Darren Tucker11327cc2005-03-14 23:22:25 +11001582 char buf[CHAN_RBUF];
Damien Miller33b13562000-04-04 14:38:59 +10001583 int len;
1584
Damien Miller1383bd82000-04-06 12:32:37 +10001585/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001586 if (c->efd != -1) {
1587 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1588 FD_ISSET(c->efd, writeset) &&
1589 buffer_len(&c->extended) > 0) {
1590 len = write(c->efd, buffer_ptr(&c->extended),
1591 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001592 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001593 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001594 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1595 return 1;
1596 if (len <= 0) {
1597 debug2("channel %d: closing write-efd %d",
1598 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001599 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001600 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001601 buffer_consume(&c->extended, len);
1602 c->local_consumed += len;
1603 }
1604 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1605 FD_ISSET(c->efd, readset)) {
1606 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001607 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001608 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001609 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1610 return 1;
1611 if (len <= 0) {
1612 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001613 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001614 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001615 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001616 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001617 }
Damien Miller33b13562000-04-04 14:38:59 +10001618 }
1619 }
1620 return 1;
1621}
Damien Miller4f7becb2006-03-26 14:10:14 +11001622
Damien Miller8473dd82006-07-24 14:08:32 +10001623/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001624static int
Damien Millerd62f2ca2006-03-26 13:57:41 +11001625channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
Damien Miller0e220db2004-06-15 10:34:08 +10001626{
1627 char buf[16];
1628 int len;
1629
1630 /* Monitor control fd to detect if the slave client exits */
1631 if (c->ctl_fd != -1 && FD_ISSET(c->ctl_fd, readset)) {
1632 len = read(c->ctl_fd, buf, sizeof(buf));
1633 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1634 return 1;
1635 if (len <= 0) {
1636 debug2("channel %d: ctl read<=0", c->self);
1637 if (c->type != SSH_CHANNEL_OPEN) {
1638 debug2("channel %d: not open", c->self);
1639 chan_mark_dead(c);
1640 return -1;
1641 } else {
1642 chan_read_failed(c);
1643 chan_write_failed(c);
1644 }
1645 return -1;
1646 } else
1647 fatal("%s: unexpected data on ctl fd", __func__);
1648 }
1649 return 1;
1650}
Damien Miller4f7becb2006-03-26 14:10:14 +11001651
Damien Miller0e220db2004-06-15 10:34:08 +10001652static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001653channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001654{
Ben Lindstromb3921512001-04-11 15:57:50 +00001655 if (c->type == SSH_CHANNEL_OPEN &&
1656 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001657 c->local_window < c->local_window_max/2 &&
1658 c->local_consumed > 0) {
1659 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1660 packet_put_int(c->remote_id);
1661 packet_put_int(c->local_consumed);
1662 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001663 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001664 c->self, c->local_window,
1665 c->local_consumed);
1666 c->local_window += c->local_consumed;
1667 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001668 }
1669 return 1;
1670}
1671
Ben Lindstrombba81212001-06-25 05:01:22 +00001672static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001673channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001674{
Damien Miller4623a752001-10-10 15:03:58 +10001675 if (c->delayed)
1676 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001677 channel_handle_rfd(c, readset, writeset);
1678 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001679 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001680 return;
Damien Miller33b13562000-04-04 14:38:59 +10001681 channel_handle_efd(c, readset, writeset);
Damien Miller0e220db2004-06-15 10:34:08 +10001682 channel_handle_ctl(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001683 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001684}
1685
Damien Miller8473dd82006-07-24 14:08:32 +10001686/* ARGSUSED */
Ben Lindstrombba81212001-06-25 05:01:22 +00001687static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001688channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001689{
1690 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001691
Damien Millerb38eff82000-04-01 11:09:21 +10001692 /* Send buffered output data to the socket. */
1693 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1694 len = write(c->sock, buffer_ptr(&c->output),
1695 buffer_len(&c->output));
1696 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001697 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001698 else
1699 buffer_consume(&c->output, len);
1700 }
1701}
1702
Ben Lindstrombba81212001-06-25 05:01:22 +00001703static void
Damien Miller33b13562000-04-04 14:38:59 +10001704channel_handler_init_20(void)
1705{
Damien Millerde6987c2002-01-22 23:20:40 +11001706 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001707 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001708 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001709 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001710 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001711 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001712 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001713 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001714
Damien Millerde6987c2002-01-22 23:20:40 +11001715 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001716 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001717 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001718 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001719 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001720 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001721 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001722}
1723
Ben Lindstrombba81212001-06-25 05:01:22 +00001724static void
Damien Millerb38eff82000-04-01 11:09:21 +10001725channel_handler_init_13(void)
1726{
1727 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1728 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1729 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1730 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1731 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1732 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1733 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001734 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001735 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001736
Damien Millerde6987c2002-01-22 23:20:40 +11001737 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001738 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1739 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1740 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1741 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001742 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001743 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001744}
1745
Ben Lindstrombba81212001-06-25 05:01:22 +00001746static void
Damien Millerb38eff82000-04-01 11:09:21 +10001747channel_handler_init_15(void)
1748{
Damien Millerde6987c2002-01-22 23:20:40 +11001749 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001750 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001751 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1752 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1753 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001754 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001755 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001756
1757 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1758 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1759 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001760 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001761 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001762 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001763}
1764
Ben Lindstrombba81212001-06-25 05:01:22 +00001765static void
Damien Millerb38eff82000-04-01 11:09:21 +10001766channel_handler_init(void)
1767{
1768 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001769
Damien Miller9f0f5c62001-12-21 14:45:46 +11001770 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001771 channel_pre[i] = NULL;
1772 channel_post[i] = NULL;
1773 }
Damien Miller33b13562000-04-04 14:38:59 +10001774 if (compat20)
1775 channel_handler_init_20();
1776 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001777 channel_handler_init_13();
1778 else
1779 channel_handler_init_15();
1780}
1781
Damien Miller3ec27592001-10-12 11:35:04 +10001782/* gc dead channels */
1783static void
1784channel_garbage_collect(Channel *c)
1785{
1786 if (c == NULL)
1787 return;
1788 if (c->detach_user != NULL) {
Damien Miller39eda6e2005-11-05 14:52:50 +11001789 if (!chan_is_dead(c, c->detach_close))
Damien Miller3ec27592001-10-12 11:35:04 +10001790 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001791 debug2("channel %d: gc: notify user", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001792 c->detach_user(c->self, NULL);
1793 /* if we still have a callback */
1794 if (c->detach_user != NULL)
1795 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001796 debug2("channel %d: gc: user detached", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001797 }
1798 if (!chan_is_dead(c, 1))
1799 return;
Damien Millerfbdeece2003-09-02 22:52:31 +10001800 debug2("channel %d: garbage collecting", c->self);
Damien Miller3ec27592001-10-12 11:35:04 +10001801 channel_free(c);
1802}
1803
Ben Lindstrombba81212001-06-25 05:01:22 +00001804static void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001805channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001806{
1807 static int did_init = 0;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001808 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001809 Channel *c;
1810
1811 if (!did_init) {
1812 channel_handler_init();
1813 did_init = 1;
1814 }
1815 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001816 c = channels[i];
1817 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001818 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001819 if (ftab[c->type] != NULL)
1820 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001821 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001822 }
1823}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001824
Ben Lindstrome9c99912001-06-09 00:41:05 +00001825/*
1826 * Allocate/update select bitmasks and add any bits relevant to channels in
1827 * select bitmasks.
1828 */
Damien Miller4af51302000-04-16 11:18:38 +10001829void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001830channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001831 u_int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001832{
Damien Miller36812092006-03-26 14:22:47 +11001833 u_int n, sz, nfdset;
Damien Miller5e953212001-01-30 09:14:00 +11001834
1835 n = MAX(*maxfdp, channel_max_fd);
1836
Damien Miller36812092006-03-26 14:22:47 +11001837 nfdset = howmany(n+1, NFDBITS);
1838 /* Explicitly test here, because xrealloc isn't always called */
1839 if (nfdset && SIZE_T_MAX / nfdset < sizeof(fd_mask))
1840 fatal("channel_prepare_select: max_fd (%d) is too large", n);
1841 sz = nfdset * sizeof(fd_mask);
1842
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001843 /* perhaps check sz < nalloc/2 and shrink? */
1844 if (*readsetp == NULL || sz > *nallocp) {
Damien Miller36812092006-03-26 14:22:47 +11001845 *readsetp = xrealloc(*readsetp, nfdset, sizeof(fd_mask));
1846 *writesetp = xrealloc(*writesetp, nfdset, sizeof(fd_mask));
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001847 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001848 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001849 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001850 memset(*readsetp, 0, sz);
1851 memset(*writesetp, 0, sz);
1852
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001853 if (!rekeying)
1854 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001855}
1856
Ben Lindstrome9c99912001-06-09 00:41:05 +00001857/*
1858 * After select, perform any appropriate operations for channels which have
1859 * events pending.
1860 */
Damien Miller4af51302000-04-16 11:18:38 +10001861void
Damien Millerd62f2ca2006-03-26 13:57:41 +11001862channel_after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863{
Damien Millerb38eff82000-04-01 11:09:21 +10001864 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865}
1866
Ben Lindstrome9c99912001-06-09 00:41:05 +00001867
Damien Miller5e953212001-01-30 09:14:00 +11001868/* If there is data to send to the connection, enqueue some of it now. */
Damien Miller4af51302000-04-16 11:18:38 +10001869void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001870channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871{
Damien Millerb38eff82000-04-01 11:09:21 +10001872 Channel *c;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001873 u_int i, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001874
Damien Miller95def091999-11-25 00:26:21 +11001875 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001876 c = channels[i];
1877 if (c == NULL)
1878 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001879
Ben Lindstrome9c99912001-06-09 00:41:05 +00001880 /*
1881 * We are only interested in channels that can have buffered
1882 * incoming data.
1883 */
Damien Miller34132e52000-01-14 15:45:46 +11001884 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001885 if (c->type != SSH_CHANNEL_OPEN &&
1886 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001887 continue;
1888 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001889 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001890 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001891 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001892 if (compat20 &&
1893 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001894 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001895 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001896 continue;
1897 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001898
Damien Miller95def091999-11-25 00:26:21 +11001899 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001900 if ((c->istate == CHAN_INPUT_OPEN ||
1901 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1902 (len = buffer_len(&c->input)) > 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001903 if (c->datagram) {
1904 if (len > 0) {
1905 u_char *data;
1906 u_int dlen;
1907
1908 data = buffer_get_string(&c->input,
1909 &dlen);
1910 packet_start(SSH2_MSG_CHANNEL_DATA);
1911 packet_put_int(c->remote_id);
1912 packet_put_string(data, dlen);
1913 packet_send();
1914 c->remote_window -= dlen + 4;
1915 xfree(data);
1916 }
1917 continue;
1918 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00001919 /*
1920 * Send some data for the other side over the secure
1921 * connection.
1922 */
Damien Miller33b13562000-04-04 14:38:59 +10001923 if (compat20) {
1924 if (len > c->remote_window)
1925 len = c->remote_window;
1926 if (len > c->remote_maxpacket)
1927 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001928 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001929 if (packet_is_interactive()) {
1930 if (len > 1024)
1931 len = 512;
1932 } else {
1933 /* Keep the packets at reasonable size. */
1934 if (len > packet_get_maxsize()/2)
1935 len = packet_get_maxsize()/2;
1936 }
Damien Miller95def091999-11-25 00:26:21 +11001937 }
Damien Millerb38eff82000-04-01 11:09:21 +10001938 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001939 packet_start(compat20 ?
1940 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001941 packet_put_int(c->remote_id);
1942 packet_put_string(buffer_ptr(&c->input), len);
1943 packet_send();
1944 buffer_consume(&c->input, len);
1945 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001946 }
1947 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001948 if (compat13)
1949 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001950 /*
1951 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001952 * tell peer, that we will not send more data: send IEOF.
1953 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001954 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001955 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Damien Miller0dc1bef2005-07-17 17:22:45 +10001956 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1957 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001958 else
1959 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001960 }
Damien Miller33b13562000-04-04 14:38:59 +10001961 /* Send extended data, i.e. stderr */
1962 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001963 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001964 c->remote_window > 0 &&
1965 (len = buffer_len(&c->extended)) > 0 &&
1966 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001967 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001968 c->self, c->remote_window, buffer_len(&c->extended),
1969 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001970 if (len > c->remote_window)
1971 len = c->remote_window;
1972 if (len > c->remote_maxpacket)
1973 len = c->remote_maxpacket;
1974 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1975 packet_put_int(c->remote_id);
1976 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1977 packet_put_string(buffer_ptr(&c->extended), len);
1978 packet_send();
1979 buffer_consume(&c->extended, len);
1980 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001981 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001982 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001983 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001984}
1985
Ben Lindstrome9c99912001-06-09 00:41:05 +00001986
1987/* -- protocol input */
Damien Millerd79b4242006-03-31 23:11:44 +11001988
1989/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10001990void
Damien Miller630d6f42002-01-22 23:17:30 +11001991channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001992{
Damien Miller34132e52000-01-14 15:45:46 +11001993 int id;
Damien Miller95def091999-11-25 00:26:21 +11001994 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001995 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001996 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001997
Damien Miller95def091999-11-25 00:26:21 +11001998 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001999 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10002000 c = channel_lookup(id);
2001 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11002002 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002003
Damien Miller95def091999-11-25 00:26:21 +11002004 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10002005 if (c->type != SSH_CHANNEL_OPEN &&
2006 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11002007 return;
2008
Damien Miller95def091999-11-25 00:26:21 +11002009 /* Get the data. */
2010 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10002011
Damien Millera04ad492004-01-21 11:02:09 +11002012 /*
2013 * Ignore data for protocol > 1.3 if output end is no longer open.
2014 * For protocol 2 the sending side is reducing its window as it sends
2015 * data, so we must 'fake' consumption of the data in order to ensure
2016 * that window updates are sent back. Otherwise the connection might
2017 * deadlock.
2018 */
2019 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN) {
2020 if (compat20) {
2021 c->local_window -= data_len;
2022 c->local_consumed += data_len;
2023 }
2024 xfree(data);
2025 return;
2026 }
2027
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002028 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10002029 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10002030 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10002031 c->self, data_len, c->local_maxpacket);
2032 }
2033 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002034 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002035 c->self, data_len, c->local_window);
2036 xfree(data);
2037 return;
2038 }
2039 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10002040 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002041 packet_check_eom();
Damien Millerd27b9472005-12-13 19:29:02 +11002042 if (c->datagram)
2043 buffer_put_string(&c->output, data, data_len);
2044 else
2045 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11002046 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002047}
Ben Lindstrome9c99912001-06-09 00:41:05 +00002048
Damien Millerd79b4242006-03-31 23:11:44 +11002049/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002050void
Damien Miller630d6f42002-01-22 23:17:30 +11002051channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002052{
2053 int id;
Damien Miller33b13562000-04-04 14:38:59 +10002054 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00002055 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10002056 Channel *c;
2057
2058 /* Get the channel number and verify it. */
2059 id = packet_get_int();
2060 c = channel_lookup(id);
2061
2062 if (c == NULL)
2063 packet_disconnect("Received extended_data for bad channel %d.", id);
2064 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10002065 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10002066 return;
2067 }
Ben Lindstromcf159442002-03-26 03:26:24 +00002068 if (c->flags & CHAN_EOF_RCVD) {
2069 if (datafellows & SSH_BUG_EXTEOF)
2070 debug("channel %d: accepting ext data after eof", id);
2071 else
2072 packet_disconnect("Received extended_data after EOF "
2073 "on channel %d.", id);
2074 }
Damien Miller33b13562000-04-04 14:38:59 +10002075 tcode = packet_get_int();
2076 if (c->efd == -1 ||
2077 c->extended_usage != CHAN_EXTENDED_WRITE ||
2078 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10002079 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10002080 return;
2081 }
2082 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002083 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10002084 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10002085 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10002086 c->self, data_len, c->local_window);
2087 xfree(data);
2088 return;
2089 }
Damien Millerd3444942000-09-30 14:20:03 +11002090 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10002091 c->local_window -= data_len;
2092 buffer_append(&c->extended, data, data_len);
2093 xfree(data);
2094}
2095
Damien Millerd79b4242006-03-31 23:11:44 +11002096/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002097void
Damien Miller630d6f42002-01-22 23:17:30 +11002098channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002099{
2100 int id;
2101 Channel *c;
2102
Damien Millerb38eff82000-04-01 11:09:21 +10002103 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002104 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002105 c = channel_lookup(id);
2106 if (c == NULL)
2107 packet_disconnect("Received ieof for nonexistent channel %d.", id);
2108 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002109
2110 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11002111 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002112 debug("channel %d: FORCE input drain", c->self);
2113 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11002114 if (buffer_len(&c->input) == 0)
2115 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00002116 }
2117
Damien Millerb38eff82000-04-01 11:09:21 +10002118}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002119
Damien Millerd79b4242006-03-31 23:11:44 +11002120/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002121void
Damien Miller630d6f42002-01-22 23:17:30 +11002122channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002123{
Damien Millerb38eff82000-04-01 11:09:21 +10002124 int id;
2125 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002126
Damien Millerb38eff82000-04-01 11:09:21 +10002127 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002128 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002129 c = channel_lookup(id);
2130 if (c == NULL)
2131 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11002132
2133 /*
2134 * Send a confirmation that we have closed the channel and no more
2135 * data is coming for it.
2136 */
Damien Miller95def091999-11-25 00:26:21 +11002137 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10002138 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11002139 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002140
Damien Miller5428f641999-11-25 11:54:57 +11002141 /*
2142 * If the channel is in closed state, we have sent a close request,
2143 * and the other side will eventually respond with a confirmation.
2144 * Thus, we cannot free the channel here, because then there would be
2145 * no-one to receive the confirmation. The channel gets freed when
2146 * the confirmation arrives.
2147 */
Damien Millerb38eff82000-04-01 11:09:21 +10002148 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11002149 /*
2150 * Not a closed channel - mark it as draining, which will
2151 * cause it to be freed later.
2152 */
Damien Miller76765c02002-01-22 23:21:15 +11002153 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10002154 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11002155 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002156}
2157
Damien Millerb38eff82000-04-01 11:09:21 +10002158/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Millerd79b4242006-03-31 23:11:44 +11002159/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002160void
Damien Miller630d6f42002-01-22 23:17:30 +11002161channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002162{
Damien Millerb38eff82000-04-01 11:09:21 +10002163 int id = packet_get_int();
2164 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11002165
Damien Miller48b03fc2002-01-22 23:11:40 +11002166 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002167 if (c == NULL)
2168 packet_disconnect("Received oclose for nonexistent channel %d.", id);
2169 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002170}
2171
Damien Millerd79b4242006-03-31 23:11:44 +11002172/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002173void
Damien Miller630d6f42002-01-22 23:17:30 +11002174channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10002175{
2176 int id = packet_get_int();
2177 Channel *c = channel_lookup(id);
2178
Damien Miller48b03fc2002-01-22 23:11:40 +11002179 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10002180 if (c == NULL)
2181 packet_disconnect("Received close confirmation for "
2182 "out-of-range channel %d.", id);
2183 if (c->type != SSH_CHANNEL_CLOSED)
2184 packet_disconnect("Received close confirmation for "
2185 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002186 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10002187}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002188
Damien Millerd79b4242006-03-31 23:11:44 +11002189/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002190void
Damien Miller630d6f42002-01-22 23:17:30 +11002191channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002192{
Damien Millerb38eff82000-04-01 11:09:21 +10002193 int id, remote_id;
2194 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002195
Damien Millerb38eff82000-04-01 11:09:21 +10002196 id = packet_get_int();
2197 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002198
Damien Millerb38eff82000-04-01 11:09:21 +10002199 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2200 packet_disconnect("Received open confirmation for "
2201 "non-opening channel %d.", id);
2202 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11002203 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10002204 c->remote_id = remote_id;
2205 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002206
2207 if (compat20) {
2208 c->remote_window = packet_get_int();
2209 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11002210 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11002211 debug2("callback start");
Damien Miller0e220db2004-06-15 10:34:08 +10002212 c->confirm(c->self, c->confirm_ctx);
Damien Millerd3444942000-09-30 14:20:03 +11002213 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10002214 }
Damien Millerfbdeece2003-09-02 22:52:31 +10002215 debug2("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10002216 c->remote_window, c->remote_maxpacket);
2217 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002218 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002219}
2220
Ben Lindstrombba81212001-06-25 05:01:22 +00002221static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00002222reason2txt(int reason)
2223{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002224 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00002225 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
2226 return "administratively prohibited";
2227 case SSH2_OPEN_CONNECT_FAILED:
2228 return "connect failed";
2229 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
2230 return "unknown channel type";
2231 case SSH2_OPEN_RESOURCE_SHORTAGE:
2232 return "resource shortage";
2233 }
Ben Lindstrome2595442001-06-05 20:01:39 +00002234 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00002235}
2236
Damien Millerd79b4242006-03-31 23:11:44 +11002237/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002238void
Damien Miller630d6f42002-01-22 23:17:30 +11002239channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240{
Kevin Steves12057502001-02-05 14:54:34 +00002241 int id, reason;
2242 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10002243 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002244
Damien Millerb38eff82000-04-01 11:09:21 +10002245 id = packet_get_int();
2246 c = channel_lookup(id);
2247
2248 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
2249 packet_disconnect("Received open failure for "
2250 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002251 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00002252 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00002253 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00002254 msg = packet_get_string(NULL);
2255 lang = packet_get_string(NULL);
2256 }
Damien Miller996acd22003-04-09 20:59:48 +10002257 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00002258 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00002259 if (msg != NULL)
2260 xfree(msg);
2261 if (lang != NULL)
2262 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10002263 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002264 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11002265 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002266 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267}
2268
Damien Millerd79b4242006-03-31 23:11:44 +11002269/* ARGSUSED */
Damien Miller33b13562000-04-04 14:38:59 +10002270void
Damien Miller630d6f42002-01-22 23:17:30 +11002271channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10002272{
2273 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002274 int id;
2275 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10002276
2277 if (!compat20)
2278 return;
2279
2280 /* Get the channel number and verify it. */
2281 id = packet_get_int();
2282 c = channel_lookup(id);
2283
Damien Millerd47c62a2005-12-13 19:33:57 +11002284 if (c == NULL) {
2285 logit("Received window adjust for non-open channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10002286 return;
2287 }
2288 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002289 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00002290 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10002291 c->remote_window += adjust;
2292}
2293
Damien Millerd79b4242006-03-31 23:11:44 +11002294/* ARGSUSED */
Damien Miller4af51302000-04-16 11:18:38 +10002295void
Damien Miller630d6f42002-01-22 23:17:30 +11002296channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002297{
Ben Lindstrome9c99912001-06-09 00:41:05 +00002298 Channel *c = NULL;
2299 u_short host_port;
2300 char *host, *originator_string;
2301 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002302
Ben Lindstrome9c99912001-06-09 00:41:05 +00002303 remote_id = packet_get_int();
2304 host = packet_get_string(NULL);
2305 host_port = packet_get_int();
2306
2307 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
2308 originator_string = packet_get_string(NULL);
2309 } else {
2310 originator_string = xstrdup("unknown (remote did not supply name)");
2311 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002312 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002313 sock = channel_connect_to(host, host_port);
2314 if (sock != -1) {
2315 c = channel_new("connected socket",
2316 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
2317 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002318 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002319 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002320 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00002321 if (c == NULL) {
2322 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2323 packet_put_int(remote_id);
2324 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002325 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002326 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002327}
2328
2329
Ben Lindstrome9c99912001-06-09 00:41:05 +00002330/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002331
Ben Lindstrom908afed2001-10-03 17:34:59 +00002332void
2333channel_set_af(int af)
2334{
2335 IPv4or6 = af;
2336}
2337
Damien Millerb16461c2002-01-22 23:29:22 +11002338static int
2339channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2340 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002341{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002342 Channel *c;
Damien Miller5e7fd072005-11-05 14:53:39 +11002343 int sock, r, success = 0, wildcard = 0, is_client;
Damien Miller34132e52000-01-14 15:45:46 +11002344 struct addrinfo hints, *ai, *aitop;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002345 const char *host, *addr;
Damien Millerb16461c2002-01-22 23:29:22 +11002346 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002347
Damien Millerb16461c2002-01-22 23:29:22 +11002348 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2349 listen_addr : host_to_connect;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002350 is_client = (type == SSH_CHANNEL_PORT_LISTENER);
Kevin Steves12057502001-02-05 14:54:34 +00002351
Damien Millerb16461c2002-01-22 23:29:22 +11002352 if (host == NULL) {
2353 error("No forward host name.");
Damien Millera7270302005-07-06 09:36:05 +10002354 return 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002355 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002356 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002357 error("Forward host name too long.");
Damien Millera7270302005-07-06 09:36:05 +10002358 return 0;
Kevin Steves12057502001-02-05 14:54:34 +00002359 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002360
Damien Miller5428f641999-11-25 11:54:57 +11002361 /*
Damien Millerf91ee4c2005-03-01 21:24:33 +11002362 * Determine whether or not a port forward listens to loopback,
Darren Tucker47eede72005-03-14 23:08:12 +11002363 * specified address or wildcard. On the client, a specified bind
2364 * address will always override gateway_ports. On the server, a
2365 * gateway_ports of 1 (``yes'') will override the client's
2366 * specification and force a wildcard bind, whereas a value of 2
2367 * (``clientspecified'') will bind to whatever address the client
Damien Millerf91ee4c2005-03-01 21:24:33 +11002368 * asked for.
2369 *
2370 * Special-case listen_addrs are:
2371 *
2372 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2373 * "" (empty string), "*" -> wildcard v4/v6
2374 * "localhost" -> loopback v4/v6
2375 */
2376 addr = NULL;
2377 if (listen_addr == NULL) {
2378 /* No address specified: default to gateway_ports setting */
2379 if (gateway_ports)
2380 wildcard = 1;
2381 } else if (gateway_ports || is_client) {
2382 if (((datafellows & SSH_OLD_FORWARD_ADDR) &&
2383 strcmp(listen_addr, "0.0.0.0") == 0) ||
2384 *listen_addr == '\0' || strcmp(listen_addr, "*") == 0 ||
2385 (!is_client && gateway_ports == 1))
2386 wildcard = 1;
2387 else if (strcmp(listen_addr, "localhost") != 0)
2388 addr = listen_addr;
2389 }
2390
2391 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2392 type, wildcard, (addr == NULL) ? "NULL" : addr);
2393
2394 /*
Damien Miller34132e52000-01-14 15:45:46 +11002395 * getaddrinfo returns a loopback address if the hostname is
2396 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002397 */
Damien Miller34132e52000-01-14 15:45:46 +11002398 memset(&hints, 0, sizeof(hints));
2399 hints.ai_family = IPv4or6;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002400 hints.ai_flags = wildcard ? AI_PASSIVE : 0;
Damien Miller34132e52000-01-14 15:45:46 +11002401 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002402 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002403 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) {
2404 if (addr == NULL) {
2405 /* This really shouldn't happen */
2406 packet_disconnect("getaddrinfo: fatal error: %s",
2407 gai_strerror(r));
2408 } else {
Damien Millera7270302005-07-06 09:36:05 +10002409 error("channel_setup_fwd_listener: "
Damien Millerf91ee4c2005-03-01 21:24:33 +11002410 "getaddrinfo(%.64s): %s", addr, gai_strerror(r));
2411 }
Damien Millera7270302005-07-06 09:36:05 +10002412 return 0;
Damien Millerf91ee4c2005-03-01 21:24:33 +11002413 }
Damien Miller5428f641999-11-25 11:54:57 +11002414
Damien Miller34132e52000-01-14 15:45:46 +11002415 for (ai = aitop; ai; ai = ai->ai_next) {
2416 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2417 continue;
2418 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2419 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002420 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002421 continue;
2422 }
2423 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002424 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002425 if (sock < 0) {
2426 /* this is no error since kernel may not support ipv6 */
2427 verbose("socket: %.100s", strerror(errno));
2428 continue;
2429 }
Damien Miller5e7fd072005-11-05 14:53:39 +11002430
2431 channel_set_reuseaddr(sock);
Damien Millere1383ce2002-09-19 11:49:37 +10002432
Damien Miller34132e52000-01-14 15:45:46 +11002433 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002434
Damien Miller34132e52000-01-14 15:45:46 +11002435 /* Bind the socket to the address. */
2436 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2437 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002438 if (!ai->ai_next)
2439 error("bind: %.100s", strerror(errno));
2440 else
2441 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002442
Damien Miller34132e52000-01-14 15:45:46 +11002443 close(sock);
2444 continue;
2445 }
2446 /* Start listening for connections on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +11002447 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002448 error("listen: %.100s", strerror(errno));
2449 close(sock);
2450 continue;
2451 }
2452 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002453 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002454 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002455 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002456 strlcpy(c->path, host, sizeof(c->path));
2457 c->host_port = port_to_connect;
2458 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002459 success = 1;
2460 }
2461 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002462 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002463 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002464 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002465 return success;
Damien Miller95def091999-11-25 00:26:21 +11002466}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002467
Darren Tuckere7066df2004-05-24 10:18:05 +10002468int
2469channel_cancel_rport_listener(const char *host, u_short port)
2470{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002471 u_int i;
2472 int found = 0;
Darren Tuckere7066df2004-05-24 10:18:05 +10002473
Darren Tucker47eede72005-03-14 23:08:12 +11002474 for (i = 0; i < channels_alloc; i++) {
Darren Tuckere7066df2004-05-24 10:18:05 +10002475 Channel *c = channels[i];
2476
2477 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2478 strncmp(c->path, host, sizeof(c->path)) == 0 &&
Darren Tuckerfc959702004-07-17 16:12:08 +10002479 c->listening_port == port) {
Darren Tuckere6ed8392004-08-29 16:29:44 +10002480 debug2("%s: close channel %d", __func__, i);
Darren Tuckere7066df2004-05-24 10:18:05 +10002481 channel_free(c);
2482 found = 1;
2483 }
2484 }
2485
2486 return (found);
2487}
2488
Damien Millerb16461c2002-01-22 23:29:22 +11002489/* protocol local port fwd, used by ssh (and sshd in v1) */
2490int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002491channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port,
Damien Millerb16461c2002-01-22 23:29:22 +11002492 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2493{
2494 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002495 listen_host, listen_port, host_to_connect, port_to_connect,
2496 gateway_ports);
Damien Millerb16461c2002-01-22 23:29:22 +11002497}
2498
2499/* protocol v2 remote port fwd, used by sshd */
2500int
2501channel_setup_remote_fwd_listener(const char *listen_address,
2502 u_short listen_port, int gateway_ports)
2503{
2504 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2505 listen_address, listen_port, NULL, 0, gateway_ports);
2506}
2507
Damien Miller5428f641999-11-25 11:54:57 +11002508/*
2509 * Initiate forwarding of connections to port "port" on remote host through
2510 * the secure channel to host:port from local side.
2511 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002512
Darren Tuckere7d4b192006-07-12 22:17:10 +10002513int
Damien Millerf91ee4c2005-03-01 21:24:33 +11002514channel_request_remote_forwarding(const char *listen_host, u_short listen_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11002515 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002516{
Damien Millerdff50992002-01-22 23:16:32 +11002517 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002518
Damien Miller95def091999-11-25 00:26:21 +11002519 /* Record locally that connection to this host/port is permitted. */
2520 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2521 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002522
Damien Miller95def091999-11-25 00:26:21 +11002523 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002524 if (compat20) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11002525 const char *address_to_bind;
2526 if (listen_host == NULL)
2527 address_to_bind = "localhost";
2528 else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0)
2529 address_to_bind = "";
2530 else
2531 address_to_bind = listen_host;
2532
Damien Miller33b13562000-04-04 14:38:59 +10002533 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2534 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002535 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002536 packet_put_cstring(address_to_bind);
2537 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002538 packet_send();
2539 packet_write_wait();
2540 /* Assume that server accepts the request */
2541 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002542 } else {
2543 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002544 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002545 packet_put_cstring(host_to_connect);
2546 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002547 packet_send();
2548 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002549
2550 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002551 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002552 switch (type) {
2553 case SSH_SMSG_SUCCESS:
2554 success = 1;
2555 break;
2556 case SSH_SMSG_FAILURE:
Damien Miller0bc1bd82000-11-13 22:57:25 +11002557 break;
2558 default:
2559 /* Unknown packet */
2560 packet_disconnect("Protocol error for port forward request:"
2561 "received packet type %d.", type);
2562 }
2563 }
2564 if (success) {
2565 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2566 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2567 permitted_opens[num_permitted_opens].listen_port = listen_port;
2568 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002569 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10002570 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002571}
2572
Damien Miller5428f641999-11-25 11:54:57 +11002573/*
Darren Tuckerfc959702004-07-17 16:12:08 +10002574 * Request cancellation of remote forwarding of connection host:port from
Darren Tuckere7066df2004-05-24 10:18:05 +10002575 * local side.
2576 */
Darren Tuckere7066df2004-05-24 10:18:05 +10002577void
Damien Millerf91ee4c2005-03-01 21:24:33 +11002578channel_request_rforward_cancel(const char *host, u_short port)
Darren Tuckere7066df2004-05-24 10:18:05 +10002579{
2580 int i;
Darren Tuckere7066df2004-05-24 10:18:05 +10002581
2582 if (!compat20)
2583 return;
2584
2585 for (i = 0; i < num_permitted_opens; i++) {
Darren Tuckerfc959702004-07-17 16:12:08 +10002586 if (permitted_opens[i].host_to_connect != NULL &&
Darren Tuckere7066df2004-05-24 10:18:05 +10002587 permitted_opens[i].listen_port == port)
2588 break;
2589 }
2590 if (i >= num_permitted_opens) {
2591 debug("%s: requested forward not found", __func__);
2592 return;
2593 }
2594 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2595 packet_put_cstring("cancel-tcpip-forward");
2596 packet_put_char(0);
Damien Millerf91ee4c2005-03-01 21:24:33 +11002597 packet_put_cstring(host == NULL ? "" : host);
Darren Tuckere7066df2004-05-24 10:18:05 +10002598 packet_put_int(port);
2599 packet_send();
2600
2601 permitted_opens[i].listen_port = 0;
2602 permitted_opens[i].port_to_connect = 0;
Damien Miller0a0176e2005-11-05 15:07:59 +11002603 xfree(permitted_opens[i].host_to_connect);
Darren Tuckere7066df2004-05-24 10:18:05 +10002604 permitted_opens[i].host_to_connect = NULL;
2605}
2606
2607/*
Damien Miller5428f641999-11-25 11:54:57 +11002608 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2609 * listening for the port, and sends back a success reply (or disconnect
Darren Tuckere7d4b192006-07-12 22:17:10 +10002610 * message if there was an error).
Damien Miller5428f641999-11-25 11:54:57 +11002611 */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002612int
Damien Millere247cc42000-05-07 12:03:14 +10002613channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002614{
Damien Milleraae6c611999-12-06 11:47:28 +11002615 u_short port, host_port;
Darren Tuckere7d4b192006-07-12 22:17:10 +10002616 int success = 0;
Damien Miller95def091999-11-25 00:26:21 +11002617 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002618
Damien Miller95def091999-11-25 00:26:21 +11002619 /* Get arguments from the packet. */
2620 port = packet_get_int();
2621 hostname = packet_get_string(NULL);
2622 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002623
Damien Millerbac2d8a2000-09-05 16:13:06 +11002624#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002625 /*
2626 * Check that an unprivileged user is not trying to forward a
2627 * privileged port.
2628 */
Damien Miller95def091999-11-25 00:26:21 +11002629 if (port < IPPORT_RESERVED && !is_root)
Darren Tucker9189ff82003-07-03 13:52:04 +10002630 packet_disconnect(
2631 "Requested forwarding of port %d but user is not root.",
2632 port);
2633 if (host_port == 0)
2634 packet_disconnect("Dynamic forwarding denied.");
Damien Millerbac2d8a2000-09-05 16:13:06 +11002635#endif
Darren Tucker9189ff82003-07-03 13:52:04 +10002636
Damien Miller0bc1bd82000-11-13 22:57:25 +11002637 /* Initiate forwarding */
Darren Tuckere7d4b192006-07-12 22:17:10 +10002638 success = channel_setup_local_fwd_listener(NULL, port, hostname,
Damien Millerf91ee4c2005-03-01 21:24:33 +11002639 host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002640
2641 /* Free the argument string. */
2642 xfree(hostname);
Darren Tuckere7d4b192006-07-12 22:17:10 +10002643
2644 return (success ? 0 : -1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002645}
2646
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002647/*
2648 * Permits opening to any host/port if permitted_opens[] is empty. This is
2649 * usually called by the server, because the user could connect to any port
2650 * anyway, and the server has no way to know but to trust the client anyway.
2651 */
2652void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002653channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002654{
2655 if (num_permitted_opens == 0)
2656 all_opens_permitted = 1;
2657}
2658
Ben Lindstroma3700052001-04-05 23:26:32 +00002659void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002660channel_add_permitted_opens(char *host, int port)
2661{
2662 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
Darren Tuckere7d4b192006-07-12 22:17:10 +10002663 fatal("channel_add_permitted_opens: too many forwards");
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002664 debug("allow port forwarding to host %s port %d", host, port);
2665
2666 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2667 permitted_opens[num_permitted_opens].port_to_connect = port;
2668 num_permitted_opens++;
2669
2670 all_opens_permitted = 0;
2671}
2672
Damien Millera765cf42006-07-24 14:08:13 +10002673int
Damien Miller9b439df2006-07-24 14:04:00 +10002674channel_add_adm_permitted_opens(char *host, int port)
2675{
2676 if (num_adm_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2677 fatal("channel_add_adm_permitted_opens: too many forwards");
Damien Millera765cf42006-07-24 14:08:13 +10002678 debug("config allows port forwarding to host %s port %d", host, port);
Damien Miller9b439df2006-07-24 14:04:00 +10002679
2680 permitted_adm_opens[num_adm_permitted_opens].host_to_connect
2681 = xstrdup(host);
2682 permitted_adm_opens[num_adm_permitted_opens].port_to_connect = port;
Damien Millera765cf42006-07-24 14:08:13 +10002683 return ++num_adm_permitted_opens;
Damien Miller9b439df2006-07-24 14:04:00 +10002684}
2685
2686void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002687channel_clear_permitted_opens(void)
2688{
2689 int i;
2690
2691 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002692 if (permitted_opens[i].host_to_connect != NULL)
2693 xfree(permitted_opens[i].host_to_connect);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002694 num_permitted_opens = 0;
Damien Miller9b439df2006-07-24 14:04:00 +10002695}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002696
Damien Miller9b439df2006-07-24 14:04:00 +10002697void
2698channel_clear_adm_permitted_opens(void)
2699{
2700 int i;
2701
2702 for (i = 0; i < num_adm_permitted_opens; i++)
2703 if (permitted_adm_opens[i].host_to_connect != NULL)
2704 xfree(permitted_adm_opens[i].host_to_connect);
2705 num_adm_permitted_opens = 0;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002706}
2707
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002708/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002709static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002710connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002711{
Damien Miller34132e52000-01-14 15:45:46 +11002712 struct addrinfo hints, *ai, *aitop;
2713 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2714 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002715 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002716
Damien Miller34132e52000-01-14 15:45:46 +11002717 memset(&hints, 0, sizeof(hints));
2718 hints.ai_family = IPv4or6;
2719 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002720 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002721 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002722 error("connect_to %.100s: unknown host (%s)", host,
2723 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002724 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002725 }
Damien Miller34132e52000-01-14 15:45:46 +11002726 for (ai = aitop; ai; ai = ai->ai_next) {
2727 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2728 continue;
2729 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2730 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002731 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002732 continue;
2733 }
Damien Miller2372ace2003-05-14 13:42:23 +10002734 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002735 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002736 if (ai->ai_next == NULL)
2737 error("socket: %.100s", strerror(errno));
2738 else
2739 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002740 continue;
2741 }
Damien Miller232711f2004-06-15 10:35:30 +10002742 if (set_nonblock(sock) == -1)
2743 fatal("%s: set_nonblock(%d)", __func__, sock);
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002744 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2745 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002746 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002747 strerror(errno));
2748 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002749 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002750 }
2751 break; /* success */
2752
2753 }
2754 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002755 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002756 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002757 return -1;
2758 }
2759 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002760 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002761 return sock;
2762}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002763
Damien Miller0bc1bd82000-11-13 22:57:25 +11002764int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002765channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002766{
2767 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002768
Damien Miller0bc1bd82000-11-13 22:57:25 +11002769 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002770 if (permitted_opens[i].host_to_connect != NULL &&
2771 permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002772 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002773 permitted_opens[i].host_to_connect,
2774 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002775 error("WARNING: Server requests forwarding for unknown listen_port %d",
2776 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002777 return -1;
2778}
Damien Millerb38eff82000-04-01 11:09:21 +10002779
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002780/* Check if connecting to that port is permitted and connect. */
2781int
2782channel_connect_to(const char *host, u_short port)
2783{
Damien Miller9b439df2006-07-24 14:04:00 +10002784 int i, permit, permit_adm = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002785
2786 permit = all_opens_permitted;
2787 if (!permit) {
2788 for (i = 0; i < num_permitted_opens; i++)
Darren Tuckere7066df2004-05-24 10:18:05 +10002789 if (permitted_opens[i].host_to_connect != NULL &&
2790 permitted_opens[i].port_to_connect == port &&
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002791 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2792 permit = 1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002793 }
Damien Miller9b439df2006-07-24 14:04:00 +10002794
2795 if (num_adm_permitted_opens > 0) {
2796 permit_adm = 0;
2797 for (i = 0; i < num_adm_permitted_opens; i++)
2798 if (permitted_adm_opens[i].host_to_connect != NULL &&
2799 permitted_adm_opens[i].port_to_connect == port &&
2800 strcmp(permitted_adm_opens[i].host_to_connect, host)
2801 == 0)
2802 permit_adm = 1;
2803 }
2804
2805 if (!permit || !permit_adm) {
Damien Miller996acd22003-04-09 20:59:48 +10002806 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002807 "but the request was denied.", host, port);
2808 return -1;
2809 }
2810 return connect_to(host, port);
2811}
2812
Damien Miller0e220db2004-06-15 10:34:08 +10002813void
2814channel_send_window_changes(void)
2815{
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10002816 u_int i;
Damien Miller0e220db2004-06-15 10:34:08 +10002817 struct winsize ws;
2818
2819 for (i = 0; i < channels_alloc; i++) {
Darren Tucker47eede72005-03-14 23:08:12 +11002820 if (channels[i] == NULL || !channels[i]->client_tty ||
Damien Miller0e220db2004-06-15 10:34:08 +10002821 channels[i]->type != SSH_CHANNEL_OPEN)
2822 continue;
2823 if (ioctl(channels[i]->rfd, TIOCGWINSZ, &ws) < 0)
2824 continue;
2825 channel_request_start(i, "window-change", 0);
Damien Miller71a73672006-03-26 14:04:36 +11002826 packet_put_int((u_int)ws.ws_col);
2827 packet_put_int((u_int)ws.ws_row);
2828 packet_put_int((u_int)ws.ws_xpixel);
2829 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller0e220db2004-06-15 10:34:08 +10002830 packet_send();
2831 }
2832}
2833
Ben Lindstrome9c99912001-06-09 00:41:05 +00002834/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002835
Damien Miller5428f641999-11-25 11:54:57 +11002836/*
2837 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002838 * Returns 0 and a suitable display number for the DISPLAY variable
2839 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002840 */
Kevin Steves366298c2001-12-19 17:58:01 +00002841int
Damien Miller95c249f2002-02-05 12:11:34 +11002842x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Damien Miller2b9b0452005-07-17 17:19:24 +10002843 int single_connection, u_int *display_numberp, int **chanids)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002844{
Damien Millere7378562001-12-21 14:58:35 +11002845 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002846 int display_number, sock;
2847 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002848 struct addrinfo hints, *ai, *aitop;
2849 char strport[NI_MAXSERV];
2850 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002851
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002852 if (chanids == NULL)
2853 return -1;
2854
Damien Millera34a28b1999-12-14 10:47:15 +11002855 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002856 display_number < MAX_DISPLAYS;
2857 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002858 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002859 memset(&hints, 0, sizeof(hints));
2860 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002861 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002862 hints.ai_socktype = SOCK_STREAM;
2863 snprintf(strport, sizeof strport, "%d", port);
2864 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2865 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002866 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002867 }
Damien Miller34132e52000-01-14 15:45:46 +11002868 for (ai = aitop; ai; ai = ai->ai_next) {
2869 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2870 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002871 sock = socket(ai->ai_family, ai->ai_socktype,
2872 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002873 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002874 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002875 error("socket: %.100s", strerror(errno));
Damien Miller3e4dffb2004-06-15 10:27:15 +10002876 freeaddrinfo(aitop);
Kevin Steves366298c2001-12-19 17:58:01 +00002877 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002878 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002879 debug("x11_create_display_inet: Socket family %d not supported",
2880 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002881 continue;
2882 }
Damien Miller34132e52000-01-14 15:45:46 +11002883 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002884#ifdef IPV6_V6ONLY
2885 if (ai->ai_family == AF_INET6) {
2886 int on = 1;
2887 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2888 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2889 }
2890#endif
Damien Miller5e7fd072005-11-05 14:53:39 +11002891 channel_set_reuseaddr(sock);
Damien Miller34132e52000-01-14 15:45:46 +11002892 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10002893 debug2("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002894 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002895
2896 if (ai->ai_next)
2897 continue;
2898
Damien Miller34132e52000-01-14 15:45:46 +11002899 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002900 close(socks[n]);
2901 }
2902 num_socks = 0;
2903 break;
2904 }
2905 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002906#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002907 if (num_socks == NUM_SOCKS)
2908 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002909#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002910 if (x11_use_localhost) {
2911 if (num_socks == NUM_SOCKS)
2912 break;
2913 } else {
2914 break;
2915 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002916#endif
Damien Miller95def091999-11-25 00:26:21 +11002917 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002918 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002919 if (num_socks > 0)
2920 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002921 }
Damien Miller95def091999-11-25 00:26:21 +11002922 if (display_number >= MAX_DISPLAYS) {
2923 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002924 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002925 }
Damien Miller95def091999-11-25 00:26:21 +11002926 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002927 for (n = 0; n < num_socks; n++) {
2928 sock = socks[n];
Darren Tucker3175eb92003-12-09 19:15:11 +11002929 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller34132e52000-01-14 15:45:46 +11002930 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002931 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002932 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002933 }
Damien Miller95def091999-11-25 00:26:21 +11002934 }
Damien Miller34132e52000-01-14 15:45:46 +11002935
Damien Miller34132e52000-01-14 15:45:46 +11002936 /* Allocate a channel for each socket. */
Damien Miller07d86be2006-03-26 14:19:21 +11002937 *chanids = xcalloc(num_socks + 1, sizeof(**chanids));
Damien Miller34132e52000-01-14 15:45:46 +11002938 for (n = 0; n < num_socks; n++) {
2939 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002940 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002941 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2942 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002943 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002944 nc->single_connection = single_connection;
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002945 (*chanids)[n] = nc->self;
Damien Miller34132e52000-01-14 15:45:46 +11002946 }
Darren Tuckerd3d0fa12005-10-03 18:03:05 +10002947 (*chanids)[n] = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002948
Kevin Steves366298c2001-12-19 17:58:01 +00002949 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002950 *display_numberp = display_number;
2951 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002952}
2953
Ben Lindstrombba81212001-06-25 05:01:22 +00002954static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002955connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002956{
Damien Miller95def091999-11-25 00:26:21 +11002957 int sock;
2958 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002959
Damien Miller3afe3752001-12-21 12:39:51 +11002960 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2961 if (sock < 0)
2962 error("socket: %.100s", strerror(errno));
2963 memset(&addr, 0, sizeof(addr));
2964 addr.sun_family = AF_UNIX;
2965 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
Damien Miller90967402006-03-26 14:07:26 +11002966 if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
Damien Miller3afe3752001-12-21 12:39:51 +11002967 return sock;
2968 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002969 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2970 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002971}
2972
Damien Millerbd483e72000-04-30 10:00:53 +10002973int
2974x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002975{
Damien Miller57c4e872006-03-31 23:11:07 +11002976 u_int display_number;
Damien Miller95def091999-11-25 00:26:21 +11002977 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002978 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002979 struct addrinfo hints, *ai, *aitop;
2980 char strport[NI_MAXSERV];
Damien Miller57c4e872006-03-31 23:11:07 +11002981 int gaierr, sock = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002982
Damien Miller95def091999-11-25 00:26:21 +11002983 /* Try to open a socket for the local X server. */
2984 display = getenv("DISPLAY");
2985 if (!display) {
2986 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002987 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002988 }
Damien Miller5428f641999-11-25 11:54:57 +11002989 /*
2990 * Now we decode the value of the DISPLAY variable and make a
2991 * connection to the real X server.
2992 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002993
Damien Miller5428f641999-11-25 11:54:57 +11002994 /*
2995 * Check if it is a unix domain socket. Unix domain displays are in
2996 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2997 */
Damien Miller95def091999-11-25 00:26:21 +11002998 if (strncmp(display, "unix:", 5) == 0 ||
2999 display[0] == ':') {
3000 /* Connect to the unix domain socket. */
Damien Miller57c4e872006-03-31 23:11:07 +11003001 if (sscanf(strrchr(display, ':') + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003002 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003003 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003004 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003005 }
3006 /* Create a socket. */
3007 sock = connect_local_xsocket(display_number);
3008 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10003009 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003010
3011 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10003012 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003013 }
Damien Miller5428f641999-11-25 11:54:57 +11003014 /*
3015 * Connect to an inet socket. The DISPLAY value is supposedly
3016 * hostname:d[.s], where hostname may also be numeric IP address.
3017 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00003018 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11003019 cp = strchr(buf, ':');
3020 if (!cp) {
3021 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10003022 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003023 }
Damien Miller95def091999-11-25 00:26:21 +11003024 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11003025 /* buf now contains the host name. But first we parse the display number. */
Damien Miller57c4e872006-03-31 23:11:07 +11003026 if (sscanf(cp + 1, "%u", &display_number) != 1) {
Damien Miller95def091999-11-25 00:26:21 +11003027 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11003028 display);
Damien Millerbd483e72000-04-30 10:00:53 +10003029 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003030 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003031
Damien Miller34132e52000-01-14 15:45:46 +11003032 /* Look up the host address */
3033 memset(&hints, 0, sizeof(hints));
3034 hints.ai_family = IPv4or6;
3035 hints.ai_socktype = SOCK_STREAM;
Damien Miller57c4e872006-03-31 23:11:07 +11003036 snprintf(strport, sizeof strport, "%u", 6000 + display_number);
Damien Miller34132e52000-01-14 15:45:46 +11003037 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
3038 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10003039 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003040 }
Damien Miller34132e52000-01-14 15:45:46 +11003041 for (ai = aitop; ai; ai = ai->ai_next) {
3042 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10003043 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11003044 if (sock < 0) {
Damien Millerfbdeece2003-09-02 22:52:31 +10003045 debug2("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10003046 continue;
3047 }
3048 /* Connect it to the display. */
3049 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
Damien Miller57c4e872006-03-31 23:11:07 +11003050 debug2("connect %.100s port %u: %.100s", buf,
Damien Millerb38eff82000-04-01 11:09:21 +10003051 6000 + display_number, strerror(errno));
3052 close(sock);
3053 continue;
3054 }
3055 /* Success */
3056 break;
Damien Miller34132e52000-01-14 15:45:46 +11003057 }
Damien Miller34132e52000-01-14 15:45:46 +11003058 freeaddrinfo(aitop);
3059 if (!ai) {
Damien Miller57c4e872006-03-31 23:11:07 +11003060 error("connect %.100s port %u: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11003061 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10003062 return -1;
Damien Miller95def091999-11-25 00:26:21 +11003063 }
Damien Miller398e1cf2002-02-05 11:52:13 +11003064 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10003065 return sock;
3066}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003067
Damien Millerbd483e72000-04-30 10:00:53 +10003068/*
3069 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3070 * the remote channel number. We should do whatever we want, and respond
3071 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3072 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003073
Damien Miller8473dd82006-07-24 14:08:32 +10003074/* ARGSUSED */
Damien Millerbd483e72000-04-30 10:00:53 +10003075void
Damien Miller630d6f42002-01-22 23:17:30 +11003076x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10003077{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003078 Channel *c = NULL;
3079 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10003080 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10003081
3082 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003083
3084 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00003085
3086 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003087 remote_host = packet_get_string(NULL);
3088 } else {
3089 remote_host = xstrdup("unknown (remote did not supply name)");
3090 }
Damien Miller48b03fc2002-01-22 23:11:40 +11003091 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10003092
3093 /* Obtain a connection to the real X display. */
3094 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003095 if (sock != -1) {
3096 /* Allocate a channel for this connection. */
3097 c = channel_new("connected x11 socket",
3098 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
3099 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11003100 c->remote_id = remote_id;
3101 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003102 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10003103 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003104 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10003105 /* Send refusal to the remote host. */
3106 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003107 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10003108 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10003109 /* Send a confirmation to the remote host. */
3110 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003111 packet_put_int(remote_id);
3112 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10003113 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00003114 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003115}
3116
Damien Miller69b69aa2000-10-28 14:19:58 +11003117/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
Damien Miller8473dd82006-07-24 14:08:32 +10003118/* ARGSUSED */
Damien Miller69b69aa2000-10-28 14:19:58 +11003119void
Damien Miller630d6f42002-01-22 23:17:30 +11003120deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11003121{
3122 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00003123
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00003124 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11003125 case SSH_SMSG_AGENT_OPEN:
3126 error("Warning: ssh server tried agent forwarding.");
3127 break;
3128 case SSH_SMSG_X11_OPEN:
3129 error("Warning: ssh server tried X11 forwarding.");
3130 break;
3131 default:
Damien Miller630d6f42002-01-22 23:17:30 +11003132 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11003133 break;
3134 }
Damien Miller5eb137c2005-12-31 16:19:53 +11003135 error("Warning: this is probably a break-in attempt by a malicious server.");
Damien Miller69b69aa2000-10-28 14:19:58 +11003136 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
3137 packet_put_int(rchan);
3138 packet_send();
3139}
3140
Damien Miller5428f641999-11-25 11:54:57 +11003141/*
3142 * Requests forwarding of X11 connections, generates fake authentication
3143 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00003144 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11003145 */
Damien Miller4af51302000-04-16 11:18:38 +10003146void
Damien Miller17e7ed02005-06-17 12:54:33 +10003147x11_request_forwarding_with_spoofing(int client_session_id, const char *disp,
Damien Millerbd483e72000-04-30 10:00:53 +10003148 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003149{
Ben Lindstrom46c16222000-12-22 01:43:59 +00003150 u_int data_len = (u_int) strlen(data) / 2;
Damien Miller13390022005-07-06 09:44:19 +10003151 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11003152 char *new_data;
3153 int screen_number;
3154 const char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +10003155 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003156
Damien Millerf92c0792005-07-06 09:45:26 +10003157 if (x11_saved_display == NULL)
3158 x11_saved_display = xstrdup(disp);
3159 else if (strcmp(disp, x11_saved_display) != 0) {
Damien Miller13390022005-07-06 09:44:19 +10003160 error("x11_request_forwarding_with_spoofing: different "
3161 "$DISPLAY already forwarded");
3162 return;
3163 }
3164
Damien Miller17e7ed02005-06-17 12:54:33 +10003165 cp = disp;
3166 if (disp)
3167 cp = strchr(disp, ':');
Damien Miller95def091999-11-25 00:26:21 +11003168 if (cp)
3169 cp = strchr(cp, '.');
3170 if (cp)
Damien Miller08d61502006-03-26 14:28:32 +11003171 screen_number = (u_int)strtonum(cp + 1, 0, 400, NULL);
Damien Miller95def091999-11-25 00:26:21 +11003172 else
3173 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003174
Damien Miller13390022005-07-06 09:44:19 +10003175 if (x11_saved_proto == NULL) {
3176 /* Save protocol name. */
3177 x11_saved_proto = xstrdup(proto);
3178 /*
Damien Miller46d38de2005-07-17 17:02:09 +10003179 * Extract real authentication data and generate fake data
Damien Miller13390022005-07-06 09:44:19 +10003180 * of the same length.
3181 */
3182 x11_saved_data = xmalloc(data_len);
3183 x11_fake_data = xmalloc(data_len);
3184 for (i = 0; i < data_len; i++) {
3185 if (sscanf(data + 2 * i, "%2x", &value) != 1)
3186 fatal("x11_request_forwarding: bad "
3187 "authentication data: %.100s", data);
3188 if (i % 4 == 0)
3189 rnd = arc4random();
3190 x11_saved_data[i] = value;
3191 x11_fake_data[i] = rnd & 0xff;
3192 rnd >>= 8;
3193 }
3194 x11_saved_data_len = data_len;
3195 x11_fake_data_len = data_len;
Damien Miller95def091999-11-25 00:26:21 +11003196 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003197
Damien Miller95def091999-11-25 00:26:21 +11003198 /* Convert the fake data into hex. */
Damien Miller13390022005-07-06 09:44:19 +10003199 new_data = tohex(x11_fake_data, data_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003200
Damien Miller95def091999-11-25 00:26:21 +11003201 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10003202 if (compat20) {
3203 channel_request_start(client_session_id, "x11-req", 0);
3204 packet_put_char(0); /* XXX bool single connection */
3205 } else {
3206 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
3207 }
3208 packet_put_cstring(proto);
3209 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11003210 packet_put_int(screen_number);
3211 packet_send();
3212 packet_write_wait();
3213 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003214}
3215
Ben Lindstrome9c99912001-06-09 00:41:05 +00003216
3217/* -- agent forwarding */
3218
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003219/* Sends a message to the server to request authentication fd forwarding. */
3220
Damien Miller4af51302000-04-16 11:18:38 +10003221void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00003222auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003223{
Damien Miller95def091999-11-25 00:26:21 +11003224 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
3225 packet_send();
3226 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003227}