blob: ad879cc61bb3c8ed61c755ec5105f8f6ffcad695 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Damien Miller33b13562000-04-04 14:38:59 +100015 * SSH2 support added by Markus Friedl.
Damien Millera90fc082002-01-22 23:19:38 +110016 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Damien Millerb1ca8bb2003-05-14 13:45:42 +100042RCSID("$OpenBSD: channels.c,v 1.190 2003/05/11 20:30:24 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "ssh1.h"
46#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "packet.h"
48#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "log.h"
50#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000053#include "canohost.h"
Damien Miller994cf142000-07-21 10:19:44 +100054#include "key.h"
55#include "authfd.h"
Damien Miller3afe3752001-12-21 12:39:51 +110056#include "pathnames.h"
Damien Miller994cf142000-07-21 10:19:44 +100057
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrome9c99912001-06-09 00:41:05 +000059/* -- channel core */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller5428f641999-11-25 11:54:57 +110061/*
62 * Pointer to an array containing all allocated channels. The array is
63 * dynamically extended as needed.
64 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +000065static Channel **channels = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller5428f641999-11-25 11:54:57 +110067/*
68 * Size of the channel array. All slots of the array must always be
Ben Lindstrom99c73b32001-05-05 04:09:47 +000069 * initialized (at least the type field); unused slots set to NULL
Damien Miller5428f641999-11-25 11:54:57 +110070 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071static int channels_alloc = 0;
72
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Maximum file descriptor value used in any of the channels. This is
Ben Lindstrom99c73b32001-05-05 04:09:47 +000075 * updated in channel_new.
Damien Miller5428f641999-11-25 11:54:57 +110076 */
Damien Miller5e953212001-01-30 09:14:00 +110077static int channel_max_fd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Ben Lindstrome9c99912001-06-09 00:41:05 +000080/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Data structure for storing which hosts are permitted for forward requests.
84 * The local sides of any remote forwards are stored in this array to prevent
85 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
86 * network (which might be behind a firewall).
87 */
Damien Miller95def091999-11-25 00:26:21 +110088typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100089 char *host_to_connect; /* Connect to 'host'. */
90 u_short port_to_connect; /* Connect to 'port'. */
91 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092} ForwardPermission;
93
94/* List of all permitted host/port pairs to connect. */
95static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
Ben Lindstrome9c99912001-06-09 00:41:05 +000096
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097/* Number of permitted host/port pairs in the array. */
98static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * If this is true, all opens are permitted. This is the case on the server
101 * on which we have to trust the client anyway, and the user could do
102 * anything after logging in anyway.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104static int all_opens_permitted = 0;
105
Ben Lindstrome9c99912001-06-09 00:41:05 +0000106
107/* -- X11 forwarding */
108
109/* Maximum number of fake X11 displays to try. */
110#define MAX_DISPLAYS 1000
111
112/* Saved X11 authentication protocol name. */
113static char *x11_saved_proto = NULL;
114
115/* Saved X11 authentication data. This is the real data. */
116static char *x11_saved_data = NULL;
117static u_int x11_saved_data_len = 0;
118
119/*
120 * Fake X11 authentication data. This is what the server will be sending us;
121 * we should replace any occurrences of this by the real data.
122 */
123static char *x11_fake_data = NULL;
124static u_int x11_fake_data_len;
125
126
127/* -- agent forwarding */
128
129#define NUM_SOCKS 10
130
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000131/* AF_UNSPEC or AF_INET or AF_INET6 */
Ben Lindstrom908afed2001-10-03 17:34:59 +0000132static int IPv4or6 = AF_UNSPEC;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000133
Ben Lindstrome9c99912001-06-09 00:41:05 +0000134/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +0000135static void port_open_helper(Channel *c, char *rtype);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000136
Ben Lindstrome9c99912001-06-09 00:41:05 +0000137/* -- channel core */
Damien Millerb38eff82000-04-01 11:09:21 +1000138
139Channel *
140channel_lookup(int id)
141{
142 Channel *c;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000143
Ben Lindstrom79548872002-03-05 01:57:44 +0000144 if (id < 0 || id >= channels_alloc) {
Damien Miller996acd22003-04-09 20:59:48 +1000145 logit("channel_lookup: %d: bad id", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000146 return NULL;
147 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000148 c = channels[id];
149 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000150 logit("channel_lookup: %d: bad id: channel free", id);
Damien Millerb38eff82000-04-01 11:09:21 +1000151 return NULL;
152 }
153 return c;
154}
155
Damien Miller5428f641999-11-25 11:54:57 +1100156/*
Damien Millere247cc42000-05-07 12:03:14 +1000157 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000158 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100159 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void
Damien Miller69b69aa2000-10-28 14:19:58 +1100162channel_register_fds(Channel *c, int rfd, int wfd, int efd,
163 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 /* Update the maximum file descriptor value. */
Damien Miller5e953212001-01-30 09:14:00 +1100166 channel_max_fd = MAX(channel_max_fd, rfd);
167 channel_max_fd = MAX(channel_max_fd, wfd);
168 channel_max_fd = MAX(channel_max_fd, efd);
169
Damien Miller5428f641999-11-25 11:54:57 +1100170 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000171
Damien Miller6f83b8e2000-05-02 09:23:45 +1000172 c->rfd = rfd;
173 c->wfd = wfd;
174 c->sock = (rfd == wfd) ? rfd : -1;
175 c->efd = efd;
176 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100177
Damien Miller79438cc2001-02-16 12:34:57 +1100178 /* XXX ugly hack: nonblock is only set by the server */
179 if (nonblock && isatty(c->rfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000180 debug("channel %d: rfd %d isatty", c->self, c->rfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100181 c->isatty = 1;
182 if (!isatty(c->wfd)) {
Ben Lindstromcc74df72001-03-05 06:20:14 +0000183 error("channel %d: wfd %d is not a tty?",
Damien Miller79438cc2001-02-16 12:34:57 +1100184 c->self, c->wfd);
185 }
186 } else {
187 c->isatty = 0;
188 }
Ben Lindstrombeb5f332002-07-22 15:28:53 +0000189 c->wfd_isatty = isatty(c->wfd);
Damien Miller79438cc2001-02-16 12:34:57 +1100190
Damien Miller69b69aa2000-10-28 14:19:58 +1100191 /* enable nonblocking mode */
192 if (nonblock) {
193 if (rfd != -1)
194 set_nonblock(rfd);
195 if (wfd != -1)
196 set_nonblock(wfd);
197 if (efd != -1)
198 set_nonblock(efd);
199 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000200}
201
202/*
203 * Allocate a new channel object and set its type and socket. This will cause
204 * remote_name to be freed.
205 */
206
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000207Channel *
Damien Miller6f83b8e2000-05-02 09:23:45 +1000208channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Ben Lindstrom4fed2be2002-06-25 23:17:36 +0000209 u_int window, u_int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000210{
211 int i, found;
212 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213
Damien Miller95def091999-11-25 00:26:21 +1100214 /* Do initial allocation if this is the first call. */
215 if (channels_alloc == 0) {
216 channels_alloc = 10;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000217 channels = xmalloc(channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100218 for (i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000219 channels[i] = NULL;
Ben Lindstrom601e4362001-06-21 03:19:23 +0000220 fatal_add_cleanup((void (*) (void *)) channel_free_all, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100221 }
222 /* Try to find a free slot where to put the new channel. */
223 for (found = -1, i = 0; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000224 if (channels[i] == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100225 /* Found a free slot. */
226 found = i;
227 break;
228 }
229 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100230 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100231 found = channels_alloc;
232 channels_alloc += 10;
Damien Miller9403aa22002-06-26 19:14:43 +1000233 if (channels_alloc > 10000)
234 fatal("channel_new: internal error: channels_alloc %d "
235 "too big.", channels_alloc);
Damien Millerd3444942000-09-30 14:20:03 +1100236 debug2("channel: expanding %d", channels_alloc);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000237 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
Damien Miller95def091999-11-25 00:26:21 +1100238 for (i = found; i < channels_alloc; i++)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000239 channels[i] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100240 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000241 /* Initialize and return new channel. */
242 c = channels[found] = xmalloc(sizeof(Channel));
Damien Miller4623a752001-10-10 15:03:58 +1000243 memset(c, 0, sizeof(Channel));
Damien Miller95def091999-11-25 00:26:21 +1100244 buffer_init(&c->input);
245 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000246 buffer_init(&c->extended);
Damien Miller5144df92002-01-22 23:28:45 +1100247 c->ostate = CHAN_OUTPUT_OPEN;
248 c->istate = CHAN_INPUT_OPEN;
249 c->flags = 0;
Damien Miller69b69aa2000-10-28 14:19:58 +1100250 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100251 c->self = found;
252 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000253 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000254 c->local_window = window;
255 c->local_window_max = window;
256 c->local_consumed = 0;
257 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100258 c->remote_id = -1;
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000259 c->remote_name = xstrdup(remote_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000260 c->remote_window = 0;
261 c->remote_maxpacket = 0;
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000262 c->force_drain = 0;
Damien Millere7378562001-12-21 14:58:35 +1100263 c->single_connection = 0;
Ben Lindstrom809744e2001-07-04 05:26:06 +0000264 c->detach_user = NULL;
Damien Miller67f0bc02002-02-05 12:23:08 +1100265 c->confirm = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000266 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100267 debug("channel %d: new [%s]", found, remote_name);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000268 return c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000270
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000271static int
272channel_find_maxfd(void)
273{
274 int i, max = 0;
275 Channel *c;
276
277 for (i = 0; i < channels_alloc; i++) {
278 c = channels[i];
279 if (c != NULL) {
280 max = MAX(max, c->rfd);
281 max = MAX(max, c->wfd);
282 max = MAX(max, c->efd);
283 }
284 }
285 return max;
286}
287
288int
289channel_close_fd(int *fdp)
290{
291 int ret = 0, fd = *fdp;
292
293 if (fd != -1) {
294 ret = close(fd);
295 *fdp = -1;
296 if (fd == channel_max_fd)
297 channel_max_fd = channel_find_maxfd();
298 }
299 return ret;
300}
301
Damien Miller6f83b8e2000-05-02 09:23:45 +1000302/* Close all channel fd/socket. */
303
Ben Lindstrombba81212001-06-25 05:01:22 +0000304static void
Damien Miller6f83b8e2000-05-02 09:23:45 +1000305channel_close_fds(Channel *c)
306{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000307 debug3("channel_close_fds: channel %d: r %d w %d e %d",
308 c->self, c->rfd, c->wfd, c->efd);
309
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000310 channel_close_fd(&c->sock);
311 channel_close_fd(&c->rfd);
312 channel_close_fd(&c->wfd);
313 channel_close_fd(&c->efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000314}
315
316/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317
Damien Miller4af51302000-04-16 11:18:38 +1000318void
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000319channel_free(Channel *c)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000321 char *s;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000322 int i, n;
323
324 for (n = 0, i = 0; i < channels_alloc; i++)
325 if (channels[i])
326 n++;
Ben Lindstrom4c247552001-06-05 20:56:47 +0000327 debug("channel_free: channel %d: %s, nchannels %d", c->self,
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000328 c->remote_name ? c->remote_name : "???", n);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000329
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000330 s = channel_open_message();
Ben Lindstrom4c247552001-06-05 20:56:47 +0000331 debug3("channel_free: status: %s", s);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000332 xfree(s);
333
Damien Miller6f83b8e2000-05-02 09:23:45 +1000334 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000335 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000336 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000337 buffer_free(&c->input);
338 buffer_free(&c->output);
339 buffer_free(&c->extended);
Damien Millerb38eff82000-04-01 11:09:21 +1000340 if (c->remote_name) {
341 xfree(c->remote_name);
342 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100343 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000344 channels[c->self] = NULL;
345 xfree(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346}
347
Ben Lindstrome9c99912001-06-09 00:41:05 +0000348void
Ben Lindstrom601e4362001-06-21 03:19:23 +0000349channel_free_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000350{
351 int i;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000352
Ben Lindstrom601e4362001-06-21 03:19:23 +0000353 for (i = 0; i < channels_alloc; i++)
354 if (channels[i] != NULL)
355 channel_free(channels[i]);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000356}
357
358/*
359 * Closes the sockets/fds of all channels. This is used to close extra file
360 * descriptors after a fork.
361 */
362
363void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000364channel_close_all(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000365{
366 int i;
367
368 for (i = 0; i < channels_alloc; i++)
369 if (channels[i] != NULL)
370 channel_close_fds(channels[i]);
371}
372
373/*
Ben Lindstrom809744e2001-07-04 05:26:06 +0000374 * Stop listening to channels.
375 */
376
377void
378channel_stop_listening(void)
379{
380 int i;
381 Channel *c;
382
383 for (i = 0; i < channels_alloc; i++) {
384 c = channels[i];
385 if (c != NULL) {
386 switch (c->type) {
387 case SSH_CHANNEL_AUTH_SOCKET:
388 case SSH_CHANNEL_PORT_LISTENER:
389 case SSH_CHANNEL_RPORT_LISTENER:
390 case SSH_CHANNEL_X11_LISTENER:
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000391 channel_close_fd(&c->sock);
Ben Lindstrom809744e2001-07-04 05:26:06 +0000392 channel_free(c);
393 break;
394 }
395 }
396 }
397}
398
399/*
Ben Lindstrome9c99912001-06-09 00:41:05 +0000400 * Returns true if no channel has too much buffered data, and false if one or
401 * more channel is overfull.
402 */
403
404int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000405channel_not_very_much_buffered_data(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000406{
407 u_int i;
408 Channel *c;
409
410 for (i = 0; i < channels_alloc; i++) {
411 c = channels[i];
412 if (c != NULL && c->type == SSH_CHANNEL_OPEN) {
Damien Milleraf5f2e62001-10-10 15:01:16 +1000413#if 0
414 if (!compat20 &&
415 buffer_len(&c->input) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100416 debug2("channel %d: big input buffer %d",
Ben Lindstrome9c99912001-06-09 00:41:05 +0000417 c->self, buffer_len(&c->input));
418 return 0;
419 }
Damien Milleraf5f2e62001-10-10 15:01:16 +1000420#endif
Ben Lindstrome9c99912001-06-09 00:41:05 +0000421 if (buffer_len(&c->output) > packet_get_maxsize()) {
Damien Miller275295e2003-01-08 14:04:09 +1100422 debug2("channel %d: big output buffer %d > %d",
Damien Milleraf5f2e62001-10-10 15:01:16 +1000423 c->self, buffer_len(&c->output),
424 packet_get_maxsize());
Ben Lindstrome9c99912001-06-09 00:41:05 +0000425 return 0;
426 }
427 }
428 }
429 return 1;
430}
431
432/* Returns true if any channel is still open. */
433
434int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000435channel_still_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000436{
437 int i;
438 Channel *c;
439
440 for (i = 0; i < channels_alloc; i++) {
441 c = channels[i];
442 if (c == NULL)
443 continue;
444 switch (c->type) {
445 case SSH_CHANNEL_X11_LISTENER:
446 case SSH_CHANNEL_PORT_LISTENER:
447 case SSH_CHANNEL_RPORT_LISTENER:
448 case SSH_CHANNEL_CLOSED:
449 case SSH_CHANNEL_AUTH_SOCKET:
450 case SSH_CHANNEL_DYNAMIC:
451 case SSH_CHANNEL_CONNECTING:
452 case SSH_CHANNEL_ZOMBIE:
453 continue;
454 case SSH_CHANNEL_LARVAL:
455 if (!compat20)
456 fatal("cannot happen: SSH_CHANNEL_LARVAL");
457 continue;
458 case SSH_CHANNEL_OPENING:
459 case SSH_CHANNEL_OPEN:
460 case SSH_CHANNEL_X11_OPEN:
461 return 1;
462 case SSH_CHANNEL_INPUT_DRAINING:
463 case SSH_CHANNEL_OUTPUT_DRAINING:
464 if (!compat13)
465 fatal("cannot happen: OUT_DRAIN");
466 return 1;
467 default:
468 fatal("channel_still_open: bad channel type %d", c->type);
469 /* NOTREACHED */
470 }
471 }
472 return 0;
473}
474
475/* Returns the id of an open channel suitable for keepaliving */
476
477int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000478channel_find_open(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000479{
480 int i;
481 Channel *c;
482
483 for (i = 0; i < channels_alloc; i++) {
484 c = channels[i];
485 if (c == NULL)
486 continue;
487 switch (c->type) {
488 case SSH_CHANNEL_CLOSED:
489 case SSH_CHANNEL_DYNAMIC:
490 case SSH_CHANNEL_X11_LISTENER:
491 case SSH_CHANNEL_PORT_LISTENER:
492 case SSH_CHANNEL_RPORT_LISTENER:
493 case SSH_CHANNEL_OPENING:
494 case SSH_CHANNEL_CONNECTING:
495 case SSH_CHANNEL_ZOMBIE:
496 continue;
497 case SSH_CHANNEL_LARVAL:
498 case SSH_CHANNEL_AUTH_SOCKET:
499 case SSH_CHANNEL_OPEN:
500 case SSH_CHANNEL_X11_OPEN:
501 return i;
502 case SSH_CHANNEL_INPUT_DRAINING:
503 case SSH_CHANNEL_OUTPUT_DRAINING:
504 if (!compat13)
505 fatal("cannot happen: OUT_DRAIN");
506 return i;
507 default:
508 fatal("channel_find_open: bad channel type %d", c->type);
509 /* NOTREACHED */
510 }
511 }
512 return -1;
513}
514
515
516/*
517 * Returns a message describing the currently open forwarded connections,
518 * suitable for sending to the client. The message contains crlf pairs for
519 * newlines.
520 */
521
522char *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000523channel_open_message(void)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000524{
525 Buffer buffer;
526 Channel *c;
527 char buf[1024], *cp;
528 int i;
529
530 buffer_init(&buffer);
531 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
532 buffer_append(&buffer, buf, strlen(buf));
533 for (i = 0; i < channels_alloc; i++) {
534 c = channels[i];
535 if (c == NULL)
536 continue;
537 switch (c->type) {
538 case SSH_CHANNEL_X11_LISTENER:
539 case SSH_CHANNEL_PORT_LISTENER:
540 case SSH_CHANNEL_RPORT_LISTENER:
541 case SSH_CHANNEL_CLOSED:
542 case SSH_CHANNEL_AUTH_SOCKET:
543 case SSH_CHANNEL_ZOMBIE:
544 continue;
545 case SSH_CHANNEL_LARVAL:
546 case SSH_CHANNEL_OPENING:
547 case SSH_CHANNEL_CONNECTING:
548 case SSH_CHANNEL_DYNAMIC:
549 case SSH_CHANNEL_OPEN:
550 case SSH_CHANNEL_X11_OPEN:
551 case SSH_CHANNEL_INPUT_DRAINING:
552 case SSH_CHANNEL_OUTPUT_DRAINING:
553 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
554 c->self, c->remote_name,
555 c->type, c->remote_id,
556 c->istate, buffer_len(&c->input),
557 c->ostate, buffer_len(&c->output),
558 c->rfd, c->wfd);
559 buffer_append(&buffer, buf, strlen(buf));
560 continue;
561 default:
562 fatal("channel_open_message: bad channel type %d", c->type);
563 /* NOTREACHED */
564 }
565 }
566 buffer_append(&buffer, "\0", 1);
567 cp = xstrdup(buffer_ptr(&buffer));
568 buffer_free(&buffer);
569 return cp;
570}
571
572void
573channel_send_open(int id)
574{
575 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000576
Ben Lindstrome9c99912001-06-09 00:41:05 +0000577 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000578 logit("channel_send_open: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000579 return;
580 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000581 debug2("channel %d: send open", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000582 packet_start(SSH2_MSG_CHANNEL_OPEN);
583 packet_put_cstring(c->ctype);
584 packet_put_int(c->self);
585 packet_put_int(c->local_window);
586 packet_put_int(c->local_maxpacket);
587 packet_send();
588}
589
590void
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000591channel_request_start(int id, char *service, int wantconfirm)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000592{
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000593 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000594
Ben Lindstrome9c99912001-06-09 00:41:05 +0000595 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000596 logit("channel_request_start: %d: unknown channel id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000597 return;
598 }
Ben Lindstrom1d568f92002-12-23 02:44:36 +0000599 debug("channel %d: request %s", id, service) ;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000600 packet_start(SSH2_MSG_CHANNEL_REQUEST);
601 packet_put_int(c->remote_id);
602 packet_put_cstring(service);
603 packet_put_char(wantconfirm);
604}
605void
Damien Miller67f0bc02002-02-05 12:23:08 +1100606channel_register_confirm(int id, channel_callback_fn *fn)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000607{
608 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000609
Ben Lindstrome9c99912001-06-09 00:41:05 +0000610 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000611 logit("channel_register_comfirm: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000612 return;
613 }
Damien Miller67f0bc02002-02-05 12:23:08 +1100614 c->confirm = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000615}
616void
617channel_register_cleanup(int id, channel_callback_fn *fn)
618{
619 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000620
Ben Lindstrome9c99912001-06-09 00:41:05 +0000621 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000622 logit("channel_register_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000623 return;
624 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000625 c->detach_user = fn;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000626}
627void
628channel_cancel_cleanup(int id)
629{
630 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000631
Ben Lindstrome9c99912001-06-09 00:41:05 +0000632 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000633 logit("channel_cancel_cleanup: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000634 return;
635 }
Ben Lindstrom809744e2001-07-04 05:26:06 +0000636 c->detach_user = NULL;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000637}
638void
639channel_register_filter(int id, channel_filter_fn *fn)
640{
641 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000642
Ben Lindstrome9c99912001-06-09 00:41:05 +0000643 if (c == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +1000644 logit("channel_register_filter: %d: bad id", id);
Ben Lindstrome9c99912001-06-09 00:41:05 +0000645 return;
646 }
647 c->input_filter = fn;
648}
649
650void
651channel_set_fds(int id, int rfd, int wfd, int efd,
Damien Miller2aa0c192002-02-19 15:20:08 +1100652 int extusage, int nonblock, u_int window_max)
Ben Lindstrome9c99912001-06-09 00:41:05 +0000653{
654 Channel *c = channel_lookup(id);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000655
Ben Lindstrome9c99912001-06-09 00:41:05 +0000656 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
657 fatal("channel_activate for non-larval channel %d.", id);
658 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
659 c->type = SSH_CHANNEL_OPEN;
Damien Miller2aa0c192002-02-19 15:20:08 +1100660 c->local_window = c->local_window_max = window_max;
Ben Lindstrome9c99912001-06-09 00:41:05 +0000661 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
662 packet_put_int(c->remote_id);
663 packet_put_int(c->local_window);
664 packet_send();
665}
666
Damien Miller5428f641999-11-25 11:54:57 +1100667/*
Damien Millerb38eff82000-04-01 11:09:21 +1000668 * 'channel_pre*' are called just before select() to add any bits relevant to
669 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100670 */
Damien Millerb38eff82000-04-01 11:09:21 +1000671/*
672 * 'channel_post*': perform any appropriate operations for channels which
673 * have events pending.
674 */
675typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
676chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
677chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
678
Ben Lindstrombba81212001-06-25 05:01:22 +0000679static void
Damien Millerb38eff82000-04-01 11:09:21 +1000680channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
681{
682 FD_SET(c->sock, readset);
683}
684
Ben Lindstrombba81212001-06-25 05:01:22 +0000685static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000686channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
687{
688 debug3("channel %d: waiting for connection", c->self);
689 FD_SET(c->sock, writeset);
690}
691
Ben Lindstrombba81212001-06-25 05:01:22 +0000692static void
Damien Millerb38eff82000-04-01 11:09:21 +1000693channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
694{
695 if (buffer_len(&c->input) < packet_get_maxsize())
696 FD_SET(c->sock, readset);
697 if (buffer_len(&c->output) > 0)
698 FD_SET(c->sock, writeset);
699}
700
Ben Lindstrombba81212001-06-25 05:01:22 +0000701static void
Damien Millerde6987c2002-01-22 23:20:40 +1100702channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000703{
Damien Millerde6987c2002-01-22 23:20:40 +1100704 u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
Damien Millerb38eff82000-04-01 11:09:21 +1000705
Damien Miller33b13562000-04-04 14:38:59 +1000706 if (c->istate == CHAN_INPUT_OPEN &&
Damien Millerde6987c2002-01-22 23:20:40 +1100707 limit > 0 &&
708 buffer_len(&c->input) < limit)
Damien Miller33b13562000-04-04 14:38:59 +1000709 FD_SET(c->rfd, readset);
710 if (c->ostate == CHAN_OUTPUT_OPEN ||
711 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
712 if (buffer_len(&c->output) > 0) {
713 FD_SET(c->wfd, writeset);
714 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
Ben Lindstromcf159442002-03-26 03:26:24 +0000715 if (CHANNEL_EFD_OUTPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000716 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
717 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +0000718 else
719 chan_obuf_empty(c);
Damien Miller33b13562000-04-04 14:38:59 +1000720 }
721 }
722 /** XXX check close conditions, too */
Damien Millerde6987c2002-01-22 23:20:40 +1100723 if (compat20 && c->efd != -1) {
Damien Miller33b13562000-04-04 14:38:59 +1000724 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
725 buffer_len(&c->extended) > 0)
726 FD_SET(c->efd, writeset);
Ben Lindstromcf159442002-03-26 03:26:24 +0000727 else if (!(c->flags & CHAN_EOF_SENT) &&
728 c->extended_usage == CHAN_EXTENDED_READ &&
Damien Miller33b13562000-04-04 14:38:59 +1000729 buffer_len(&c->extended) < c->remote_window)
730 FD_SET(c->efd, readset);
731 }
732}
733
Ben Lindstrombba81212001-06-25 05:01:22 +0000734static void
Damien Millerb38eff82000-04-01 11:09:21 +1000735channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
736{
737 if (buffer_len(&c->input) == 0) {
738 packet_start(SSH_MSG_CHANNEL_CLOSE);
739 packet_put_int(c->remote_id);
740 packet_send();
741 c->type = SSH_CHANNEL_CLOSED;
Ben Lindstromc486d882001-04-11 16:08:34 +0000742 debug("channel %d: closing after input drain.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +1000743 }
744}
745
Ben Lindstrombba81212001-06-25 05:01:22 +0000746static void
Damien Millerb38eff82000-04-01 11:09:21 +1000747channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
748{
749 if (buffer_len(&c->output) == 0)
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000750 chan_mark_dead(c);
Damien Miller4af51302000-04-16 11:18:38 +1000751 else
Damien Millerb38eff82000-04-01 11:09:21 +1000752 FD_SET(c->sock, writeset);
753}
754
755/*
756 * This is a special state for X11 authentication spoofing. An opened X11
757 * connection (when authentication spoofing is being done) remains in this
758 * state until the first packet has been completely read. The authentication
759 * data in that packet is then substituted by the real data if it matches the
760 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000761 * XXX All this happens at the client side.
Ben Lindstrome9c99912001-06-09 00:41:05 +0000762 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
Damien Millerb38eff82000-04-01 11:09:21 +1000763 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000764static int
Ben Lindstrome9c99912001-06-09 00:41:05 +0000765x11_open_helper(Buffer *b)
Damien Millerb38eff82000-04-01 11:09:21 +1000766{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000767 u_char *ucp;
768 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000769
770 /* Check if the fixed size part of the packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000771 if (buffer_len(b) < 12)
Damien Millerb38eff82000-04-01 11:09:21 +1000772 return 0;
773
774 /* Parse the lengths of variable-length fields. */
Damien Miller708d21c2002-01-22 23:18:15 +1100775 ucp = buffer_ptr(b);
Damien Millerb38eff82000-04-01 11:09:21 +1000776 if (ucp[0] == 0x42) { /* Byte order MSB first. */
777 proto_len = 256 * ucp[6] + ucp[7];
778 data_len = 256 * ucp[8] + ucp[9];
779 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
780 proto_len = ucp[6] + 256 * ucp[7];
781 data_len = ucp[8] + 256 * ucp[9];
782 } else {
783 debug("Initial X11 packet contains bad byte order byte: 0x%x",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100784 ucp[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000785 return -1;
786 }
787
788 /* Check if the whole packet is in buffer. */
Ben Lindstrome9c99912001-06-09 00:41:05 +0000789 if (buffer_len(b) <
Damien Millerb38eff82000-04-01 11:09:21 +1000790 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
791 return 0;
792
793 /* Check if authentication protocol matches. */
794 if (proto_len != strlen(x11_saved_proto) ||
795 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
796 debug("X11 connection uses different authentication protocol.");
797 return -1;
798 }
799 /* Check if authentication data matches our fake data. */
800 if (data_len != x11_fake_data_len ||
801 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
802 x11_fake_data, x11_fake_data_len) != 0) {
803 debug("X11 auth data does not match fake data.");
804 return -1;
805 }
806 /* Check fake data length */
807 if (x11_fake_data_len != x11_saved_data_len) {
808 error("X11 fake_data_len %d != saved_data_len %d",
809 x11_fake_data_len, x11_saved_data_len);
810 return -1;
811 }
812 /*
813 * Received authentication protocol and data match
814 * our fake data. Substitute the fake data with real
815 * data.
816 */
817 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
818 x11_saved_data, x11_saved_data_len);
819 return 1;
820}
821
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Millerb38eff82000-04-01 11:09:21 +1000823channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
824{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000825 int ret = x11_open_helper(&c->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000826
Damien Millerb38eff82000-04-01 11:09:21 +1000827 if (ret == 1) {
828 /* Start normal processing for the channel. */
829 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000830 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000831 } else if (ret == -1) {
832 /*
833 * We have received an X11 connection that has bad
834 * authentication information.
835 */
Damien Miller996acd22003-04-09 20:59:48 +1000836 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000837 buffer_clear(&c->input);
838 buffer_clear(&c->output);
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000839 channel_close_fd(&c->sock);
Damien Millerb38eff82000-04-01 11:09:21 +1000840 c->sock = -1;
841 c->type = SSH_CHANNEL_CLOSED;
842 packet_start(SSH_MSG_CHANNEL_CLOSE);
843 packet_put_int(c->remote_id);
844 packet_send();
845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Millerbd483e72000-04-30 10:00:53 +1000849channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000850{
Ben Lindstrome9c99912001-06-09 00:41:05 +0000851 int ret = x11_open_helper(&c->output);
Ben Lindstrom944c4f02001-09-18 05:51:13 +0000852
853 /* c->force_drain = 1; */
854
Damien Millerb38eff82000-04-01 11:09:21 +1000855 if (ret == 1) {
856 c->type = SSH_CHANNEL_OPEN;
Damien Millerde6987c2002-01-22 23:20:40 +1100857 channel_pre_open(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000858 } else if (ret == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000859 logit("X11 connection rejected because of wrong authentication.");
Damien Millerb38eff82000-04-01 11:09:21 +1000860 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millera90fc082002-01-22 23:19:38 +1100861 chan_read_failed(c);
862 buffer_clear(&c->input);
863 chan_ibuf_empty(c);
864 buffer_clear(&c->output);
865 /* for proto v1, the peer will send an IEOF */
866 if (compat20)
867 chan_write_failed(c);
868 else
869 c->type = SSH_CHANNEL_OPEN;
Damien Millerb38eff82000-04-01 11:09:21 +1000870 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
871 }
872}
873
Ben Lindstromb3921512001-04-11 15:57:50 +0000874/* try to decode a socks4 header */
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static int
Ben Lindstromb3921512001-04-11 15:57:50 +0000876channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000877{
Damien Millera10f5612002-09-12 09:49:15 +1000878 char *p, *host;
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000879 int len, have, i, found;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100880 char username[256];
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000881 struct {
882 u_int8_t version;
883 u_int8_t command;
884 u_int16_t dest_port;
Ben Lindstromb3921512001-04-11 15:57:50 +0000885 struct in_addr dest_addr;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000886 } s4_req, s4_rsp;
887
Ben Lindstromb3921512001-04-11 15:57:50 +0000888 debug2("channel %d: decode socks4", c->self);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000889
890 have = buffer_len(&c->input);
891 len = sizeof(s4_req);
892 if (have < len)
893 return 0;
894 p = buffer_ptr(&c->input);
895 for (found = 0, i = len; i < have; i++) {
896 if (p[i] == '\0') {
897 found = 1;
898 break;
899 }
900 if (i > 1024) {
901 /* the peer is probably sending garbage */
902 debug("channel %d: decode socks4: too long",
903 c->self);
904 return -1;
905 }
906 }
907 if (!found)
908 return 0;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000909 buffer_get(&c->input, (char *)&s4_req.version, 1);
910 buffer_get(&c->input, (char *)&s4_req.command, 1);
911 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
Ben Lindstromb3921512001-04-11 15:57:50 +0000912 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
Ben Lindstrom2b261b92001-04-17 18:14:34 +0000913 have = buffer_len(&c->input);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000914 p = buffer_ptr(&c->input);
915 len = strlen(p);
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000916 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000917 if (len > have)
Ben Lindstromb3921512001-04-11 15:57:50 +0000918 fatal("channel %d: decode socks4: len %d > have %d",
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000919 c->self, len, have);
920 strlcpy(username, p, sizeof(username));
921 buffer_consume(&c->input, len);
922 buffer_consume(&c->input, 1); /* trailing '\0' */
923
Ben Lindstromb3921512001-04-11 15:57:50 +0000924 host = inet_ntoa(s4_req.dest_addr);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000925 strlcpy(c->path, host, sizeof(c->path));
926 c->host_port = ntohs(s4_req.dest_port);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100927
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000928 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
929 c->self, host, c->host_port, s4_req.command);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000930
Ben Lindstromb3921512001-04-11 15:57:50 +0000931 if (s4_req.command != 1) {
932 debug("channel %d: cannot handle: socks4 cn %d",
933 c->self, s4_req.command);
934 return -1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000935 }
Ben Lindstromb3921512001-04-11 15:57:50 +0000936 s4_rsp.version = 0; /* vn: 0 for reply */
937 s4_rsp.command = 90; /* cd: req granted */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000938 s4_rsp.dest_port = 0; /* ignored */
Ben Lindstromb3921512001-04-11 15:57:50 +0000939 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000940 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
Ben Lindstromb3921512001-04-11 15:57:50 +0000941 return 1;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000942}
943
Ben Lindstromb3921512001-04-11 15:57:50 +0000944/* dynamic port forwarding */
Ben Lindstrombba81212001-06-25 05:01:22 +0000945static void
Ben Lindstromb3921512001-04-11 15:57:50 +0000946channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
947{
948 u_char *p;
949 int have, ret;
950
951 have = buffer_len(&c->input);
Damien Miller4623a752001-10-10 15:03:58 +1000952 c->delayed = 0;
Ben Lindstromb3921512001-04-11 15:57:50 +0000953 debug2("channel %d: pre_dynamic: have %d", c->self, have);
Ben Lindstromc486d882001-04-11 16:08:34 +0000954 /* buffer_dump(&c->input); */
Ben Lindstromb3921512001-04-11 15:57:50 +0000955 /* check if the fixed size part of the packet is in buffer. */
956 if (have < 4) {
957 /* need more */
958 FD_SET(c->sock, readset);
959 return;
960 }
961 /* try to guess the protocol */
962 p = buffer_ptr(&c->input);
963 switch (p[0]) {
Ben Lindstrom6fa9d102001-04-11 23:08:17 +0000964 case 0x04:
965 ret = channel_decode_socks4(c, readset, writeset);
966 break;
Ben Lindstromb3921512001-04-11 15:57:50 +0000967 default:
968 ret = -1;
969 break;
970 }
971 if (ret < 0) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000972 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +0000973 } else if (ret == 0) {
974 debug2("channel %d: pre_dynamic: need more", c->self);
975 /* need more */
976 FD_SET(c->sock, readset);
977 } else {
978 /* switch to the next state */
979 c->type = SSH_CHANNEL_OPENING;
980 port_open_helper(c, "direct-tcpip");
981 }
982}
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000983
Damien Millerb38eff82000-04-01 11:09:21 +1000984/* This is our fake X11 server socket. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000985static void
Damien Millerb38eff82000-04-01 11:09:21 +1000986channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
987{
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000988 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +1000989 struct sockaddr addr;
Damien Miller398e1cf2002-02-05 11:52:13 +1100990 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +1000991 socklen_t addrlen;
Damien Millerd83ff352001-01-30 09:19:34 +1100992 char buf[16384], *remote_ipaddr;
Damien Millerbd483e72000-04-30 10:00:53 +1000993 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000994
995 if (FD_ISSET(c->sock, readset)) {
996 debug("X11 connection requested.");
997 addrlen = sizeof(addr);
998 newsock = accept(c->sock, &addr, &addrlen);
Damien Millere7378562001-12-21 14:58:35 +1100999 if (c->single_connection) {
1000 debug("single_connection: closing X11 listener.");
1001 channel_close_fd(&c->sock);
1002 chan_mark_dead(c);
1003 }
Damien Millerb38eff82000-04-01 11:09:21 +10001004 if (newsock < 0) {
1005 error("accept: %.100s", strerror(errno));
1006 return;
1007 }
Damien Miller398e1cf2002-02-05 11:52:13 +11001008 set_nodelay(newsock);
Damien Millerd83ff352001-01-30 09:19:34 +11001009 remote_ipaddr = get_peer_ipaddr(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +10001010 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +10001011 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerd83ff352001-01-30 09:19:34 +11001012 remote_ipaddr, remote_port);
Damien Millerbd483e72000-04-30 10:00:53 +10001013
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001014 nc = channel_new("accepted x11 socket",
Damien Millerbd483e72000-04-30 10:00:53 +10001015 SSH_CHANNEL_OPENING, newsock, newsock, -1,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001016 c->local_window_max, c->local_maxpacket, 0, buf, 1);
Damien Millerbd483e72000-04-30 10:00:53 +10001017 if (compat20) {
1018 packet_start(SSH2_MSG_CHANNEL_OPEN);
1019 packet_put_cstring("x11");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001020 packet_put_int(nc->self);
Damien Millere7378562001-12-21 14:58:35 +11001021 packet_put_int(nc->local_window_max);
1022 packet_put_int(nc->local_maxpacket);
Damien Millerd83ff352001-01-30 09:19:34 +11001023 /* originator ipaddr and port */
1024 packet_put_cstring(remote_ipaddr);
Damien Miller30c3d422000-05-09 11:02:59 +10001025 if (datafellows & SSH_BUG_X11FWD) {
1026 debug("ssh2 x11 bug compat mode");
1027 } else {
1028 packet_put_int(remote_port);
1029 }
Damien Millerbd483e72000-04-30 10:00:53 +10001030 packet_send();
1031 } else {
1032 packet_start(SSH_SMSG_X11_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001033 packet_put_int(nc->self);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001034 if (packet_get_protocol_flags() &
1035 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom664408d2001-06-09 01:42:01 +00001036 packet_put_cstring(buf);
Damien Millerbd483e72000-04-30 10:00:53 +10001037 packet_send();
1038 }
Damien Millerd83ff352001-01-30 09:19:34 +11001039 xfree(remote_ipaddr);
Damien Millerb38eff82000-04-01 11:09:21 +10001040 }
1041}
1042
Ben Lindstrombba81212001-06-25 05:01:22 +00001043static void
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001044port_open_helper(Channel *c, char *rtype)
1045{
1046 int direct;
1047 char buf[1024];
1048 char *remote_ipaddr = get_peer_ipaddr(c->sock);
1049 u_short remote_port = get_peer_port(c->sock);
1050
1051 direct = (strcmp(rtype, "direct-tcpip") == 0);
1052
1053 snprintf(buf, sizeof buf,
1054 "%s: listening port %d for %.100s port %d, "
1055 "connect from %.200s port %d",
1056 rtype, c->listening_port, c->path, c->host_port,
1057 remote_ipaddr, remote_port);
1058
1059 xfree(c->remote_name);
1060 c->remote_name = xstrdup(buf);
1061
1062 if (compat20) {
1063 packet_start(SSH2_MSG_CHANNEL_OPEN);
1064 packet_put_cstring(rtype);
1065 packet_put_int(c->self);
1066 packet_put_int(c->local_window_max);
1067 packet_put_int(c->local_maxpacket);
1068 if (direct) {
1069 /* target host, port */
1070 packet_put_cstring(c->path);
1071 packet_put_int(c->host_port);
1072 } else {
1073 /* listen address, port */
1074 packet_put_cstring(c->path);
1075 packet_put_int(c->listening_port);
1076 }
1077 /* originator host and port */
1078 packet_put_cstring(remote_ipaddr);
1079 packet_put_int(remote_port);
1080 packet_send();
1081 } else {
1082 packet_start(SSH_MSG_PORT_OPEN);
1083 packet_put_int(c->self);
1084 packet_put_cstring(c->path);
1085 packet_put_int(c->host_port);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001086 if (packet_get_protocol_flags() &
1087 SSH_PROTOFLAG_HOST_IN_FWD_OPEN)
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001088 packet_put_cstring(c->remote_name);
1089 packet_send();
1090 }
1091 xfree(remote_ipaddr);
1092}
1093
Damien Millerb38eff82000-04-01 11:09:21 +10001094/*
1095 * This socket is listening for connections to a forwarded TCP/IP port.
1096 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001097static void
Damien Millerb38eff82000-04-01 11:09:21 +10001098channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
1099{
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001100 Channel *nc;
Damien Millerb38eff82000-04-01 11:09:21 +10001101 struct sockaddr addr;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001102 int newsock, nextstate;
Damien Millerb38eff82000-04-01 11:09:21 +10001103 socklen_t addrlen;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001104 char *rtype;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001105
Damien Millerb38eff82000-04-01 11:09:21 +10001106 if (FD_ISSET(c->sock, readset)) {
1107 debug("Connection to port %d forwarding "
1108 "to %.100s port %d requested.",
1109 c->listening_port, c->path, c->host_port);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001110
Damien Miller4623a752001-10-10 15:03:58 +10001111 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
1112 nextstate = SSH_CHANNEL_OPENING;
1113 rtype = "forwarded-tcpip";
1114 } else {
1115 if (c->host_port == 0) {
1116 nextstate = SSH_CHANNEL_DYNAMIC;
Damien Millerd3c04b92001-10-10 15:04:20 +10001117 rtype = "dynamic-tcpip";
Damien Miller4623a752001-10-10 15:03:58 +10001118 } else {
1119 nextstate = SSH_CHANNEL_OPENING;
1120 rtype = "direct-tcpip";
1121 }
1122 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001123
Damien Millerb38eff82000-04-01 11:09:21 +10001124 addrlen = sizeof(addr);
1125 newsock = accept(c->sock, &addr, &addrlen);
1126 if (newsock < 0) {
1127 error("accept: %.100s", strerror(errno));
1128 return;
1129 }
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00001130 set_nodelay(newsock);
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001131 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1132 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001133 nc->listening_port = c->listening_port;
1134 nc->host_port = c->host_port;
1135 strlcpy(nc->path, c->path, sizeof(nc->path));
1136
Damien Miller4623a752001-10-10 15:03:58 +10001137 if (nextstate == SSH_CHANNEL_DYNAMIC) {
1138 /*
1139 * do not call the channel_post handler until
1140 * this flag has been reset by a pre-handler.
1141 * otherwise the FD_ISSET calls might overflow
1142 */
1143 nc->delayed = 1;
1144 } else {
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001145 port_open_helper(nc, rtype);
Damien Miller4623a752001-10-10 15:03:58 +10001146 }
Damien Millerb38eff82000-04-01 11:09:21 +10001147 }
1148}
1149
1150/*
1151 * This is the authentication agent socket listening for connections from
1152 * clients.
1153 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001154static void
Damien Millerb38eff82000-04-01 11:09:21 +10001155channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
1156{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001157 Channel *nc;
1158 int newsock;
Damien Millerb38eff82000-04-01 11:09:21 +10001159 struct sockaddr addr;
Damien Millerb38eff82000-04-01 11:09:21 +10001160 socklen_t addrlen;
1161
1162 if (FD_ISSET(c->sock, readset)) {
1163 addrlen = sizeof(addr);
1164 newsock = accept(c->sock, &addr, &addrlen);
1165 if (newsock < 0) {
1166 error("accept from auth socket: %.100s", strerror(errno));
1167 return;
1168 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001169 nc = channel_new("accepted auth socket",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001170 SSH_CHANNEL_OPENING, newsock, newsock, -1,
1171 c->local_window_max, c->local_maxpacket,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001172 0, "accepted auth socket", 1);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001173 if (compat20) {
1174 packet_start(SSH2_MSG_CHANNEL_OPEN);
1175 packet_put_cstring("auth-agent@openssh.com");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001176 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001177 packet_put_int(c->local_window_max);
1178 packet_put_int(c->local_maxpacket);
1179 } else {
1180 packet_start(SSH_SMSG_AGENT_OPEN);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001181 packet_put_int(nc->self);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001182 }
Damien Millerb38eff82000-04-01 11:09:21 +10001183 packet_send();
1184 }
1185}
1186
Ben Lindstrombba81212001-06-25 05:01:22 +00001187static void
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001188channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
1189{
Ben Lindstrom69128662001-05-08 20:07:39 +00001190 int err = 0;
Ben Lindstrom11180952001-07-04 05:13:35 +00001191 socklen_t sz = sizeof(err);
Ben Lindstrom69128662001-05-08 20:07:39 +00001192
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001193 if (FD_ISSET(c->sock, writeset)) {
Ben Lindstrom733a2352002-03-05 01:31:28 +00001194 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &err, &sz) < 0) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001195 err = errno;
1196 error("getsockopt SO_ERROR failed");
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001197 }
Ben Lindstrom69128662001-05-08 20:07:39 +00001198 if (err == 0) {
1199 debug("channel %d: connected", c->self);
1200 c->type = SSH_CHANNEL_OPEN;
1201 if (compat20) {
1202 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
1203 packet_put_int(c->remote_id);
1204 packet_put_int(c->self);
1205 packet_put_int(c->local_window);
1206 packet_put_int(c->local_maxpacket);
1207 } else {
1208 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1209 packet_put_int(c->remote_id);
1210 packet_put_int(c->self);
1211 }
1212 } else {
1213 debug("channel %d: not connected: %s",
1214 c->self, strerror(err));
1215 if (compat20) {
1216 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE);
1217 packet_put_int(c->remote_id);
1218 packet_put_int(SSH2_OPEN_CONNECT_FAILED);
1219 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
1220 packet_put_cstring(strerror(err));
1221 packet_put_cstring("");
1222 }
1223 } else {
1224 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1225 packet_put_int(c->remote_id);
1226 }
1227 chan_mark_dead(c);
1228 }
1229 packet_send();
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001230 }
1231}
1232
Ben Lindstrombba81212001-06-25 05:01:22 +00001233static int
Damien Millerb38eff82000-04-01 11:09:21 +10001234channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
1235{
1236 char buf[16*1024];
1237 int len;
1238
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001239 if (c->rfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001240 FD_ISSET(c->rfd, readset)) {
1241 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +10001242 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1243 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001244 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001245 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +10001246 c->self, c->rfd, len);
Ben Lindstromb3921512001-04-11 15:57:50 +00001247 if (c->type != SSH_CHANNEL_OPEN) {
1248 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001249 chan_mark_dead(c);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001250 return -1;
Ben Lindstromb3921512001-04-11 15:57:50 +00001251 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001252 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001253 c->type = SSH_CHANNEL_INPUT_DRAINING;
Ben Lindstrome9c99912001-06-09 00:41:05 +00001254 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001255 } else {
1256 chan_read_failed(c);
1257 }
1258 return -1;
1259 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001260 if (c->input_filter != NULL) {
Damien Millerad833b32000-08-23 10:46:23 +10001261 if (c->input_filter(c, buf, len) == -1) {
Ben Lindstromc486d882001-04-11 16:08:34 +00001262 debug("channel %d: filter stops", c->self);
Damien Millerad833b32000-08-23 10:46:23 +10001263 chan_read_failed(c);
1264 }
1265 } else {
1266 buffer_append(&c->input, buf, len);
1267 }
Damien Millerb38eff82000-04-01 11:09:21 +10001268 }
1269 return 1;
1270}
Ben Lindstrombba81212001-06-25 05:01:22 +00001271static int
Damien Millerb38eff82000-04-01 11:09:21 +10001272channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
1273{
Ben Lindstrome229b252001-03-05 06:28:06 +00001274 struct termios tio;
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001275 u_char *data;
1276 u_int dlen;
Damien Millerb38eff82000-04-01 11:09:21 +10001277 int len;
1278
1279 /* Send buffered output data to the socket. */
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001280 if (c->wfd != -1 &&
Damien Millerb38eff82000-04-01 11:09:21 +10001281 FD_ISSET(c->wfd, writeset) &&
1282 buffer_len(&c->output) > 0) {
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001283 data = buffer_ptr(&c->output);
1284 dlen = buffer_len(&c->output);
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001285#ifdef _AIX
1286 /* XXX: Later AIX versions can't push as much data to tty */
Ben Lindstrombeb5f332002-07-22 15:28:53 +00001287 if (compat20 && c->wfd_isatty && dlen > 8*1024)
Ben Lindstrom92ea0ea2002-07-04 18:11:09 +00001288 dlen = 8*1024;
1289#endif
Ben Lindstrombeb5f332002-07-22 15:28:53 +00001290 len = write(c->wfd, data, dlen);
Damien Miller6f83b8e2000-05-02 09:23:45 +10001291 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1292 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +10001293 if (len <= 0) {
Ben Lindstromb3921512001-04-11 15:57:50 +00001294 if (c->type != SSH_CHANNEL_OPEN) {
1295 debug("channel %d: not open", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001296 chan_mark_dead(c);
Ben Lindstromb3921512001-04-11 15:57:50 +00001297 return -1;
1298 } else if (compat13) {
Damien Miller76765c02002-01-22 23:21:15 +11001299 buffer_clear(&c->output);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001300 debug("channel %d: input draining.", c->self);
Damien Millerb38eff82000-04-01 11:09:21 +10001301 c->type = SSH_CHANNEL_INPUT_DRAINING;
1302 } else {
1303 chan_write_failed(c);
1304 }
1305 return -1;
1306 }
Ben Lindstrom6d218f42001-09-18 05:53:12 +00001307 if (compat20 && c->isatty && dlen >= 1 && data[0] != '\r') {
Damien Miller79438cc2001-02-16 12:34:57 +11001308 if (tcgetattr(c->wfd, &tio) == 0 &&
1309 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
1310 /*
1311 * Simulate echo to reduce the impact of
Ben Lindstromb40204b2001-03-05 06:29:44 +00001312 * traffic analysis. We need to match the
Ben Lindstrome229b252001-03-05 06:28:06 +00001313 * size of a SSH2_MSG_CHANNEL_DATA message
1314 * (4 byte channel id + data)
Damien Miller79438cc2001-02-16 12:34:57 +11001315 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001316 packet_send_ignore(4 + len);
Damien Miller79438cc2001-02-16 12:34:57 +11001317 packet_send();
Damien Miller79438cc2001-02-16 12:34:57 +11001318 }
1319 }
Damien Millerb38eff82000-04-01 11:09:21 +10001320 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +10001321 if (compat20 && len > 0) {
1322 c->local_consumed += len;
1323 }
1324 }
1325 return 1;
1326}
Ben Lindstrombba81212001-06-25 05:01:22 +00001327static int
Damien Miller33b13562000-04-04 14:38:59 +10001328channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
1329{
1330 char buf[16*1024];
1331 int len;
1332
Damien Miller1383bd82000-04-06 12:32:37 +10001333/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +10001334 if (c->efd != -1) {
1335 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
1336 FD_ISSET(c->efd, writeset) &&
1337 buffer_len(&c->extended) > 0) {
1338 len = write(c->efd, buffer_ptr(&c->extended),
1339 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +11001340 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +10001341 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001342 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1343 return 1;
1344 if (len <= 0) {
1345 debug2("channel %d: closing write-efd %d",
1346 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001347 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001348 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001349 buffer_consume(&c->extended, len);
1350 c->local_consumed += len;
1351 }
1352 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
1353 FD_ISSET(c->efd, readset)) {
1354 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +11001355 debug2("channel %d: read %d from efd %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001356 c->self, len, c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001357 if (len < 0 && (errno == EINTR || errno == EAGAIN))
1358 return 1;
1359 if (len <= 0) {
1360 debug2("channel %d: closing read-efd %d",
Damien Miller1383bd82000-04-06 12:32:37 +10001361 c->self, c->efd);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001362 channel_close_fd(&c->efd);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001363 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001364 buffer_append(&c->extended, buf, len);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001365 }
Damien Miller33b13562000-04-04 14:38:59 +10001366 }
1367 }
1368 return 1;
1369}
Ben Lindstrombba81212001-06-25 05:01:22 +00001370static int
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001371channel_check_window(Channel *c)
Damien Miller33b13562000-04-04 14:38:59 +10001372{
Ben Lindstromb3921512001-04-11 15:57:50 +00001373 if (c->type == SSH_CHANNEL_OPEN &&
1374 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +10001375 c->local_window < c->local_window_max/2 &&
1376 c->local_consumed > 0) {
1377 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1378 packet_put_int(c->remote_id);
1379 packet_put_int(c->local_consumed);
1380 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +11001381 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +10001382 c->self, c->local_window,
1383 c->local_consumed);
1384 c->local_window += c->local_consumed;
1385 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001386 }
1387 return 1;
1388}
1389
Ben Lindstrombba81212001-06-25 05:01:22 +00001390static void
Damien Millerde6987c2002-01-22 23:20:40 +11001391channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +10001392{
Damien Miller4623a752001-10-10 15:03:58 +10001393 if (c->delayed)
1394 return;
Damien Millerb38eff82000-04-01 11:09:21 +10001395 channel_handle_rfd(c, readset, writeset);
1396 channel_handle_wfd(c, readset, writeset);
Damien Millerde6987c2002-01-22 23:20:40 +11001397 if (!compat20)
Damien Miller4623a752001-10-10 15:03:58 +10001398 return;
Damien Miller33b13562000-04-04 14:38:59 +10001399 channel_handle_efd(c, readset, writeset);
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001400 channel_check_window(c);
Damien Miller33b13562000-04-04 14:38:59 +10001401}
1402
Ben Lindstrombba81212001-06-25 05:01:22 +00001403static void
Damien Millerb38eff82000-04-01 11:09:21 +10001404channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1405{
1406 int len;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001407
Damien Millerb38eff82000-04-01 11:09:21 +10001408 /* Send buffered output data to the socket. */
1409 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1410 len = write(c->sock, buffer_ptr(&c->output),
1411 buffer_len(&c->output));
1412 if (len <= 0)
Damien Miller76765c02002-01-22 23:21:15 +11001413 buffer_clear(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +10001414 else
1415 buffer_consume(&c->output, len);
1416 }
1417}
1418
Ben Lindstrombba81212001-06-25 05:01:22 +00001419static void
Damien Miller33b13562000-04-04 14:38:59 +10001420channel_handler_init_20(void)
1421{
Damien Millerde6987c2002-01-22 23:20:40 +11001422 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001423 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +10001424 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001425 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001426 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001427 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001428 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001429 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Miller33b13562000-04-04 14:38:59 +10001430
Damien Millerde6987c2002-01-22 23:20:40 +11001431 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001432 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001433 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +10001434 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001435 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001436 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001437 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Miller33b13562000-04-04 14:38:59 +10001438}
1439
Ben Lindstrombba81212001-06-25 05:01:22 +00001440static void
Damien Millerb38eff82000-04-01 11:09:21 +10001441channel_handler_init_13(void)
1442{
1443 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1444 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1445 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1446 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1447 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1448 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1449 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001450 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001451 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001452
Damien Millerde6987c2002-01-22 23:20:40 +11001453 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001454 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1455 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1456 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1457 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001458 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001459 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001460}
1461
Ben Lindstrombba81212001-06-25 05:01:22 +00001462static void
Damien Millerb38eff82000-04-01 11:09:21 +10001463channel_handler_init_15(void)
1464{
Damien Millerde6987c2002-01-22 23:20:40 +11001465 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open;
Damien Millerbd483e72000-04-30 10:00:53 +10001466 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001467 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1468 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1469 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001470 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +00001471 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
Damien Millerb38eff82000-04-01 11:09:21 +10001472
1473 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1474 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1475 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Millerde6987c2002-01-22 23:20:40 +11001476 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open;
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001477 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerde6987c2002-01-22 23:20:40 +11001478 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open;
Damien Millerb38eff82000-04-01 11:09:21 +10001479}
1480
Ben Lindstrombba81212001-06-25 05:01:22 +00001481static void
Damien Millerb38eff82000-04-01 11:09:21 +10001482channel_handler_init(void)
1483{
1484 int i;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001485
Damien Miller9f0f5c62001-12-21 14:45:46 +11001486 for (i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001487 channel_pre[i] = NULL;
1488 channel_post[i] = NULL;
1489 }
Damien Miller33b13562000-04-04 14:38:59 +10001490 if (compat20)
1491 channel_handler_init_20();
1492 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +10001493 channel_handler_init_13();
1494 else
1495 channel_handler_init_15();
1496}
1497
Damien Miller3ec27592001-10-12 11:35:04 +10001498/* gc dead channels */
1499static void
1500channel_garbage_collect(Channel *c)
1501{
1502 if (c == NULL)
1503 return;
1504 if (c->detach_user != NULL) {
1505 if (!chan_is_dead(c, 0))
1506 return;
1507 debug("channel %d: gc: notify user", c->self);
1508 c->detach_user(c->self, NULL);
1509 /* if we still have a callback */
1510 if (c->detach_user != NULL)
1511 return;
1512 debug("channel %d: gc: user detached", c->self);
1513 }
1514 if (!chan_is_dead(c, 1))
1515 return;
1516 debug("channel %d: garbage collecting", c->self);
1517 channel_free(c);
1518}
1519
Ben Lindstrombba81212001-06-25 05:01:22 +00001520static void
Damien Millerb38eff82000-04-01 11:09:21 +10001521channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1522{
1523 static int did_init = 0;
1524 int i;
1525 Channel *c;
1526
1527 if (!did_init) {
1528 channel_handler_init();
1529 did_init = 1;
1530 }
1531 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001532 c = channels[i];
1533 if (c == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001534 continue;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +00001535 if (ftab[c->type] != NULL)
1536 (*ftab[c->type])(c, readset, writeset);
Damien Miller3ec27592001-10-12 11:35:04 +10001537 channel_garbage_collect(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001538 }
1539}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001540
Ben Lindstrome9c99912001-06-09 00:41:05 +00001541/*
1542 * Allocate/update select bitmasks and add any bits relevant to channels in
1543 * select bitmasks.
1544 */
Damien Miller4af51302000-04-16 11:18:38 +10001545void
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001546channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001547 int *nallocp, int rekeying)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001548{
Damien Miller5e953212001-01-30 09:14:00 +11001549 int n;
1550 u_int sz;
1551
1552 n = MAX(*maxfdp, channel_max_fd);
1553
1554 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001555 /* perhaps check sz < nalloc/2 and shrink? */
1556 if (*readsetp == NULL || sz > *nallocp) {
1557 *readsetp = xrealloc(*readsetp, sz);
1558 *writesetp = xrealloc(*writesetp, sz);
1559 *nallocp = sz;
Damien Miller5e953212001-01-30 09:14:00 +11001560 }
Ben Lindstrom16d29d52001-07-18 16:01:46 +00001561 *maxfdp = n;
Damien Miller5e953212001-01-30 09:14:00 +11001562 memset(*readsetp, 0, sz);
1563 memset(*writesetp, 0, sz);
1564
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001565 if (!rekeying)
1566 channel_handler(channel_pre, *readsetp, *writesetp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001567}
1568
Ben Lindstrome9c99912001-06-09 00:41:05 +00001569/*
1570 * After select, perform any appropriate operations for channels which have
1571 * events pending.
1572 */
Damien Miller4af51302000-04-16 11:18:38 +10001573void
Damien Miller95def091999-11-25 00:26:21 +11001574channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001575{
Damien Millerb38eff82000-04-01 11:09:21 +10001576 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001577}
1578
Ben Lindstrome9c99912001-06-09 00:41:05 +00001579
Damien Miller5e953212001-01-30 09:14:00 +11001580/* If there is data to send to the connection, enqueue some of it now. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001581
Damien Miller4af51302000-04-16 11:18:38 +10001582void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001583channel_output_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584{
Damien Millerb38eff82000-04-01 11:09:21 +10001585 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001586 int i;
1587 u_int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001588
Damien Miller95def091999-11-25 00:26:21 +11001589 for (i = 0; i < channels_alloc; i++) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001590 c = channels[i];
1591 if (c == NULL)
1592 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001593
Ben Lindstrome9c99912001-06-09 00:41:05 +00001594 /*
1595 * We are only interested in channels that can have buffered
1596 * incoming data.
1597 */
Damien Miller34132e52000-01-14 15:45:46 +11001598 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +10001599 if (c->type != SSH_CHANNEL_OPEN &&
1600 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +11001601 continue;
1602 } else {
Damien Millerb38eff82000-04-01 11:09:21 +10001603 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001604 continue;
Damien Miller34132e52000-01-14 15:45:46 +11001605 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001606 if (compat20 &&
1607 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001608 /* XXX is this true? */
Damien Miller3ec27592001-10-12 11:35:04 +10001609 debug3("channel %d: will not send data after close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001610 continue;
1611 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001612
Damien Miller95def091999-11-25 00:26:21 +11001613 /* Get the amount of buffered data for this channel. */
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001614 if ((c->istate == CHAN_INPUT_OPEN ||
1615 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1616 (len = buffer_len(&c->input)) > 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00001617 /*
1618 * Send some data for the other side over the secure
1619 * connection.
1620 */
Damien Miller33b13562000-04-04 14:38:59 +10001621 if (compat20) {
1622 if (len > c->remote_window)
1623 len = c->remote_window;
1624 if (len > c->remote_maxpacket)
1625 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001626 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001627 if (packet_is_interactive()) {
1628 if (len > 1024)
1629 len = 512;
1630 } else {
1631 /* Keep the packets at reasonable size. */
1632 if (len > packet_get_maxsize()/2)
1633 len = packet_get_maxsize()/2;
1634 }
Damien Miller95def091999-11-25 00:26:21 +11001635 }
Damien Millerb38eff82000-04-01 11:09:21 +10001636 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001637 packet_start(compat20 ?
1638 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001639 packet_put_int(c->remote_id);
1640 packet_put_string(buffer_ptr(&c->input), len);
1641 packet_send();
1642 buffer_consume(&c->input, len);
1643 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001644 }
1645 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001646 if (compat13)
1647 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001648 /*
1649 * input-buffer is empty and read-socket shutdown:
Ben Lindstromcf159442002-03-26 03:26:24 +00001650 * tell peer, that we will not send more data: send IEOF.
1651 * hack for extended data: delay EOF if EFD still in use.
Damien Miller5428f641999-11-25 11:54:57 +11001652 */
Ben Lindstromcf159442002-03-26 03:26:24 +00001653 if (CHANNEL_EFD_INPUT_ACTIVE(c))
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001654 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1655 c->self, c->efd, buffer_len(&c->extended));
Ben Lindstromcf159442002-03-26 03:26:24 +00001656 else
1657 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001658 }
Damien Miller33b13562000-04-04 14:38:59 +10001659 /* Send extended data, i.e. stderr */
1660 if (compat20 &&
Ben Lindstromcf159442002-03-26 03:26:24 +00001661 !(c->flags & CHAN_EOF_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +10001662 c->remote_window > 0 &&
1663 (len = buffer_len(&c->extended)) > 0 &&
1664 c->extended_usage == CHAN_EXTENDED_READ) {
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001665 debug2("channel %d: rwin %u elen %u euse %d",
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001666 c->self, c->remote_window, buffer_len(&c->extended),
1667 c->extended_usage);
Damien Miller33b13562000-04-04 14:38:59 +10001668 if (len > c->remote_window)
1669 len = c->remote_window;
1670 if (len > c->remote_maxpacket)
1671 len = c->remote_maxpacket;
1672 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1673 packet_put_int(c->remote_id);
1674 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1675 packet_put_string(buffer_ptr(&c->extended), len);
1676 packet_send();
1677 buffer_consume(&c->extended, len);
1678 c->remote_window -= len;
Ben Lindstrom7fbd4552001-03-05 06:16:11 +00001679 debug2("channel %d: sent ext data %d", c->self, len);
Damien Miller33b13562000-04-04 14:38:59 +10001680 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001681 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001682}
1683
Ben Lindstrome9c99912001-06-09 00:41:05 +00001684
1685/* -- protocol input */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001686
Damien Miller4af51302000-04-16 11:18:38 +10001687void
Damien Miller630d6f42002-01-22 23:17:30 +11001688channel_input_data(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689{
Damien Miller34132e52000-01-14 15:45:46 +11001690 int id;
Damien Miller95def091999-11-25 00:26:21 +11001691 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001692 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001693 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001694
Damien Miller95def091999-11-25 00:26:21 +11001695 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001696 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001697 c = channel_lookup(id);
1698 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001699 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001700
Damien Miller95def091999-11-25 00:26:21 +11001701 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001702 if (c->type != SSH_CHANNEL_OPEN &&
1703 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001704 return;
1705
1706 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001707 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001708 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001709
Damien Miller95def091999-11-25 00:26:21 +11001710 /* Get the data. */
1711 data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +10001712
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001713 if (compat20) {
Damien Miller33b13562000-04-04 14:38:59 +10001714 if (data_len > c->local_maxpacket) {
Damien Miller996acd22003-04-09 20:59:48 +10001715 logit("channel %d: rcvd big packet %d, maxpack %d",
Damien Miller33b13562000-04-04 14:38:59 +10001716 c->self, data_len, c->local_maxpacket);
1717 }
1718 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001719 logit("channel %d: rcvd too much data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001720 c->self, data_len, c->local_window);
1721 xfree(data);
1722 return;
1723 }
1724 c->local_window -= data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001725 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001726 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001727 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001728 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001729}
Ben Lindstrome9c99912001-06-09 00:41:05 +00001730
Damien Miller4af51302000-04-16 11:18:38 +10001731void
Damien Miller630d6f42002-01-22 23:17:30 +11001732channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001733{
1734 int id;
Damien Miller33b13562000-04-04 14:38:59 +10001735 char *data;
Ben Lindstromdaa21792002-06-25 23:15:30 +00001736 u_int data_len, tcode;
Damien Miller33b13562000-04-04 14:38:59 +10001737 Channel *c;
1738
1739 /* Get the channel number and verify it. */
1740 id = packet_get_int();
1741 c = channel_lookup(id);
1742
1743 if (c == NULL)
1744 packet_disconnect("Received extended_data for bad channel %d.", id);
1745 if (c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10001746 logit("channel %d: ext data for non open", id);
Damien Miller33b13562000-04-04 14:38:59 +10001747 return;
1748 }
Ben Lindstromcf159442002-03-26 03:26:24 +00001749 if (c->flags & CHAN_EOF_RCVD) {
1750 if (datafellows & SSH_BUG_EXTEOF)
1751 debug("channel %d: accepting ext data after eof", id);
1752 else
1753 packet_disconnect("Received extended_data after EOF "
1754 "on channel %d.", id);
1755 }
Damien Miller33b13562000-04-04 14:38:59 +10001756 tcode = packet_get_int();
1757 if (c->efd == -1 ||
1758 c->extended_usage != CHAN_EXTENDED_WRITE ||
1759 tcode != SSH2_EXTENDED_DATA_STDERR) {
Damien Miller996acd22003-04-09 20:59:48 +10001760 logit("channel %d: bad ext data", c->self);
Damien Miller33b13562000-04-04 14:38:59 +10001761 return;
1762 }
1763 data = packet_get_string(&data_len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001764 packet_check_eom();
Damien Miller33b13562000-04-04 14:38:59 +10001765 if (data_len > c->local_window) {
Damien Miller996acd22003-04-09 20:59:48 +10001766 logit("channel %d: rcvd too much extended_data %d, win %d",
Damien Miller33b13562000-04-04 14:38:59 +10001767 c->self, data_len, c->local_window);
1768 xfree(data);
1769 return;
1770 }
Damien Millerd3444942000-09-30 14:20:03 +11001771 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001772 c->local_window -= data_len;
1773 buffer_append(&c->extended, data, data_len);
1774 xfree(data);
1775}
1776
Damien Miller4af51302000-04-16 11:18:38 +10001777void
Damien Miller630d6f42002-01-22 23:17:30 +11001778channel_input_ieof(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001779{
1780 int id;
1781 Channel *c;
1782
Damien Millerb38eff82000-04-01 11:09:21 +10001783 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001784 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001785 c = channel_lookup(id);
1786 if (c == NULL)
1787 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1788 chan_rcvd_ieof(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001789
1790 /* XXX force input close */
Damien Millera90fc082002-01-22 23:19:38 +11001791 if (c->force_drain && c->istate == CHAN_INPUT_OPEN) {
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001792 debug("channel %d: FORCE input drain", c->self);
1793 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Miller73f10742002-01-22 23:34:52 +11001794 if (buffer_len(&c->input) == 0)
1795 chan_ibuf_empty(c);
Ben Lindstrom944c4f02001-09-18 05:51:13 +00001796 }
1797
Damien Millerb38eff82000-04-01 11:09:21 +10001798}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001799
Damien Miller4af51302000-04-16 11:18:38 +10001800void
Damien Miller630d6f42002-01-22 23:17:30 +11001801channel_input_close(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001802{
Damien Millerb38eff82000-04-01 11:09:21 +10001803 int id;
1804 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001805
Damien Millerb38eff82000-04-01 11:09:21 +10001806 id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001807 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001808 c = channel_lookup(id);
1809 if (c == NULL)
1810 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001811
1812 /*
1813 * Send a confirmation that we have closed the channel and no more
1814 * data is coming for it.
1815 */
Damien Miller95def091999-11-25 00:26:21 +11001816 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001817 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001818 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819
Damien Miller5428f641999-11-25 11:54:57 +11001820 /*
1821 * If the channel is in closed state, we have sent a close request,
1822 * and the other side will eventually respond with a confirmation.
1823 * Thus, we cannot free the channel here, because then there would be
1824 * no-one to receive the confirmation. The channel gets freed when
1825 * the confirmation arrives.
1826 */
Damien Millerb38eff82000-04-01 11:09:21 +10001827 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001828 /*
1829 * Not a closed channel - mark it as draining, which will
1830 * cause it to be freed later.
1831 */
Damien Miller76765c02002-01-22 23:21:15 +11001832 buffer_clear(&c->input);
Damien Millerb38eff82000-04-01 11:09:21 +10001833 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001834 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001835}
1836
Damien Millerb38eff82000-04-01 11:09:21 +10001837/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001838void
Damien Miller630d6f42002-01-22 23:17:30 +11001839channel_input_oclose(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840{
Damien Millerb38eff82000-04-01 11:09:21 +10001841 int id = packet_get_int();
1842 Channel *c = channel_lookup(id);
Damien Miller66823cd2002-01-22 23:11:38 +11001843
Damien Miller48b03fc2002-01-22 23:11:40 +11001844 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001845 if (c == NULL)
1846 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1847 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848}
1849
Damien Miller4af51302000-04-16 11:18:38 +10001850void
Damien Miller630d6f42002-01-22 23:17:30 +11001851channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001852{
1853 int id = packet_get_int();
1854 Channel *c = channel_lookup(id);
1855
Damien Miller48b03fc2002-01-22 23:11:40 +11001856 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +10001857 if (c == NULL)
1858 packet_disconnect("Received close confirmation for "
1859 "out-of-range channel %d.", id);
1860 if (c->type != SSH_CHANNEL_CLOSED)
1861 packet_disconnect("Received close confirmation for "
1862 "non-closed channel %d (type %d).", id, c->type);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001863 channel_free(c);
Damien Millerb38eff82000-04-01 11:09:21 +10001864}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001865
Damien Miller4af51302000-04-16 11:18:38 +10001866void
Damien Miller630d6f42002-01-22 23:17:30 +11001867channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001868{
Damien Millerb38eff82000-04-01 11:09:21 +10001869 int id, remote_id;
1870 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871
Damien Millerb38eff82000-04-01 11:09:21 +10001872 id = packet_get_int();
1873 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001874
Damien Millerb38eff82000-04-01 11:09:21 +10001875 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1876 packet_disconnect("Received open confirmation for "
1877 "non-opening channel %d.", id);
1878 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001879 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001880 c->remote_id = remote_id;
1881 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001882
1883 if (compat20) {
1884 c->remote_window = packet_get_int();
1885 c->remote_maxpacket = packet_get_int();
Damien Miller67f0bc02002-02-05 12:23:08 +11001886 if (c->confirm) {
Damien Millerd3444942000-09-30 14:20:03 +11001887 debug2("callback start");
Damien Miller67f0bc02002-02-05 12:23:08 +11001888 c->confirm(c->self, NULL);
Damien Millerd3444942000-09-30 14:20:03 +11001889 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001890 }
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001891 debug("channel %d: open confirm rwindow %u rmax %u", c->self,
Damien Miller33b13562000-04-04 14:38:59 +10001892 c->remote_window, c->remote_maxpacket);
1893 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001894 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001895}
1896
Ben Lindstrombba81212001-06-25 05:01:22 +00001897static char *
Ben Lindstrom69128662001-05-08 20:07:39 +00001898reason2txt(int reason)
1899{
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001900 switch (reason) {
Ben Lindstrom69128662001-05-08 20:07:39 +00001901 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED:
1902 return "administratively prohibited";
1903 case SSH2_OPEN_CONNECT_FAILED:
1904 return "connect failed";
1905 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE:
1906 return "unknown channel type";
1907 case SSH2_OPEN_RESOURCE_SHORTAGE:
1908 return "resource shortage";
1909 }
Ben Lindstrome2595442001-06-05 20:01:39 +00001910 return "unknown reason";
Ben Lindstrom69128662001-05-08 20:07:39 +00001911}
1912
Damien Miller4af51302000-04-16 11:18:38 +10001913void
Damien Miller630d6f42002-01-22 23:17:30 +11001914channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001915{
Kevin Steves12057502001-02-05 14:54:34 +00001916 int id, reason;
1917 char *msg = NULL, *lang = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001918 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919
Damien Millerb38eff82000-04-01 11:09:21 +10001920 id = packet_get_int();
1921 c = channel_lookup(id);
1922
1923 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1924 packet_disconnect("Received open failure for "
1925 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001926 if (compat20) {
Kevin Steves12057502001-02-05 14:54:34 +00001927 reason = packet_get_int();
Ben Lindstromf3436742001-04-29 19:52:00 +00001928 if (!(datafellows & SSH_BUG_OPENFAILURE)) {
Kevin Steves12057502001-02-05 14:54:34 +00001929 msg = packet_get_string(NULL);
1930 lang = packet_get_string(NULL);
1931 }
Damien Miller996acd22003-04-09 20:59:48 +10001932 logit("channel %d: open failed: %s%s%s", id,
Ben Lindstrom69128662001-05-08 20:07:39 +00001933 reason2txt(reason), msg ? ": ": "", msg ? msg : "");
Kevin Steves12057502001-02-05 14:54:34 +00001934 if (msg != NULL)
1935 xfree(msg);
1936 if (lang != NULL)
1937 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001938 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001939 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001940 /* Free the channel. This will also close the socket. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001941 channel_free(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001942}
1943
Damien Miller33b13562000-04-04 14:38:59 +10001944void
Damien Miller630d6f42002-01-22 23:17:30 +11001945channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001946{
1947 Channel *c;
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001948 int id;
1949 u_int adjust;
Damien Miller33b13562000-04-04 14:38:59 +10001950
1951 if (!compat20)
1952 return;
1953
1954 /* Get the channel number and verify it. */
1955 id = packet_get_int();
1956 c = channel_lookup(id);
1957
1958 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
Damien Miller996acd22003-04-09 20:59:48 +10001959 logit("Received window adjust for "
Damien Miller33b13562000-04-04 14:38:59 +10001960 "non-open channel %d.", id);
1961 return;
1962 }
1963 adjust = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001964 packet_check_eom();
Ben Lindstrom4fed2be2002-06-25 23:17:36 +00001965 debug2("channel %d: rcvd adjust %u", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001966 c->remote_window += adjust;
1967}
1968
Damien Miller4af51302000-04-16 11:18:38 +10001969void
Damien Miller630d6f42002-01-22 23:17:30 +11001970channel_input_port_open(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001971{
Ben Lindstrome9c99912001-06-09 00:41:05 +00001972 Channel *c = NULL;
1973 u_short host_port;
1974 char *host, *originator_string;
1975 int remote_id, sock = -1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001976
Ben Lindstrome9c99912001-06-09 00:41:05 +00001977 remote_id = packet_get_int();
1978 host = packet_get_string(NULL);
1979 host_port = packet_get_int();
1980
1981 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
1982 originator_string = packet_get_string(NULL);
1983 } else {
1984 originator_string = xstrdup("unknown (remote did not supply name)");
1985 }
Damien Miller48b03fc2002-01-22 23:11:40 +11001986 packet_check_eom();
Ben Lindstrome9c99912001-06-09 00:41:05 +00001987 sock = channel_connect_to(host, host_port);
1988 if (sock != -1) {
1989 c = channel_new("connected socket",
1990 SSH_CHANNEL_CONNECTING, sock, sock, -1, 0, 0, 0,
1991 originator_string, 1);
Damien Miller699d0032002-02-08 22:07:16 +11001992 c->remote_id = remote_id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001993 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001994 xfree(originator_string);
Ben Lindstrome9c99912001-06-09 00:41:05 +00001995 if (c == NULL) {
1996 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1997 packet_put_int(remote_id);
1998 packet_send();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001999 }
Ben Lindstrome9c99912001-06-09 00:41:05 +00002000 xfree(host);
Ben Lindstrom5744dc42001-04-13 23:28:01 +00002001}
2002
2003
Ben Lindstrome9c99912001-06-09 00:41:05 +00002004/* -- tcp forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002005
Ben Lindstrom908afed2001-10-03 17:34:59 +00002006void
2007channel_set_af(int af)
2008{
2009 IPv4or6 = af;
2010}
2011
Damien Millerb16461c2002-01-22 23:29:22 +11002012static int
2013channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port,
2014 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002015{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002016 Channel *c;
Damien Millerb16461c2002-01-22 23:29:22 +11002017 int success, sock, on = 1;
Damien Miller34132e52000-01-14 15:45:46 +11002018 struct addrinfo hints, *ai, *aitop;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002019 const char *host;
Damien Millerb16461c2002-01-22 23:29:22 +11002020 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002021
Kevin Steves12057502001-02-05 14:54:34 +00002022 success = 0;
Damien Millerb16461c2002-01-22 23:29:22 +11002023 host = (type == SSH_CHANNEL_RPORT_LISTENER) ?
2024 listen_addr : host_to_connect;
Kevin Steves12057502001-02-05 14:54:34 +00002025
Damien Millerb16461c2002-01-22 23:29:22 +11002026 if (host == NULL) {
2027 error("No forward host name.");
2028 return success;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002029 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002030 if (strlen(host) > SSH_CHANNEL_PATH_LEN - 1) {
Kevin Steves12057502001-02-05 14:54:34 +00002031 error("Forward host name too long.");
2032 return success;
2033 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002034
Damien Miller5428f641999-11-25 11:54:57 +11002035 /*
Damien Miller34132e52000-01-14 15:45:46 +11002036 * getaddrinfo returns a loopback address if the hostname is
2037 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11002038 */
Damien Miller34132e52000-01-14 15:45:46 +11002039 memset(&hints, 0, sizeof(hints));
2040 hints.ai_family = IPv4or6;
2041 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
2042 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002043 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002044 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
2045 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11002046
Damien Miller34132e52000-01-14 15:45:46 +11002047 for (ai = aitop; ai; ai = ai->ai_next) {
2048 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2049 continue;
2050 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2051 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb16461c2002-01-22 23:29:22 +11002052 error("channel_setup_fwd_listener: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002053 continue;
2054 }
2055 /* Create a port to listen for the host. */
Damien Miller2372ace2003-05-14 13:42:23 +10002056 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002057 if (sock < 0) {
2058 /* this is no error since kernel may not support ipv6 */
2059 verbose("socket: %.100s", strerror(errno));
2060 continue;
2061 }
2062 /*
Damien Millere1383ce2002-09-19 11:49:37 +10002063 * Set socket options.
2064 * Allow local port reuse in TIME_WAIT.
Damien Miller34132e52000-01-14 15:45:46 +11002065 */
Damien Millere1383ce2002-09-19 11:49:37 +10002066 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &on,
2067 sizeof(on)) == -1)
2068 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
2069
Damien Miller34132e52000-01-14 15:45:46 +11002070 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11002071
Damien Miller34132e52000-01-14 15:45:46 +11002072 /* Bind the socket to the address. */
2073 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2074 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11002075 if (!ai->ai_next)
2076 error("bind: %.100s", strerror(errno));
2077 else
2078 verbose("bind: %.100s", strerror(errno));
Kevin Stevesef4eea92001-02-05 12:42:17 +00002079
Damien Miller34132e52000-01-14 15:45:46 +11002080 close(sock);
2081 continue;
2082 }
2083 /* Start listening for connections on the socket. */
2084 if (listen(sock, 5) < 0) {
2085 error("listen: %.100s", strerror(errno));
2086 close(sock);
2087 continue;
2088 }
2089 /* Allocate a channel number for the socket. */
Ben Lindstrome9c99912001-06-09 00:41:05 +00002090 c = channel_new("port listener", type, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10002091 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002092 0, "port listener", 1);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002093 strlcpy(c->path, host, sizeof(c->path));
2094 c->host_port = port_to_connect;
2095 c->listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11002096 success = 1;
2097 }
2098 if (success == 0)
Damien Millerb16461c2002-01-22 23:29:22 +11002099 error("channel_setup_fwd_listener: cannot listen to port: %d",
Kevin Steves12057502001-02-05 14:54:34 +00002100 listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11002101 freeaddrinfo(aitop);
Kevin Steves12057502001-02-05 14:54:34 +00002102 return success;
Damien Miller95def091999-11-25 00:26:21 +11002103}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002104
Damien Millerb16461c2002-01-22 23:29:22 +11002105/* protocol local port fwd, used by ssh (and sshd in v1) */
2106int
2107channel_setup_local_fwd_listener(u_short listen_port,
2108 const char *host_to_connect, u_short port_to_connect, int gateway_ports)
2109{
2110 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER,
2111 NULL, listen_port, host_to_connect, port_to_connect, gateway_ports);
2112}
2113
2114/* protocol v2 remote port fwd, used by sshd */
2115int
2116channel_setup_remote_fwd_listener(const char *listen_address,
2117 u_short listen_port, int gateway_ports)
2118{
2119 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER,
2120 listen_address, listen_port, NULL, 0, gateway_ports);
2121}
2122
Damien Miller5428f641999-11-25 11:54:57 +11002123/*
2124 * Initiate forwarding of connections to port "port" on remote host through
2125 * the secure channel to host:port from local side.
2126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002127
Damien Miller4af51302000-04-16 11:18:38 +10002128void
Damien Miller0bc1bd82000-11-13 22:57:25 +11002129channel_request_remote_forwarding(u_short listen_port,
2130 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131{
Damien Millerdff50992002-01-22 23:16:32 +11002132 int type, success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002133
Damien Miller95def091999-11-25 00:26:21 +11002134 /* Record locally that connection to this host/port is permitted. */
2135 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2136 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002137
Damien Miller95def091999-11-25 00:26:21 +11002138 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10002139 if (compat20) {
2140 const char *address_to_bind = "0.0.0.0";
2141 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2142 packet_put_cstring("tcpip-forward");
Damien Miller2797f7f2002-04-23 21:09:44 +10002143 packet_put_char(1); /* boolean: want reply */
Damien Miller33b13562000-04-04 14:38:59 +10002144 packet_put_cstring(address_to_bind);
2145 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002146 packet_send();
2147 packet_write_wait();
2148 /* Assume that server accepts the request */
2149 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10002150 } else {
2151 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10002152 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10002153 packet_put_cstring(host_to_connect);
2154 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10002155 packet_send();
2156 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002157
2158 /* Wait for response from the remote side. */
Damien Millerdff50992002-01-22 23:16:32 +11002159 type = packet_read();
Damien Miller0bc1bd82000-11-13 22:57:25 +11002160 switch (type) {
2161 case SSH_SMSG_SUCCESS:
2162 success = 1;
2163 break;
2164 case SSH_SMSG_FAILURE:
Damien Miller996acd22003-04-09 20:59:48 +10002165 logit("Warning: Server denied remote port forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002166 break;
2167 default:
2168 /* Unknown packet */
2169 packet_disconnect("Protocol error for port forward request:"
2170 "received packet type %d.", type);
2171 }
2172 }
2173 if (success) {
2174 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
2175 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
2176 permitted_opens[num_permitted_opens].listen_port = listen_port;
2177 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10002178 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002179}
2180
Damien Miller5428f641999-11-25 11:54:57 +11002181/*
2182 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2183 * listening for the port, and sends back a success reply (or disconnect
2184 * message if there was an error). This never returns if there was an error.
2185 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002186
Damien Miller4af51302000-04-16 11:18:38 +10002187void
Damien Millere247cc42000-05-07 12:03:14 +10002188channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002189{
Damien Milleraae6c611999-12-06 11:47:28 +11002190 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11002191 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002192
Damien Miller95def091999-11-25 00:26:21 +11002193 /* Get arguments from the packet. */
2194 port = packet_get_int();
2195 hostname = packet_get_string(NULL);
2196 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002197
Damien Millerbac2d8a2000-09-05 16:13:06 +11002198#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11002199 /*
2200 * Check that an unprivileged user is not trying to forward a
2201 * privileged port.
2202 */
Damien Miller95def091999-11-25 00:26:21 +11002203 if (port < IPPORT_RESERVED && !is_root)
2204 packet_disconnect("Requested forwarding of port %d but user is not root.",
2205 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11002206#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002207 /* Initiate forwarding */
Damien Millerb16461c2002-01-22 23:29:22 +11002208 channel_setup_local_fwd_listener(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11002209
2210 /* Free the argument string. */
2211 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002212}
2213
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002214/*
2215 * Permits opening to any host/port if permitted_opens[] is empty. This is
2216 * usually called by the server, because the user could connect to any port
2217 * anyway, and the server has no way to know but to trust the client anyway.
2218 */
2219void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002220channel_permit_all_opens(void)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002221{
2222 if (num_permitted_opens == 0)
2223 all_opens_permitted = 1;
2224}
2225
Ben Lindstroma3700052001-04-05 23:26:32 +00002226void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002227channel_add_permitted_opens(char *host, int port)
2228{
2229 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
2230 fatal("channel_request_remote_forwarding: too many forwards");
2231 debug("allow port forwarding to host %s port %d", host, port);
2232
2233 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
2234 permitted_opens[num_permitted_opens].port_to_connect = port;
2235 num_permitted_opens++;
2236
2237 all_opens_permitted = 0;
2238}
2239
Ben Lindstroma3700052001-04-05 23:26:32 +00002240void
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002241channel_clear_permitted_opens(void)
2242{
2243 int i;
2244
2245 for (i = 0; i < num_permitted_opens; i++)
2246 xfree(permitted_opens[i].host_to_connect);
2247 num_permitted_opens = 0;
2248
2249}
2250
2251
2252/* return socket to remote host, port */
Ben Lindstrombba81212001-06-25 05:01:22 +00002253static int
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002254connect_to(const char *host, u_short port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002255{
Damien Miller34132e52000-01-14 15:45:46 +11002256 struct addrinfo hints, *ai, *aitop;
2257 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2258 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10002259 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11002260
Damien Miller34132e52000-01-14 15:45:46 +11002261 memset(&hints, 0, sizeof(hints));
2262 hints.ai_family = IPv4or6;
2263 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002264 snprintf(strport, sizeof strport, "%d", port);
Damien Miller34132e52000-01-14 15:45:46 +11002265 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002266 error("connect_to %.100s: unknown host (%s)", host,
2267 gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10002268 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002269 }
Damien Miller34132e52000-01-14 15:45:46 +11002270 for (ai = aitop; ai; ai = ai->ai_next) {
2271 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2272 continue;
2273 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2274 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002275 error("connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11002276 continue;
2277 }
Damien Miller2372ace2003-05-14 13:42:23 +10002278 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002279 if (sock < 0) {
Damien Millerb46b9f32003-01-10 21:45:12 +11002280 if (ai->ai_next == NULL)
2281 error("socket: %.100s", strerror(errno));
2282 else
2283 verbose("socket: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002284 continue;
2285 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +00002286 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002287 fatal("connect_to: F_SETFL: %s", strerror(errno));
Ben Lindstrom7ad97102000-12-06 01:42:49 +00002288 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2289 errno != EINPROGRESS) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002290 error("connect_to %.100s port %s: %.100s", ntop, strport,
Damien Miller34132e52000-01-14 15:45:46 +11002291 strerror(errno));
2292 close(sock);
Kevin Stevesef4eea92001-02-05 12:42:17 +00002293 continue; /* fail -- try next */
Damien Miller34132e52000-01-14 15:45:46 +11002294 }
2295 break; /* success */
2296
2297 }
2298 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002299 if (!ai) {
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002300 error("connect_to %.100s port %d: failed.", host, port);
Damien Millerb38eff82000-04-01 11:09:21 +10002301 return -1;
2302 }
2303 /* success */
Ben Lindstrom1ebd7a52002-02-26 18:12:51 +00002304 set_nodelay(sock);
Damien Millerb38eff82000-04-01 11:09:21 +10002305 return sock;
2306}
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002307
Damien Miller0bc1bd82000-11-13 22:57:25 +11002308int
Ben Lindstrom173e6462001-07-04 05:15:15 +00002309channel_connect_by_listen_address(u_short listen_port)
Damien Miller0bc1bd82000-11-13 22:57:25 +11002310{
2311 int i;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002312
Damien Miller0bc1bd82000-11-13 22:57:25 +11002313 for (i = 0; i < num_permitted_opens; i++)
2314 if (permitted_opens[i].listen_port == listen_port)
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002315 return connect_to(
Damien Miller0bc1bd82000-11-13 22:57:25 +11002316 permitted_opens[i].host_to_connect,
2317 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00002318 error("WARNING: Server requests forwarding for unknown listen_port %d",
2319 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002320 return -1;
2321}
Damien Millerb38eff82000-04-01 11:09:21 +10002322
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002323/* Check if connecting to that port is permitted and connect. */
2324int
2325channel_connect_to(const char *host, u_short port)
2326{
2327 int i, permit;
2328
2329 permit = all_opens_permitted;
2330 if (!permit) {
2331 for (i = 0; i < num_permitted_opens; i++)
2332 if (permitted_opens[i].port_to_connect == port &&
2333 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2334 permit = 1;
2335
2336 }
2337 if (!permit) {
Damien Miller996acd22003-04-09 20:59:48 +10002338 logit("Received request to connect to host %.100s port %d, "
Ben Lindstrom7bb8b492001-03-17 00:47:54 +00002339 "but the request was denied.", host, port);
2340 return -1;
2341 }
2342 return connect_to(host, port);
2343}
2344
Ben Lindstrome9c99912001-06-09 00:41:05 +00002345/* -- X11 forwarding */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002346
Damien Miller5428f641999-11-25 11:54:57 +11002347/*
2348 * Creates an internet domain socket for listening for X11 connections.
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002349 * Returns 0 and a suitable display number for the DISPLAY variable
2350 * stored in display_numberp , or -1 if an error occurs.
Damien Miller5428f641999-11-25 11:54:57 +11002351 */
Kevin Steves366298c2001-12-19 17:58:01 +00002352int
Damien Miller95c249f2002-02-05 12:11:34 +11002353x11_create_display_inet(int x11_display_offset, int x11_use_localhost,
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002354 int single_connection, u_int *display_numberp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002355{
Damien Millere7378562001-12-21 14:58:35 +11002356 Channel *nc = NULL;
Damien Milleraae6c611999-12-06 11:47:28 +11002357 int display_number, sock;
2358 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11002359 struct addrinfo hints, *ai, *aitop;
2360 char strport[NI_MAXSERV];
2361 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002362
Damien Millera34a28b1999-12-14 10:47:15 +11002363 for (display_number = x11_display_offset;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002364 display_number < MAX_DISPLAYS;
2365 display_number++) {
Damien Miller95def091999-11-25 00:26:21 +11002366 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11002367 memset(&hints, 0, sizeof(hints));
2368 hints.ai_family = IPv4or6;
Damien Miller95c249f2002-02-05 12:11:34 +11002369 hints.ai_flags = x11_use_localhost ? 0: AI_PASSIVE;
Damien Miller34132e52000-01-14 15:45:46 +11002370 hints.ai_socktype = SOCK_STREAM;
2371 snprintf(strport, sizeof strport, "%d", port);
2372 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2373 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Kevin Steves366298c2001-12-19 17:58:01 +00002374 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002375 }
Damien Miller34132e52000-01-14 15:45:46 +11002376 for (ai = aitop; ai; ai = ai->ai_next) {
2377 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2378 continue;
Damien Miller2372ace2003-05-14 13:42:23 +10002379 sock = socket(ai->ai_family, ai->ai_socktype,
2380 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002381 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11002382 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11002383 error("socket: %.100s", strerror(errno));
Kevin Steves366298c2001-12-19 17:58:01 +00002384 return -1;
Damien Millere2192732000-01-17 13:22:55 +11002385 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11002386 debug("x11_create_display_inet: Socket family %d not supported",
2387 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11002388 continue;
2389 }
Damien Miller34132e52000-01-14 15:45:46 +11002390 }
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002391#ifdef IPV6_V6ONLY
2392 if (ai->ai_family == AF_INET6) {
2393 int on = 1;
2394 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) < 0)
2395 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno));
2396 }
2397#endif
Damien Miller34132e52000-01-14 15:45:46 +11002398 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2399 debug("bind port %d: %.100s", port, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002400 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11002401
2402 if (ai->ai_next)
2403 continue;
2404
Damien Miller34132e52000-01-14 15:45:46 +11002405 for (n = 0; n < num_socks; n++) {
Damien Miller34132e52000-01-14 15:45:46 +11002406 close(socks[n]);
2407 }
2408 num_socks = 0;
2409 break;
2410 }
2411 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11002412#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11002413 if (num_socks == NUM_SOCKS)
2414 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11002415#else
Kevin Stevesdf75dd22002-06-04 20:52:19 +00002416 if (x11_use_localhost) {
2417 if (num_socks == NUM_SOCKS)
2418 break;
2419 } else {
2420 break;
2421 }
Damien Miller7bcb0892000-03-11 20:45:40 +11002422#endif
Damien Miller95def091999-11-25 00:26:21 +11002423 }
Ben Lindstrom87b147f2001-01-25 00:41:12 +00002424 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11002425 if (num_socks > 0)
2426 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002427 }
Damien Miller95def091999-11-25 00:26:21 +11002428 if (display_number >= MAX_DISPLAYS) {
2429 error("Failed to allocate internet-domain X11 display socket.");
Kevin Steves366298c2001-12-19 17:58:01 +00002430 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002431 }
Damien Miller95def091999-11-25 00:26:21 +11002432 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11002433 for (n = 0; n < num_socks; n++) {
2434 sock = socks[n];
2435 if (listen(sock, 5) < 0) {
2436 error("listen: %.100s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11002437 close(sock);
Kevin Steves366298c2001-12-19 17:58:01 +00002438 return -1;
Damien Miller34132e52000-01-14 15:45:46 +11002439 }
Damien Miller95def091999-11-25 00:26:21 +11002440 }
Damien Miller34132e52000-01-14 15:45:46 +11002441
Damien Miller34132e52000-01-14 15:45:46 +11002442 /* Allocate a channel for each socket. */
2443 for (n = 0; n < num_socks; n++) {
2444 sock = socks[n];
Damien Millere7378562001-12-21 14:58:35 +11002445 nc = channel_new("x11 listener",
Damien Millerbd483e72000-04-30 10:00:53 +10002446 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2447 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002448 0, "X11 inet listener", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002449 nc->single_connection = single_connection;
Damien Miller34132e52000-01-14 15:45:46 +11002450 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002451
Kevin Steves366298c2001-12-19 17:58:01 +00002452 /* Return the display number for the DISPLAY environment variable. */
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002453 *display_numberp = display_number;
2454 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002455}
2456
Ben Lindstrombba81212001-06-25 05:01:22 +00002457static int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002458connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459{
Damien Miller95def091999-11-25 00:26:21 +11002460 int sock;
2461 struct sockaddr_un addr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002462
Damien Miller3afe3752001-12-21 12:39:51 +11002463 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2464 if (sock < 0)
2465 error("socket: %.100s", strerror(errno));
2466 memset(&addr, 0, sizeof(addr));
2467 addr.sun_family = AF_UNIX;
2468 snprintf(addr.sun_path, sizeof addr.sun_path, _PATH_UNIX_X, dnr);
2469 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2470 return sock;
2471 close(sock);
Damien Miller95def091999-11-25 00:26:21 +11002472 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2473 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002474}
2475
Damien Millerbd483e72000-04-30 10:00:53 +10002476int
2477x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002478{
Damien Miller398e1cf2002-02-05 11:52:13 +11002479 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002480 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002481 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002482 struct addrinfo hints, *ai, *aitop;
2483 char strport[NI_MAXSERV];
2484 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002485
Damien Miller95def091999-11-25 00:26:21 +11002486 /* Try to open a socket for the local X server. */
2487 display = getenv("DISPLAY");
2488 if (!display) {
2489 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002490 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002491 }
Damien Miller5428f641999-11-25 11:54:57 +11002492 /*
2493 * Now we decode the value of the DISPLAY variable and make a
2494 * connection to the real X server.
2495 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002496
Damien Miller5428f641999-11-25 11:54:57 +11002497 /*
2498 * Check if it is a unix domain socket. Unix domain displays are in
2499 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2500 */
Damien Miller95def091999-11-25 00:26:21 +11002501 if (strncmp(display, "unix:", 5) == 0 ||
2502 display[0] == ':') {
2503 /* Connect to the unix domain socket. */
2504 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2505 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002506 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002507 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002508 }
2509 /* Create a socket. */
2510 sock = connect_local_xsocket(display_number);
2511 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002512 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002513
2514 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002515 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002516 }
Damien Miller5428f641999-11-25 11:54:57 +11002517 /*
2518 * Connect to an inet socket. The DISPLAY value is supposedly
2519 * hostname:d[.s], where hostname may also be numeric IP address.
2520 */
Ben Lindstromccd8d072001-12-07 17:26:48 +00002521 strlcpy(buf, display, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11002522 cp = strchr(buf, ':');
2523 if (!cp) {
2524 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002525 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002526 }
Damien Miller95def091999-11-25 00:26:21 +11002527 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002528 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002529 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2530 error("Could not parse display number from DISPLAY: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +11002531 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002532 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002533 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002534
Damien Miller34132e52000-01-14 15:45:46 +11002535 /* Look up the host address */
2536 memset(&hints, 0, sizeof(hints));
2537 hints.ai_family = IPv4or6;
2538 hints.ai_socktype = SOCK_STREAM;
2539 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2540 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2541 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002542 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002543 }
Damien Miller34132e52000-01-14 15:45:46 +11002544 for (ai = aitop; ai; ai = ai->ai_next) {
2545 /* Create a socket. */
Damien Miller2372ace2003-05-14 13:42:23 +10002546 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11002547 if (sock < 0) {
2548 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002549 continue;
2550 }
2551 /* Connect it to the display. */
2552 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2553 debug("connect %.100s port %d: %.100s", buf,
2554 6000 + display_number, strerror(errno));
2555 close(sock);
2556 continue;
2557 }
2558 /* Success */
2559 break;
Damien Miller34132e52000-01-14 15:45:46 +11002560 }
Damien Miller34132e52000-01-14 15:45:46 +11002561 freeaddrinfo(aitop);
2562 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002563 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002564 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002565 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002566 }
Damien Miller398e1cf2002-02-05 11:52:13 +11002567 set_nodelay(sock);
Damien Millerbd483e72000-04-30 10:00:53 +10002568 return sock;
2569}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002570
Damien Millerbd483e72000-04-30 10:00:53 +10002571/*
2572 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2573 * the remote channel number. We should do whatever we want, and respond
2574 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2575 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002576
Damien Millerbd483e72000-04-30 10:00:53 +10002577void
Damien Miller630d6f42002-01-22 23:17:30 +11002578x11_input_open(int type, u_int32_t seq, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002579{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002580 Channel *c = NULL;
2581 int remote_id, sock = 0;
Damien Millerbd483e72000-04-30 10:00:53 +10002582 char *remote_host;
Damien Millerbd483e72000-04-30 10:00:53 +10002583
2584 debug("Received X11 open request.");
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002585
2586 remote_id = packet_get_int();
Ben Lindstrome9c99912001-06-09 00:41:05 +00002587
2588 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) {
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002589 remote_host = packet_get_string(NULL);
2590 } else {
2591 remote_host = xstrdup("unknown (remote did not supply name)");
2592 }
Damien Miller48b03fc2002-01-22 23:11:40 +11002593 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002594
2595 /* Obtain a connection to the real X display. */
2596 sock = x11_connect_display();
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002597 if (sock != -1) {
2598 /* Allocate a channel for this connection. */
2599 c = channel_new("connected x11 socket",
2600 SSH_CHANNEL_X11_OPEN, sock, sock, -1, 0, 0, 0,
2601 remote_host, 1);
Damien Miller699d0032002-02-08 22:07:16 +11002602 c->remote_id = remote_id;
2603 c->force_drain = 1;
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002604 }
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002605 xfree(remote_host);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002606 if (c == NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +10002607 /* Send refusal to the remote host. */
2608 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002609 packet_put_int(remote_id);
Damien Millerbd483e72000-04-30 10:00:53 +10002610 } else {
Damien Millerbd483e72000-04-30 10:00:53 +10002611 /* Send a confirmation to the remote host. */
2612 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002613 packet_put_int(remote_id);
2614 packet_put_int(c->self);
Damien Millerbd483e72000-04-30 10:00:53 +10002615 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002616 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002617}
2618
Damien Miller69b69aa2000-10-28 14:19:58 +11002619/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2620void
Damien Miller630d6f42002-01-22 23:17:30 +11002621deny_input_open(int type, u_int32_t seq, void *ctxt)
Damien Miller69b69aa2000-10-28 14:19:58 +11002622{
2623 int rchan = packet_get_int();
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00002624
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00002625 switch (type) {
Damien Miller69b69aa2000-10-28 14:19:58 +11002626 case SSH_SMSG_AGENT_OPEN:
2627 error("Warning: ssh server tried agent forwarding.");
2628 break;
2629 case SSH_SMSG_X11_OPEN:
2630 error("Warning: ssh server tried X11 forwarding.");
2631 break;
2632 default:
Damien Miller630d6f42002-01-22 23:17:30 +11002633 error("deny_input_open: type %d", type);
Damien Miller69b69aa2000-10-28 14:19:58 +11002634 break;
2635 }
2636 error("Warning: this is probably a break in attempt by a malicious server.");
2637 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2638 packet_put_int(rchan);
2639 packet_send();
2640}
2641
Damien Miller5428f641999-11-25 11:54:57 +11002642/*
2643 * Requests forwarding of X11 connections, generates fake authentication
2644 * data, and enables authentication spoofing.
Ben Lindstrome9c99912001-06-09 00:41:05 +00002645 * This should be called in the client only.
Damien Miller5428f641999-11-25 11:54:57 +11002646 */
Damien Miller4af51302000-04-16 11:18:38 +10002647void
Damien Millerbd483e72000-04-30 10:00:53 +10002648x11_request_forwarding_with_spoofing(int client_session_id,
2649 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002650{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002651 u_int data_len = (u_int) strlen(data) / 2;
Ben Lindstromb3211a82001-02-10 22:33:19 +00002652 u_int i, value, len;
Damien Miller95def091999-11-25 00:26:21 +11002653 char *new_data;
2654 int screen_number;
2655 const char *cp;
2656 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002657
Damien Miller95def091999-11-25 00:26:21 +11002658 cp = getenv("DISPLAY");
2659 if (cp)
2660 cp = strchr(cp, ':');
2661 if (cp)
2662 cp = strchr(cp, '.');
2663 if (cp)
2664 screen_number = atoi(cp + 1);
2665 else
2666 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002667
Damien Miller95def091999-11-25 00:26:21 +11002668 /* Save protocol name. */
2669 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002670
Damien Miller5428f641999-11-25 11:54:57 +11002671 /*
2672 * Extract real authentication data and generate fake data of the
2673 * same length.
2674 */
Damien Miller95def091999-11-25 00:26:21 +11002675 x11_saved_data = xmalloc(data_len);
2676 x11_fake_data = xmalloc(data_len);
2677 for (i = 0; i < data_len; i++) {
2678 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2679 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2680 if (i % 4 == 0)
2681 rand = arc4random();
2682 x11_saved_data[i] = value;
2683 x11_fake_data[i] = rand & 0xff;
2684 rand >>= 8;
2685 }
2686 x11_saved_data_len = data_len;
2687 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002688
Damien Miller95def091999-11-25 00:26:21 +11002689 /* Convert the fake data into hex. */
Ben Lindstromb3211a82001-02-10 22:33:19 +00002690 len = 2 * data_len + 1;
2691 new_data = xmalloc(len);
Damien Miller95def091999-11-25 00:26:21 +11002692 for (i = 0; i < data_len; i++)
Ben Lindstromb3211a82001-02-10 22:33:19 +00002693 snprintf(new_data + 2 * i, len - 2 * i,
2694 "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002695
Damien Miller95def091999-11-25 00:26:21 +11002696 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002697 if (compat20) {
2698 channel_request_start(client_session_id, "x11-req", 0);
2699 packet_put_char(0); /* XXX bool single connection */
2700 } else {
2701 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2702 }
2703 packet_put_cstring(proto);
2704 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002705 packet_put_int(screen_number);
2706 packet_send();
2707 packet_write_wait();
2708 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002709}
2710
Ben Lindstrome9c99912001-06-09 00:41:05 +00002711
2712/* -- agent forwarding */
2713
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002714/* Sends a message to the server to request authentication fd forwarding. */
2715
Damien Miller4af51302000-04-16 11:18:38 +10002716void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00002717auth_request_forwarding(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002718{
Damien Miller95def091999-11-25 00:26:21 +11002719 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2720 packet_send();
2721 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002722}
2723
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002724/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2725
Damien Miller4af51302000-04-16 11:18:38 +10002726void
Damien Miller630d6f42002-01-22 23:17:30 +11002727auth_input_open_request(int type, u_int32_t seq, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002728{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002729 Channel *c = NULL;
2730 int remote_id, sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002731
Damien Miller95def091999-11-25 00:26:21 +11002732 /* Read the remote channel number from the message. */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002733 remote_id = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002734 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002735
Damien Miller5428f641999-11-25 11:54:57 +11002736 /*
2737 * Get a connection to the local authentication agent (this may again
2738 * get forwarded).
2739 */
Damien Miller95def091999-11-25 00:26:21 +11002740 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002741
Damien Miller5428f641999-11-25 11:54:57 +11002742 /*
2743 * If we could not connect the agent, send an error message back to
2744 * the server. This should never happen unless the agent dies,
2745 * because authentication forwarding is only enabled if we have an
2746 * agent.
2747 */
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002748 if (sock >= 0) {
Ben Lindstrome9c99912001-06-09 00:41:05 +00002749 c = channel_new("", SSH_CHANNEL_OPEN, sock, sock,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10002750 -1, 0, 0, 0, "authentication agent connection", 1);
Damien Miller699d0032002-02-08 22:07:16 +11002751 c->remote_id = remote_id;
2752 c->force_drain = 1;
Damien Miller95def091999-11-25 00:26:21 +11002753 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00002754 if (c == NULL) {
2755 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2756 packet_put_int(remote_id);
2757 } else {
2758 /* Send a confirmation to the remote host. */
2759 debug("Forwarding authentication connection.");
2760 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2761 packet_put_int(remote_id);
2762 packet_put_int(c->self);
2763 }
Damien Miller95def091999-11-25 00:26:21 +11002764 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002765}