blob: 91a1b50c396bac4c62d7cf182ef7c0684c7067ad [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
15 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Millere4340be2000-09-16 13:29:08 +110017 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
18 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Ben Lindstromc72745a2000-12-02 19:03:54 +000043RCSID("$OpenBSD: channels.c,v 1.74 2000/11/30 22:54:31 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
45#include "ssh.h"
46#include "packet.h"
47#include "xmalloc.h"
48#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049#include "uidswap.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110050#include "readconf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "servconf.h"
52
53#include "channels.h"
54#include "nchan.h"
55#include "compat.h"
56
Damien Miller33b13562000-04-04 14:38:59 +100057#include "ssh2.h"
58
Damien Miller994cf142000-07-21 10:19:44 +100059#include <openssl/rsa.h>
60#include <openssl/dsa.h>
61#include "key.h"
62#include "authfd.h"
63
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064/* Maximum number of fake X11 displays to try. */
65#define MAX_DISPLAYS 1000
66
67/* Max len of agent socket */
68#define MAX_SOCKET_NAME 100
69
Damien Miller5428f641999-11-25 11:54:57 +110070/*
71 * Pointer to an array containing all allocated channels. The array is
72 * dynamically extended as needed.
73 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074static Channel *channels = NULL;
75
Damien Miller5428f641999-11-25 11:54:57 +110076/*
77 * Size of the channel array. All slots of the array must always be
78 * initialized (at least the type field); unused slots are marked with type
79 * SSH_CHANNEL_FREE.
80 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081static int channels_alloc = 0;
82
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * Maximum file descriptor value used in any of the channels. This is
85 * updated in channel_allocate.
86 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087static int channel_max_fd_value = 0;
88
89/* Name and directory of socket for authentication agent forwarding. */
90static char *channel_forwarded_auth_socket_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +110091static char *channel_forwarded_auth_socket_dir = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
93/* Saved X11 authentication protocol name. */
94char *x11_saved_proto = NULL;
95
96/* Saved X11 authentication data. This is the real data. */
97char *x11_saved_data = NULL;
98unsigned int x11_saved_data_len = 0;
99
Damien Miller5428f641999-11-25 11:54:57 +1100100/*
101 * Fake X11 authentication data. This is what the server will be sending us;
102 * we should replace any occurrences of this by the real data.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104char *x11_fake_data = NULL;
105unsigned int x11_fake_data_len;
106
Damien Miller5428f641999-11-25 11:54:57 +1100107/*
108 * Data structure for storing which hosts are permitted for forward requests.
109 * The local sides of any remote forwards are stored in this array to prevent
110 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
111 * network (which might be behind a firewall).
112 */
Damien Miller95def091999-11-25 00:26:21 +1100113typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +1000114 char *host_to_connect; /* Connect to 'host'. */
115 u_short port_to_connect; /* Connect to 'port'. */
116 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117} ForwardPermission;
118
119/* List of all permitted host/port pairs to connect. */
120static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
121/* Number of permitted host/port pairs in the array. */
122static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * If this is true, all opens are permitted. This is the case on the server
125 * on which we have to trust the client anyway, and the user could do
126 * anything after logging in anyway.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128static int all_opens_permitted = 0;
129
130/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
131static int have_hostname_in_open = 0;
132
133/* Sets specific protocol options. */
134
Damien Miller4af51302000-04-16 11:18:38 +1000135void
Damien Miller95def091999-11-25 00:26:21 +1100136channel_set_options(int hostname_in_open)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137{
Damien Miller95def091999-11-25 00:26:21 +1100138 have_hostname_in_open = hostname_in_open;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139}
140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
142 * Permits opening to any host/port in SSH_MSG_PORT_OPEN. This is usually
143 * called by the server, because the user could connect to any port anyway,
144 * and the server has no way to know but to trust the client anyway.
145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Damien Miller4af51302000-04-16 11:18:38 +1000147void
Damien Miller95def091999-11-25 00:26:21 +1100148channel_permit_all_opens()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Damien Miller95def091999-11-25 00:26:21 +1100150 all_opens_permitted = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151}
152
Damien Millerb38eff82000-04-01 11:09:21 +1000153/* lookup channel by id */
154
155Channel *
156channel_lookup(int id)
157{
158 Channel *c;
Damien Millerc0fd17f2000-06-26 10:22:53 +1000159 if (id < 0 || id > channels_alloc) {
Damien Millerb38eff82000-04-01 11:09:21 +1000160 log("channel_lookup: %d: bad id", id);
161 return NULL;
162 }
163 c = &channels[id];
164 if (c->type == SSH_CHANNEL_FREE) {
165 log("channel_lookup: %d: bad id: channel free", id);
166 return NULL;
167 }
168 return c;
169}
170
Damien Miller5428f641999-11-25 11:54:57 +1100171/*
Damien Millere247cc42000-05-07 12:03:14 +1000172 * Register filedescriptors for a channel, used when allocating a channel or
Damien Miller6f83b8e2000-05-02 09:23:45 +1000173 * when the channel consumer/producer is ready, e.g. shell exec'd
Damien Miller5428f641999-11-25 11:54:57 +1100174 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller6f83b8e2000-05-02 09:23:45 +1000176void
Damien Miller69b69aa2000-10-28 14:19:58 +1100177channel_register_fds(Channel *c, int rfd, int wfd, int efd,
178 int extusage, int nonblock)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179{
Damien Miller95def091999-11-25 00:26:21 +1100180 /* Update the maximum file descriptor value. */
Damien Millerb38eff82000-04-01 11:09:21 +1000181 if (rfd > channel_max_fd_value)
182 channel_max_fd_value = rfd;
183 if (wfd > channel_max_fd_value)
184 channel_max_fd_value = wfd;
185 if (efd > channel_max_fd_value)
186 channel_max_fd_value = efd;
Damien Miller5428f641999-11-25 11:54:57 +1100187 /* XXX set close-on-exec -markus */
Damien Millere247cc42000-05-07 12:03:14 +1000188
Damien Miller6f83b8e2000-05-02 09:23:45 +1000189 c->rfd = rfd;
190 c->wfd = wfd;
191 c->sock = (rfd == wfd) ? rfd : -1;
192 c->efd = efd;
193 c->extended_usage = extusage;
Damien Miller69b69aa2000-10-28 14:19:58 +1100194
195 /* enable nonblocking mode */
196 if (nonblock) {
197 if (rfd != -1)
198 set_nonblock(rfd);
199 if (wfd != -1)
200 set_nonblock(wfd);
201 if (efd != -1)
202 set_nonblock(efd);
203 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000204}
205
206/*
207 * Allocate a new channel object and set its type and socket. This will cause
208 * remote_name to be freed.
209 */
210
211int
212channel_new(char *ctype, int type, int rfd, int wfd, int efd,
Damien Miller69b69aa2000-10-28 14:19:58 +1100213 int window, int maxpack, int extusage, char *remote_name, int nonblock)
Damien Miller6f83b8e2000-05-02 09:23:45 +1000214{
215 int i, found;
216 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Do initial allocation if this is the first call. */
219 if (channels_alloc == 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000220 chan_init();
Damien Miller95def091999-11-25 00:26:21 +1100221 channels_alloc = 10;
222 channels = xmalloc(channels_alloc * sizeof(Channel));
223 for (i = 0; i < channels_alloc; i++)
224 channels[i].type = SSH_CHANNEL_FREE;
Damien Miller5428f641999-11-25 11:54:57 +1100225 /*
226 * Kludge: arrange a call to channel_stop_listening if we
227 * terminate with fatal().
228 */
Damien Miller95def091999-11-25 00:26:21 +1100229 fatal_add_cleanup((void (*) (void *)) channel_stop_listening, NULL);
230 }
231 /* Try to find a free slot where to put the new channel. */
232 for (found = -1, i = 0; i < channels_alloc; i++)
233 if (channels[i].type == SSH_CHANNEL_FREE) {
234 /* Found a free slot. */
235 found = i;
236 break;
237 }
238 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100239 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100240 found = channels_alloc;
241 channels_alloc += 10;
Damien Millerd3444942000-09-30 14:20:03 +1100242 debug2("channel: expanding %d", channels_alloc);
Damien Miller95def091999-11-25 00:26:21 +1100243 channels = xrealloc(channels, channels_alloc * sizeof(Channel));
244 for (i = found; i < channels_alloc; i++)
245 channels[i].type = SSH_CHANNEL_FREE;
246 }
247 /* Initialize and return new channel number. */
248 c = &channels[found];
249 buffer_init(&c->input);
250 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000251 buffer_init(&c->extended);
Damien Miller95def091999-11-25 00:26:21 +1100252 chan_init_iostates(c);
Damien Miller69b69aa2000-10-28 14:19:58 +1100253 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller95def091999-11-25 00:26:21 +1100254 c->self = found;
255 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000256 c->ctype = ctype;
Damien Millerbd483e72000-04-30 10:00:53 +1000257 c->local_window = window;
258 c->local_window_max = window;
259 c->local_consumed = 0;
260 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100261 c->remote_id = -1;
262 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000263 c->remote_window = 0;
264 c->remote_maxpacket = 0;
265 c->cb_fn = NULL;
266 c->cb_arg = NULL;
267 c->cb_event = 0;
268 c->dettach_user = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000269 c->input_filter = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100270 debug("channel %d: new [%s]", found, remote_name);
271 return found;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272}
Damien Miller6f83b8e2000-05-02 09:23:45 +1000273/* old interface XXX */
Damien Miller4af51302000-04-16 11:18:38 +1000274int
Damien Millerb38eff82000-04-01 11:09:21 +1000275channel_allocate(int type, int sock, char *remote_name)
276{
Damien Miller69b69aa2000-10-28 14:19:58 +1100277 return channel_new("", type, sock, sock, -1, 0, 0, 0, remote_name, 1);
Damien Millerb38eff82000-04-01 11:09:21 +1000278}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279
Damien Miller6f83b8e2000-05-02 09:23:45 +1000280
281/* Close all channel fd/socket. */
282
283void
284channel_close_fds(Channel *c)
285{
286 if (c->sock != -1) {
287 close(c->sock);
288 c->sock = -1;
289 }
290 if (c->rfd != -1) {
291 close(c->rfd);
292 c->rfd = -1;
293 }
294 if (c->wfd != -1) {
295 close(c->wfd);
296 c->wfd = -1;
297 }
298 if (c->efd != -1) {
299 close(c->efd);
300 c->efd = -1;
301 }
302}
303
304/* Free the channel and close its fd/socket. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller4af51302000-04-16 11:18:38 +1000306void
Damien Millerb38eff82000-04-01 11:09:21 +1000307channel_free(int id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308{
Damien Millerb38eff82000-04-01 11:09:21 +1000309 Channel *c = channel_lookup(id);
310 if (c == NULL)
311 packet_disconnect("channel free: bad local channel %d", id);
312 debug("channel_free: channel %d: status: %s", id, channel_open_message());
Damien Miller33b13562000-04-04 14:38:59 +1000313 if (c->dettach_user != NULL) {
314 debug("channel_free: channel %d: dettaching channel user", id);
315 c->dettach_user(c->self, NULL);
316 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000317 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000318 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000319 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000320 buffer_free(&c->input);
321 buffer_free(&c->output);
322 buffer_free(&c->extended);
323 c->type = SSH_CHANNEL_FREE;
324 if (c->remote_name) {
325 xfree(c->remote_name);
326 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100327 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328}
329
Damien Miller5428f641999-11-25 11:54:57 +1100330/*
Damien Millerb38eff82000-04-01 11:09:21 +1000331 * 'channel_pre*' are called just before select() to add any bits relevant to
332 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100333 */
Damien Millerb38eff82000-04-01 11:09:21 +1000334/*
335 * 'channel_post*': perform any appropriate operations for channels which
336 * have events pending.
337 */
338typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
339chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
340chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
341
342void
343channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
344{
345 FD_SET(c->sock, readset);
346}
347
348void
349channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
350{
351 if (buffer_len(&c->input) < packet_get_maxsize())
352 FD_SET(c->sock, readset);
353 if (buffer_len(&c->output) > 0)
354 FD_SET(c->sock, writeset);
355}
356
357void
358channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
359{
360 /* test whether sockets are 'alive' for read/write */
361 if (c->istate == CHAN_INPUT_OPEN)
362 if (buffer_len(&c->input) < packet_get_maxsize())
363 FD_SET(c->sock, readset);
364 if (c->ostate == CHAN_OUTPUT_OPEN ||
365 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
366 if (buffer_len(&c->output) > 0) {
367 FD_SET(c->sock, writeset);
368 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
369 chan_obuf_empty(c);
370 }
371 }
372}
373
374void
Damien Miller33b13562000-04-04 14:38:59 +1000375channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
376{
377 if (c->istate == CHAN_INPUT_OPEN &&
378 c->remote_window > 0 &&
379 buffer_len(&c->input) < c->remote_window)
380 FD_SET(c->rfd, readset);
381 if (c->ostate == CHAN_OUTPUT_OPEN ||
382 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
383 if (buffer_len(&c->output) > 0) {
384 FD_SET(c->wfd, writeset);
385 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
386 chan_obuf_empty(c);
387 }
388 }
389 /** XXX check close conditions, too */
390 if (c->efd != -1) {
391 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
392 buffer_len(&c->extended) > 0)
393 FD_SET(c->efd, writeset);
394 else if (c->extended_usage == CHAN_EXTENDED_READ &&
395 buffer_len(&c->extended) < c->remote_window)
396 FD_SET(c->efd, readset);
397 }
398}
399
400void
Damien Millerb38eff82000-04-01 11:09:21 +1000401channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
402{
403 if (buffer_len(&c->input) == 0) {
404 packet_start(SSH_MSG_CHANNEL_CLOSE);
405 packet_put_int(c->remote_id);
406 packet_send();
407 c->type = SSH_CHANNEL_CLOSED;
408 debug("Closing channel %d after input drain.", c->self);
409 }
410}
411
412void
413channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
414{
415 if (buffer_len(&c->output) == 0)
416 channel_free(c->self);
Damien Miller4af51302000-04-16 11:18:38 +1000417 else
Damien Millerb38eff82000-04-01 11:09:21 +1000418 FD_SET(c->sock, writeset);
419}
420
421/*
422 * This is a special state for X11 authentication spoofing. An opened X11
423 * connection (when authentication spoofing is being done) remains in this
424 * state until the first packet has been completely read. The authentication
425 * data in that packet is then substituted by the real data if it matches the
426 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000427 * XXX All this happens at the client side.
Damien Millerb38eff82000-04-01 11:09:21 +1000428 */
429int
430x11_open_helper(Channel *c)
431{
432 unsigned char *ucp;
433 unsigned int proto_len, data_len;
434
435 /* Check if the fixed size part of the packet is in buffer. */
436 if (buffer_len(&c->output) < 12)
437 return 0;
438
439 /* Parse the lengths of variable-length fields. */
440 ucp = (unsigned char *) buffer_ptr(&c->output);
441 if (ucp[0] == 0x42) { /* Byte order MSB first. */
442 proto_len = 256 * ucp[6] + ucp[7];
443 data_len = 256 * ucp[8] + ucp[9];
444 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
445 proto_len = ucp[6] + 256 * ucp[7];
446 data_len = ucp[8] + 256 * ucp[9];
447 } else {
448 debug("Initial X11 packet contains bad byte order byte: 0x%x",
449 ucp[0]);
450 return -1;
451 }
452
453 /* Check if the whole packet is in buffer. */
454 if (buffer_len(&c->output) <
455 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
456 return 0;
457
458 /* Check if authentication protocol matches. */
459 if (proto_len != strlen(x11_saved_proto) ||
460 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
461 debug("X11 connection uses different authentication protocol.");
462 return -1;
463 }
464 /* Check if authentication data matches our fake data. */
465 if (data_len != x11_fake_data_len ||
466 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
467 x11_fake_data, x11_fake_data_len) != 0) {
468 debug("X11 auth data does not match fake data.");
469 return -1;
470 }
471 /* Check fake data length */
472 if (x11_fake_data_len != x11_saved_data_len) {
473 error("X11 fake_data_len %d != saved_data_len %d",
474 x11_fake_data_len, x11_saved_data_len);
475 return -1;
476 }
477 /*
478 * Received authentication protocol and data match
479 * our fake data. Substitute the fake data with real
480 * data.
481 */
482 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
483 x11_saved_data, x11_saved_data_len);
484 return 1;
485}
486
487void
488channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
489{
490 int ret = x11_open_helper(c);
491 if (ret == 1) {
492 /* Start normal processing for the channel. */
493 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000494 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000495 } else if (ret == -1) {
496 /*
497 * We have received an X11 connection that has bad
498 * authentication information.
499 */
500 log("X11 connection rejected because of wrong authentication.\r\n");
501 buffer_clear(&c->input);
502 buffer_clear(&c->output);
503 close(c->sock);
504 c->sock = -1;
505 c->type = SSH_CHANNEL_CLOSED;
506 packet_start(SSH_MSG_CHANNEL_CLOSE);
507 packet_put_int(c->remote_id);
508 packet_send();
509 }
510}
511
512void
Damien Millerbd483e72000-04-30 10:00:53 +1000513channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000514{
515 int ret = x11_open_helper(c);
516 if (ret == 1) {
517 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000518 if (compat20)
519 channel_pre_open_20(c, readset, writeset);
520 else
521 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000522 } else if (ret == -1) {
523 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000524 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000525 chan_write_failed(c);
526 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
527 }
528}
529
530/* This is our fake X11 server socket. */
531void
532channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
533{
534 struct sockaddr addr;
535 int newsock, newch;
536 socklen_t addrlen;
537 char buf[16384], *remote_hostname;
Damien Millerbd483e72000-04-30 10:00:53 +1000538 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000539
540 if (FD_ISSET(c->sock, readset)) {
541 debug("X11 connection requested.");
542 addrlen = sizeof(addr);
543 newsock = accept(c->sock, &addr, &addrlen);
544 if (newsock < 0) {
545 error("accept: %.100s", strerror(errno));
546 return;
547 }
548 remote_hostname = get_remote_hostname(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000549 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +1000550 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerbd483e72000-04-30 10:00:53 +1000551 remote_hostname, remote_port);
552
553 newch = channel_new("x11",
554 SSH_CHANNEL_OPENING, newsock, newsock, -1,
555 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +1100556 0, xstrdup(buf), 1);
Damien Millerbd483e72000-04-30 10:00:53 +1000557 if (compat20) {
558 packet_start(SSH2_MSG_CHANNEL_OPEN);
559 packet_put_cstring("x11");
560 packet_put_int(newch);
561 packet_put_int(c->local_window_max);
562 packet_put_int(c->local_maxpacket);
563 /* originator host and port */
564 packet_put_cstring(remote_hostname);
Damien Miller30c3d422000-05-09 11:02:59 +1000565 if (datafellows & SSH_BUG_X11FWD) {
566 debug("ssh2 x11 bug compat mode");
567 } else {
568 packet_put_int(remote_port);
569 }
Damien Millerbd483e72000-04-30 10:00:53 +1000570 packet_send();
571 } else {
572 packet_start(SSH_SMSG_X11_OPEN);
573 packet_put_int(newch);
574 if (have_hostname_in_open)
575 packet_put_string(buf, strlen(buf));
576 packet_send();
577 }
Damien Millerb38eff82000-04-01 11:09:21 +1000578 xfree(remote_hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000579 }
580}
581
582/*
583 * This socket is listening for connections to a forwarded TCP/IP port.
584 */
585void
586channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
587{
588 struct sockaddr addr;
589 int newsock, newch;
590 socklen_t addrlen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100591 char buf[1024], *remote_hostname, *rtype;
Damien Millerb38eff82000-04-01 11:09:21 +1000592 int remote_port;
593
Damien Miller0bc1bd82000-11-13 22:57:25 +1100594 rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ?
595 "forwarded-tcpip" : "direct-tcpip";
596
Damien Millerb38eff82000-04-01 11:09:21 +1000597 if (FD_ISSET(c->sock, readset)) {
598 debug("Connection to port %d forwarding "
599 "to %.100s port %d requested.",
600 c->listening_port, c->path, c->host_port);
601 addrlen = sizeof(addr);
602 newsock = accept(c->sock, &addr, &addrlen);
603 if (newsock < 0) {
604 error("accept: %.100s", strerror(errno));
605 return;
606 }
607 remote_hostname = get_remote_hostname(newsock);
608 remote_port = get_peer_port(newsock);
609 snprintf(buf, sizeof buf,
610 "listen port %d for %.100s port %d, "
611 "connect from %.200s port %d",
612 c->listening_port, c->path, c->host_port,
613 remote_hostname, remote_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100614
615 newch = channel_new(rtype,
Damien Millerb38eff82000-04-01 11:09:21 +1000616 SSH_CHANNEL_OPENING, newsock, newsock, -1,
617 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +1100618 0, xstrdup(buf), 1);
Damien Miller33b13562000-04-04 14:38:59 +1000619 if (compat20) {
620 packet_start(SSH2_MSG_CHANNEL_OPEN);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100621 packet_put_cstring(rtype);
Damien Miller33b13562000-04-04 14:38:59 +1000622 packet_put_int(newch);
623 packet_put_int(c->local_window_max);
624 packet_put_int(c->local_maxpacket);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100625 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
626 /* listen address, port */
627 packet_put_string(c->path, strlen(c->path));
628 packet_put_int(c->listening_port);
629 } else {
630 /* target host, port */
631 packet_put_string(c->path, strlen(c->path));
632 packet_put_int(c->host_port);
633 }
Damien Miller4af51302000-04-16 11:18:38 +1000634 /* originator host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000635 packet_put_cstring(remote_hostname);
636 packet_put_int(remote_port);
637 packet_send();
638 } else {
639 packet_start(SSH_MSG_PORT_OPEN);
640 packet_put_int(newch);
641 packet_put_string(c->path, strlen(c->path));
642 packet_put_int(c->host_port);
643 if (have_hostname_in_open) {
644 packet_put_string(buf, strlen(buf));
645 }
646 packet_send();
Damien Millerb38eff82000-04-01 11:09:21 +1000647 }
Damien Millerb38eff82000-04-01 11:09:21 +1000648 xfree(remote_hostname);
649 }
650}
651
652/*
653 * This is the authentication agent socket listening for connections from
654 * clients.
655 */
656void
657channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
658{
659 struct sockaddr addr;
660 int newsock, newch;
661 socklen_t addrlen;
662
663 if (FD_ISSET(c->sock, readset)) {
664 addrlen = sizeof(addr);
665 newsock = accept(c->sock, &addr, &addrlen);
666 if (newsock < 0) {
667 error("accept from auth socket: %.100s", strerror(errno));
668 return;
669 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100670 newch = channel_new("accepted auth socket",
671 SSH_CHANNEL_OPENING, newsock, newsock, -1,
672 c->local_window_max, c->local_maxpacket,
673 0, xstrdup("accepted auth socket"), 1);
674 if (compat20) {
675 packet_start(SSH2_MSG_CHANNEL_OPEN);
676 packet_put_cstring("auth-agent@openssh.com");
677 packet_put_int(newch);
678 packet_put_int(c->local_window_max);
679 packet_put_int(c->local_maxpacket);
680 } else {
681 packet_start(SSH_SMSG_AGENT_OPEN);
682 packet_put_int(newch);
683 }
Damien Millerb38eff82000-04-01 11:09:21 +1000684 packet_send();
685 }
686}
687
688int
689channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
690{
691 char buf[16*1024];
692 int len;
693
694 if (c->rfd != -1 &&
695 FD_ISSET(c->rfd, readset)) {
696 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +1000697 if (len < 0 && (errno == EINTR || errno == EAGAIN))
698 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000699 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +1000700 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +1000701 c->self, c->rfd, len);
702 if (compat13) {
703 buffer_consume(&c->output, buffer_len(&c->output));
704 c->type = SSH_CHANNEL_INPUT_DRAINING;
705 debug("Channel %d status set to input draining.", c->self);
706 } else {
707 chan_read_failed(c);
708 }
709 return -1;
710 }
Damien Millerad833b32000-08-23 10:46:23 +1000711 if(c->input_filter != NULL) {
712 if (c->input_filter(c, buf, len) == -1) {
713 debug("filter stops channel %d", c->self);
714 chan_read_failed(c);
715 }
716 } else {
717 buffer_append(&c->input, buf, len);
718 }
Damien Millerb38eff82000-04-01 11:09:21 +1000719 }
720 return 1;
721}
722int
723channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
724{
725 int len;
726
727 /* Send buffered output data to the socket. */
728 if (c->wfd != -1 &&
729 FD_ISSET(c->wfd, writeset) &&
730 buffer_len(&c->output) > 0) {
731 len = write(c->wfd, buffer_ptr(&c->output),
Damien Miller6f83b8e2000-05-02 09:23:45 +1000732 buffer_len(&c->output));
733 if (len < 0 && (errno == EINTR || errno == EAGAIN))
734 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000735 if (len <= 0) {
736 if (compat13) {
737 buffer_consume(&c->output, buffer_len(&c->output));
738 debug("Channel %d status set to input draining.", c->self);
739 c->type = SSH_CHANNEL_INPUT_DRAINING;
740 } else {
741 chan_write_failed(c);
742 }
743 return -1;
744 }
745 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +1000746 if (compat20 && len > 0) {
747 c->local_consumed += len;
748 }
749 }
750 return 1;
751}
752int
753channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
754{
755 char buf[16*1024];
756 int len;
757
Damien Miller1383bd82000-04-06 12:32:37 +1000758/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +1000759 if (c->efd != -1) {
760 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
761 FD_ISSET(c->efd, writeset) &&
762 buffer_len(&c->extended) > 0) {
763 len = write(c->efd, buffer_ptr(&c->extended),
764 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +1100765 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +1000766 c->self, len, c->efd);
767 if (len > 0) {
768 buffer_consume(&c->extended, len);
769 c->local_consumed += len;
770 }
771 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
772 FD_ISSET(c->efd, readset)) {
773 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +1100774 debug2("channel %d: read %d from efd %d",
Damien Miller33b13562000-04-04 14:38:59 +1000775 c->self, len, c->efd);
Damien Miller1383bd82000-04-06 12:32:37 +1000776 if (len == 0) {
777 debug("channel %d: closing efd %d",
778 c->self, c->efd);
779 close(c->efd);
780 c->efd = -1;
781 } else if (len > 0)
Damien Miller33b13562000-04-04 14:38:59 +1000782 buffer_append(&c->extended, buf, len);
783 }
784 }
785 return 1;
786}
787int
788channel_check_window(Channel *c, fd_set * readset, fd_set * writeset)
789{
Damien Millerefb4afe2000-04-12 18:45:05 +1000790 if (!(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +1000791 c->local_window < c->local_window_max/2 &&
792 c->local_consumed > 0) {
793 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
794 packet_put_int(c->remote_id);
795 packet_put_int(c->local_consumed);
796 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +1100797 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +1000798 c->self, c->local_window,
799 c->local_consumed);
800 c->local_window += c->local_consumed;
801 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000802 }
803 return 1;
804}
805
806void
807channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
808{
809 channel_handle_rfd(c, readset, writeset);
810 channel_handle_wfd(c, readset, writeset);
811}
812
813void
Damien Miller33b13562000-04-04 14:38:59 +1000814channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
815{
816 channel_handle_rfd(c, readset, writeset);
817 channel_handle_wfd(c, readset, writeset);
818 channel_handle_efd(c, readset, writeset);
819 channel_check_window(c, readset, writeset);
820}
821
822void
Damien Millerb38eff82000-04-01 11:09:21 +1000823channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
824{
825 int len;
826 /* Send buffered output data to the socket. */
827 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
828 len = write(c->sock, buffer_ptr(&c->output),
829 buffer_len(&c->output));
830 if (len <= 0)
831 buffer_consume(&c->output, buffer_len(&c->output));
832 else
833 buffer_consume(&c->output, len);
834 }
835}
836
837void
Damien Miller33b13562000-04-04 14:38:59 +1000838channel_handler_init_20(void)
839{
840 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +1000841 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +1000842 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100843 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000844 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000846
847 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
848 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000850 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000852}
853
854void
Damien Millerb38eff82000-04-01 11:09:21 +1000855channel_handler_init_13(void)
856{
857 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
858 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
859 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
860 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
861 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
862 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
863 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
864
865 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
866 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
867 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
868 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
869 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
870}
871
872void
873channel_handler_init_15(void)
874{
875 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +1000876 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +1000877 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
878 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
879 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
880
881 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
882 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
883 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
884 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
885}
886
887void
888channel_handler_init(void)
889{
890 int i;
891 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
892 channel_pre[i] = NULL;
893 channel_post[i] = NULL;
894 }
Damien Miller33b13562000-04-04 14:38:59 +1000895 if (compat20)
896 channel_handler_init_20();
897 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000898 channel_handler_init_13();
899 else
900 channel_handler_init_15();
901}
902
Damien Miller4af51302000-04-16 11:18:38 +1000903void
Damien Millerb38eff82000-04-01 11:09:21 +1000904channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
905{
906 static int did_init = 0;
907 int i;
908 Channel *c;
909
910 if (!did_init) {
911 channel_handler_init();
912 did_init = 1;
913 }
914 for (i = 0; i < channels_alloc; i++) {
915 c = &channels[i];
916 if (c->type == SSH_CHANNEL_FREE)
917 continue;
918 if (ftab[c->type] == NULL)
919 continue;
920 (*ftab[c->type])(c, readset, writeset);
Damien Miller33b13562000-04-04 14:38:59 +1000921 chan_delete_if_full_closed(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000922 }
923}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924
Damien Miller4af51302000-04-16 11:18:38 +1000925void
Damien Miller95def091999-11-25 00:26:21 +1100926channel_prepare_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927{
Damien Millerb38eff82000-04-01 11:09:21 +1000928 channel_handler(channel_pre, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000929}
930
Damien Miller4af51302000-04-16 11:18:38 +1000931void
Damien Miller95def091999-11-25 00:26:21 +1100932channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933{
Damien Millerb38eff82000-04-01 11:09:21 +1000934 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935}
936
937/* If there is data to send to the connection, send some of it now. */
938
Damien Miller4af51302000-04-16 11:18:38 +1000939void
Damien Miller95def091999-11-25 00:26:21 +1100940channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941{
Damien Miller95def091999-11-25 00:26:21 +1100942 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +1000943 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944
Damien Miller95def091999-11-25 00:26:21 +1100945 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +1000946 c = &channels[i];
Damien Miller34132e52000-01-14 15:45:46 +1100947
Damien Miller5428f641999-11-25 11:54:57 +1100948 /* We are only interested in channels that can have buffered incoming data. */
Damien Miller34132e52000-01-14 15:45:46 +1100949 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000950 if (c->type != SSH_CHANNEL_OPEN &&
951 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +1100952 continue;
953 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000954 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +1100955 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000956 if (c->istate != CHAN_INPUT_OPEN &&
957 c->istate != CHAN_INPUT_WAIT_DRAIN)
Damien Miller34132e52000-01-14 15:45:46 +1100958 continue;
959 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000960 if (compat20 &&
961 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Damien Miller33b13562000-04-04 14:38:59 +1000962 debug("channel: %d: no data after CLOSE", c->self);
963 continue;
964 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000965
Damien Miller95def091999-11-25 00:26:21 +1100966 /* Get the amount of buffered data for this channel. */
Damien Millerb38eff82000-04-01 11:09:21 +1000967 len = buffer_len(&c->input);
Damien Miller95def091999-11-25 00:26:21 +1100968 if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100969 /* Send some data for the other side over the secure connection. */
Damien Miller33b13562000-04-04 14:38:59 +1000970 if (compat20) {
971 if (len > c->remote_window)
972 len = c->remote_window;
973 if (len > c->remote_maxpacket)
974 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +1100975 } else {
Damien Miller33b13562000-04-04 14:38:59 +1000976 if (packet_is_interactive()) {
977 if (len > 1024)
978 len = 512;
979 } else {
980 /* Keep the packets at reasonable size. */
981 if (len > packet_get_maxsize()/2)
982 len = packet_get_maxsize()/2;
983 }
Damien Miller95def091999-11-25 00:26:21 +1100984 }
Damien Millerb38eff82000-04-01 11:09:21 +1000985 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000986 packet_start(compat20 ?
987 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +1000988 packet_put_int(c->remote_id);
989 packet_put_string(buffer_ptr(&c->input), len);
990 packet_send();
991 buffer_consume(&c->input, len);
992 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +1000993 }
994 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +1100995 if (compat13)
996 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +1100997 /*
998 * input-buffer is empty and read-socket shutdown:
999 * tell peer, that we will not send more data: send IEOF
1000 */
Damien Millerb38eff82000-04-01 11:09:21 +10001001 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001002 }
Damien Miller33b13562000-04-04 14:38:59 +10001003 /* Send extended data, i.e. stderr */
1004 if (compat20 &&
1005 c->remote_window > 0 &&
1006 (len = buffer_len(&c->extended)) > 0 &&
1007 c->extended_usage == CHAN_EXTENDED_READ) {
1008 if (len > c->remote_window)
1009 len = c->remote_window;
1010 if (len > c->remote_maxpacket)
1011 len = c->remote_maxpacket;
1012 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1013 packet_put_int(c->remote_id);
1014 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1015 packet_put_string(buffer_ptr(&c->extended), len);
1016 packet_send();
1017 buffer_consume(&c->extended, len);
1018 c->remote_window -= len;
1019 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021}
1022
Damien Miller5428f641999-11-25 11:54:57 +11001023/*
1024 * This is called when a packet of type CHANNEL_DATA has just been received.
1025 * The message type has already been consumed, but channel number and data is
1026 * still there.
1027 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001028
Damien Miller4af51302000-04-16 11:18:38 +10001029void
Damien Miller62cee002000-09-23 17:15:56 +11001030channel_input_data(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031{
Damien Miller34132e52000-01-14 15:45:46 +11001032 int id;
Damien Miller95def091999-11-25 00:26:21 +11001033 char *data;
1034 unsigned int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001035 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036
Damien Miller95def091999-11-25 00:26:21 +11001037 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001038 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001039 c = channel_lookup(id);
1040 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001041 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042
Damien Miller95def091999-11-25 00:26:21 +11001043 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001044 if (c->type != SSH_CHANNEL_OPEN &&
1045 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001046 return;
1047
1048 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001049 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001050 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001051
Damien Miller95def091999-11-25 00:26:21 +11001052 /* Get the data. */
1053 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001054 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001055
Damien Miller33b13562000-04-04 14:38:59 +10001056 if (compat20){
1057 if (data_len > c->local_maxpacket) {
1058 log("channel %d: rcvd big packet %d, maxpack %d",
1059 c->self, data_len, c->local_maxpacket);
1060 }
1061 if (data_len > c->local_window) {
1062 log("channel %d: rcvd too much data %d, win %d",
1063 c->self, data_len, c->local_window);
1064 xfree(data);
1065 return;
1066 }
1067 c->local_window -= data_len;
1068 }else{
1069 packet_integrity_check(plen, 4 + 4 + data_len, type);
1070 }
Damien Millerb38eff82000-04-01 11:09:21 +10001071 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001072 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001073}
Damien Miller4af51302000-04-16 11:18:38 +10001074void
Damien Miller62cee002000-09-23 17:15:56 +11001075channel_input_extended_data(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001076{
1077 int id;
1078 int tcode;
1079 char *data;
1080 unsigned int data_len;
1081 Channel *c;
1082
1083 /* Get the channel number and verify it. */
1084 id = packet_get_int();
1085 c = channel_lookup(id);
1086
1087 if (c == NULL)
1088 packet_disconnect("Received extended_data for bad channel %d.", id);
1089 if (c->type != SSH_CHANNEL_OPEN) {
1090 log("channel %d: ext data for non open", id);
1091 return;
1092 }
1093 tcode = packet_get_int();
1094 if (c->efd == -1 ||
1095 c->extended_usage != CHAN_EXTENDED_WRITE ||
1096 tcode != SSH2_EXTENDED_DATA_STDERR) {
1097 log("channel %d: bad ext data", c->self);
1098 return;
1099 }
1100 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001101 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001102 if (data_len > c->local_window) {
1103 log("channel %d: rcvd too much extended_data %d, win %d",
1104 c->self, data_len, c->local_window);
1105 xfree(data);
1106 return;
1107 }
Damien Millerd3444942000-09-30 14:20:03 +11001108 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001109 c->local_window -= data_len;
1110 buffer_append(&c->extended, data, data_len);
1111 xfree(data);
1112}
1113
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001114
Damien Miller5428f641999-11-25 11:54:57 +11001115/*
1116 * Returns true if no channel has too much buffered data, and false if one or
1117 * more channel is overfull.
1118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001119
Damien Miller4af51302000-04-16 11:18:38 +10001120int
Damien Miller95def091999-11-25 00:26:21 +11001121channel_not_very_much_buffered_data()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001122{
Damien Miller95def091999-11-25 00:26:21 +11001123 unsigned int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001124 Channel *c;
Damien Miller95def091999-11-25 00:26:21 +11001125
1126 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001127 c = &channels[i];
1128 if (c->type == SSH_CHANNEL_OPEN) {
Damien Miller33b13562000-04-04 14:38:59 +10001129 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
Damien Millerb38eff82000-04-01 11:09:21 +10001130 debug("channel %d: big input buffer %d",
1131 c->self, buffer_len(&c->input));
Damien Miller95def091999-11-25 00:26:21 +11001132 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001133 }
1134 if (buffer_len(&c->output) > packet_get_maxsize()) {
1135 debug("channel %d: big output buffer %d",
1136 c->self, buffer_len(&c->output));
Damien Miller95def091999-11-25 00:26:21 +11001137 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001138 }
Damien Miller95def091999-11-25 00:26:21 +11001139 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001140 }
Damien Miller95def091999-11-25 00:26:21 +11001141 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001142}
1143
Damien Miller4af51302000-04-16 11:18:38 +10001144void
Damien Miller62cee002000-09-23 17:15:56 +11001145channel_input_ieof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001146{
1147 int id;
1148 Channel *c;
1149
1150 packet_integrity_check(plen, 4, type);
1151
1152 id = packet_get_int();
1153 c = channel_lookup(id);
1154 if (c == NULL)
1155 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1156 chan_rcvd_ieof(c);
1157}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001158
Damien Miller4af51302000-04-16 11:18:38 +10001159void
Damien Miller62cee002000-09-23 17:15:56 +11001160channel_input_close(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161{
Damien Millerb38eff82000-04-01 11:09:21 +10001162 int id;
1163 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001164
Damien Millerb38eff82000-04-01 11:09:21 +10001165 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001166
Damien Millerb38eff82000-04-01 11:09:21 +10001167 id = packet_get_int();
1168 c = channel_lookup(id);
1169 if (c == NULL)
1170 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001171
1172 /*
1173 * Send a confirmation that we have closed the channel and no more
1174 * data is coming for it.
1175 */
Damien Miller95def091999-11-25 00:26:21 +11001176 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001177 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001178 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001179
Damien Miller5428f641999-11-25 11:54:57 +11001180 /*
1181 * If the channel is in closed state, we have sent a close request,
1182 * and the other side will eventually respond with a confirmation.
1183 * Thus, we cannot free the channel here, because then there would be
1184 * no-one to receive the confirmation. The channel gets freed when
1185 * the confirmation arrives.
1186 */
Damien Millerb38eff82000-04-01 11:09:21 +10001187 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001188 /*
1189 * Not a closed channel - mark it as draining, which will
1190 * cause it to be freed later.
1191 */
Damien Millerb38eff82000-04-01 11:09:21 +10001192 buffer_consume(&c->input, buffer_len(&c->input));
1193 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001194 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001195}
1196
Damien Millerb38eff82000-04-01 11:09:21 +10001197/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001198void
Damien Miller62cee002000-09-23 17:15:56 +11001199channel_input_oclose(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001200{
Damien Millerb38eff82000-04-01 11:09:21 +10001201 int id = packet_get_int();
1202 Channel *c = channel_lookup(id);
1203 packet_integrity_check(plen, 4, type);
1204 if (c == NULL)
1205 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1206 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001207}
1208
Damien Miller4af51302000-04-16 11:18:38 +10001209void
Damien Miller62cee002000-09-23 17:15:56 +11001210channel_input_close_confirmation(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001211{
1212 int id = packet_get_int();
1213 Channel *c = channel_lookup(id);
1214
Damien Miller4af51302000-04-16 11:18:38 +10001215 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001216 if (c == NULL)
1217 packet_disconnect("Received close confirmation for "
1218 "out-of-range channel %d.", id);
1219 if (c->type != SSH_CHANNEL_CLOSED)
1220 packet_disconnect("Received close confirmation for "
1221 "non-closed channel %d (type %d).", id, c->type);
1222 channel_free(c->self);
1223}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001224
Damien Miller4af51302000-04-16 11:18:38 +10001225void
Damien Miller62cee002000-09-23 17:15:56 +11001226channel_input_open_confirmation(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001227{
Damien Millerb38eff82000-04-01 11:09:21 +10001228 int id, remote_id;
1229 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001230
Damien Miller33b13562000-04-04 14:38:59 +10001231 if (!compat20)
1232 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001233
Damien Millerb38eff82000-04-01 11:09:21 +10001234 id = packet_get_int();
1235 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001236
Damien Millerb38eff82000-04-01 11:09:21 +10001237 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1238 packet_disconnect("Received open confirmation for "
1239 "non-opening channel %d.", id);
1240 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001241 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001242 c->remote_id = remote_id;
1243 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001244
1245 if (compat20) {
1246 c->remote_window = packet_get_int();
1247 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001248 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001249 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001250 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001251 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001252 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001253 }
1254 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1255 c->remote_window, c->remote_maxpacket);
1256 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257}
1258
Damien Miller4af51302000-04-16 11:18:38 +10001259void
Damien Miller62cee002000-09-23 17:15:56 +11001260channel_input_open_failure(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001261{
Damien Millerb38eff82000-04-01 11:09:21 +10001262 int id;
1263 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001264
Damien Miller33b13562000-04-04 14:38:59 +10001265 if (!compat20)
1266 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001267
1268 id = packet_get_int();
1269 c = channel_lookup(id);
1270
1271 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1272 packet_disconnect("Received open failure for "
1273 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001274 if (compat20) {
1275 int reason = packet_get_int();
1276 char *msg = packet_get_string(NULL);
Damien Miller4af51302000-04-16 11:18:38 +10001277 char *lang = packet_get_string(NULL);
Damien Miller33b13562000-04-04 14:38:59 +10001278 log("channel_open_failure: %d: reason %d: %s", id, reason, msg);
Damien Miller4af51302000-04-16 11:18:38 +10001279 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001280 xfree(msg);
Damien Miller4af51302000-04-16 11:18:38 +10001281 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001282 }
Damien Miller95def091999-11-25 00:26:21 +11001283 /* Free the channel. This will also close the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001284 channel_free(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285}
1286
Damien Miller33b13562000-04-04 14:38:59 +10001287void
Damien Miller62cee002000-09-23 17:15:56 +11001288channel_input_channel_request(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001289{
1290 int id;
1291 Channel *c;
1292
1293 id = packet_get_int();
1294 c = channel_lookup(id);
1295
1296 if (c == NULL ||
1297 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1298 packet_disconnect("Received request for "
1299 "non-open channel %d.", id);
1300 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001301 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001302 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001303 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001304 } else {
1305 char *service = packet_get_string(NULL);
1306 debug("channel: %d rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001307 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001308 xfree(service);
1309 }
1310}
1311
Damien Miller4af51302000-04-16 11:18:38 +10001312void
Damien Miller62cee002000-09-23 17:15:56 +11001313channel_input_window_adjust(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001314{
1315 Channel *c;
1316 int id, adjust;
1317
1318 if (!compat20)
1319 return;
1320
1321 /* Get the channel number and verify it. */
1322 id = packet_get_int();
1323 c = channel_lookup(id);
1324
1325 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1326 log("Received window adjust for "
1327 "non-open channel %d.", id);
1328 return;
1329 }
1330 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001331 packet_done();
Damien Millerd3444942000-09-30 14:20:03 +11001332 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001333 c->remote_window += adjust;
1334}
1335
Damien Miller5428f641999-11-25 11:54:57 +11001336/*
1337 * Stops listening for channels, and removes any unix domain sockets that we
1338 * might have.
1339 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001340
Damien Miller4af51302000-04-16 11:18:38 +10001341void
Damien Miller95def091999-11-25 00:26:21 +11001342channel_stop_listening()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343{
Damien Miller95def091999-11-25 00:26:21 +11001344 int i;
1345 for (i = 0; i < channels_alloc; i++) {
1346 switch (channels[i].type) {
1347 case SSH_CHANNEL_AUTH_SOCKET:
1348 close(channels[i].sock);
Damien Miller78315eb2000-09-29 23:01:36 +11001349 unlink(channels[i].path);
Damien Miller95def091999-11-25 00:26:21 +11001350 channel_free(i);
1351 break;
1352 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001353 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001354 case SSH_CHANNEL_X11_LISTENER:
1355 close(channels[i].sock);
1356 channel_free(i);
1357 break;
1358 default:
1359 break;
1360 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001362}
1363
Damien Miller5428f641999-11-25 11:54:57 +11001364/*
Damien Miller6f83b8e2000-05-02 09:23:45 +10001365 * Closes the sockets/fds of all channels. This is used to close extra file
Damien Miller5428f641999-11-25 11:54:57 +11001366 * descriptors after a fork.
1367 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001368
Damien Miller4af51302000-04-16 11:18:38 +10001369void
Damien Miller95def091999-11-25 00:26:21 +11001370channel_close_all()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001371{
Damien Miller95def091999-11-25 00:26:21 +11001372 int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +10001373 for (i = 0; i < channels_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +11001374 if (channels[i].type != SSH_CHANNEL_FREE)
Damien Miller6f83b8e2000-05-02 09:23:45 +10001375 channel_close_fds(&channels[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001376}
1377
1378/* Returns the maximum file descriptor number used by the channels. */
1379
Damien Miller4af51302000-04-16 11:18:38 +10001380int
Damien Miller95def091999-11-25 00:26:21 +11001381channel_max_fd()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001382{
Damien Miller95def091999-11-25 00:26:21 +11001383 return channel_max_fd_value;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384}
1385
1386/* Returns true if any channel is still open. */
1387
Damien Miller4af51302000-04-16 11:18:38 +10001388int
Damien Miller95def091999-11-25 00:26:21 +11001389channel_still_open()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001390{
Damien Miller95def091999-11-25 00:26:21 +11001391 unsigned int i;
1392 for (i = 0; i < channels_alloc; i++)
1393 switch (channels[i].type) {
1394 case SSH_CHANNEL_FREE:
1395 case SSH_CHANNEL_X11_LISTENER:
1396 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001397 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001398 case SSH_CHANNEL_CLOSED:
1399 case SSH_CHANNEL_AUTH_SOCKET:
1400 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001401 case SSH_CHANNEL_LARVAL:
1402 if (!compat20)
1403 fatal("cannot happen: SSH_CHANNEL_LARVAL");
1404 continue;
Damien Miller95def091999-11-25 00:26:21 +11001405 case SSH_CHANNEL_OPENING:
1406 case SSH_CHANNEL_OPEN:
1407 case SSH_CHANNEL_X11_OPEN:
1408 return 1;
1409 case SSH_CHANNEL_INPUT_DRAINING:
1410 case SSH_CHANNEL_OUTPUT_DRAINING:
1411 if (!compat13)
1412 fatal("cannot happen: OUT_DRAIN");
1413 return 1;
1414 default:
1415 fatal("channel_still_open: bad channel type %d", channels[i].type);
1416 /* NOTREACHED */
1417 }
1418 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419}
1420
Damien Miller5428f641999-11-25 11:54:57 +11001421/*
1422 * Returns a message describing the currently open forwarded connections,
1423 * suitable for sending to the client. The message contains crlf pairs for
1424 * newlines.
1425 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Damien Miller95def091999-11-25 00:26:21 +11001427char *
1428channel_open_message()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429{
Damien Miller95def091999-11-25 00:26:21 +11001430 Buffer buffer;
1431 int i;
1432 char buf[512], *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001433
Damien Miller95def091999-11-25 00:26:21 +11001434 buffer_init(&buffer);
1435 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436 buffer_append(&buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001437 for (i = 0; i < channels_alloc; i++) {
1438 Channel *c = &channels[i];
1439 switch (c->type) {
1440 case SSH_CHANNEL_FREE:
1441 case SSH_CHANNEL_X11_LISTENER:
1442 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001443 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001444 case SSH_CHANNEL_CLOSED:
1445 case SSH_CHANNEL_AUTH_SOCKET:
1446 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001447 case SSH_CHANNEL_LARVAL:
Damien Miller95def091999-11-25 00:26:21 +11001448 case SSH_CHANNEL_OPENING:
1449 case SSH_CHANNEL_OPEN:
1450 case SSH_CHANNEL_X11_OPEN:
1451 case SSH_CHANNEL_INPUT_DRAINING:
1452 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Millerb38eff82000-04-01 11:09:21 +10001453 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 +11001454 c->self, c->remote_name,
1455 c->type, c->remote_id,
1456 c->istate, buffer_len(&c->input),
Damien Millerb38eff82000-04-01 11:09:21 +10001457 c->ostate, buffer_len(&c->output),
1458 c->rfd, c->wfd);
Damien Miller95def091999-11-25 00:26:21 +11001459 buffer_append(&buffer, buf, strlen(buf));
1460 continue;
1461 default:
Damien Millerb38eff82000-04-01 11:09:21 +10001462 fatal("channel_open_message: bad channel type %d", c->type);
Damien Miller95def091999-11-25 00:26:21 +11001463 /* NOTREACHED */
1464 }
1465 }
1466 buffer_append(&buffer, "\0", 1);
1467 cp = xstrdup(buffer_ptr(&buffer));
1468 buffer_free(&buffer);
1469 return cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001470}
1471
Damien Miller5428f641999-11-25 11:54:57 +11001472/*
1473 * Initiate forwarding of connections to local port "port" through the secure
1474 * channel to host:port from remote side.
1475 */
Damien Miller4af51302000-04-16 11:18:38 +10001476void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001477channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
1478 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001479{
Damien Miller0bc1bd82000-11-13 22:57:25 +11001480 channel_request_forwarding(
1481 NULL, listen_port,
1482 host_to_connect, port_to_connect,
1483 gateway_ports, /*remote_fwd*/ 0);
1484}
1485
1486/*
1487 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
1488 * (SSH_CHANNEL_RPORT_LISTENER).
1489 */
1490void
1491channel_request_forwarding(
1492 const char *listen_address, u_short listen_port,
1493 const char *host_to_connect, u_short port_to_connect,
1494 int gateway_ports, int remote_fwd)
1495{
1496 int success, ch, sock, on = 1, ctype;
Damien Miller34132e52000-01-14 15:45:46 +11001497 struct addrinfo hints, *ai, *aitop;
1498 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11001499 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11001500 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001501
Damien Miller0bc1bd82000-11-13 22:57:25 +11001502 if (remote_fwd) {
1503 host = listen_address;
1504 ctype = SSH_CHANNEL_RPORT_LISTENER;
1505 } else {
1506 host = host_to_connect;
1507 ctype =SSH_CHANNEL_PORT_LISTENER;
1508 }
1509
Damien Miller95def091999-11-25 00:26:21 +11001510 if (strlen(host) > sizeof(channels[0].path) - 1)
1511 packet_disconnect("Forward host name too long.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512
Damien Miller0bc1bd82000-11-13 22:57:25 +11001513 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11001514 /*
Damien Miller34132e52000-01-14 15:45:46 +11001515 * getaddrinfo returns a loopback address if the hostname is
1516 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11001517 */
Damien Miller34132e52000-01-14 15:45:46 +11001518 memset(&hints, 0, sizeof(hints));
1519 hints.ai_family = IPv4or6;
1520 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
1521 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001522 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11001523 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
1524 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11001525
Damien Miller34132e52000-01-14 15:45:46 +11001526 success = 0;
1527 for (ai = aitop; ai; ai = ai->ai_next) {
1528 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1529 continue;
1530 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1531 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001532 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001533 continue;
1534 }
1535 /* Create a port to listen for the host. */
1536 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1537 if (sock < 0) {
1538 /* this is no error since kernel may not support ipv6 */
1539 verbose("socket: %.100s", strerror(errno));
1540 continue;
1541 }
1542 /*
1543 * Set socket options. We would like the socket to disappear
1544 * as soon as it has been closed for whatever reason.
1545 */
1546 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
1547 linger.l_onoff = 1;
1548 linger.l_linger = 5;
1549 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
1550 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11001551
Damien Miller34132e52000-01-14 15:45:46 +11001552 /* Bind the socket to the address. */
1553 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1554 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11001555 if (!ai->ai_next)
1556 error("bind: %.100s", strerror(errno));
1557 else
1558 verbose("bind: %.100s", strerror(errno));
1559
Damien Miller34132e52000-01-14 15:45:46 +11001560 close(sock);
1561 continue;
1562 }
1563 /* Start listening for connections on the socket. */
1564 if (listen(sock, 5) < 0) {
1565 error("listen: %.100s", strerror(errno));
1566 close(sock);
1567 continue;
1568 }
1569 /* Allocate a channel number for the socket. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001570 ch = channel_new("port listener", ctype, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10001571 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11001572 0, xstrdup("port listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11001573 strlcpy(channels[ch].path, host, sizeof(channels[ch].path));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001574 channels[ch].host_port = port_to_connect;
1575 channels[ch].listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11001576 success = 1;
1577 }
1578 if (success == 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001579 packet_disconnect("cannot listen port: %d", listen_port); /*XXX ?disconnect? */
Damien Miller34132e52000-01-14 15:45:46 +11001580 freeaddrinfo(aitop);
Damien Miller95def091999-11-25 00:26:21 +11001581}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582
Damien Miller5428f641999-11-25 11:54:57 +11001583/*
1584 * Initiate forwarding of connections to port "port" on remote host through
1585 * the secure channel to host:port from local side.
1586 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001587
Damien Miller4af51302000-04-16 11:18:38 +10001588void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001589channel_request_remote_forwarding(u_short listen_port,
1590 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001591{
Damien Miller0bc1bd82000-11-13 22:57:25 +11001592 int payload_len, type, success = 0;
1593
Damien Miller95def091999-11-25 00:26:21 +11001594 /* Record locally that connection to this host/port is permitted. */
1595 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1596 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001597
Damien Miller95def091999-11-25 00:26:21 +11001598 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10001599 if (compat20) {
1600 const char *address_to_bind = "0.0.0.0";
1601 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1602 packet_put_cstring("tcpip-forward");
1603 packet_put_char(0); /* boolean: want reply */
1604 packet_put_cstring(address_to_bind);
1605 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001606 packet_send();
1607 packet_write_wait();
1608 /* Assume that server accepts the request */
1609 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10001610 } else {
1611 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10001612 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10001613 packet_put_cstring(host_to_connect);
1614 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10001615 packet_send();
1616 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001617
1618 /* Wait for response from the remote side. */
1619 type = packet_read(&payload_len);
1620 switch (type) {
1621 case SSH_SMSG_SUCCESS:
1622 success = 1;
1623 break;
1624 case SSH_SMSG_FAILURE:
1625 log("Warning: Server denied remote port forwarding.");
1626 break;
1627 default:
1628 /* Unknown packet */
1629 packet_disconnect("Protocol error for port forward request:"
1630 "received packet type %d.", type);
1631 }
1632 }
1633 if (success) {
1634 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
1635 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
1636 permitted_opens[num_permitted_opens].listen_port = listen_port;
1637 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10001638 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001639}
1640
Damien Miller5428f641999-11-25 11:54:57 +11001641/*
1642 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
1643 * listening for the port, and sends back a success reply (or disconnect
1644 * message if there was an error). This never returns if there was an error.
1645 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001646
Damien Miller4af51302000-04-16 11:18:38 +10001647void
Damien Millere247cc42000-05-07 12:03:14 +10001648channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001649{
Damien Milleraae6c611999-12-06 11:47:28 +11001650 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11001651 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001652
Damien Miller95def091999-11-25 00:26:21 +11001653 /* Get arguments from the packet. */
1654 port = packet_get_int();
1655 hostname = packet_get_string(NULL);
1656 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001657
Damien Millerbac2d8a2000-09-05 16:13:06 +11001658#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11001659 /*
1660 * Check that an unprivileged user is not trying to forward a
1661 * privileged port.
1662 */
Damien Miller95def091999-11-25 00:26:21 +11001663 if (port < IPPORT_RESERVED && !is_root)
1664 packet_disconnect("Requested forwarding of port %d but user is not root.",
1665 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11001666#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001667 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10001668 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11001669
1670 /* Free the argument string. */
1671 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001672}
1673
Damien Millerb38eff82000-04-01 11:09:21 +10001674/* XXX move to aux.c */
1675int
1676channel_connect_to(const char *host, u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001677{
Damien Miller34132e52000-01-14 15:45:46 +11001678 struct addrinfo hints, *ai, *aitop;
1679 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1680 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10001681 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11001682
Damien Miller34132e52000-01-14 15:45:46 +11001683 memset(&hints, 0, sizeof(hints));
1684 hints.ai_family = IPv4or6;
1685 hints.ai_socktype = SOCK_STREAM;
1686 snprintf(strport, sizeof strport, "%d", host_port);
1687 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
1688 error("%.100s: unknown host (%s)", host, gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10001689 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001690 }
Damien Miller34132e52000-01-14 15:45:46 +11001691 for (ai = aitop; ai; ai = ai->ai_next) {
1692 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1693 continue;
1694 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1695 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001696 error("channel_connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001697 continue;
1698 }
1699 /* Create the socket. */
1700 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1701 if (sock < 0) {
1702 error("socket: %.100s", strerror(errno));
1703 continue;
1704 }
1705 /* Connect to the host/port. */
1706 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1707 error("connect %.100s port %s: %.100s", ntop, strport,
1708 strerror(errno));
1709 close(sock);
1710 continue; /* fail -- try next */
1711 }
1712 break; /* success */
1713
1714 }
1715 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11001716 if (!ai) {
1717 error("connect %.100s port %d: failed.", host, host_port);
Damien Millerb38eff82000-04-01 11:09:21 +10001718 return -1;
1719 }
1720 /* success */
1721 return sock;
1722}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001723int
1724channel_connect_by_listen_adress(u_short listen_port)
1725{
1726 int i;
1727 for (i = 0; i < num_permitted_opens; i++)
1728 if (permitted_opens[i].listen_port == listen_port)
1729 return channel_connect_to(
1730 permitted_opens[i].host_to_connect,
1731 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00001732 error("WARNING: Server requests forwarding for unknown listen_port %d",
1733 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001734 return -1;
1735}
Damien Millerb38eff82000-04-01 11:09:21 +10001736
1737/*
1738 * This is called after receiving PORT_OPEN message. This attempts to
1739 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
1740 * or CHANNEL_OPEN_FAILURE.
1741 */
1742
Damien Miller4af51302000-04-16 11:18:38 +10001743void
Damien Miller62cee002000-09-23 17:15:56 +11001744channel_input_port_open(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001745{
1746 u_short host_port;
1747 char *host, *originator_string;
1748 int remote_channel, sock = -1, newch, i, denied;
1749 unsigned int host_len, originator_len;
1750
1751 /* Get remote channel number. */
1752 remote_channel = packet_get_int();
1753
1754 /* Get host name to connect to. */
1755 host = packet_get_string(&host_len);
1756
1757 /* Get port to connect to. */
1758 host_port = packet_get_int();
1759
1760 /* Get remote originator name. */
1761 if (have_hostname_in_open) {
1762 originator_string = packet_get_string(&originator_len);
1763 originator_len += 4; /* size of packet_int */
1764 } else {
1765 originator_string = xstrdup("unknown (remote did not supply name)");
1766 originator_len = 0; /* no originator supplied */
Damien Miller95def091999-11-25 00:26:21 +11001767 }
Damien Miller34132e52000-01-14 15:45:46 +11001768
Damien Millerb38eff82000-04-01 11:09:21 +10001769 packet_integrity_check(plen,
1770 4 + 4 + host_len + 4 + originator_len, SSH_MSG_PORT_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001771
Damien Millerb38eff82000-04-01 11:09:21 +10001772 /* Check if opening that port is permitted. */
1773 denied = 0;
1774 if (!all_opens_permitted) {
1775 /* Go trough all permitted ports. */
1776 for (i = 0; i < num_permitted_opens; i++)
1777 if (permitted_opens[i].port_to_connect == host_port &&
1778 strcmp(permitted_opens[i].host_to_connect, host) == 0)
1779 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001780
Damien Millerb38eff82000-04-01 11:09:21 +10001781 /* Check if we found the requested port among those permitted. */
1782 if (i >= num_permitted_opens) {
1783 /* The port is not permitted. */
1784 log("Received request to connect to %.100s:%d, but the request was denied.",
1785 host, host_port);
1786 denied = 1;
1787 }
1788 }
1789 sock = denied ? -1 : channel_connect_to(host, host_port);
1790 if (sock > 0) {
1791 /* Allocate a channel for this connection. */
1792 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, originator_string);
1793 channels[newch].remote_id = remote_channel;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001794
Damien Millerb38eff82000-04-01 11:09:21 +10001795 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1796 packet_put_int(remote_channel);
1797 packet_put_int(newch);
1798 packet_send();
1799 } else {
1800 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1801 packet_put_int(remote_channel);
1802 packet_send();
1803 }
Damien Miller95def091999-11-25 00:26:21 +11001804 xfree(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001805}
1806
Damien Miller5428f641999-11-25 11:54:57 +11001807/*
1808 * Creates an internet domain socket for listening for X11 connections.
1809 * Returns a suitable value for the DISPLAY variable, or NULL if an error
1810 * occurs.
1811 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001812
Damien Miller34132e52000-01-14 15:45:46 +11001813#define NUM_SOCKS 10
1814
Damien Miller95def091999-11-25 00:26:21 +11001815char *
Damien Millera34a28b1999-12-14 10:47:15 +11001816x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001817{
Damien Milleraae6c611999-12-06 11:47:28 +11001818 int display_number, sock;
1819 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11001820 struct addrinfo hints, *ai, *aitop;
1821 char strport[NI_MAXSERV];
1822 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1823 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11001824 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001825
Damien Millera34a28b1999-12-14 10:47:15 +11001826 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11001827 display_number < MAX_DISPLAYS;
1828 display_number++) {
1829 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11001830 memset(&hints, 0, sizeof(hints));
1831 hints.ai_family = IPv4or6;
1832 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
1833 hints.ai_socktype = SOCK_STREAM;
1834 snprintf(strport, sizeof strport, "%d", port);
1835 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1836 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11001837 return NULL;
1838 }
Damien Miller34132e52000-01-14 15:45:46 +11001839 for (ai = aitop; ai; ai = ai->ai_next) {
1840 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1841 continue;
1842 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1843 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11001844 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11001845 error("socket: %.100s", strerror(errno));
1846 return NULL;
1847 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11001848 debug("x11_create_display_inet: Socket family %d not supported",
1849 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11001850 continue;
1851 }
Damien Miller34132e52000-01-14 15:45:46 +11001852 }
1853 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1854 debug("bind port %d: %.100s", port, strerror(errno));
1855 shutdown(sock, SHUT_RDWR);
1856 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11001857
1858 if (ai->ai_next)
1859 continue;
1860
Damien Miller34132e52000-01-14 15:45:46 +11001861 for (n = 0; n < num_socks; n++) {
1862 shutdown(socks[n], SHUT_RDWR);
1863 close(socks[n]);
1864 }
1865 num_socks = 0;
1866 break;
1867 }
1868 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11001869#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11001870 if (num_socks == NUM_SOCKS)
1871 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11001872#else
1873 break;
1874#endif
Damien Miller95def091999-11-25 00:26:21 +11001875 }
Damien Miller34132e52000-01-14 15:45:46 +11001876 if (num_socks > 0)
1877 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001878 }
Damien Miller95def091999-11-25 00:26:21 +11001879 if (display_number >= MAX_DISPLAYS) {
1880 error("Failed to allocate internet-domain X11 display socket.");
1881 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001882 }
Damien Miller95def091999-11-25 00:26:21 +11001883 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11001884 for (n = 0; n < num_socks; n++) {
1885 sock = socks[n];
1886 if (listen(sock, 5) < 0) {
1887 error("listen: %.100s", strerror(errno));
1888 shutdown(sock, SHUT_RDWR);
1889 close(sock);
1890 return NULL;
1891 }
Damien Miller95def091999-11-25 00:26:21 +11001892 }
Damien Miller34132e52000-01-14 15:45:46 +11001893
Damien Miller95def091999-11-25 00:26:21 +11001894 /* Set up a suitable value for the DISPLAY variable. */
Damien Miller76112de1999-12-21 11:18:08 +11001895
Damien Miller95def091999-11-25 00:26:21 +11001896 if (gethostname(hostname, sizeof(hostname)) < 0)
1897 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11001898
1899#ifdef IPADDR_IN_DISPLAY
1900 /*
1901 * HPUX detects the local hostname in the DISPLAY variable and tries
1902 * to set up a shared memory connection to the server, which it
1903 * incorrectly supposes to be local.
1904 *
1905 * The workaround - as used in later $$H and other programs - is
1906 * is to set display to the host's IP address.
1907 */
1908 {
1909 struct hostent *he;
1910 struct in_addr my_addr;
1911
1912 he = gethostbyname(hostname);
1913 if (he == NULL) {
1914 error("[X11-broken-fwd-hostname-workaround] Could not get "
1915 "IP address for hostname %s.", hostname);
1916
1917 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
1918 "Could not get IP address for hostname %s.", hostname);
1919
1920 shutdown(sock, SHUT_RDWR);
1921 close(sock);
1922
1923 return NULL;
1924 }
1925
1926 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
1927
1928 /* Set DISPLAY to <ip address>:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001929 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Damien Miller76112de1999-12-21 11:18:08 +11001930 display_number, screen_number);
1931 }
1932#else /* IPADDR_IN_DISPLAY */
1933 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001934 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Damien Miller76112de1999-12-21 11:18:08 +11001935 display_number, screen_number);
1936#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001937
Damien Miller34132e52000-01-14 15:45:46 +11001938 /* Allocate a channel for each socket. */
1939 for (n = 0; n < num_socks; n++) {
1940 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10001941 (void) channel_new("x11 listener",
1942 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
1943 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11001944 0, xstrdup("X11 inet listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11001945 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001946
Damien Miller95def091999-11-25 00:26:21 +11001947 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11001948 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001949}
1950
1951#ifndef X_UNIX_PATH
1952#define X_UNIX_PATH "/tmp/.X11-unix/X"
1953#endif
1954
1955static
1956int
Damien Miller81b25cf1999-12-07 16:47:28 +11001957connect_local_xsocket(unsigned int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001958{
Damien Miller95def091999-11-25 00:26:21 +11001959 static const char *const x_sockets[] = {
1960 X_UNIX_PATH "%u",
1961 "/var/X/.X11-unix/X" "%u",
1962 "/usr/spool/sockets/X11/" "%u",
1963 NULL
1964 };
1965 int sock;
1966 struct sockaddr_un addr;
1967 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001968
Damien Miller95def091999-11-25 00:26:21 +11001969 for (path = x_sockets; *path; ++path) {
1970 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1971 if (sock < 0)
1972 error("socket: %.100s", strerror(errno));
1973 memset(&addr, 0, sizeof(addr));
1974 addr.sun_family = AF_UNIX;
1975 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
1976 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
1977 return sock;
1978 close(sock);
1979 }
1980 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
1981 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982}
1983
Damien Millerbd483e72000-04-30 10:00:53 +10001984int
1985x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001986{
Damien Millerbd483e72000-04-30 10:00:53 +10001987 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11001988 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10001989 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11001990 struct addrinfo hints, *ai, *aitop;
1991 char strport[NI_MAXSERV];
1992 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001993
Damien Miller95def091999-11-25 00:26:21 +11001994 /* Try to open a socket for the local X server. */
1995 display = getenv("DISPLAY");
1996 if (!display) {
1997 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10001998 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001999 }
Damien Miller5428f641999-11-25 11:54:57 +11002000 /*
2001 * Now we decode the value of the DISPLAY variable and make a
2002 * connection to the real X server.
2003 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002004
Damien Miller5428f641999-11-25 11:54:57 +11002005 /*
2006 * Check if it is a unix domain socket. Unix domain displays are in
2007 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2008 */
Damien Miller95def091999-11-25 00:26:21 +11002009 if (strncmp(display, "unix:", 5) == 0 ||
2010 display[0] == ':') {
2011 /* Connect to the unix domain socket. */
2012 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2013 error("Could not parse display number from DISPLAY: %.100s",
2014 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002015 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002016 }
2017 /* Create a socket. */
2018 sock = connect_local_xsocket(display_number);
2019 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002020 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002021
2022 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002023 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002024 }
Damien Miller5428f641999-11-25 11:54:57 +11002025 /*
2026 * Connect to an inet socket. The DISPLAY value is supposedly
2027 * hostname:d[.s], where hostname may also be numeric IP address.
2028 */
Damien Miller95def091999-11-25 00:26:21 +11002029 strncpy(buf, display, sizeof(buf));
2030 buf[sizeof(buf) - 1] = 0;
2031 cp = strchr(buf, ':');
2032 if (!cp) {
2033 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002034 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002035 }
Damien Miller95def091999-11-25 00:26:21 +11002036 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002037 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002038 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2039 error("Could not parse display number from DISPLAY: %.100s",
2040 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002041 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002042 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002043
Damien Miller34132e52000-01-14 15:45:46 +11002044 /* Look up the host address */
2045 memset(&hints, 0, sizeof(hints));
2046 hints.ai_family = IPv4or6;
2047 hints.ai_socktype = SOCK_STREAM;
2048 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2049 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2050 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002051 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002052 }
Damien Miller34132e52000-01-14 15:45:46 +11002053 for (ai = aitop; ai; ai = ai->ai_next) {
2054 /* Create a socket. */
2055 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2056 if (sock < 0) {
2057 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002058 continue;
2059 }
2060 /* Connect it to the display. */
2061 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2062 debug("connect %.100s port %d: %.100s", buf,
2063 6000 + display_number, strerror(errno));
2064 close(sock);
2065 continue;
2066 }
2067 /* Success */
2068 break;
Damien Miller34132e52000-01-14 15:45:46 +11002069 }
Damien Miller34132e52000-01-14 15:45:46 +11002070 freeaddrinfo(aitop);
2071 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002072 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002073 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002074 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002075 }
Damien Millerbd483e72000-04-30 10:00:53 +10002076 return sock;
2077}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002078
Damien Millerbd483e72000-04-30 10:00:53 +10002079/*
2080 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2081 * the remote channel number. We should do whatever we want, and respond
2082 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2083 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002084
Damien Millerbd483e72000-04-30 10:00:53 +10002085void
Damien Miller62cee002000-09-23 17:15:56 +11002086x11_input_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002087{
2088 int remote_channel, sock = 0, newch;
2089 char *remote_host;
2090 unsigned int remote_len;
Damien Miller95def091999-11-25 00:26:21 +11002091
Damien Millerbd483e72000-04-30 10:00:53 +10002092 /* Get remote channel number. */
2093 remote_channel = packet_get_int();
Damien Miller95def091999-11-25 00:26:21 +11002094
Damien Millerbd483e72000-04-30 10:00:53 +10002095 /* Get remote originator name. */
2096 if (have_hostname_in_open) {
2097 remote_host = packet_get_string(&remote_len);
2098 remote_len += 4;
2099 } else {
2100 remote_host = xstrdup("unknown (remote did not supply name)");
2101 remote_len = 0;
2102 }
2103
2104 debug("Received X11 open request.");
2105 packet_integrity_check(plen, 4 + remote_len, SSH_SMSG_X11_OPEN);
2106
2107 /* Obtain a connection to the real X display. */
2108 sock = x11_connect_display();
2109 if (sock == -1) {
2110 /* Send refusal to the remote host. */
2111 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2112 packet_put_int(remote_channel);
2113 packet_send();
2114 } else {
2115 /* Allocate a channel for this connection. */
2116 newch = channel_allocate(
2117 (x11_saved_proto == NULL) ?
2118 SSH_CHANNEL_OPEN : SSH_CHANNEL_X11_OPEN,
2119 sock, remote_host);
2120 channels[newch].remote_id = remote_channel;
2121
2122 /* Send a confirmation to the remote host. */
2123 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2124 packet_put_int(remote_channel);
2125 packet_put_int(newch);
2126 packet_send();
2127 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002128}
2129
Damien Miller69b69aa2000-10-28 14:19:58 +11002130/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2131void
2132deny_input_open(int type, int plen, void *ctxt)
2133{
2134 int rchan = packet_get_int();
2135 switch(type){
2136 case SSH_SMSG_AGENT_OPEN:
2137 error("Warning: ssh server tried agent forwarding.");
2138 break;
2139 case SSH_SMSG_X11_OPEN:
2140 error("Warning: ssh server tried X11 forwarding.");
2141 break;
2142 default:
2143 error("deny_input_open: type %d plen %d", type, plen);
2144 break;
2145 }
2146 error("Warning: this is probably a break in attempt by a malicious server.");
2147 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2148 packet_put_int(rchan);
2149 packet_send();
2150}
2151
Damien Miller5428f641999-11-25 11:54:57 +11002152/*
2153 * Requests forwarding of X11 connections, generates fake authentication
2154 * data, and enables authentication spoofing.
2155 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002156
Damien Miller4af51302000-04-16 11:18:38 +10002157void
Damien Millerbd483e72000-04-30 10:00:53 +10002158x11_request_forwarding_with_spoofing(int client_session_id,
2159 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002160{
Damien Miller95def091999-11-25 00:26:21 +11002161 unsigned int data_len = (unsigned int) strlen(data) / 2;
2162 unsigned int i, value;
2163 char *new_data;
2164 int screen_number;
2165 const char *cp;
2166 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002167
Damien Miller95def091999-11-25 00:26:21 +11002168 cp = getenv("DISPLAY");
2169 if (cp)
2170 cp = strchr(cp, ':');
2171 if (cp)
2172 cp = strchr(cp, '.');
2173 if (cp)
2174 screen_number = atoi(cp + 1);
2175 else
2176 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002177
Damien Miller95def091999-11-25 00:26:21 +11002178 /* Save protocol name. */
2179 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002180
Damien Miller5428f641999-11-25 11:54:57 +11002181 /*
2182 * Extract real authentication data and generate fake data of the
2183 * same length.
2184 */
Damien Miller95def091999-11-25 00:26:21 +11002185 x11_saved_data = xmalloc(data_len);
2186 x11_fake_data = xmalloc(data_len);
2187 for (i = 0; i < data_len; i++) {
2188 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2189 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2190 if (i % 4 == 0)
2191 rand = arc4random();
2192 x11_saved_data[i] = value;
2193 x11_fake_data[i] = rand & 0xff;
2194 rand >>= 8;
2195 }
2196 x11_saved_data_len = data_len;
2197 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002198
Damien Miller95def091999-11-25 00:26:21 +11002199 /* Convert the fake data into hex. */
2200 new_data = xmalloc(2 * data_len + 1);
2201 for (i = 0; i < data_len; i++)
2202 sprintf(new_data + 2 * i, "%02x", (unsigned char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002203
Damien Miller95def091999-11-25 00:26:21 +11002204 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002205 if (compat20) {
2206 channel_request_start(client_session_id, "x11-req", 0);
2207 packet_put_char(0); /* XXX bool single connection */
2208 } else {
2209 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2210 }
2211 packet_put_cstring(proto);
2212 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002213 packet_put_int(screen_number);
2214 packet_send();
2215 packet_write_wait();
2216 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002217}
2218
2219/* Sends a message to the server to request authentication fd forwarding. */
2220
Damien Miller4af51302000-04-16 11:18:38 +10002221void
Damien Miller95def091999-11-25 00:26:21 +11002222auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002223{
Damien Miller95def091999-11-25 00:26:21 +11002224 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2225 packet_send();
2226 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002227}
2228
Damien Miller5428f641999-11-25 11:54:57 +11002229/*
2230 * Returns the name of the forwarded authentication socket. Returns NULL if
2231 * there is no forwarded authentication socket. The returned value points to
2232 * a static buffer.
2233 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002234
Damien Miller95def091999-11-25 00:26:21 +11002235char *
2236auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002237{
Damien Miller95def091999-11-25 00:26:21 +11002238 return channel_forwarded_auth_socket_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002239}
2240
2241/* removes the agent forwarding socket */
2242
Damien Miller4af51302000-04-16 11:18:38 +10002243void
Damien Miller95def091999-11-25 00:26:21 +11002244cleanup_socket(void)
2245{
Damien Miller78315eb2000-09-29 23:01:36 +11002246 unlink(channel_forwarded_auth_socket_name);
Damien Miller95def091999-11-25 00:26:21 +11002247 rmdir(channel_forwarded_auth_socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248}
2249
Damien Miller5428f641999-11-25 11:54:57 +11002250/*
Damien Millerd3a18572000-06-07 19:55:44 +10002251 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002252 * This starts forwarding authentication requests.
2253 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002254
Damien Millerd3a18572000-06-07 19:55:44 +10002255int
Damien Miller95def091999-11-25 00:26:21 +11002256auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002257{
Damien Miller95def091999-11-25 00:26:21 +11002258 int sock, newch;
2259 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002260
Damien Miller95def091999-11-25 00:26:21 +11002261 if (auth_get_socket_name() != NULL)
2262 fatal("Protocol error: authentication forwarding requested twice.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002263
Damien Miller95def091999-11-25 00:26:21 +11002264 /* Temporarily drop privileged uid for mkdir/bind. */
2265 temporarily_use_uid(pw->pw_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002266
Damien Miller95def091999-11-25 00:26:21 +11002267 /* Allocate a buffer for the socket name, and format the name. */
2268 channel_forwarded_auth_socket_name = xmalloc(MAX_SOCKET_NAME);
2269 channel_forwarded_auth_socket_dir = xmalloc(MAX_SOCKET_NAME);
2270 strlcpy(channel_forwarded_auth_socket_dir, "/tmp/ssh-XXXXXXXX", MAX_SOCKET_NAME);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002271
Damien Miller95def091999-11-25 00:26:21 +11002272 /* Create private directory for socket */
Damien Millerd3a18572000-06-07 19:55:44 +10002273 if (mkdtemp(channel_forwarded_auth_socket_dir) == NULL) {
2274 packet_send_debug("Agent forwarding disabled: mkdtemp() failed: %.100s",
2275 strerror(errno));
2276 restore_uid();
2277 xfree(channel_forwarded_auth_socket_name);
2278 xfree(channel_forwarded_auth_socket_dir);
2279 channel_forwarded_auth_socket_name = NULL;
2280 channel_forwarded_auth_socket_dir = NULL;
2281 return 0;
2282 }
Damien Miller95def091999-11-25 00:26:21 +11002283 snprintf(channel_forwarded_auth_socket_name, MAX_SOCKET_NAME, "%s/agent.%d",
2284 channel_forwarded_auth_socket_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002285
Damien Miller95def091999-11-25 00:26:21 +11002286 if (atexit(cleanup_socket) < 0) {
2287 int saved = errno;
2288 cleanup_socket();
2289 packet_disconnect("socket: %.100s", strerror(saved));
2290 }
2291 /* Create the socket. */
2292 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2293 if (sock < 0)
2294 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295
Damien Miller95def091999-11-25 00:26:21 +11002296 /* Bind it to the name. */
2297 memset(&sunaddr, 0, sizeof(sunaddr));
2298 sunaddr.sun_family = AF_UNIX;
2299 strncpy(sunaddr.sun_path, channel_forwarded_auth_socket_name,
2300 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002301
Damien Miller95def091999-11-25 00:26:21 +11002302 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2303 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002304
Damien Miller95def091999-11-25 00:26:21 +11002305 /* Restore the privileged uid. */
2306 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002307
Damien Miller95def091999-11-25 00:26:21 +11002308 /* Start listening on the socket. */
2309 if (listen(sock, 5) < 0)
2310 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311
Damien Miller95def091999-11-25 00:26:21 +11002312 /* Allocate a channel for the authentication agent socket. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11002313 newch = channel_new("auth socket",
2314 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2315 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2316 0, xstrdup("auth socket"), 1);
2317
Damien Miller037a0dc1999-12-07 15:38:31 +11002318 strlcpy(channels[newch].path, channel_forwarded_auth_socket_name,
2319 sizeof(channels[newch].path));
Damien Millerd3a18572000-06-07 19:55:44 +10002320 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002321}
2322
2323/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2324
Damien Miller4af51302000-04-16 11:18:38 +10002325void
Damien Miller62cee002000-09-23 17:15:56 +11002326auth_input_open_request(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002327{
Damien Miller95def091999-11-25 00:26:21 +11002328 int remch, sock, newch;
2329 char *dummyname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002330
Damien Millerb38eff82000-04-01 11:09:21 +10002331 packet_integrity_check(plen, 4, type);
2332
Damien Miller95def091999-11-25 00:26:21 +11002333 /* Read the remote channel number from the message. */
2334 remch = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002335
Damien Miller5428f641999-11-25 11:54:57 +11002336 /*
2337 * Get a connection to the local authentication agent (this may again
2338 * get forwarded).
2339 */
Damien Miller95def091999-11-25 00:26:21 +11002340 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002341
Damien Miller5428f641999-11-25 11:54:57 +11002342 /*
2343 * If we could not connect the agent, send an error message back to
2344 * the server. This should never happen unless the agent dies,
2345 * because authentication forwarding is only enabled if we have an
2346 * agent.
2347 */
Damien Miller95def091999-11-25 00:26:21 +11002348 if (sock < 0) {
2349 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2350 packet_put_int(remch);
2351 packet_send();
2352 return;
2353 }
2354 debug("Forwarding authentication connection.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002355
Damien Miller5428f641999-11-25 11:54:57 +11002356 /*
2357 * Dummy host name. This will be freed when the channel is freed; it
2358 * will still be valid in the packet_put_string below since the
2359 * channel cannot yet be freed at that point.
2360 */
Damien Miller95def091999-11-25 00:26:21 +11002361 dummyname = xstrdup("authentication agent connection");
2362
2363 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, dummyname);
2364 channels[newch].remote_id = remch;
2365
2366 /* Send a confirmation to the remote host. */
2367 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2368 packet_put_int(remch);
2369 packet_put_int(newch);
2370 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002371}
Damien Miller33b13562000-04-04 14:38:59 +10002372
2373void
Damien Millerbd483e72000-04-30 10:00:53 +10002374channel_start_open(int id)
Damien Miller33b13562000-04-04 14:38:59 +10002375{
2376 Channel *c = channel_lookup(id);
2377 if (c == NULL) {
2378 log("channel_open: %d: bad id", id);
2379 return;
2380 }
Damien Millerbd483e72000-04-30 10:00:53 +10002381 debug("send channel open %d", id);
Damien Miller33b13562000-04-04 14:38:59 +10002382 packet_start(SSH2_MSG_CHANNEL_OPEN);
2383 packet_put_cstring(c->ctype);
2384 packet_put_int(c->self);
2385 packet_put_int(c->local_window);
2386 packet_put_int(c->local_maxpacket);
Damien Millerbd483e72000-04-30 10:00:53 +10002387}
2388void
2389channel_open(int id)
2390{
2391 /* XXX REMOVE ME */
2392 channel_start_open(id);
Damien Miller33b13562000-04-04 14:38:59 +10002393 packet_send();
Damien Miller33b13562000-04-04 14:38:59 +10002394}
2395void
2396channel_request(int id, char *service, int wantconfirm)
2397{
2398 channel_request_start(id, service, wantconfirm);
2399 packet_send();
2400 debug("channel request %d: %s", id, service) ;
2401}
2402void
2403channel_request_start(int id, char *service, int wantconfirm)
2404{
2405 Channel *c = channel_lookup(id);
2406 if (c == NULL) {
2407 log("channel_request: %d: bad id", id);
2408 return;
2409 }
2410 packet_start(SSH2_MSG_CHANNEL_REQUEST);
2411 packet_put_int(c->remote_id);
2412 packet_put_cstring(service);
2413 packet_put_char(wantconfirm);
2414}
2415void
2416channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
2417{
2418 Channel *c = channel_lookup(id);
2419 if (c == NULL) {
2420 log("channel_register_callback: %d: bad id", id);
2421 return;
2422 }
2423 c->cb_event = mtype;
2424 c->cb_fn = fn;
2425 c->cb_arg = arg;
2426}
2427void
2428channel_register_cleanup(int id, channel_callback_fn *fn)
2429{
2430 Channel *c = channel_lookup(id);
2431 if (c == NULL) {
2432 log("channel_register_cleanup: %d: bad id", id);
2433 return;
2434 }
2435 c->dettach_user = fn;
2436}
2437void
2438channel_cancel_cleanup(int id)
2439{
2440 Channel *c = channel_lookup(id);
2441 if (c == NULL) {
2442 log("channel_cancel_cleanup: %d: bad id", id);
2443 return;
2444 }
2445 c->dettach_user = NULL;
2446}
Damien Millerad833b32000-08-23 10:46:23 +10002447void
2448channel_register_filter(int id, channel_filter_fn *fn)
2449{
2450 Channel *c = channel_lookup(id);
2451 if (c == NULL) {
2452 log("channel_register_filter: %d: bad id", id);
2453 return;
2454 }
2455 c->input_filter = fn;
2456}
Damien Miller33b13562000-04-04 14:38:59 +10002457
2458void
Damien Miller69b69aa2000-10-28 14:19:58 +11002459channel_set_fds(int id, int rfd, int wfd, int efd,
2460 int extusage, int nonblock)
Damien Miller33b13562000-04-04 14:38:59 +10002461{
2462 Channel *c = channel_lookup(id);
2463 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
2464 fatal("channel_activate for non-larval channel %d.", id);
Damien Miller69b69aa2000-10-28 14:19:58 +11002465 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller33b13562000-04-04 14:38:59 +10002466 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002467 /* XXX window size? */
Damien Millere4340be2000-09-16 13:29:08 +11002468 c->local_window = c->local_window_max = c->local_maxpacket * 2;
Damien Miller33b13562000-04-04 14:38:59 +10002469 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2470 packet_put_int(c->remote_id);
2471 packet_put_int(c->local_window);
2472 packet_send();
2473}