blob: c77f6b96a4a96534251074e6c8aec25ef9cf6654 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * channels.c
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Fri Mar 24 16:35:24 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * This file contains functions for generic socket connection forwarding.
13 * There is also code for initiating connection forwarding for X11 connections,
14 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +100015 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Miller95def091999-11-25 00:26:21 +110017 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include "includes.h"
Damien Millerad833b32000-08-23 10:46:23 +100020RCSID("$OpenBSD: channels.c,v 1.66 2000/08/19 21:55:51 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
22#include "ssh.h"
23#include "packet.h"
24#include "xmalloc.h"
25#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026#include "uidswap.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110027#include "readconf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "servconf.h"
29
30#include "channels.h"
31#include "nchan.h"
32#include "compat.h"
33
Damien Miller33b13562000-04-04 14:38:59 +100034#include "ssh2.h"
35
Damien Miller994cf142000-07-21 10:19:44 +100036#include <openssl/rsa.h>
37#include <openssl/dsa.h>
38#include "key.h"
39#include "authfd.h"
40
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041/* Maximum number of fake X11 displays to try. */
42#define MAX_DISPLAYS 1000
43
44/* Max len of agent socket */
45#define MAX_SOCKET_NAME 100
46
Damien Millerbd483e72000-04-30 10:00:53 +100047/* default window/packet sizes for tcp/x11-fwd-channel */
48#define CHAN_TCP_WINDOW_DEFAULT (8*1024)
49#define CHAN_TCP_PACKET_DEFAULT (CHAN_TCP_WINDOW_DEFAULT/2)
50#define CHAN_X11_WINDOW_DEFAULT (4*1024)
51#define CHAN_X11_PACKET_DEFAULT (CHAN_X11_WINDOW_DEFAULT/2)
Damien Millerb38eff82000-04-01 11:09:21 +100052
Damien Miller5428f641999-11-25 11:54:57 +110053/*
54 * Pointer to an array containing all allocated channels. The array is
55 * dynamically extended as needed.
56 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057static Channel *channels = NULL;
58
Damien Miller5428f641999-11-25 11:54:57 +110059/*
60 * Size of the channel array. All slots of the array must always be
61 * initialized (at least the type field); unused slots are marked with type
62 * SSH_CHANNEL_FREE.
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064static int channels_alloc = 0;
65
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Maximum file descriptor value used in any of the channels. This is
68 * updated in channel_allocate.
69 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070static int channel_max_fd_value = 0;
71
72/* Name and directory of socket for authentication agent forwarding. */
73static char *channel_forwarded_auth_socket_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +110074static char *channel_forwarded_auth_socket_dir = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
76/* Saved X11 authentication protocol name. */
77char *x11_saved_proto = NULL;
78
79/* Saved X11 authentication data. This is the real data. */
80char *x11_saved_data = NULL;
81unsigned int x11_saved_data_len = 0;
82
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Fake X11 authentication data. This is what the server will be sending us;
85 * we should replace any occurrences of this by the real data.
86 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087char *x11_fake_data = NULL;
88unsigned int x11_fake_data_len;
89
Damien Miller5428f641999-11-25 11:54:57 +110090/*
91 * Data structure for storing which hosts are permitted for forward requests.
92 * The local sides of any remote forwards are stored in this array to prevent
93 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
94 * network (which might be behind a firewall).
95 */
Damien Miller95def091999-11-25 00:26:21 +110096typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100097 char *host_to_connect; /* Connect to 'host'. */
98 u_short port_to_connect; /* Connect to 'port'. */
99 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100} ForwardPermission;
101
102/* List of all permitted host/port pairs to connect. */
103static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
104/* Number of permitted host/port pairs in the array. */
105static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * If this is true, all opens are permitted. This is the case on the server
108 * on which we have to trust the client anyway, and the user could do
109 * anything after logging in anyway.
110 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111static int all_opens_permitted = 0;
112
113/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
114static int have_hostname_in_open = 0;
115
116/* Sets specific protocol options. */
117
Damien Miller4af51302000-04-16 11:18:38 +1000118void
Damien Miller95def091999-11-25 00:26:21 +1100119channel_set_options(int hostname_in_open)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120{
Damien Miller95def091999-11-25 00:26:21 +1100121 have_hostname_in_open = hostname_in_open;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122}
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Permits opening to any host/port in SSH_MSG_PORT_OPEN. This is usually
126 * called by the server, because the user could connect to any port anyway,
127 * and the server has no way to know but to trust the client anyway.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Damien Miller4af51302000-04-16 11:18:38 +1000130void
Damien Miller95def091999-11-25 00:26:21 +1100131channel_permit_all_opens()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132{
Damien Miller95def091999-11-25 00:26:21 +1100133 all_opens_permitted = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134}
135
Damien Millerb38eff82000-04-01 11:09:21 +1000136/* lookup channel by id */
137
138Channel *
139channel_lookup(int id)
140{
141 Channel *c;
Damien Millerc0fd17f2000-06-26 10:22:53 +1000142 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000143 log("channel_lookup: %d: bad id", id);
144 return NULL;
145 }
146 c = &channels[id];
147 if (c->type == SSH_CHANNEL_FREE) {
148 log("channel_lookup: %d: bad id: channel free", id);
149 return NULL;
150 }
151 return c;
152}
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
Damien Millere247cc42000-05-07 12:03:14 +1000155 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000156 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Damien Miller6f83b8e2000-05-02 09:23:45 +1000159void
160channel_register_fds(Channel *c, int rfd, int wfd, int efd, int extusage)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161{
Damien Miller95def091999-11-25 00:26:21 +1100162 /* Update the maximum file descriptor value. */
Damien Millerb38eff82000-04-01 11:09:21 +1000163 if (rfd > channel_max_fd_value)
164 channel_max_fd_value = rfd;
165 if (wfd > channel_max_fd_value)
166 channel_max_fd_value = wfd;
167 if (efd > channel_max_fd_value)
168 channel_max_fd_value = efd;
Damien Miller5428f641999-11-25 11:54:57 +1100169 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000170
Damien Miller6f83b8e2000-05-02 09:23:45 +1000171 c->rfd = rfd;
172 c->wfd = wfd;
173 c->sock = (rfd == wfd) ? rfd : -1;
174 c->efd = efd;
175 c->extended_usage = extusage;
Damien Millere247cc42000-05-07 12:03:14 +1000176 if (rfd != -1)
177 set_nonblock(rfd);
178 if (wfd != -1)
179 set_nonblock(wfd);
180 if (efd != -1)
181 set_nonblock(efd);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000182}
183
184/*
185 * Allocate a new channel object and set its type and socket. This will cause
186 * remote_name to be freed.
187 */
188
189int
190channel_new(char *ctype, int type, int rfd, int wfd, int efd,
191 int window, int maxpack, int extusage, char *remote_name)
192{
193 int i, found;
194 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195
Damien Miller95def091999-11-25 00:26:21 +1100196 /* Do initial allocation if this is the first call. */
197 if (channels_alloc == 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000198 chan_init();
Damien Miller95def091999-11-25 00:26:21 +1100199 channels_alloc = 10;
200 channels = xmalloc(channels_alloc * sizeof(Channel));
201 for (i = 0; i < channels_alloc; i++)
202 channels[i].type = SSH_CHANNEL_FREE;
Damien Miller5428f641999-11-25 11:54:57 +1100203 /*
204 * Kludge: arrange a call to channel_stop_listening if we
205 * terminate with fatal().
206 */
Damien Miller95def091999-11-25 00:26:21 +1100207 fatal_add_cleanup((void (*) (void *)) channel_stop_listening, NULL);
208 }
209 /* Try to find a free slot where to put the new channel. */
210 for (found = -1, i = 0; i < channels_alloc; i++)
211 if (channels[i].type == SSH_CHANNEL_FREE) {
212 /* Found a free slot. */
213 found = i;
214 break;
215 }
216 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100217 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100218 found = channels_alloc;
219 channels_alloc += 10;
220 debug("channel: expanding %d", channels_alloc);
221 channels = xrealloc(channels, channels_alloc * sizeof(Channel));
222 for (i = found; i < channels_alloc; i++)
223 channels[i].type = SSH_CHANNEL_FREE;
224 }
225 /* Initialize and return new channel number. */
226 c = &channels[found];
227 buffer_init(&c->input);
228 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000229 buffer_init(&c->extended);
Damien Miller95def091999-11-25 00:26:21 +1100230 chan_init_iostates(c);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000231 channel_register_fds(c, rfd, wfd, efd, extusage);
Damien Miller95def091999-11-25 00:26:21 +1100232 c->self = found;
233 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000234 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000235 c->local_window = window;
236 c->local_window_max = window;
237 c->local_consumed = 0;
238 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100239 c->remote_id = -1;
240 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000241 c->remote_window = 0;
242 c->remote_maxpacket = 0;
243 c->cb_fn = NULL;
244 c->cb_arg = NULL;
245 c->cb_event = 0;
246 c->dettach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000247 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100248 debug("channel %d: new [%s]", found, remote_name);
249 return found;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000251/* old interface XXX */
Damien Miller4af51302000-04-16 11:18:38 +1000252int
Damien Millerb38eff82000-04-01 11:09:21 +1000253channel_allocate(int type, int sock, char *remote_name)
254{
255 return channel_new("", type, sock, sock, -1, 0, 0, 0, remote_name);
256}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257
Damien Miller6f83b8e2000-05-02 09:23:45 +1000258
259/* Close all channel fd/socket. */
260
261void
262channel_close_fds(Channel *c)
263{
264 if (c->sock != -1) {
265 close(c->sock);
266 c->sock = -1;
267 }
268 if (c->rfd != -1) {
269 close(c->rfd);
270 c->rfd = -1;
271 }
272 if (c->wfd != -1) {
273 close(c->wfd);
274 c->wfd = -1;
275 }
276 if (c->efd != -1) {
277 close(c->efd);
278 c->efd = -1;
279 }
280}
281
282/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Damien Miller4af51302000-04-16 11:18:38 +1000284void
Damien Millerb38eff82000-04-01 11:09:21 +1000285channel_free(int id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286{
Damien Millerb38eff82000-04-01 11:09:21 +1000287 Channel *c = channel_lookup(id);
288 if (c == NULL)
289 packet_disconnect("channel free: bad local channel %d", id);
290 debug("channel_free: channel %d: status: %s", id, channel_open_message());
Damien Miller33b13562000-04-04 14:38:59 +1000291 if (c->dettach_user != NULL) {
292 debug("channel_free: channel %d: dettaching channel user", id);
293 c->dettach_user(c->self, NULL);
294 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000295 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000296 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000297 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000298 buffer_free(&c->input);
299 buffer_free(&c->output);
300 buffer_free(&c->extended);
301 c->type = SSH_CHANNEL_FREE;
302 if (c->remote_name) {
303 xfree(c->remote_name);
304 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100305 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306}
307
Damien Miller5428f641999-11-25 11:54:57 +1100308/*
Damien Millerb38eff82000-04-01 11:09:21 +1000309 * 'channel_pre*' are called just before select() to add any bits relevant to
310 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100311 */
Damien Millerb38eff82000-04-01 11:09:21 +1000312/*
313 * 'channel_post*': perform any appropriate operations for channels which
314 * have events pending.
315 */
316typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
317chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
318chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
319
320void
321channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
322{
323 FD_SET(c->sock, readset);
324}
325
326void
327channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
328{
329 if (buffer_len(&c->input) < packet_get_maxsize())
330 FD_SET(c->sock, readset);
331 if (buffer_len(&c->output) > 0)
332 FD_SET(c->sock, writeset);
333}
334
335void
336channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
337{
338 /* test whether sockets are 'alive' for read/write */
339 if (c->istate == CHAN_INPUT_OPEN)
340 if (buffer_len(&c->input) < packet_get_maxsize())
341 FD_SET(c->sock, readset);
342 if (c->ostate == CHAN_OUTPUT_OPEN ||
343 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
344 if (buffer_len(&c->output) > 0) {
345 FD_SET(c->sock, writeset);
346 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
347 chan_obuf_empty(c);
348 }
349 }
350}
351
352void
Damien Miller33b13562000-04-04 14:38:59 +1000353channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
354{
355 if (c->istate == CHAN_INPUT_OPEN &&
356 c->remote_window > 0 &&
357 buffer_len(&c->input) < c->remote_window)
358 FD_SET(c->rfd, readset);
359 if (c->ostate == CHAN_OUTPUT_OPEN ||
360 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
361 if (buffer_len(&c->output) > 0) {
362 FD_SET(c->wfd, writeset);
363 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
364 chan_obuf_empty(c);
365 }
366 }
367 /** XXX check close conditions, too */
368 if (c->efd != -1) {
369 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
370 buffer_len(&c->extended) > 0)
371 FD_SET(c->efd, writeset);
372 else if (c->extended_usage == CHAN_EXTENDED_READ &&
373 buffer_len(&c->extended) < c->remote_window)
374 FD_SET(c->efd, readset);
375 }
376}
377
378void
Damien Millerb38eff82000-04-01 11:09:21 +1000379channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
380{
381 if (buffer_len(&c->input) == 0) {
382 packet_start(SSH_MSG_CHANNEL_CLOSE);
383 packet_put_int(c->remote_id);
384 packet_send();
385 c->type = SSH_CHANNEL_CLOSED;
386 debug("Closing channel %d after input drain.", c->self);
387 }
388}
389
390void
391channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
392{
393 if (buffer_len(&c->output) == 0)
394 channel_free(c->self);
Damien Miller4af51302000-04-16 11:18:38 +1000395 else
Damien Millerb38eff82000-04-01 11:09:21 +1000396 FD_SET(c->sock, writeset);
397}
398
399/*
400 * This is a special state for X11 authentication spoofing. An opened X11
401 * connection (when authentication spoofing is being done) remains in this
402 * state until the first packet has been completely read. The authentication
403 * data in that packet is then substituted by the real data if it matches the
404 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000405 * XXX All this happens at the client side.
Damien Millerb38eff82000-04-01 11:09:21 +1000406 */
407int
408x11_open_helper(Channel *c)
409{
410 unsigned char *ucp;
411 unsigned int proto_len, data_len;
412
413 /* Check if the fixed size part of the packet is in buffer. */
414 if (buffer_len(&c->output) < 12)
415 return 0;
416
417 /* Parse the lengths of variable-length fields. */
418 ucp = (unsigned char *) buffer_ptr(&c->output);
419 if (ucp[0] == 0x42) { /* Byte order MSB first. */
420 proto_len = 256 * ucp[6] + ucp[7];
421 data_len = 256 * ucp[8] + ucp[9];
422 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
423 proto_len = ucp[6] + 256 * ucp[7];
424 data_len = ucp[8] + 256 * ucp[9];
425 } else {
426 debug("Initial X11 packet contains bad byte order byte: 0x%x",
427 ucp[0]);
428 return -1;
429 }
430
431 /* Check if the whole packet is in buffer. */
432 if (buffer_len(&c->output) <
433 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
434 return 0;
435
436 /* Check if authentication protocol matches. */
437 if (proto_len != strlen(x11_saved_proto) ||
438 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
439 debug("X11 connection uses different authentication protocol.");
440 return -1;
441 }
442 /* Check if authentication data matches our fake data. */
443 if (data_len != x11_fake_data_len ||
444 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
445 x11_fake_data, x11_fake_data_len) != 0) {
446 debug("X11 auth data does not match fake data.");
447 return -1;
448 }
449 /* Check fake data length */
450 if (x11_fake_data_len != x11_saved_data_len) {
451 error("X11 fake_data_len %d != saved_data_len %d",
452 x11_fake_data_len, x11_saved_data_len);
453 return -1;
454 }
455 /*
456 * Received authentication protocol and data match
457 * our fake data. Substitute the fake data with real
458 * data.
459 */
460 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
461 x11_saved_data, x11_saved_data_len);
462 return 1;
463}
464
465void
466channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
467{
468 int ret = x11_open_helper(c);
469 if (ret == 1) {
470 /* Start normal processing for the channel. */
471 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000472 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000473 } else if (ret == -1) {
474 /*
475 * We have received an X11 connection that has bad
476 * authentication information.
477 */
478 log("X11 connection rejected because of wrong authentication.\r\n");
479 buffer_clear(&c->input);
480 buffer_clear(&c->output);
481 close(c->sock);
482 c->sock = -1;
483 c->type = SSH_CHANNEL_CLOSED;
484 packet_start(SSH_MSG_CHANNEL_CLOSE);
485 packet_put_int(c->remote_id);
486 packet_send();
487 }
488}
489
490void
Damien Millerbd483e72000-04-30 10:00:53 +1000491channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000492{
493 int ret = x11_open_helper(c);
494 if (ret == 1) {
495 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000496 if (compat20)
497 channel_pre_open_20(c, readset, writeset);
498 else
499 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000500 } else if (ret == -1) {
501 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000502 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000503 chan_write_failed(c);
504 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
505 }
506}
507
508/* This is our fake X11 server socket. */
509void
510channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
511{
512 struct sockaddr addr;
513 int newsock, newch;
514 socklen_t addrlen;
515 char buf[16384], *remote_hostname;
Damien Millerbd483e72000-04-30 10:00:53 +1000516 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000517
518 if (FD_ISSET(c->sock, readset)) {
519 debug("X11 connection requested.");
520 addrlen = sizeof(addr);
521 newsock = accept(c->sock, &addr, &addrlen);
522 if (newsock < 0) {
523 error("accept: %.100s", strerror(errno));
524 return;
525 }
526 remote_hostname = get_remote_hostname(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000527 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +1000528 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerbd483e72000-04-30 10:00:53 +1000529 remote_hostname, remote_port);
530
531 newch = channel_new("x11",
532 SSH_CHANNEL_OPENING, newsock, newsock, -1,
533 c->local_window_max, c->local_maxpacket,
534 0, xstrdup(buf));
535 if (compat20) {
536 packet_start(SSH2_MSG_CHANNEL_OPEN);
537 packet_put_cstring("x11");
538 packet_put_int(newch);
539 packet_put_int(c->local_window_max);
540 packet_put_int(c->local_maxpacket);
541 /* originator host and port */
542 packet_put_cstring(remote_hostname);
Damien Miller30c3d422000-05-09 11:02:59 +1000543 if (datafellows & SSH_BUG_X11FWD) {
544 debug("ssh2 x11 bug compat mode");
545 } else {
546 packet_put_int(remote_port);
547 }
Damien Millerbd483e72000-04-30 10:00:53 +1000548 packet_send();
549 } else {
550 packet_start(SSH_SMSG_X11_OPEN);
551 packet_put_int(newch);
552 if (have_hostname_in_open)
553 packet_put_string(buf, strlen(buf));
554 packet_send();
555 }
Damien Millerb38eff82000-04-01 11:09:21 +1000556 xfree(remote_hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000557 }
558}
559
560/*
561 * This socket is listening for connections to a forwarded TCP/IP port.
562 */
563void
564channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
565{
566 struct sockaddr addr;
567 int newsock, newch;
568 socklen_t addrlen;
569 char buf[1024], *remote_hostname;
570 int remote_port;
571
572 if (FD_ISSET(c->sock, readset)) {
573 debug("Connection to port %d forwarding "
574 "to %.100s port %d requested.",
575 c->listening_port, c->path, c->host_port);
576 addrlen = sizeof(addr);
577 newsock = accept(c->sock, &addr, &addrlen);
578 if (newsock < 0) {
579 error("accept: %.100s", strerror(errno));
580 return;
581 }
582 remote_hostname = get_remote_hostname(newsock);
583 remote_port = get_peer_port(newsock);
584 snprintf(buf, sizeof buf,
585 "listen port %d for %.100s port %d, "
586 "connect from %.200s port %d",
587 c->listening_port, c->path, c->host_port,
588 remote_hostname, remote_port);
589 newch = channel_new("direct-tcpip",
590 SSH_CHANNEL_OPENING, newsock, newsock, -1,
591 c->local_window_max, c->local_maxpacket,
592 0, xstrdup(buf));
Damien Miller33b13562000-04-04 14:38:59 +1000593 if (compat20) {
594 packet_start(SSH2_MSG_CHANNEL_OPEN);
595 packet_put_cstring("direct-tcpip");
596 packet_put_int(newch);
597 packet_put_int(c->local_window_max);
598 packet_put_int(c->local_maxpacket);
Damien Miller4af51302000-04-16 11:18:38 +1000599 /* target host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000600 packet_put_string(c->path, strlen(c->path));
601 packet_put_int(c->host_port);
Damien Miller4af51302000-04-16 11:18:38 +1000602 /* originator host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000603 packet_put_cstring(remote_hostname);
604 packet_put_int(remote_port);
605 packet_send();
606 } else {
607 packet_start(SSH_MSG_PORT_OPEN);
608 packet_put_int(newch);
609 packet_put_string(c->path, strlen(c->path));
610 packet_put_int(c->host_port);
611 if (have_hostname_in_open) {
612 packet_put_string(buf, strlen(buf));
613 }
614 packet_send();
Damien Millerb38eff82000-04-01 11:09:21 +1000615 }
Damien Millerb38eff82000-04-01 11:09:21 +1000616 xfree(remote_hostname);
617 }
618}
619
620/*
621 * This is the authentication agent socket listening for connections from
622 * clients.
623 */
624void
625channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
626{
627 struct sockaddr addr;
628 int newsock, newch;
629 socklen_t addrlen;
630
631 if (FD_ISSET(c->sock, readset)) {
632 addrlen = sizeof(addr);
633 newsock = accept(c->sock, &addr, &addrlen);
634 if (newsock < 0) {
635 error("accept from auth socket: %.100s", strerror(errno));
636 return;
637 }
638 newch = channel_allocate(SSH_CHANNEL_OPENING, newsock,
639 xstrdup("accepted auth socket"));
640 packet_start(SSH_SMSG_AGENT_OPEN);
641 packet_put_int(newch);
642 packet_send();
643 }
644}
645
646int
647channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
648{
649 char buf[16*1024];
650 int len;
651
652 if (c->rfd != -1 &&
653 FD_ISSET(c->rfd, readset)) {
654 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +1000655 if (len < 0 && (errno == EINTR || errno == EAGAIN))
656 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000657 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +1000658 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +1000659 c->self, c->rfd, len);
660 if (compat13) {
661 buffer_consume(&c->output, buffer_len(&c->output));
662 c->type = SSH_CHANNEL_INPUT_DRAINING;
663 debug("Channel %d status set to input draining.", c->self);
664 } else {
665 chan_read_failed(c);
666 }
667 return -1;
668 }
Damien Millerad833b32000-08-23 10:46:23 +1000669 if(c->input_filter != NULL) {
670 if (c->input_filter(c, buf, len) == -1) {
671 debug("filter stops channel %d", c->self);
672 chan_read_failed(c);
673 }
674 } else {
675 buffer_append(&c->input, buf, len);
676 }
Damien Millerb38eff82000-04-01 11:09:21 +1000677 }
678 return 1;
679}
680int
681channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
682{
683 int len;
684
685 /* Send buffered output data to the socket. */
686 if (c->wfd != -1 &&
687 FD_ISSET(c->wfd, writeset) &&
688 buffer_len(&c->output) > 0) {
689 len = write(c->wfd, buffer_ptr(&c->output),
Damien Miller6f83b8e2000-05-02 09:23:45 +1000690 buffer_len(&c->output));
691 if (len < 0 && (errno == EINTR || errno == EAGAIN))
692 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000693 if (len <= 0) {
694 if (compat13) {
695 buffer_consume(&c->output, buffer_len(&c->output));
696 debug("Channel %d status set to input draining.", c->self);
697 c->type = SSH_CHANNEL_INPUT_DRAINING;
698 } else {
699 chan_write_failed(c);
700 }
701 return -1;
702 }
703 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +1000704 if (compat20 && len > 0) {
705 c->local_consumed += len;
706 }
707 }
708 return 1;
709}
710int
711channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
712{
713 char buf[16*1024];
714 int len;
715
Damien Miller1383bd82000-04-06 12:32:37 +1000716/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +1000717 if (c->efd != -1) {
718 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
719 FD_ISSET(c->efd, writeset) &&
720 buffer_len(&c->extended) > 0) {
721 len = write(c->efd, buffer_ptr(&c->extended),
722 buffer_len(&c->extended));
723 debug("channel %d: written %d to efd %d",
724 c->self, len, c->efd);
725 if (len > 0) {
726 buffer_consume(&c->extended, len);
727 c->local_consumed += len;
728 }
729 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
730 FD_ISSET(c->efd, readset)) {
731 len = read(c->efd, buf, sizeof(buf));
732 debug("channel %d: read %d from efd %d",
733 c->self, len, c->efd);
Damien Miller1383bd82000-04-06 12:32:37 +1000734 if (len == 0) {
735 debug("channel %d: closing efd %d",
736 c->self, c->efd);
737 close(c->efd);
738 c->efd = -1;
739 } else if (len > 0)
Damien Miller33b13562000-04-04 14:38:59 +1000740 buffer_append(&c->extended, buf, len);
741 }
742 }
743 return 1;
744}
745int
746channel_check_window(Channel *c, fd_set * readset, fd_set * writeset)
747{
Damien Millerefb4afe2000-04-12 18:45:05 +1000748 if (!(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +1000749 c->local_window < c->local_window_max/2 &&
750 c->local_consumed > 0) {
751 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
752 packet_put_int(c->remote_id);
753 packet_put_int(c->local_consumed);
754 packet_send();
755 debug("channel %d: window %d sent adjust %d",
756 c->self, c->local_window,
757 c->local_consumed);
758 c->local_window += c->local_consumed;
759 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000760 }
761 return 1;
762}
763
764void
765channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
766{
767 channel_handle_rfd(c, readset, writeset);
768 channel_handle_wfd(c, readset, writeset);
769}
770
771void
Damien Miller33b13562000-04-04 14:38:59 +1000772channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
773{
774 channel_handle_rfd(c, readset, writeset);
775 channel_handle_wfd(c, readset, writeset);
776 channel_handle_efd(c, readset, writeset);
777 channel_check_window(c, readset, writeset);
778}
779
780void
Damien Millerb38eff82000-04-01 11:09:21 +1000781channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
782{
783 int len;
784 /* Send buffered output data to the socket. */
785 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
786 len = write(c->sock, buffer_ptr(&c->output),
787 buffer_len(&c->output));
788 if (len <= 0)
789 buffer_consume(&c->output, buffer_len(&c->output));
790 else
791 buffer_consume(&c->output, len);
792 }
793}
794
795void
Damien Miller33b13562000-04-04 14:38:59 +1000796channel_handler_init_20(void)
797{
798 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +1000799 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +1000800 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000801 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000802
803 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
804 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000805 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000806}
807
808void
Damien Millerb38eff82000-04-01 11:09:21 +1000809channel_handler_init_13(void)
810{
811 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
812 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
813 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
814 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
815 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
816 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
817 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
818
819 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
820 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
821 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
822 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
823 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
824}
825
826void
827channel_handler_init_15(void)
828{
829 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +1000830 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +1000831 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
832 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
833 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
834
835 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
836 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
837 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
838 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
839}
840
841void
842channel_handler_init(void)
843{
844 int i;
845 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
846 channel_pre[i] = NULL;
847 channel_post[i] = NULL;
848 }
Damien Miller33b13562000-04-04 14:38:59 +1000849 if (compat20)
850 channel_handler_init_20();
851 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000852 channel_handler_init_13();
853 else
854 channel_handler_init_15();
855}
856
Damien Miller4af51302000-04-16 11:18:38 +1000857void
Damien Millerb38eff82000-04-01 11:09:21 +1000858channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
859{
860 static int did_init = 0;
861 int i;
862 Channel *c;
863
864 if (!did_init) {
865 channel_handler_init();
866 did_init = 1;
867 }
868 for (i = 0; i < channels_alloc; i++) {
869 c = &channels[i];
870 if (c->type == SSH_CHANNEL_FREE)
871 continue;
872 if (ftab[c->type] == NULL)
873 continue;
874 (*ftab[c->type])(c, readset, writeset);
Damien Miller33b13562000-04-04 14:38:59 +1000875 chan_delete_if_full_closed(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000876 }
877}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000878
Damien Miller4af51302000-04-16 11:18:38 +1000879void
Damien Miller95def091999-11-25 00:26:21 +1100880channel_prepare_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000881{
Damien Millerb38eff82000-04-01 11:09:21 +1000882 channel_handler(channel_pre, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883}
884
Damien Miller4af51302000-04-16 11:18:38 +1000885void
Damien Miller95def091999-11-25 00:26:21 +1100886channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000887{
Damien Millerb38eff82000-04-01 11:09:21 +1000888 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000889}
890
891/* If there is data to send to the connection, send some of it now. */
892
Damien Miller4af51302000-04-16 11:18:38 +1000893void
Damien Miller95def091999-11-25 00:26:21 +1100894channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895{
Damien Miller95def091999-11-25 00:26:21 +1100896 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +1000897 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000898
Damien Miller95def091999-11-25 00:26:21 +1100899 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +1000900 c = &channels[i];
Damien Miller34132e52000-01-14 15:45:46 +1100901
Damien Miller5428f641999-11-25 11:54:57 +1100902 /* We are only interested in channels that can have buffered incoming data. */
Damien Miller34132e52000-01-14 15:45:46 +1100903 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000904 if (c->type != SSH_CHANNEL_OPEN &&
905 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +1100906 continue;
907 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000908 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +1100909 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000910 if (c->istate != CHAN_INPUT_OPEN &&
911 c->istate != CHAN_INPUT_WAIT_DRAIN)
Damien Miller34132e52000-01-14 15:45:46 +1100912 continue;
913 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000914 if (compat20 &&
915 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Damien Miller33b13562000-04-04 14:38:59 +1000916 debug("channel: %d: no data after CLOSE", c->self);
917 continue;
918 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919
Damien Miller95def091999-11-25 00:26:21 +1100920 /* Get the amount of buffered data for this channel. */
Damien Millerb38eff82000-04-01 11:09:21 +1000921 len = buffer_len(&c->input);
Damien Miller95def091999-11-25 00:26:21 +1100922 if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100923 /* Send some data for the other side over the secure connection. */
Damien Miller33b13562000-04-04 14:38:59 +1000924 if (compat20) {
925 if (len > c->remote_window)
926 len = c->remote_window;
927 if (len > c->remote_maxpacket)
928 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +1100929 } else {
Damien Miller33b13562000-04-04 14:38:59 +1000930 if (packet_is_interactive()) {
931 if (len > 1024)
932 len = 512;
933 } else {
934 /* Keep the packets at reasonable size. */
935 if (len > packet_get_maxsize()/2)
936 len = packet_get_maxsize()/2;
937 }
Damien Miller95def091999-11-25 00:26:21 +1100938 }
Damien Millerb38eff82000-04-01 11:09:21 +1000939 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000940 packet_start(compat20 ?
941 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +1000942 packet_put_int(c->remote_id);
943 packet_put_string(buffer_ptr(&c->input), len);
944 packet_send();
945 buffer_consume(&c->input, len);
946 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +1000947 }
948 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +1100949 if (compat13)
950 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +1100951 /*
952 * input-buffer is empty and read-socket shutdown:
953 * tell peer, that we will not send more data: send IEOF
954 */
Damien Millerb38eff82000-04-01 11:09:21 +1000955 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +1100956 }
Damien Miller33b13562000-04-04 14:38:59 +1000957 /* Send extended data, i.e. stderr */
958 if (compat20 &&
959 c->remote_window > 0 &&
960 (len = buffer_len(&c->extended)) > 0 &&
961 c->extended_usage == CHAN_EXTENDED_READ) {
962 if (len > c->remote_window)
963 len = c->remote_window;
964 if (len > c->remote_maxpacket)
965 len = c->remote_maxpacket;
966 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
967 packet_put_int(c->remote_id);
968 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
969 packet_put_string(buffer_ptr(&c->extended), len);
970 packet_send();
971 buffer_consume(&c->extended, len);
972 c->remote_window -= len;
973 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975}
976
Damien Miller5428f641999-11-25 11:54:57 +1100977/*
978 * This is called when a packet of type CHANNEL_DATA has just been received.
979 * The message type has already been consumed, but channel number and data is
980 * still there.
981 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982
Damien Miller4af51302000-04-16 11:18:38 +1000983void
Damien Millerb38eff82000-04-01 11:09:21 +1000984channel_input_data(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985{
Damien Miller34132e52000-01-14 15:45:46 +1100986 int id;
Damien Miller95def091999-11-25 00:26:21 +1100987 char *data;
988 unsigned int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000989 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +1100992 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +1000993 c = channel_lookup(id);
994 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +1100995 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000996
Damien Miller95def091999-11-25 00:26:21 +1100997 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +1000998 if (c->type != SSH_CHANNEL_OPEN &&
999 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001000 return;
1001
1002 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001003 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001004 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001005
Damien Miller95def091999-11-25 00:26:21 +11001006 /* Get the data. */
1007 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001008 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001009
Damien Miller33b13562000-04-04 14:38:59 +10001010 if (compat20){
1011 if (data_len > c->local_maxpacket) {
1012 log("channel %d: rcvd big packet %d, maxpack %d",
1013 c->self, data_len, c->local_maxpacket);
1014 }
1015 if (data_len > c->local_window) {
1016 log("channel %d: rcvd too much data %d, win %d",
1017 c->self, data_len, c->local_window);
1018 xfree(data);
1019 return;
1020 }
1021 c->local_window -= data_len;
1022 }else{
1023 packet_integrity_check(plen, 4 + 4 + data_len, type);
1024 }
Damien Millerb38eff82000-04-01 11:09:21 +10001025 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001026 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001027}
Damien Miller4af51302000-04-16 11:18:38 +10001028void
Damien Miller33b13562000-04-04 14:38:59 +10001029channel_input_extended_data(int type, int plen)
1030{
1031 int id;
1032 int tcode;
1033 char *data;
1034 unsigned int data_len;
1035 Channel *c;
1036
1037 /* Get the channel number and verify it. */
1038 id = packet_get_int();
1039 c = channel_lookup(id);
1040
1041 if (c == NULL)
1042 packet_disconnect("Received extended_data for bad channel %d.", id);
1043 if (c->type != SSH_CHANNEL_OPEN) {
1044 log("channel %d: ext data for non open", id);
1045 return;
1046 }
1047 tcode = packet_get_int();
1048 if (c->efd == -1 ||
1049 c->extended_usage != CHAN_EXTENDED_WRITE ||
1050 tcode != SSH2_EXTENDED_DATA_STDERR) {
1051 log("channel %d: bad ext data", c->self);
1052 return;
1053 }
1054 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001055 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001056 if (data_len > c->local_window) {
1057 log("channel %d: rcvd too much extended_data %d, win %d",
1058 c->self, data_len, c->local_window);
1059 xfree(data);
1060 return;
1061 }
1062 debug("channel %d: rcvd ext data %d", c->self, data_len);
1063 c->local_window -= data_len;
1064 buffer_append(&c->extended, data, data_len);
1065 xfree(data);
1066}
1067
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001068
Damien Miller5428f641999-11-25 11:54:57 +11001069/*
1070 * Returns true if no channel has too much buffered data, and false if one or
1071 * more channel is overfull.
1072 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001073
Damien Miller4af51302000-04-16 11:18:38 +10001074int
Damien Miller95def091999-11-25 00:26:21 +11001075channel_not_very_much_buffered_data()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001076{
Damien Miller95def091999-11-25 00:26:21 +11001077 unsigned int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001078 Channel *c;
Damien Miller95def091999-11-25 00:26:21 +11001079
1080 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001081 c = &channels[i];
1082 if (c->type == SSH_CHANNEL_OPEN) {
Damien Miller33b13562000-04-04 14:38:59 +10001083 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
Damien Millerb38eff82000-04-01 11:09:21 +10001084 debug("channel %d: big input buffer %d",
1085 c->self, buffer_len(&c->input));
Damien Miller95def091999-11-25 00:26:21 +11001086 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001087 }
1088 if (buffer_len(&c->output) > packet_get_maxsize()) {
1089 debug("channel %d: big output buffer %d",
1090 c->self, buffer_len(&c->output));
Damien Miller95def091999-11-25 00:26:21 +11001091 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001092 }
Damien Miller95def091999-11-25 00:26:21 +11001093 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001094 }
Damien Miller95def091999-11-25 00:26:21 +11001095 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001096}
1097
Damien Miller4af51302000-04-16 11:18:38 +10001098void
Damien Millerb38eff82000-04-01 11:09:21 +10001099channel_input_ieof(int type, int plen)
1100{
1101 int id;
1102 Channel *c;
1103
1104 packet_integrity_check(plen, 4, type);
1105
1106 id = packet_get_int();
1107 c = channel_lookup(id);
1108 if (c == NULL)
1109 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1110 chan_rcvd_ieof(c);
1111}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112
Damien Miller4af51302000-04-16 11:18:38 +10001113void
Damien Millerb38eff82000-04-01 11:09:21 +10001114channel_input_close(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001115{
Damien Millerb38eff82000-04-01 11:09:21 +10001116 int id;
1117 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001118
Damien Millerb38eff82000-04-01 11:09:21 +10001119 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001120
Damien Millerb38eff82000-04-01 11:09:21 +10001121 id = packet_get_int();
1122 c = channel_lookup(id);
1123 if (c == NULL)
1124 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001125
1126 /*
1127 * Send a confirmation that we have closed the channel and no more
1128 * data is coming for it.
1129 */
Damien Miller95def091999-11-25 00:26:21 +11001130 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001131 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001132 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001133
Damien Miller5428f641999-11-25 11:54:57 +11001134 /*
1135 * If the channel is in closed state, we have sent a close request,
1136 * and the other side will eventually respond with a confirmation.
1137 * Thus, we cannot free the channel here, because then there would be
1138 * no-one to receive the confirmation. The channel gets freed when
1139 * the confirmation arrives.
1140 */
Damien Millerb38eff82000-04-01 11:09:21 +10001141 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001142 /*
1143 * Not a closed channel - mark it as draining, which will
1144 * cause it to be freed later.
1145 */
Damien Millerb38eff82000-04-01 11:09:21 +10001146 buffer_consume(&c->input, buffer_len(&c->input));
1147 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001148 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001149}
1150
Damien Millerb38eff82000-04-01 11:09:21 +10001151/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001152void
Damien Millerb38eff82000-04-01 11:09:21 +10001153channel_input_oclose(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001154{
Damien Millerb38eff82000-04-01 11:09:21 +10001155 int id = packet_get_int();
1156 Channel *c = channel_lookup(id);
1157 packet_integrity_check(plen, 4, type);
1158 if (c == NULL)
1159 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1160 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161}
1162
Damien Miller4af51302000-04-16 11:18:38 +10001163void
Damien Millerb38eff82000-04-01 11:09:21 +10001164channel_input_close_confirmation(int type, int plen)
1165{
1166 int id = packet_get_int();
1167 Channel *c = channel_lookup(id);
1168
Damien Miller4af51302000-04-16 11:18:38 +10001169 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001170 if (c == NULL)
1171 packet_disconnect("Received close confirmation for "
1172 "out-of-range channel %d.", id);
1173 if (c->type != SSH_CHANNEL_CLOSED)
1174 packet_disconnect("Received close confirmation for "
1175 "non-closed channel %d (type %d).", id, c->type);
1176 channel_free(c->self);
1177}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001178
Damien Miller4af51302000-04-16 11:18:38 +10001179void
Damien Millerb38eff82000-04-01 11:09:21 +10001180channel_input_open_confirmation(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181{
Damien Millerb38eff82000-04-01 11:09:21 +10001182 int id, remote_id;
1183 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001184
Damien Miller33b13562000-04-04 14:38:59 +10001185 if (!compat20)
1186 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001187
Damien Millerb38eff82000-04-01 11:09:21 +10001188 id = packet_get_int();
1189 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001190
Damien Millerb38eff82000-04-01 11:09:21 +10001191 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1192 packet_disconnect("Received open confirmation for "
1193 "non-opening channel %d.", id);
1194 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001195 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001196 c->remote_id = remote_id;
1197 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001198
1199 if (compat20) {
1200 c->remote_window = packet_get_int();
1201 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001202 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001203 if (c->cb_fn != NULL && c->cb_event == type) {
1204 debug("callback start");
1205 c->cb_fn(c->self, c->cb_arg);
1206 debug("callback done");
1207 }
1208 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1209 c->remote_window, c->remote_maxpacket);
1210 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001211}
1212
Damien Miller4af51302000-04-16 11:18:38 +10001213void
Damien Millerb38eff82000-04-01 11:09:21 +10001214channel_input_open_failure(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001215{
Damien Millerb38eff82000-04-01 11:09:21 +10001216 int id;
1217 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001218
Damien Miller33b13562000-04-04 14:38:59 +10001219 if (!compat20)
1220 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001221
1222 id = packet_get_int();
1223 c = channel_lookup(id);
1224
1225 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1226 packet_disconnect("Received open failure for "
1227 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001228 if (compat20) {
1229 int reason = packet_get_int();
1230 char *msg = packet_get_string(NULL);
Damien Miller4af51302000-04-16 11:18:38 +10001231 char *lang = packet_get_string(NULL);
Damien Miller33b13562000-04-04 14:38:59 +10001232 log("channel_open_failure: %d: reason %d: %s", id, reason, msg);
Damien Miller4af51302000-04-16 11:18:38 +10001233 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001234 xfree(msg);
Damien Miller4af51302000-04-16 11:18:38 +10001235 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001236 }
Damien Miller95def091999-11-25 00:26:21 +11001237 /* Free the channel. This will also close the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001238 channel_free(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239}
1240
Damien Miller33b13562000-04-04 14:38:59 +10001241void
1242channel_input_channel_request(int type, int plen)
1243{
1244 int id;
1245 Channel *c;
1246
1247 id = packet_get_int();
1248 c = channel_lookup(id);
1249
1250 if (c == NULL ||
1251 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1252 packet_disconnect("Received request for "
1253 "non-open channel %d.", id);
1254 if (c->cb_fn != NULL && c->cb_event == type) {
1255 debug("callback start");
1256 c->cb_fn(c->self, c->cb_arg);
1257 debug("callback done");
1258 } else {
1259 char *service = packet_get_string(NULL);
1260 debug("channel: %d rcvd request for %s", c->self, service);
1261debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
1262 xfree(service);
1263 }
1264}
1265
Damien Miller4af51302000-04-16 11:18:38 +10001266void
Damien Miller33b13562000-04-04 14:38:59 +10001267channel_input_window_adjust(int type, int plen)
1268{
1269 Channel *c;
1270 int id, adjust;
1271
1272 if (!compat20)
1273 return;
1274
1275 /* Get the channel number and verify it. */
1276 id = packet_get_int();
1277 c = channel_lookup(id);
1278
1279 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1280 log("Received window adjust for "
1281 "non-open channel %d.", id);
1282 return;
1283 }
1284 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001285 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001286 debug("channel %d: rcvd adjust %d", id, adjust);
1287 c->remote_window += adjust;
1288}
1289
Damien Miller5428f641999-11-25 11:54:57 +11001290/*
1291 * Stops listening for channels, and removes any unix domain sockets that we
1292 * might have.
1293 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller4af51302000-04-16 11:18:38 +10001295void
Damien Miller95def091999-11-25 00:26:21 +11001296channel_stop_listening()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001297{
Damien Miller95def091999-11-25 00:26:21 +11001298 int i;
1299 for (i = 0; i < channels_alloc; i++) {
1300 switch (channels[i].type) {
1301 case SSH_CHANNEL_AUTH_SOCKET:
1302 close(channels[i].sock);
1303 remove(channels[i].path);
1304 channel_free(i);
1305 break;
1306 case SSH_CHANNEL_PORT_LISTENER:
1307 case SSH_CHANNEL_X11_LISTENER:
1308 close(channels[i].sock);
1309 channel_free(i);
1310 break;
1311 default:
1312 break;
1313 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001314 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001315}
1316
Damien Miller5428f641999-11-25 11:54:57 +11001317/*
Damien Miller6f83b8e2000-05-02 09:23:45 +10001318 * Closes the sockets/fds of all channels. This is used to close extra file
Damien Miller5428f641999-11-25 11:54:57 +11001319 * descriptors after a fork.
1320 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001321
Damien Miller4af51302000-04-16 11:18:38 +10001322void
Damien Miller95def091999-11-25 00:26:21 +11001323channel_close_all()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001324{
Damien Miller95def091999-11-25 00:26:21 +11001325 int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +10001326 for (i = 0; i < channels_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +11001327 if (channels[i].type != SSH_CHANNEL_FREE)
Damien Miller6f83b8e2000-05-02 09:23:45 +10001328 channel_close_fds(&channels[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001329}
1330
1331/* Returns the maximum file descriptor number used by the channels. */
1332
Damien Miller4af51302000-04-16 11:18:38 +10001333int
Damien Miller95def091999-11-25 00:26:21 +11001334channel_max_fd()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001335{
Damien Miller95def091999-11-25 00:26:21 +11001336 return channel_max_fd_value;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001337}
1338
1339/* Returns true if any channel is still open. */
1340
Damien Miller4af51302000-04-16 11:18:38 +10001341int
Damien Miller95def091999-11-25 00:26:21 +11001342channel_still_open()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343{
Damien Miller95def091999-11-25 00:26:21 +11001344 unsigned int i;
1345 for (i = 0; i < channels_alloc; i++)
1346 switch (channels[i].type) {
1347 case SSH_CHANNEL_FREE:
1348 case SSH_CHANNEL_X11_LISTENER:
1349 case SSH_CHANNEL_PORT_LISTENER:
1350 case SSH_CHANNEL_CLOSED:
1351 case SSH_CHANNEL_AUTH_SOCKET:
1352 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001353 case SSH_CHANNEL_LARVAL:
1354 if (!compat20)
1355 fatal("cannot happen: SSH_CHANNEL_LARVAL");
1356 continue;
Damien Miller95def091999-11-25 00:26:21 +11001357 case SSH_CHANNEL_OPENING:
1358 case SSH_CHANNEL_OPEN:
1359 case SSH_CHANNEL_X11_OPEN:
1360 return 1;
1361 case SSH_CHANNEL_INPUT_DRAINING:
1362 case SSH_CHANNEL_OUTPUT_DRAINING:
1363 if (!compat13)
1364 fatal("cannot happen: OUT_DRAIN");
1365 return 1;
1366 default:
1367 fatal("channel_still_open: bad channel type %d", channels[i].type);
1368 /* NOTREACHED */
1369 }
1370 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001371}
1372
Damien Miller5428f641999-11-25 11:54:57 +11001373/*
1374 * Returns a message describing the currently open forwarded connections,
1375 * suitable for sending to the client. The message contains crlf pairs for
1376 * newlines.
1377 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001378
Damien Miller95def091999-11-25 00:26:21 +11001379char *
1380channel_open_message()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001381{
Damien Miller95def091999-11-25 00:26:21 +11001382 Buffer buffer;
1383 int i;
1384 char buf[512], *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001385
Damien Miller95def091999-11-25 00:26:21 +11001386 buffer_init(&buffer);
1387 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388 buffer_append(&buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001389 for (i = 0; i < channels_alloc; i++) {
1390 Channel *c = &channels[i];
1391 switch (c->type) {
1392 case SSH_CHANNEL_FREE:
1393 case SSH_CHANNEL_X11_LISTENER:
1394 case SSH_CHANNEL_PORT_LISTENER:
1395 case SSH_CHANNEL_CLOSED:
1396 case SSH_CHANNEL_AUTH_SOCKET:
1397 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001398 case SSH_CHANNEL_LARVAL:
Damien Miller95def091999-11-25 00:26:21 +11001399 case SSH_CHANNEL_OPENING:
1400 case SSH_CHANNEL_OPEN:
1401 case SSH_CHANNEL_X11_OPEN:
1402 case SSH_CHANNEL_INPUT_DRAINING:
1403 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Millerb38eff82000-04-01 11:09:21 +10001404 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
Damien Miller34132e52000-01-14 15:45:46 +11001405 c->self, c->remote_name,
1406 c->type, c->remote_id,
1407 c->istate, buffer_len(&c->input),
Damien Millerb38eff82000-04-01 11:09:21 +10001408 c->ostate, buffer_len(&c->output),
1409 c->rfd, c->wfd);
Damien Miller95def091999-11-25 00:26:21 +11001410 buffer_append(&buffer, buf, strlen(buf));
1411 continue;
1412 default:
Damien Millerb38eff82000-04-01 11:09:21 +10001413 fatal("channel_open_message: bad channel type %d", c->type);
Damien Miller95def091999-11-25 00:26:21 +11001414 /* NOTREACHED */
1415 }
1416 }
1417 buffer_append(&buffer, "\0", 1);
1418 cp = xstrdup(buffer_ptr(&buffer));
1419 buffer_free(&buffer);
1420 return cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001421}
1422
Damien Miller5428f641999-11-25 11:54:57 +11001423/*
1424 * Initiate forwarding of connections to local port "port" through the secure
1425 * channel to host:port from remote side.
1426 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001427
Damien Miller4af51302000-04-16 11:18:38 +10001428void
Damien Milleraae6c611999-12-06 11:47:28 +11001429channel_request_local_forwarding(u_short port, const char *host,
Damien Millera34a28b1999-12-14 10:47:15 +11001430 u_short host_port, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001431{
Damien Miller34132e52000-01-14 15:45:46 +11001432 int success, ch, sock, on = 1;
1433 struct addrinfo hints, *ai, *aitop;
1434 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11001435 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436
Damien Miller95def091999-11-25 00:26:21 +11001437 if (strlen(host) > sizeof(channels[0].path) - 1)
1438 packet_disconnect("Forward host name too long.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Damien Miller5428f641999-11-25 11:54:57 +11001440 /*
Damien Miller34132e52000-01-14 15:45:46 +11001441 * getaddrinfo returns a loopback address if the hostname is
1442 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11001443 */
Damien Miller34132e52000-01-14 15:45:46 +11001444 memset(&hints, 0, sizeof(hints));
1445 hints.ai_family = IPv4or6;
1446 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
1447 hints.ai_socktype = SOCK_STREAM;
1448 snprintf(strport, sizeof strport, "%d", port);
1449 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
1450 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11001451
Damien Miller34132e52000-01-14 15:45:46 +11001452 success = 0;
1453 for (ai = aitop; ai; ai = ai->ai_next) {
1454 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1455 continue;
1456 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1457 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1458 error("channel_request_local_forwarding: getnameinfo failed");
1459 continue;
1460 }
1461 /* Create a port to listen for the host. */
1462 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1463 if (sock < 0) {
1464 /* this is no error since kernel may not support ipv6 */
1465 verbose("socket: %.100s", strerror(errno));
1466 continue;
1467 }
1468 /*
1469 * Set socket options. We would like the socket to disappear
1470 * as soon as it has been closed for whatever reason.
1471 */
1472 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
1473 linger.l_onoff = 1;
1474 linger.l_linger = 5;
1475 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
1476 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11001477
Damien Miller34132e52000-01-14 15:45:46 +11001478 /* Bind the socket to the address. */
1479 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1480 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11001481 if (!ai->ai_next)
1482 error("bind: %.100s", strerror(errno));
1483 else
1484 verbose("bind: %.100s", strerror(errno));
1485
Damien Miller34132e52000-01-14 15:45:46 +11001486 close(sock);
1487 continue;
1488 }
1489 /* Start listening for connections on the socket. */
1490 if (listen(sock, 5) < 0) {
1491 error("listen: %.100s", strerror(errno));
1492 close(sock);
1493 continue;
1494 }
1495 /* Allocate a channel number for the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001496 ch = channel_new(
1497 "port listener", SSH_CHANNEL_PORT_LISTENER,
1498 sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10001499 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb38eff82000-04-01 11:09:21 +10001500 0, xstrdup("port listener"));
Damien Miller34132e52000-01-14 15:45:46 +11001501 strlcpy(channels[ch].path, host, sizeof(channels[ch].path));
1502 channels[ch].host_port = host_port;
1503 channels[ch].listening_port = port;
1504 success = 1;
1505 }
1506 if (success == 0)
1507 packet_disconnect("cannot listen port: %d", port);
1508 freeaddrinfo(aitop);
Damien Miller95def091999-11-25 00:26:21 +11001509}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001510
Damien Miller5428f641999-11-25 11:54:57 +11001511/*
1512 * Initiate forwarding of connections to port "port" on remote host through
1513 * the secure channel to host:port from local side.
1514 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001515
Damien Miller4af51302000-04-16 11:18:38 +10001516void
Damien Millerb38eff82000-04-01 11:09:21 +10001517channel_request_remote_forwarding(u_short listen_port, const char *host_to_connect,
1518 u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001519{
Damien Miller95def091999-11-25 00:26:21 +11001520 int payload_len;
1521 /* Record locally that connection to this host/port is permitted. */
1522 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1523 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001524
Damien Millerb38eff82000-04-01 11:09:21 +10001525 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
1526 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
1527 permitted_opens[num_permitted_opens].listen_port = listen_port;
Damien Miller95def091999-11-25 00:26:21 +11001528 num_permitted_opens++;
1529
1530 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10001531 if (compat20) {
1532 const char *address_to_bind = "0.0.0.0";
1533 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1534 packet_put_cstring("tcpip-forward");
1535 packet_put_char(0); /* boolean: want reply */
1536 packet_put_cstring(address_to_bind);
1537 packet_put_int(listen_port);
1538 } else {
1539 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10001540 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10001541 packet_put_cstring(host_to_connect);
1542 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10001543 packet_send();
1544 packet_write_wait();
1545 /*
1546 * Wait for response from the remote side. It will send a disconnect
1547 * message on failure, and we will never see it here.
1548 */
1549 packet_read_expect(&payload_len, SSH_SMSG_SUCCESS);
1550 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001551}
1552
Damien Miller5428f641999-11-25 11:54:57 +11001553/*
1554 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
1555 * listening for the port, and sends back a success reply (or disconnect
1556 * message if there was an error). This never returns if there was an error.
1557 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001558
Damien Miller4af51302000-04-16 11:18:38 +10001559void
Damien Millere247cc42000-05-07 12:03:14 +10001560channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001561{
Damien Milleraae6c611999-12-06 11:47:28 +11001562 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11001563 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564
Damien Miller95def091999-11-25 00:26:21 +11001565 /* Get arguments from the packet. */
1566 port = packet_get_int();
1567 hostname = packet_get_string(NULL);
1568 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001569
Damien Miller5428f641999-11-25 11:54:57 +11001570 /*
1571 * Check that an unprivileged user is not trying to forward a
1572 * privileged port.
1573 */
Damien Miller95def091999-11-25 00:26:21 +11001574 if (port < IPPORT_RESERVED && !is_root)
1575 packet_disconnect("Requested forwarding of port %d but user is not root.",
1576 port);
Damien Millera34a28b1999-12-14 10:47:15 +11001577 /*
1578 * Initiate forwarding,
Damien Millera34a28b1999-12-14 10:47:15 +11001579 */
Damien Millere247cc42000-05-07 12:03:14 +10001580 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11001581
1582 /* Free the argument string. */
1583 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584}
1585
Damien Millerb38eff82000-04-01 11:09:21 +10001586/* XXX move to aux.c */
1587int
1588channel_connect_to(const char *host, u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589{
Damien Miller34132e52000-01-14 15:45:46 +11001590 struct addrinfo hints, *ai, *aitop;
1591 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1592 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10001593 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11001594
Damien Miller34132e52000-01-14 15:45:46 +11001595 memset(&hints, 0, sizeof(hints));
1596 hints.ai_family = IPv4or6;
1597 hints.ai_socktype = SOCK_STREAM;
1598 snprintf(strport, sizeof strport, "%d", host_port);
1599 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
1600 error("%.100s: unknown host (%s)", host, gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10001601 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001602 }
Damien Miller34132e52000-01-14 15:45:46 +11001603 for (ai = aitop; ai; ai = ai->ai_next) {
1604 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1605 continue;
1606 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1607 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001608 error("channel_connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001609 continue;
1610 }
1611 /* Create the socket. */
1612 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1613 if (sock < 0) {
1614 error("socket: %.100s", strerror(errno));
1615 continue;
1616 }
1617 /* Connect to the host/port. */
1618 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1619 error("connect %.100s port %s: %.100s", ntop, strport,
1620 strerror(errno));
1621 close(sock);
1622 continue; /* fail -- try next */
1623 }
1624 break; /* success */
1625
1626 }
1627 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11001628 if (!ai) {
1629 error("connect %.100s port %d: failed.", host, host_port);
Damien Millerb38eff82000-04-01 11:09:21 +10001630 return -1;
1631 }
1632 /* success */
1633 return sock;
1634}
1635
1636/*
1637 * This is called after receiving PORT_OPEN message. This attempts to
1638 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
1639 * or CHANNEL_OPEN_FAILURE.
1640 */
1641
Damien Miller4af51302000-04-16 11:18:38 +10001642void
Damien Millerb38eff82000-04-01 11:09:21 +10001643channel_input_port_open(int type, int plen)
1644{
1645 u_short host_port;
1646 char *host, *originator_string;
1647 int remote_channel, sock = -1, newch, i, denied;
1648 unsigned int host_len, originator_len;
1649
1650 /* Get remote channel number. */
1651 remote_channel = packet_get_int();
1652
1653 /* Get host name to connect to. */
1654 host = packet_get_string(&host_len);
1655
1656 /* Get port to connect to. */
1657 host_port = packet_get_int();
1658
1659 /* Get remote originator name. */
1660 if (have_hostname_in_open) {
1661 originator_string = packet_get_string(&originator_len);
1662 originator_len += 4; /* size of packet_int */
1663 } else {
1664 originator_string = xstrdup("unknown (remote did not supply name)");
1665 originator_len = 0; /* no originator supplied */
Damien Miller95def091999-11-25 00:26:21 +11001666 }
Damien Miller34132e52000-01-14 15:45:46 +11001667
Damien Millerb38eff82000-04-01 11:09:21 +10001668 packet_integrity_check(plen,
1669 4 + 4 + host_len + 4 + originator_len, SSH_MSG_PORT_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670
Damien Millerb38eff82000-04-01 11:09:21 +10001671 /* Check if opening that port is permitted. */
1672 denied = 0;
1673 if (!all_opens_permitted) {
1674 /* Go trough all permitted ports. */
1675 for (i = 0; i < num_permitted_opens; i++)
1676 if (permitted_opens[i].port_to_connect == host_port &&
1677 strcmp(permitted_opens[i].host_to_connect, host) == 0)
1678 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001679
Damien Millerb38eff82000-04-01 11:09:21 +10001680 /* Check if we found the requested port among those permitted. */
1681 if (i >= num_permitted_opens) {
1682 /* The port is not permitted. */
1683 log("Received request to connect to %.100s:%d, but the request was denied.",
1684 host, host_port);
1685 denied = 1;
1686 }
1687 }
1688 sock = denied ? -1 : channel_connect_to(host, host_port);
1689 if (sock > 0) {
1690 /* Allocate a channel for this connection. */
1691 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, originator_string);
1692 channels[newch].remote_id = remote_channel;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001693
Damien Millerb38eff82000-04-01 11:09:21 +10001694 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1695 packet_put_int(remote_channel);
1696 packet_put_int(newch);
1697 packet_send();
1698 } else {
1699 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1700 packet_put_int(remote_channel);
1701 packet_send();
1702 }
Damien Miller95def091999-11-25 00:26:21 +11001703 xfree(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001704}
1705
Damien Miller5428f641999-11-25 11:54:57 +11001706/*
1707 * Creates an internet domain socket for listening for X11 connections.
1708 * Returns a suitable value for the DISPLAY variable, or NULL if an error
1709 * occurs.
1710 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001711
Damien Miller34132e52000-01-14 15:45:46 +11001712#define NUM_SOCKS 10
1713
Damien Miller95def091999-11-25 00:26:21 +11001714char *
Damien Millera34a28b1999-12-14 10:47:15 +11001715x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001716{
Damien Milleraae6c611999-12-06 11:47:28 +11001717 int display_number, sock;
1718 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11001719 struct addrinfo hints, *ai, *aitop;
1720 char strport[NI_MAXSERV];
1721 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1722 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11001723 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001724
Damien Millera34a28b1999-12-14 10:47:15 +11001725 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11001726 display_number < MAX_DISPLAYS;
1727 display_number++) {
1728 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11001729 memset(&hints, 0, sizeof(hints));
1730 hints.ai_family = IPv4or6;
1731 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
1732 hints.ai_socktype = SOCK_STREAM;
1733 snprintf(strport, sizeof strport, "%d", port);
1734 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1735 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11001736 return NULL;
1737 }
Damien Miller34132e52000-01-14 15:45:46 +11001738 for (ai = aitop; ai; ai = ai->ai_next) {
1739 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1740 continue;
1741 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1742 if (sock < 0) {
Damien Millere2192732000-01-17 13:22:55 +11001743 if (errno != EINVAL) {
1744 error("socket: %.100s", strerror(errno));
1745 return NULL;
1746 } else {
1747 debug("Socket family %d not supported [X11 disp create]", ai->ai_family);
1748 continue;
1749 }
Damien Miller34132e52000-01-14 15:45:46 +11001750 }
1751 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1752 debug("bind port %d: %.100s", port, strerror(errno));
1753 shutdown(sock, SHUT_RDWR);
1754 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11001755
1756 if (ai->ai_next)
1757 continue;
1758
Damien Miller34132e52000-01-14 15:45:46 +11001759 for (n = 0; n < num_socks; n++) {
1760 shutdown(socks[n], SHUT_RDWR);
1761 close(socks[n]);
1762 }
1763 num_socks = 0;
1764 break;
1765 }
1766 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11001767#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11001768 if (num_socks == NUM_SOCKS)
1769 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11001770#else
1771 break;
1772#endif
Damien Miller95def091999-11-25 00:26:21 +11001773 }
Damien Miller34132e52000-01-14 15:45:46 +11001774 if (num_socks > 0)
1775 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001776 }
Damien Miller95def091999-11-25 00:26:21 +11001777 if (display_number >= MAX_DISPLAYS) {
1778 error("Failed to allocate internet-domain X11 display socket.");
1779 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001780 }
Damien Miller95def091999-11-25 00:26:21 +11001781 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11001782 for (n = 0; n < num_socks; n++) {
1783 sock = socks[n];
1784 if (listen(sock, 5) < 0) {
1785 error("listen: %.100s", strerror(errno));
1786 shutdown(sock, SHUT_RDWR);
1787 close(sock);
1788 return NULL;
1789 }
Damien Miller95def091999-11-25 00:26:21 +11001790 }
Damien Miller34132e52000-01-14 15:45:46 +11001791
Damien Miller95def091999-11-25 00:26:21 +11001792 /* Set up a suitable value for the DISPLAY variable. */
Damien Miller76112de1999-12-21 11:18:08 +11001793
Damien Miller95def091999-11-25 00:26:21 +11001794 if (gethostname(hostname, sizeof(hostname)) < 0)
1795 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11001796
1797#ifdef IPADDR_IN_DISPLAY
1798 /*
1799 * HPUX detects the local hostname in the DISPLAY variable and tries
1800 * to set up a shared memory connection to the server, which it
1801 * incorrectly supposes to be local.
1802 *
1803 * The workaround - as used in later $$H and other programs - is
1804 * is to set display to the host's IP address.
1805 */
1806 {
1807 struct hostent *he;
1808 struct in_addr my_addr;
1809
1810 he = gethostbyname(hostname);
1811 if (he == NULL) {
1812 error("[X11-broken-fwd-hostname-workaround] Could not get "
1813 "IP address for hostname %s.", hostname);
1814
1815 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
1816 "Could not get IP address for hostname %s.", hostname);
1817
1818 shutdown(sock, SHUT_RDWR);
1819 close(sock);
1820
1821 return NULL;
1822 }
1823
1824 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
1825
1826 /* Set DISPLAY to <ip address>:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001827 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Damien Miller76112de1999-12-21 11:18:08 +11001828 display_number, screen_number);
1829 }
1830#else /* IPADDR_IN_DISPLAY */
1831 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001832 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Damien Miller76112de1999-12-21 11:18:08 +11001833 display_number, screen_number);
1834#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001835
Damien Miller34132e52000-01-14 15:45:46 +11001836 /* Allocate a channel for each socket. */
1837 for (n = 0; n < num_socks; n++) {
1838 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10001839 (void) channel_new("x11 listener",
1840 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
1841 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
1842 0, xstrdup("X11 inet listener"));
Damien Miller34132e52000-01-14 15:45:46 +11001843 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001844
Damien Miller95def091999-11-25 00:26:21 +11001845 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11001846 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001847}
1848
1849#ifndef X_UNIX_PATH
1850#define X_UNIX_PATH "/tmp/.X11-unix/X"
1851#endif
1852
1853static
1854int
Damien Miller81b25cf1999-12-07 16:47:28 +11001855connect_local_xsocket(unsigned int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001856{
Damien Miller95def091999-11-25 00:26:21 +11001857 static const char *const x_sockets[] = {
1858 X_UNIX_PATH "%u",
1859 "/var/X/.X11-unix/X" "%u",
1860 "/usr/spool/sockets/X11/" "%u",
1861 NULL
1862 };
1863 int sock;
1864 struct sockaddr_un addr;
1865 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001866
Damien Miller95def091999-11-25 00:26:21 +11001867 for (path = x_sockets; *path; ++path) {
1868 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1869 if (sock < 0)
1870 error("socket: %.100s", strerror(errno));
1871 memset(&addr, 0, sizeof(addr));
1872 addr.sun_family = AF_UNIX;
1873 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
1874 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
1875 return sock;
1876 close(sock);
1877 }
1878 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
1879 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001880}
1881
Damien Millerbd483e72000-04-30 10:00:53 +10001882int
1883x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001884{
Damien Millerbd483e72000-04-30 10:00:53 +10001885 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11001886 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10001887 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11001888 struct addrinfo hints, *ai, *aitop;
1889 char strport[NI_MAXSERV];
1890 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001891
Damien Miller95def091999-11-25 00:26:21 +11001892 /* Try to open a socket for the local X server. */
1893 display = getenv("DISPLAY");
1894 if (!display) {
1895 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10001896 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001897 }
Damien Miller5428f641999-11-25 11:54:57 +11001898 /*
1899 * Now we decode the value of the DISPLAY variable and make a
1900 * connection to the real X server.
1901 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001902
Damien Miller5428f641999-11-25 11:54:57 +11001903 /*
1904 * Check if it is a unix domain socket. Unix domain displays are in
1905 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
1906 */
Damien Miller95def091999-11-25 00:26:21 +11001907 if (strncmp(display, "unix:", 5) == 0 ||
1908 display[0] == ':') {
1909 /* Connect to the unix domain socket. */
1910 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
1911 error("Could not parse display number from DISPLAY: %.100s",
1912 display);
Damien Millerbd483e72000-04-30 10:00:53 +10001913 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001914 }
1915 /* Create a socket. */
1916 sock = connect_local_xsocket(display_number);
1917 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10001918 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001919
1920 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10001921 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001922 }
Damien Miller5428f641999-11-25 11:54:57 +11001923 /*
1924 * Connect to an inet socket. The DISPLAY value is supposedly
1925 * hostname:d[.s], where hostname may also be numeric IP address.
1926 */
Damien Miller95def091999-11-25 00:26:21 +11001927 strncpy(buf, display, sizeof(buf));
1928 buf[sizeof(buf) - 1] = 0;
1929 cp = strchr(buf, ':');
1930 if (!cp) {
1931 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10001932 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001933 }
Damien Miller95def091999-11-25 00:26:21 +11001934 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11001935 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11001936 if (sscanf(cp + 1, "%d", &display_number) != 1) {
1937 error("Could not parse display number from DISPLAY: %.100s",
1938 display);
Damien Millerbd483e72000-04-30 10:00:53 +10001939 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001940 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001941
Damien Miller34132e52000-01-14 15:45:46 +11001942 /* Look up the host address */
1943 memset(&hints, 0, sizeof(hints));
1944 hints.ai_family = IPv4or6;
1945 hints.ai_socktype = SOCK_STREAM;
1946 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
1947 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
1948 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10001949 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001950 }
Damien Miller34132e52000-01-14 15:45:46 +11001951 for (ai = aitop; ai; ai = ai->ai_next) {
1952 /* Create a socket. */
1953 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1954 if (sock < 0) {
1955 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10001956 continue;
1957 }
1958 /* Connect it to the display. */
1959 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1960 debug("connect %.100s port %d: %.100s", buf,
1961 6000 + display_number, strerror(errno));
1962 close(sock);
1963 continue;
1964 }
1965 /* Success */
1966 break;
Damien Miller34132e52000-01-14 15:45:46 +11001967 }
Damien Miller34132e52000-01-14 15:45:46 +11001968 freeaddrinfo(aitop);
1969 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10001970 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11001971 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10001972 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001973 }
Damien Millerbd483e72000-04-30 10:00:53 +10001974 return sock;
1975}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001976
Damien Millerbd483e72000-04-30 10:00:53 +10001977/*
1978 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
1979 * the remote channel number. We should do whatever we want, and respond
1980 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
1981 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982
Damien Millerbd483e72000-04-30 10:00:53 +10001983void
1984x11_input_open(int type, int plen)
1985{
1986 int remote_channel, sock = 0, newch;
1987 char *remote_host;
1988 unsigned int remote_len;
Damien Miller95def091999-11-25 00:26:21 +11001989
Damien Millerbd483e72000-04-30 10:00:53 +10001990 /* Get remote channel number. */
1991 remote_channel = packet_get_int();
Damien Miller95def091999-11-25 00:26:21 +11001992
Damien Millerbd483e72000-04-30 10:00:53 +10001993 /* Get remote originator name. */
1994 if (have_hostname_in_open) {
1995 remote_host = packet_get_string(&remote_len);
1996 remote_len += 4;
1997 } else {
1998 remote_host = xstrdup("unknown (remote did not supply name)");
1999 remote_len = 0;
2000 }
2001
2002 debug("Received X11 open request.");
2003 packet_integrity_check(plen, 4 + remote_len, SSH_SMSG_X11_OPEN);
2004
2005 /* Obtain a connection to the real X display. */
2006 sock = x11_connect_display();
2007 if (sock == -1) {
2008 /* Send refusal to the remote host. */
2009 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2010 packet_put_int(remote_channel);
2011 packet_send();
2012 } else {
2013 /* Allocate a channel for this connection. */
2014 newch = channel_allocate(
2015 (x11_saved_proto == NULL) ?
2016 SSH_CHANNEL_OPEN : SSH_CHANNEL_X11_OPEN,
2017 sock, remote_host);
2018 channels[newch].remote_id = remote_channel;
2019
2020 /* Send a confirmation to the remote host. */
2021 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2022 packet_put_int(remote_channel);
2023 packet_put_int(newch);
2024 packet_send();
2025 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002026}
2027
Damien Miller5428f641999-11-25 11:54:57 +11002028/*
2029 * Requests forwarding of X11 connections, generates fake authentication
2030 * data, and enables authentication spoofing.
2031 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002032
Damien Miller4af51302000-04-16 11:18:38 +10002033void
Damien Millerbd483e72000-04-30 10:00:53 +10002034x11_request_forwarding_with_spoofing(int client_session_id,
2035 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002036{
Damien Miller95def091999-11-25 00:26:21 +11002037 unsigned int data_len = (unsigned int) strlen(data) / 2;
2038 unsigned int i, value;
2039 char *new_data;
2040 int screen_number;
2041 const char *cp;
2042 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002043
Damien Miller95def091999-11-25 00:26:21 +11002044 cp = getenv("DISPLAY");
2045 if (cp)
2046 cp = strchr(cp, ':');
2047 if (cp)
2048 cp = strchr(cp, '.');
2049 if (cp)
2050 screen_number = atoi(cp + 1);
2051 else
2052 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002053
Damien Miller95def091999-11-25 00:26:21 +11002054 /* Save protocol name. */
2055 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002056
Damien Miller5428f641999-11-25 11:54:57 +11002057 /*
2058 * Extract real authentication data and generate fake data of the
2059 * same length.
2060 */
Damien Miller95def091999-11-25 00:26:21 +11002061 x11_saved_data = xmalloc(data_len);
2062 x11_fake_data = xmalloc(data_len);
2063 for (i = 0; i < data_len; i++) {
2064 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2065 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2066 if (i % 4 == 0)
2067 rand = arc4random();
2068 x11_saved_data[i] = value;
2069 x11_fake_data[i] = rand & 0xff;
2070 rand >>= 8;
2071 }
2072 x11_saved_data_len = data_len;
2073 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002074
Damien Miller95def091999-11-25 00:26:21 +11002075 /* Convert the fake data into hex. */
2076 new_data = xmalloc(2 * data_len + 1);
2077 for (i = 0; i < data_len; i++)
2078 sprintf(new_data + 2 * i, "%02x", (unsigned char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002079
Damien Miller95def091999-11-25 00:26:21 +11002080 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002081 if (compat20) {
2082 channel_request_start(client_session_id, "x11-req", 0);
2083 packet_put_char(0); /* XXX bool single connection */
2084 } else {
2085 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2086 }
2087 packet_put_cstring(proto);
2088 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002089 packet_put_int(screen_number);
2090 packet_send();
2091 packet_write_wait();
2092 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002093}
2094
2095/* Sends a message to the server to request authentication fd forwarding. */
2096
Damien Miller4af51302000-04-16 11:18:38 +10002097void
Damien Miller95def091999-11-25 00:26:21 +11002098auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002099{
Damien Miller95def091999-11-25 00:26:21 +11002100 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2101 packet_send();
2102 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002103}
2104
Damien Miller5428f641999-11-25 11:54:57 +11002105/*
2106 * Returns the name of the forwarded authentication socket. Returns NULL if
2107 * there is no forwarded authentication socket. The returned value points to
2108 * a static buffer.
2109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002110
Damien Miller95def091999-11-25 00:26:21 +11002111char *
2112auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002113{
Damien Miller95def091999-11-25 00:26:21 +11002114 return channel_forwarded_auth_socket_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002115}
2116
2117/* removes the agent forwarding socket */
2118
Damien Miller4af51302000-04-16 11:18:38 +10002119void
Damien Miller95def091999-11-25 00:26:21 +11002120cleanup_socket(void)
2121{
2122 remove(channel_forwarded_auth_socket_name);
2123 rmdir(channel_forwarded_auth_socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124}
2125
Damien Miller5428f641999-11-25 11:54:57 +11002126/*
Damien Millerd3a18572000-06-07 19:55:44 +10002127 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002128 * This starts forwarding authentication requests.
2129 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002130
Damien Millerd3a18572000-06-07 19:55:44 +10002131int
Damien Miller95def091999-11-25 00:26:21 +11002132auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002133{
Damien Miller95def091999-11-25 00:26:21 +11002134 int sock, newch;
2135 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002136
Damien Miller95def091999-11-25 00:26:21 +11002137 if (auth_get_socket_name() != NULL)
2138 fatal("Protocol error: authentication forwarding requested twice.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139
Damien Miller95def091999-11-25 00:26:21 +11002140 /* Temporarily drop privileged uid for mkdir/bind. */
2141 temporarily_use_uid(pw->pw_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002142
Damien Miller95def091999-11-25 00:26:21 +11002143 /* Allocate a buffer for the socket name, and format the name. */
2144 channel_forwarded_auth_socket_name = xmalloc(MAX_SOCKET_NAME);
2145 channel_forwarded_auth_socket_dir = xmalloc(MAX_SOCKET_NAME);
2146 strlcpy(channel_forwarded_auth_socket_dir, "/tmp/ssh-XXXXXXXX", MAX_SOCKET_NAME);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002147
Damien Miller95def091999-11-25 00:26:21 +11002148 /* Create private directory for socket */
Damien Millerd3a18572000-06-07 19:55:44 +10002149 if (mkdtemp(channel_forwarded_auth_socket_dir) == NULL) {
2150 packet_send_debug("Agent forwarding disabled: mkdtemp() failed: %.100s",
2151 strerror(errno));
2152 restore_uid();
2153 xfree(channel_forwarded_auth_socket_name);
2154 xfree(channel_forwarded_auth_socket_dir);
2155 channel_forwarded_auth_socket_name = NULL;
2156 channel_forwarded_auth_socket_dir = NULL;
2157 return 0;
2158 }
Damien Miller95def091999-11-25 00:26:21 +11002159 snprintf(channel_forwarded_auth_socket_name, MAX_SOCKET_NAME, "%s/agent.%d",
2160 channel_forwarded_auth_socket_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002161
Damien Miller95def091999-11-25 00:26:21 +11002162 if (atexit(cleanup_socket) < 0) {
2163 int saved = errno;
2164 cleanup_socket();
2165 packet_disconnect("socket: %.100s", strerror(saved));
2166 }
2167 /* Create the socket. */
2168 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2169 if (sock < 0)
2170 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002171
Damien Miller95def091999-11-25 00:26:21 +11002172 /* Bind it to the name. */
2173 memset(&sunaddr, 0, sizeof(sunaddr));
2174 sunaddr.sun_family = AF_UNIX;
2175 strncpy(sunaddr.sun_path, channel_forwarded_auth_socket_name,
2176 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002177
Damien Miller95def091999-11-25 00:26:21 +11002178 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2179 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002180
Damien Miller95def091999-11-25 00:26:21 +11002181 /* Restore the privileged uid. */
2182 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002183
Damien Miller95def091999-11-25 00:26:21 +11002184 /* Start listening on the socket. */
2185 if (listen(sock, 5) < 0)
2186 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002187
Damien Miller95def091999-11-25 00:26:21 +11002188 /* Allocate a channel for the authentication agent socket. */
2189 newch = channel_allocate(SSH_CHANNEL_AUTH_SOCKET, sock,
2190 xstrdup("auth socket"));
Damien Miller037a0dc1999-12-07 15:38:31 +11002191 strlcpy(channels[newch].path, channel_forwarded_auth_socket_name,
2192 sizeof(channels[newch].path));
Damien Millerd3a18572000-06-07 19:55:44 +10002193 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002194}
2195
2196/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2197
Damien Miller4af51302000-04-16 11:18:38 +10002198void
Damien Millerb38eff82000-04-01 11:09:21 +10002199auth_input_open_request(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002200{
Damien Miller95def091999-11-25 00:26:21 +11002201 int remch, sock, newch;
2202 char *dummyname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002203
Damien Millerb38eff82000-04-01 11:09:21 +10002204 packet_integrity_check(plen, 4, type);
2205
Damien Miller95def091999-11-25 00:26:21 +11002206 /* Read the remote channel number from the message. */
2207 remch = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002208
Damien Miller5428f641999-11-25 11:54:57 +11002209 /*
2210 * Get a connection to the local authentication agent (this may again
2211 * get forwarded).
2212 */
Damien Miller95def091999-11-25 00:26:21 +11002213 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002214
Damien Miller5428f641999-11-25 11:54:57 +11002215 /*
2216 * If we could not connect the agent, send an error message back to
2217 * the server. This should never happen unless the agent dies,
2218 * because authentication forwarding is only enabled if we have an
2219 * agent.
2220 */
Damien Miller95def091999-11-25 00:26:21 +11002221 if (sock < 0) {
2222 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2223 packet_put_int(remch);
2224 packet_send();
2225 return;
2226 }
2227 debug("Forwarding authentication connection.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002228
Damien Miller5428f641999-11-25 11:54:57 +11002229 /*
2230 * Dummy host name. This will be freed when the channel is freed; it
2231 * will still be valid in the packet_put_string below since the
2232 * channel cannot yet be freed at that point.
2233 */
Damien Miller95def091999-11-25 00:26:21 +11002234 dummyname = xstrdup("authentication agent connection");
2235
2236 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, dummyname);
2237 channels[newch].remote_id = remch;
2238
2239 /* Send a confirmation to the remote host. */
2240 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2241 packet_put_int(remch);
2242 packet_put_int(newch);
2243 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002244}
Damien Miller33b13562000-04-04 14:38:59 +10002245
2246void
Damien Millerbd483e72000-04-30 10:00:53 +10002247channel_start_open(int id)
Damien Miller33b13562000-04-04 14:38:59 +10002248{
2249 Channel *c = channel_lookup(id);
2250 if (c == NULL) {
2251 log("channel_open: %d: bad id", id);
2252 return;
2253 }
Damien Millerbd483e72000-04-30 10:00:53 +10002254 debug("send channel open %d", id);
Damien Miller33b13562000-04-04 14:38:59 +10002255 packet_start(SSH2_MSG_CHANNEL_OPEN);
2256 packet_put_cstring(c->ctype);
2257 packet_put_int(c->self);
2258 packet_put_int(c->local_window);
2259 packet_put_int(c->local_maxpacket);
Damien Millerbd483e72000-04-30 10:00:53 +10002260}
2261void
2262channel_open(int id)
2263{
2264 /* XXX REMOVE ME */
2265 channel_start_open(id);
Damien Miller33b13562000-04-04 14:38:59 +10002266 packet_send();
Damien Miller33b13562000-04-04 14:38:59 +10002267}
2268void
2269channel_request(int id, char *service, int wantconfirm)
2270{
2271 channel_request_start(id, service, wantconfirm);
2272 packet_send();
2273 debug("channel request %d: %s", id, service) ;
2274}
2275void
2276channel_request_start(int id, char *service, int wantconfirm)
2277{
2278 Channel *c = channel_lookup(id);
2279 if (c == NULL) {
2280 log("channel_request: %d: bad id", id);
2281 return;
2282 }
2283 packet_start(SSH2_MSG_CHANNEL_REQUEST);
2284 packet_put_int(c->remote_id);
2285 packet_put_cstring(service);
2286 packet_put_char(wantconfirm);
2287}
2288void
2289channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
2290{
2291 Channel *c = channel_lookup(id);
2292 if (c == NULL) {
2293 log("channel_register_callback: %d: bad id", id);
2294 return;
2295 }
2296 c->cb_event = mtype;
2297 c->cb_fn = fn;
2298 c->cb_arg = arg;
2299}
2300void
2301channel_register_cleanup(int id, channel_callback_fn *fn)
2302{
2303 Channel *c = channel_lookup(id);
2304 if (c == NULL) {
2305 log("channel_register_cleanup: %d: bad id", id);
2306 return;
2307 }
2308 c->dettach_user = fn;
2309}
2310void
2311channel_cancel_cleanup(int id)
2312{
2313 Channel *c = channel_lookup(id);
2314 if (c == NULL) {
2315 log("channel_cancel_cleanup: %d: bad id", id);
2316 return;
2317 }
2318 c->dettach_user = NULL;
2319}
Damien Millerad833b32000-08-23 10:46:23 +10002320void
2321channel_register_filter(int id, channel_filter_fn *fn)
2322{
2323 Channel *c = channel_lookup(id);
2324 if (c == NULL) {
2325 log("channel_register_filter: %d: bad id", id);
2326 return;
2327 }
2328 c->input_filter = fn;
2329}
Damien Miller33b13562000-04-04 14:38:59 +10002330
2331void
2332channel_set_fds(int id, int rfd, int wfd, int efd, int extusage)
2333{
2334 Channel *c = channel_lookup(id);
2335 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
2336 fatal("channel_activate for non-larval channel %d.", id);
Damien Miller6f83b8e2000-05-02 09:23:45 +10002337
2338 channel_register_fds(c, rfd, wfd, efd, extusage);
Damien Miller33b13562000-04-04 14:38:59 +10002339 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002340 /* XXX window size? */
2341 c->local_window = c->local_window_max = c->local_maxpacket/2;
2342 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2343 packet_put_int(c->remote_id);
2344 packet_put_int(c->local_window);
2345 packet_send();
2346}