blob: b1fcd7ca890fe6f5e0e6f88753fbcb48b5e751d7 [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 Lindstrom6c3ae2b2000-12-30 03:25:14 +000043RCSID("$OpenBSD: channels.c,v 1.79 2000/12/29 22:19:13 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;
Ben Lindstrom46c16222000-12-22 01:43:59 +000098u_int x11_saved_data_len = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
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;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000105u_int x11_fake_data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
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);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000310 char *s = channel_open_message();
311
Damien Millerb38eff82000-04-01 11:09:21 +1000312 if (c == NULL)
313 packet_disconnect("channel free: bad local channel %d", id);
Ben Lindstrom6c3ae2b2000-12-30 03:25:14 +0000314 debug("channel_free: channel %d: status: %s", id, s);
315 xfree(s);
316
Damien Miller33b13562000-04-04 14:38:59 +1000317 if (c->dettach_user != NULL) {
318 debug("channel_free: channel %d: dettaching channel user", id);
319 c->dettach_user(c->self, NULL);
320 }
Damien Miller6f83b8e2000-05-02 09:23:45 +1000321 if (c->sock != -1)
Damien Millerb38eff82000-04-01 11:09:21 +1000322 shutdown(c->sock, SHUT_RDWR);
Damien Miller6f83b8e2000-05-02 09:23:45 +1000323 channel_close_fds(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000324 buffer_free(&c->input);
325 buffer_free(&c->output);
326 buffer_free(&c->extended);
327 c->type = SSH_CHANNEL_FREE;
328 if (c->remote_name) {
329 xfree(c->remote_name);
330 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100331 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332}
333
Damien Miller5428f641999-11-25 11:54:57 +1100334/*
Damien Millerb38eff82000-04-01 11:09:21 +1000335 * 'channel_pre*' are called just before select() to add any bits relevant to
336 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100337 */
Damien Millerb38eff82000-04-01 11:09:21 +1000338/*
339 * 'channel_post*': perform any appropriate operations for channels which
340 * have events pending.
341 */
342typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
343chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
344chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
345
346void
347channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
348{
349 FD_SET(c->sock, readset);
350}
351
352void
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000353channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
354{
355 debug3("channel %d: waiting for connection", c->self);
356 FD_SET(c->sock, writeset);
357}
358
359void
Damien Millerb38eff82000-04-01 11:09:21 +1000360channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
361{
362 if (buffer_len(&c->input) < packet_get_maxsize())
363 FD_SET(c->sock, readset);
364 if (buffer_len(&c->output) > 0)
365 FD_SET(c->sock, writeset);
366}
367
368void
369channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
370{
371 /* test whether sockets are 'alive' for read/write */
372 if (c->istate == CHAN_INPUT_OPEN)
373 if (buffer_len(&c->input) < packet_get_maxsize())
374 FD_SET(c->sock, readset);
375 if (c->ostate == CHAN_OUTPUT_OPEN ||
376 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
377 if (buffer_len(&c->output) > 0) {
378 FD_SET(c->sock, writeset);
379 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
380 chan_obuf_empty(c);
381 }
382 }
383}
384
385void
Damien Miller33b13562000-04-04 14:38:59 +1000386channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
387{
388 if (c->istate == CHAN_INPUT_OPEN &&
389 c->remote_window > 0 &&
390 buffer_len(&c->input) < c->remote_window)
391 FD_SET(c->rfd, readset);
392 if (c->ostate == CHAN_OUTPUT_OPEN ||
393 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
394 if (buffer_len(&c->output) > 0) {
395 FD_SET(c->wfd, writeset);
396 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
397 chan_obuf_empty(c);
398 }
399 }
400 /** XXX check close conditions, too */
401 if (c->efd != -1) {
402 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
403 buffer_len(&c->extended) > 0)
404 FD_SET(c->efd, writeset);
405 else if (c->extended_usage == CHAN_EXTENDED_READ &&
406 buffer_len(&c->extended) < c->remote_window)
407 FD_SET(c->efd, readset);
408 }
409}
410
411void
Damien Millerb38eff82000-04-01 11:09:21 +1000412channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
413{
414 if (buffer_len(&c->input) == 0) {
415 packet_start(SSH_MSG_CHANNEL_CLOSE);
416 packet_put_int(c->remote_id);
417 packet_send();
418 c->type = SSH_CHANNEL_CLOSED;
419 debug("Closing channel %d after input drain.", c->self);
420 }
421}
422
423void
424channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
425{
426 if (buffer_len(&c->output) == 0)
427 channel_free(c->self);
Damien Miller4af51302000-04-16 11:18:38 +1000428 else
Damien Millerb38eff82000-04-01 11:09:21 +1000429 FD_SET(c->sock, writeset);
430}
431
432/*
433 * This is a special state for X11 authentication spoofing. An opened X11
434 * connection (when authentication spoofing is being done) remains in this
435 * state until the first packet has been completely read. The authentication
436 * data in that packet is then substituted by the real data if it matches the
437 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000438 * XXX All this happens at the client side.
Damien Millerb38eff82000-04-01 11:09:21 +1000439 */
440int
441x11_open_helper(Channel *c)
442{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000443 u_char *ucp;
444 u_int proto_len, data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000445
446 /* Check if the fixed size part of the packet is in buffer. */
447 if (buffer_len(&c->output) < 12)
448 return 0;
449
450 /* Parse the lengths of variable-length fields. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000451 ucp = (u_char *) buffer_ptr(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000452 if (ucp[0] == 0x42) { /* Byte order MSB first. */
453 proto_len = 256 * ucp[6] + ucp[7];
454 data_len = 256 * ucp[8] + ucp[9];
455 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
456 proto_len = ucp[6] + 256 * ucp[7];
457 data_len = ucp[8] + 256 * ucp[9];
458 } else {
459 debug("Initial X11 packet contains bad byte order byte: 0x%x",
460 ucp[0]);
461 return -1;
462 }
463
464 /* Check if the whole packet is in buffer. */
465 if (buffer_len(&c->output) <
466 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
467 return 0;
468
469 /* Check if authentication protocol matches. */
470 if (proto_len != strlen(x11_saved_proto) ||
471 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
472 debug("X11 connection uses different authentication protocol.");
473 return -1;
474 }
475 /* Check if authentication data matches our fake data. */
476 if (data_len != x11_fake_data_len ||
477 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
478 x11_fake_data, x11_fake_data_len) != 0) {
479 debug("X11 auth data does not match fake data.");
480 return -1;
481 }
482 /* Check fake data length */
483 if (x11_fake_data_len != x11_saved_data_len) {
484 error("X11 fake_data_len %d != saved_data_len %d",
485 x11_fake_data_len, x11_saved_data_len);
486 return -1;
487 }
488 /*
489 * Received authentication protocol and data match
490 * our fake data. Substitute the fake data with real
491 * data.
492 */
493 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
494 x11_saved_data, x11_saved_data_len);
495 return 1;
496}
497
498void
499channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
500{
501 int ret = x11_open_helper(c);
502 if (ret == 1) {
503 /* Start normal processing for the channel. */
504 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000505 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000506 } else if (ret == -1) {
507 /*
508 * We have received an X11 connection that has bad
509 * authentication information.
510 */
511 log("X11 connection rejected because of wrong authentication.\r\n");
512 buffer_clear(&c->input);
513 buffer_clear(&c->output);
514 close(c->sock);
515 c->sock = -1;
516 c->type = SSH_CHANNEL_CLOSED;
517 packet_start(SSH_MSG_CHANNEL_CLOSE);
518 packet_put_int(c->remote_id);
519 packet_send();
520 }
521}
522
523void
Damien Millerbd483e72000-04-30 10:00:53 +1000524channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000525{
526 int ret = x11_open_helper(c);
527 if (ret == 1) {
528 c->type = SSH_CHANNEL_OPEN;
Damien Miller30c3d422000-05-09 11:02:59 +1000529 if (compat20)
530 channel_pre_open_20(c, readset, writeset);
531 else
532 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000533 } else if (ret == -1) {
534 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000535 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000536 chan_write_failed(c);
537 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
538 }
539}
540
541/* This is our fake X11 server socket. */
542void
543channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
544{
545 struct sockaddr addr;
546 int newsock, newch;
547 socklen_t addrlen;
548 char buf[16384], *remote_hostname;
Damien Millerbd483e72000-04-30 10:00:53 +1000549 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000550
551 if (FD_ISSET(c->sock, readset)) {
552 debug("X11 connection requested.");
553 addrlen = sizeof(addr);
554 newsock = accept(c->sock, &addr, &addrlen);
555 if (newsock < 0) {
556 error("accept: %.100s", strerror(errno));
557 return;
558 }
559 remote_hostname = get_remote_hostname(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000560 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +1000561 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerbd483e72000-04-30 10:00:53 +1000562 remote_hostname, remote_port);
563
564 newch = channel_new("x11",
565 SSH_CHANNEL_OPENING, newsock, newsock, -1,
566 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +1100567 0, xstrdup(buf), 1);
Damien Millerbd483e72000-04-30 10:00:53 +1000568 if (compat20) {
569 packet_start(SSH2_MSG_CHANNEL_OPEN);
570 packet_put_cstring("x11");
571 packet_put_int(newch);
572 packet_put_int(c->local_window_max);
573 packet_put_int(c->local_maxpacket);
574 /* originator host and port */
575 packet_put_cstring(remote_hostname);
Damien Miller30c3d422000-05-09 11:02:59 +1000576 if (datafellows & SSH_BUG_X11FWD) {
577 debug("ssh2 x11 bug compat mode");
578 } else {
579 packet_put_int(remote_port);
580 }
Damien Millerbd483e72000-04-30 10:00:53 +1000581 packet_send();
582 } else {
583 packet_start(SSH_SMSG_X11_OPEN);
584 packet_put_int(newch);
585 if (have_hostname_in_open)
586 packet_put_string(buf, strlen(buf));
587 packet_send();
588 }
Damien Millerb38eff82000-04-01 11:09:21 +1000589 xfree(remote_hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000590 }
591}
592
593/*
594 * This socket is listening for connections to a forwarded TCP/IP port.
595 */
596void
597channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
598{
599 struct sockaddr addr;
600 int newsock, newch;
601 socklen_t addrlen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100602 char buf[1024], *remote_hostname, *rtype;
Damien Millerb38eff82000-04-01 11:09:21 +1000603 int remote_port;
604
Damien Miller0bc1bd82000-11-13 22:57:25 +1100605 rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ?
606 "forwarded-tcpip" : "direct-tcpip";
607
Damien Millerb38eff82000-04-01 11:09:21 +1000608 if (FD_ISSET(c->sock, readset)) {
609 debug("Connection to port %d forwarding "
610 "to %.100s port %d requested.",
611 c->listening_port, c->path, c->host_port);
612 addrlen = sizeof(addr);
613 newsock = accept(c->sock, &addr, &addrlen);
614 if (newsock < 0) {
615 error("accept: %.100s", strerror(errno));
616 return;
617 }
618 remote_hostname = get_remote_hostname(newsock);
619 remote_port = get_peer_port(newsock);
620 snprintf(buf, sizeof buf,
621 "listen port %d for %.100s port %d, "
622 "connect from %.200s port %d",
623 c->listening_port, c->path, c->host_port,
624 remote_hostname, remote_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100625
626 newch = channel_new(rtype,
Damien Millerb38eff82000-04-01 11:09:21 +1000627 SSH_CHANNEL_OPENING, newsock, newsock, -1,
628 c->local_window_max, c->local_maxpacket,
Damien Miller69b69aa2000-10-28 14:19:58 +1100629 0, xstrdup(buf), 1);
Damien Miller33b13562000-04-04 14:38:59 +1000630 if (compat20) {
631 packet_start(SSH2_MSG_CHANNEL_OPEN);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100632 packet_put_cstring(rtype);
Damien Miller33b13562000-04-04 14:38:59 +1000633 packet_put_int(newch);
634 packet_put_int(c->local_window_max);
635 packet_put_int(c->local_maxpacket);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100636 if (c->type == SSH_CHANNEL_RPORT_LISTENER) {
637 /* listen address, port */
638 packet_put_string(c->path, strlen(c->path));
639 packet_put_int(c->listening_port);
640 } else {
641 /* target host, port */
642 packet_put_string(c->path, strlen(c->path));
643 packet_put_int(c->host_port);
644 }
Damien Miller4af51302000-04-16 11:18:38 +1000645 /* originator host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000646 packet_put_cstring(remote_hostname);
647 packet_put_int(remote_port);
648 packet_send();
649 } else {
650 packet_start(SSH_MSG_PORT_OPEN);
651 packet_put_int(newch);
652 packet_put_string(c->path, strlen(c->path));
653 packet_put_int(c->host_port);
654 if (have_hostname_in_open) {
655 packet_put_string(buf, strlen(buf));
656 }
657 packet_send();
Damien Millerb38eff82000-04-01 11:09:21 +1000658 }
Damien Millerb38eff82000-04-01 11:09:21 +1000659 xfree(remote_hostname);
660 }
661}
662
663/*
664 * This is the authentication agent socket listening for connections from
665 * clients.
666 */
667void
668channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
669{
670 struct sockaddr addr;
671 int newsock, newch;
672 socklen_t addrlen;
673
674 if (FD_ISSET(c->sock, readset)) {
675 addrlen = sizeof(addr);
676 newsock = accept(c->sock, &addr, &addrlen);
677 if (newsock < 0) {
678 error("accept from auth socket: %.100s", strerror(errno));
679 return;
680 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100681 newch = channel_new("accepted auth socket",
682 SSH_CHANNEL_OPENING, newsock, newsock, -1,
683 c->local_window_max, c->local_maxpacket,
684 0, xstrdup("accepted auth socket"), 1);
685 if (compat20) {
686 packet_start(SSH2_MSG_CHANNEL_OPEN);
687 packet_put_cstring("auth-agent@openssh.com");
688 packet_put_int(newch);
689 packet_put_int(c->local_window_max);
690 packet_put_int(c->local_maxpacket);
691 } else {
692 packet_start(SSH_SMSG_AGENT_OPEN);
693 packet_put_int(newch);
694 }
Damien Millerb38eff82000-04-01 11:09:21 +1000695 packet_send();
696 }
697}
698
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000699void
700channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
701{
702 if (FD_ISSET(c->sock, writeset)) {
703 int err = 0;
704 int sz = sizeof(err);
705 c->type = SSH_CHANNEL_OPEN;
706 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err, &sz) < 0) {
707 debug("getsockopt SO_ERROR failed");
708 } else {
709 if (err == 0) {
710 debug("channel %d: connected)", c->self);
711 } else {
712 debug("channel %d: not connected: %s",
713 c->self, strerror(err));
714 chan_read_failed(c);
715 chan_write_failed(c);
716 }
717 }
718 }
719}
720
Damien Millerb38eff82000-04-01 11:09:21 +1000721int
722channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
723{
724 char buf[16*1024];
725 int len;
726
727 if (c->rfd != -1 &&
728 FD_ISSET(c->rfd, readset)) {
729 len = read(c->rfd, buf, sizeof(buf));
Damien Miller6f83b8e2000-05-02 09:23:45 +1000730 if (len < 0 && (errno == EINTR || errno == EAGAIN))
731 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000732 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +1000733 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +1000734 c->self, c->rfd, len);
735 if (compat13) {
736 buffer_consume(&c->output, buffer_len(&c->output));
737 c->type = SSH_CHANNEL_INPUT_DRAINING;
738 debug("Channel %d status set to input draining.", c->self);
739 } else {
740 chan_read_failed(c);
741 }
742 return -1;
743 }
Damien Millerad833b32000-08-23 10:46:23 +1000744 if(c->input_filter != NULL) {
745 if (c->input_filter(c, buf, len) == -1) {
746 debug("filter stops channel %d", c->self);
747 chan_read_failed(c);
748 }
749 } else {
750 buffer_append(&c->input, buf, len);
751 }
Damien Millerb38eff82000-04-01 11:09:21 +1000752 }
753 return 1;
754}
755int
756channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
757{
758 int len;
759
760 /* Send buffered output data to the socket. */
761 if (c->wfd != -1 &&
762 FD_ISSET(c->wfd, writeset) &&
763 buffer_len(&c->output) > 0) {
764 len = write(c->wfd, buffer_ptr(&c->output),
Damien Miller6f83b8e2000-05-02 09:23:45 +1000765 buffer_len(&c->output));
766 if (len < 0 && (errno == EINTR || errno == EAGAIN))
767 return 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000768 if (len <= 0) {
769 if (compat13) {
770 buffer_consume(&c->output, buffer_len(&c->output));
771 debug("Channel %d status set to input draining.", c->self);
772 c->type = SSH_CHANNEL_INPUT_DRAINING;
773 } else {
774 chan_write_failed(c);
775 }
776 return -1;
777 }
778 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +1000779 if (compat20 && len > 0) {
780 c->local_consumed += len;
781 }
782 }
783 return 1;
784}
785int
786channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
787{
788 char buf[16*1024];
789 int len;
790
Damien Miller1383bd82000-04-06 12:32:37 +1000791/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +1000792 if (c->efd != -1) {
793 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
794 FD_ISSET(c->efd, writeset) &&
795 buffer_len(&c->extended) > 0) {
796 len = write(c->efd, buffer_ptr(&c->extended),
797 buffer_len(&c->extended));
Damien Millerd3444942000-09-30 14:20:03 +1100798 debug2("channel %d: written %d to efd %d",
Damien Miller33b13562000-04-04 14:38:59 +1000799 c->self, len, c->efd);
800 if (len > 0) {
801 buffer_consume(&c->extended, len);
802 c->local_consumed += len;
803 }
804 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
805 FD_ISSET(c->efd, readset)) {
806 len = read(c->efd, buf, sizeof(buf));
Damien Millerd3444942000-09-30 14:20:03 +1100807 debug2("channel %d: read %d from efd %d",
Damien Miller33b13562000-04-04 14:38:59 +1000808 c->self, len, c->efd);
Damien Miller1383bd82000-04-06 12:32:37 +1000809 if (len == 0) {
810 debug("channel %d: closing efd %d",
811 c->self, c->efd);
812 close(c->efd);
813 c->efd = -1;
814 } else if (len > 0)
Damien Miller33b13562000-04-04 14:38:59 +1000815 buffer_append(&c->extended, buf, len);
816 }
817 }
818 return 1;
819}
820int
821channel_check_window(Channel *c, fd_set * readset, fd_set * writeset)
822{
Damien Millerefb4afe2000-04-12 18:45:05 +1000823 if (!(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +1000824 c->local_window < c->local_window_max/2 &&
825 c->local_consumed > 0) {
826 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
827 packet_put_int(c->remote_id);
828 packet_put_int(c->local_consumed);
829 packet_send();
Damien Millerd3444942000-09-30 14:20:03 +1100830 debug2("channel %d: window %d sent adjust %d",
Damien Miller33b13562000-04-04 14:38:59 +1000831 c->self, c->local_window,
832 c->local_consumed);
833 c->local_window += c->local_consumed;
834 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000835 }
836 return 1;
837}
838
839void
840channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
841{
842 channel_handle_rfd(c, readset, writeset);
843 channel_handle_wfd(c, readset, writeset);
844}
845
846void
Damien Miller33b13562000-04-04 14:38:59 +1000847channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
848{
849 channel_handle_rfd(c, readset, writeset);
850 channel_handle_wfd(c, readset, writeset);
851 channel_handle_efd(c, readset, writeset);
852 channel_check_window(c, readset, writeset);
853}
854
855void
Damien Millerb38eff82000-04-01 11:09:21 +1000856channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
857{
858 int len;
859 /* Send buffered output data to the socket. */
860 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
861 len = write(c->sock, buffer_ptr(&c->output),
862 buffer_len(&c->output));
863 if (len <= 0)
864 buffer_consume(&c->output, buffer_len(&c->output));
865 else
866 buffer_consume(&c->output, len);
867 }
868}
869
870void
Damien Miller33b13562000-04-04 14:38:59 +1000871channel_handler_init_20(void)
872{
873 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +1000874 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +1000875 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100876 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000877 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100878 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000879 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Damien Miller33b13562000-04-04 14:38:59 +1000880
881 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
882 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100883 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000884 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100885 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000886 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Miller33b13562000-04-04 14:38:59 +1000887}
888
889void
Damien Millerb38eff82000-04-01 11:09:21 +1000890channel_handler_init_13(void)
891{
892 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
893 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
894 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
895 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
896 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
897 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
898 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000899 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Damien Millerb38eff82000-04-01 11:09:21 +1000900
901 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
902 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
903 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
904 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
905 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000906 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerb38eff82000-04-01 11:09:21 +1000907}
908
909void
910channel_handler_init_15(void)
911{
912 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +1000913 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +1000914 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
915 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
916 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000917 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
Damien Millerb38eff82000-04-01 11:09:21 +1000918
919 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
920 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
921 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
922 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000923 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
Damien Millerb38eff82000-04-01 11:09:21 +1000924}
925
926void
927channel_handler_init(void)
928{
929 int i;
930 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
931 channel_pre[i] = NULL;
932 channel_post[i] = NULL;
933 }
Damien Miller33b13562000-04-04 14:38:59 +1000934 if (compat20)
935 channel_handler_init_20();
936 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000937 channel_handler_init_13();
938 else
939 channel_handler_init_15();
940}
941
Damien Miller4af51302000-04-16 11:18:38 +1000942void
Damien Millerb38eff82000-04-01 11:09:21 +1000943channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
944{
945 static int did_init = 0;
946 int i;
947 Channel *c;
948
949 if (!did_init) {
950 channel_handler_init();
951 did_init = 1;
952 }
953 for (i = 0; i < channels_alloc; i++) {
954 c = &channels[i];
955 if (c->type == SSH_CHANNEL_FREE)
956 continue;
957 if (ftab[c->type] == NULL)
958 continue;
959 (*ftab[c->type])(c, readset, writeset);
Damien Miller33b13562000-04-04 14:38:59 +1000960 chan_delete_if_full_closed(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000961 }
962}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller4af51302000-04-16 11:18:38 +1000964void
Damien Miller95def091999-11-25 00:26:21 +1100965channel_prepare_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000966{
Damien Millerb38eff82000-04-01 11:09:21 +1000967 channel_handler(channel_pre, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968}
969
Damien Miller4af51302000-04-16 11:18:38 +1000970void
Damien Miller95def091999-11-25 00:26:21 +1100971channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000972{
Damien Millerb38eff82000-04-01 11:09:21 +1000973 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974}
975
976/* If there is data to send to the connection, send some of it now. */
977
Damien Miller4af51302000-04-16 11:18:38 +1000978void
Damien Miller95def091999-11-25 00:26:21 +1100979channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980{
Damien Miller95def091999-11-25 00:26:21 +1100981 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +1000982 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
Damien Miller95def091999-11-25 00:26:21 +1100984 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +1000985 c = &channels[i];
Damien Miller34132e52000-01-14 15:45:46 +1100986
Damien Miller5428f641999-11-25 11:54:57 +1100987 /* We are only interested in channels that can have buffered incoming data. */
Damien Miller34132e52000-01-14 15:45:46 +1100988 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000989 if (c->type != SSH_CHANNEL_OPEN &&
990 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +1100991 continue;
992 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000993 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +1100994 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000995 if (c->istate != CHAN_INPUT_OPEN &&
996 c->istate != CHAN_INPUT_WAIT_DRAIN)
Damien Miller34132e52000-01-14 15:45:46 +1100997 continue;
998 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000999 if (compat20 &&
1000 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Damien Miller33b13562000-04-04 14:38:59 +10001001 debug("channel: %d: no data after CLOSE", c->self);
1002 continue;
1003 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004
Damien Miller95def091999-11-25 00:26:21 +11001005 /* Get the amount of buffered data for this channel. */
Damien Millerb38eff82000-04-01 11:09:21 +10001006 len = buffer_len(&c->input);
Damien Miller95def091999-11-25 00:26:21 +11001007 if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001008 /* Send some data for the other side over the secure connection. */
Damien Miller33b13562000-04-04 14:38:59 +10001009 if (compat20) {
1010 if (len > c->remote_window)
1011 len = c->remote_window;
1012 if (len > c->remote_maxpacket)
1013 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +11001014 } else {
Damien Miller33b13562000-04-04 14:38:59 +10001015 if (packet_is_interactive()) {
1016 if (len > 1024)
1017 len = 512;
1018 } else {
1019 /* Keep the packets at reasonable size. */
1020 if (len > packet_get_maxsize()/2)
1021 len = packet_get_maxsize()/2;
1022 }
Damien Miller95def091999-11-25 00:26:21 +11001023 }
Damien Millerb38eff82000-04-01 11:09:21 +10001024 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001025 packet_start(compat20 ?
1026 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +10001027 packet_put_int(c->remote_id);
1028 packet_put_string(buffer_ptr(&c->input), len);
1029 packet_send();
1030 buffer_consume(&c->input, len);
1031 c->remote_window -= len;
Damien Millerb38eff82000-04-01 11:09:21 +10001032 }
1033 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +11001034 if (compat13)
1035 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +11001036 /*
1037 * input-buffer is empty and read-socket shutdown:
1038 * tell peer, that we will not send more data: send IEOF
1039 */
Damien Millerb38eff82000-04-01 11:09:21 +10001040 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +11001041 }
Damien Miller33b13562000-04-04 14:38:59 +10001042 /* Send extended data, i.e. stderr */
1043 if (compat20 &&
1044 c->remote_window > 0 &&
1045 (len = buffer_len(&c->extended)) > 0 &&
1046 c->extended_usage == CHAN_EXTENDED_READ) {
1047 if (len > c->remote_window)
1048 len = c->remote_window;
1049 if (len > c->remote_maxpacket)
1050 len = c->remote_maxpacket;
1051 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1052 packet_put_int(c->remote_id);
1053 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1054 packet_put_string(buffer_ptr(&c->extended), len);
1055 packet_send();
1056 buffer_consume(&c->extended, len);
1057 c->remote_window -= len;
1058 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001059 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001060}
1061
Damien Miller5428f641999-11-25 11:54:57 +11001062/*
1063 * This is called when a packet of type CHANNEL_DATA has just been received.
1064 * The message type has already been consumed, but channel number and data is
1065 * still there.
1066 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067
Damien Miller4af51302000-04-16 11:18:38 +10001068void
Damien Miller62cee002000-09-23 17:15:56 +11001069channel_input_data(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070{
Damien Miller34132e52000-01-14 15:45:46 +11001071 int id;
Damien Miller95def091999-11-25 00:26:21 +11001072 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001073 u_int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001074 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001075
Damien Miller95def091999-11-25 00:26:21 +11001076 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +11001077 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +10001078 c = channel_lookup(id);
1079 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +11001080 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001081
Damien Miller95def091999-11-25 00:26:21 +11001082 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +10001083 if (c->type != SSH_CHANNEL_OPEN &&
1084 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +11001085 return;
1086
1087 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +10001088 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +11001089 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001090
Damien Miller95def091999-11-25 00:26:21 +11001091 /* Get the data. */
1092 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001093 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001094
Damien Miller33b13562000-04-04 14:38:59 +10001095 if (compat20){
1096 if (data_len > c->local_maxpacket) {
1097 log("channel %d: rcvd big packet %d, maxpack %d",
1098 c->self, data_len, c->local_maxpacket);
1099 }
1100 if (data_len > c->local_window) {
1101 log("channel %d: rcvd too much data %d, win %d",
1102 c->self, data_len, c->local_window);
1103 xfree(data);
1104 return;
1105 }
1106 c->local_window -= data_len;
1107 }else{
1108 packet_integrity_check(plen, 4 + 4 + data_len, type);
1109 }
Damien Millerb38eff82000-04-01 11:09:21 +10001110 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +11001111 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112}
Damien Miller4af51302000-04-16 11:18:38 +10001113void
Damien Miller62cee002000-09-23 17:15:56 +11001114channel_input_extended_data(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001115{
1116 int id;
1117 int tcode;
1118 char *data;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001119 u_int data_len;
Damien Miller33b13562000-04-04 14:38:59 +10001120 Channel *c;
1121
1122 /* Get the channel number and verify it. */
1123 id = packet_get_int();
1124 c = channel_lookup(id);
1125
1126 if (c == NULL)
1127 packet_disconnect("Received extended_data for bad channel %d.", id);
1128 if (c->type != SSH_CHANNEL_OPEN) {
1129 log("channel %d: ext data for non open", id);
1130 return;
1131 }
1132 tcode = packet_get_int();
1133 if (c->efd == -1 ||
1134 c->extended_usage != CHAN_EXTENDED_WRITE ||
1135 tcode != SSH2_EXTENDED_DATA_STDERR) {
1136 log("channel %d: bad ext data", c->self);
1137 return;
1138 }
1139 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001140 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001141 if (data_len > c->local_window) {
1142 log("channel %d: rcvd too much extended_data %d, win %d",
1143 c->self, data_len, c->local_window);
1144 xfree(data);
1145 return;
1146 }
Damien Millerd3444942000-09-30 14:20:03 +11001147 debug2("channel %d: rcvd ext data %d", c->self, data_len);
Damien Miller33b13562000-04-04 14:38:59 +10001148 c->local_window -= data_len;
1149 buffer_append(&c->extended, data, data_len);
1150 xfree(data);
1151}
1152
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001153
Damien Miller5428f641999-11-25 11:54:57 +11001154/*
1155 * Returns true if no channel has too much buffered data, and false if one or
1156 * more channel is overfull.
1157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001158
Damien Miller4af51302000-04-16 11:18:38 +10001159int
Damien Miller95def091999-11-25 00:26:21 +11001160channel_not_very_much_buffered_data()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001162 u_int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001163 Channel *c;
Damien Miller95def091999-11-25 00:26:21 +11001164
1165 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001166 c = &channels[i];
1167 if (c->type == SSH_CHANNEL_OPEN) {
Damien Miller33b13562000-04-04 14:38:59 +10001168 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
Damien Millerb38eff82000-04-01 11:09:21 +10001169 debug("channel %d: big input buffer %d",
1170 c->self, buffer_len(&c->input));
Damien Miller95def091999-11-25 00:26:21 +11001171 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001172 }
1173 if (buffer_len(&c->output) > packet_get_maxsize()) {
1174 debug("channel %d: big output buffer %d",
1175 c->self, buffer_len(&c->output));
Damien Miller95def091999-11-25 00:26:21 +11001176 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001177 }
Damien Miller95def091999-11-25 00:26:21 +11001178 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001179 }
Damien Miller95def091999-11-25 00:26:21 +11001180 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181}
1182
Damien Miller4af51302000-04-16 11:18:38 +10001183void
Damien Miller62cee002000-09-23 17:15:56 +11001184channel_input_ieof(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001185{
1186 int id;
1187 Channel *c;
1188
1189 packet_integrity_check(plen, 4, type);
1190
1191 id = packet_get_int();
1192 c = channel_lookup(id);
1193 if (c == NULL)
1194 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1195 chan_rcvd_ieof(c);
1196}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197
Damien Miller4af51302000-04-16 11:18:38 +10001198void
Damien Miller62cee002000-09-23 17:15:56 +11001199channel_input_close(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001200{
Damien Millerb38eff82000-04-01 11:09:21 +10001201 int id;
1202 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001203
Damien Millerb38eff82000-04-01 11:09:21 +10001204 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001205
Damien Millerb38eff82000-04-01 11:09:21 +10001206 id = packet_get_int();
1207 c = channel_lookup(id);
1208 if (c == NULL)
1209 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001210
1211 /*
1212 * Send a confirmation that we have closed the channel and no more
1213 * data is coming for it.
1214 */
Damien Miller95def091999-11-25 00:26:21 +11001215 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001216 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001217 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001218
Damien Miller5428f641999-11-25 11:54:57 +11001219 /*
1220 * If the channel is in closed state, we have sent a close request,
1221 * and the other side will eventually respond with a confirmation.
1222 * Thus, we cannot free the channel here, because then there would be
1223 * no-one to receive the confirmation. The channel gets freed when
1224 * the confirmation arrives.
1225 */
Damien Millerb38eff82000-04-01 11:09:21 +10001226 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001227 /*
1228 * Not a closed channel - mark it as draining, which will
1229 * cause it to be freed later.
1230 */
Damien Millerb38eff82000-04-01 11:09:21 +10001231 buffer_consume(&c->input, buffer_len(&c->input));
1232 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001233 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234}
1235
Damien Millerb38eff82000-04-01 11:09:21 +10001236/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001237void
Damien Miller62cee002000-09-23 17:15:56 +11001238channel_input_oclose(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239{
Damien Millerb38eff82000-04-01 11:09:21 +10001240 int id = packet_get_int();
1241 Channel *c = channel_lookup(id);
1242 packet_integrity_check(plen, 4, type);
1243 if (c == NULL)
1244 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1245 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001246}
1247
Damien Miller4af51302000-04-16 11:18:38 +10001248void
Damien Miller62cee002000-09-23 17:15:56 +11001249channel_input_close_confirmation(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001250{
1251 int id = packet_get_int();
1252 Channel *c = channel_lookup(id);
1253
Damien Miller4af51302000-04-16 11:18:38 +10001254 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001255 if (c == NULL)
1256 packet_disconnect("Received close confirmation for "
1257 "out-of-range channel %d.", id);
1258 if (c->type != SSH_CHANNEL_CLOSED)
1259 packet_disconnect("Received close confirmation for "
1260 "non-closed channel %d (type %d).", id, c->type);
1261 channel_free(c->self);
1262}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001263
Damien Miller4af51302000-04-16 11:18:38 +10001264void
Damien Miller62cee002000-09-23 17:15:56 +11001265channel_input_open_confirmation(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266{
Damien Millerb38eff82000-04-01 11:09:21 +10001267 int id, remote_id;
1268 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001269
Damien Miller33b13562000-04-04 14:38:59 +10001270 if (!compat20)
1271 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001272
Damien Millerb38eff82000-04-01 11:09:21 +10001273 id = packet_get_int();
1274 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275
Damien Millerb38eff82000-04-01 11:09:21 +10001276 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1277 packet_disconnect("Received open confirmation for "
1278 "non-opening channel %d.", id);
1279 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001280 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001281 c->remote_id = remote_id;
1282 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001283
1284 if (compat20) {
1285 c->remote_window = packet_get_int();
1286 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001287 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001288 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001289 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001290 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001291 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001292 }
1293 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1294 c->remote_window, c->remote_maxpacket);
1295 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296}
1297
Damien Miller4af51302000-04-16 11:18:38 +10001298void
Damien Miller62cee002000-09-23 17:15:56 +11001299channel_input_open_failure(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001300{
Damien Millerb38eff82000-04-01 11:09:21 +10001301 int id;
1302 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303
Damien Miller33b13562000-04-04 14:38:59 +10001304 if (!compat20)
1305 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001306
1307 id = packet_get_int();
1308 c = channel_lookup(id);
1309
1310 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1311 packet_disconnect("Received open failure for "
1312 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001313 if (compat20) {
1314 int reason = packet_get_int();
1315 char *msg = packet_get_string(NULL);
Damien Miller4af51302000-04-16 11:18:38 +10001316 char *lang = packet_get_string(NULL);
Damien Miller33b13562000-04-04 14:38:59 +10001317 log("channel_open_failure: %d: reason %d: %s", id, reason, msg);
Damien Miller4af51302000-04-16 11:18:38 +10001318 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001319 xfree(msg);
Damien Miller4af51302000-04-16 11:18:38 +10001320 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001321 }
Damien Miller95def091999-11-25 00:26:21 +11001322 /* Free the channel. This will also close the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001323 channel_free(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001324}
1325
Damien Miller33b13562000-04-04 14:38:59 +10001326void
Damien Miller62cee002000-09-23 17:15:56 +11001327channel_input_channel_request(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001328{
1329 int id;
1330 Channel *c;
1331
1332 id = packet_get_int();
1333 c = channel_lookup(id);
1334
1335 if (c == NULL ||
1336 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1337 packet_disconnect("Received request for "
1338 "non-open channel %d.", id);
1339 if (c->cb_fn != NULL && c->cb_event == type) {
Damien Millerd3444942000-09-30 14:20:03 +11001340 debug2("callback start");
Damien Miller33b13562000-04-04 14:38:59 +10001341 c->cb_fn(c->self, c->cb_arg);
Damien Millerd3444942000-09-30 14:20:03 +11001342 debug2("callback done");
Damien Miller33b13562000-04-04 14:38:59 +10001343 } else {
1344 char *service = packet_get_string(NULL);
1345 debug("channel: %d rcvd request for %s", c->self, service);
Damien Millerd3444942000-09-30 14:20:03 +11001346 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
Damien Miller33b13562000-04-04 14:38:59 +10001347 xfree(service);
1348 }
1349}
1350
Damien Miller4af51302000-04-16 11:18:38 +10001351void
Damien Miller62cee002000-09-23 17:15:56 +11001352channel_input_window_adjust(int type, int plen, void *ctxt)
Damien Miller33b13562000-04-04 14:38:59 +10001353{
1354 Channel *c;
1355 int id, adjust;
1356
1357 if (!compat20)
1358 return;
1359
1360 /* Get the channel number and verify it. */
1361 id = packet_get_int();
1362 c = channel_lookup(id);
1363
1364 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1365 log("Received window adjust for "
1366 "non-open channel %d.", id);
1367 return;
1368 }
1369 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001370 packet_done();
Damien Millerd3444942000-09-30 14:20:03 +11001371 debug2("channel %d: rcvd adjust %d", id, adjust);
Damien Miller33b13562000-04-04 14:38:59 +10001372 c->remote_window += adjust;
1373}
1374
Damien Miller5428f641999-11-25 11:54:57 +11001375/*
1376 * Stops listening for channels, and removes any unix domain sockets that we
1377 * might have.
1378 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001379
Damien Miller4af51302000-04-16 11:18:38 +10001380void
Damien Miller95def091999-11-25 00:26:21 +11001381channel_stop_listening()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001382{
Damien Miller95def091999-11-25 00:26:21 +11001383 int i;
1384 for (i = 0; i < channels_alloc; i++) {
1385 switch (channels[i].type) {
1386 case SSH_CHANNEL_AUTH_SOCKET:
1387 close(channels[i].sock);
Damien Miller78315eb2000-09-29 23:01:36 +11001388 unlink(channels[i].path);
Damien Miller95def091999-11-25 00:26:21 +11001389 channel_free(i);
1390 break;
1391 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001392 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001393 case SSH_CHANNEL_X11_LISTENER:
1394 close(channels[i].sock);
1395 channel_free(i);
1396 break;
1397 default:
1398 break;
1399 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001400 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001401}
1402
Damien Miller5428f641999-11-25 11:54:57 +11001403/*
Damien Miller6f83b8e2000-05-02 09:23:45 +10001404 * Closes the sockets/fds of all channels. This is used to close extra file
Damien Miller5428f641999-11-25 11:54:57 +11001405 * descriptors after a fork.
1406 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001407
Damien Miller4af51302000-04-16 11:18:38 +10001408void
Damien Miller95def091999-11-25 00:26:21 +11001409channel_close_all()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001410{
Damien Miller95def091999-11-25 00:26:21 +11001411 int i;
Damien Miller6f83b8e2000-05-02 09:23:45 +10001412 for (i = 0; i < channels_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +11001413 if (channels[i].type != SSH_CHANNEL_FREE)
Damien Miller6f83b8e2000-05-02 09:23:45 +10001414 channel_close_fds(&channels[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001415}
1416
1417/* Returns the maximum file descriptor number used by the channels. */
1418
Damien Miller4af51302000-04-16 11:18:38 +10001419int
Damien Miller95def091999-11-25 00:26:21 +11001420channel_max_fd()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001421{
Damien Miller95def091999-11-25 00:26:21 +11001422 return channel_max_fd_value;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001423}
1424
1425/* Returns true if any channel is still open. */
1426
Damien Miller4af51302000-04-16 11:18:38 +10001427int
Damien Miller95def091999-11-25 00:26:21 +11001428channel_still_open()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001430 u_int i;
Damien Miller95def091999-11-25 00:26:21 +11001431 for (i = 0; i < channels_alloc; i++)
1432 switch (channels[i].type) {
1433 case SSH_CHANNEL_FREE:
1434 case SSH_CHANNEL_X11_LISTENER:
1435 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001436 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001437 case SSH_CHANNEL_CLOSED:
1438 case SSH_CHANNEL_AUTH_SOCKET:
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001439 case SSH_CHANNEL_CONNECTING: /* XXX ??? */
Damien Miller95def091999-11-25 00:26:21 +11001440 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001441 case SSH_CHANNEL_LARVAL:
1442 if (!compat20)
1443 fatal("cannot happen: SSH_CHANNEL_LARVAL");
1444 continue;
Damien Miller95def091999-11-25 00:26:21 +11001445 case SSH_CHANNEL_OPENING:
1446 case SSH_CHANNEL_OPEN:
1447 case SSH_CHANNEL_X11_OPEN:
1448 return 1;
1449 case SSH_CHANNEL_INPUT_DRAINING:
1450 case SSH_CHANNEL_OUTPUT_DRAINING:
1451 if (!compat13)
1452 fatal("cannot happen: OUT_DRAIN");
1453 return 1;
1454 default:
1455 fatal("channel_still_open: bad channel type %d", channels[i].type);
1456 /* NOTREACHED */
1457 }
1458 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001459}
1460
Damien Miller5428f641999-11-25 11:54:57 +11001461/*
1462 * Returns a message describing the currently open forwarded connections,
1463 * suitable for sending to the client. The message contains crlf pairs for
1464 * newlines.
1465 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001466
Damien Miller95def091999-11-25 00:26:21 +11001467char *
1468channel_open_message()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001469{
Damien Miller95def091999-11-25 00:26:21 +11001470 Buffer buffer;
1471 int i;
1472 char buf[512], *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473
Damien Miller95def091999-11-25 00:26:21 +11001474 buffer_init(&buffer);
1475 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001476 buffer_append(&buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001477 for (i = 0; i < channels_alloc; i++) {
1478 Channel *c = &channels[i];
1479 switch (c->type) {
1480 case SSH_CHANNEL_FREE:
1481 case SSH_CHANNEL_X11_LISTENER:
1482 case SSH_CHANNEL_PORT_LISTENER:
Damien Miller0bc1bd82000-11-13 22:57:25 +11001483 case SSH_CHANNEL_RPORT_LISTENER:
Damien Miller95def091999-11-25 00:26:21 +11001484 case SSH_CHANNEL_CLOSED:
1485 case SSH_CHANNEL_AUTH_SOCKET:
1486 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001487 case SSH_CHANNEL_LARVAL:
Damien Miller95def091999-11-25 00:26:21 +11001488 case SSH_CHANNEL_OPENING:
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001489 case SSH_CHANNEL_CONNECTING:
Damien Miller95def091999-11-25 00:26:21 +11001490 case SSH_CHANNEL_OPEN:
1491 case SSH_CHANNEL_X11_OPEN:
1492 case SSH_CHANNEL_INPUT_DRAINING:
1493 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Millerb38eff82000-04-01 11:09:21 +10001494 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 +11001495 c->self, c->remote_name,
1496 c->type, c->remote_id,
1497 c->istate, buffer_len(&c->input),
Damien Millerb38eff82000-04-01 11:09:21 +10001498 c->ostate, buffer_len(&c->output),
1499 c->rfd, c->wfd);
Damien Miller95def091999-11-25 00:26:21 +11001500 buffer_append(&buffer, buf, strlen(buf));
1501 continue;
1502 default:
Damien Millerb38eff82000-04-01 11:09:21 +10001503 fatal("channel_open_message: bad channel type %d", c->type);
Damien Miller95def091999-11-25 00:26:21 +11001504 /* NOTREACHED */
1505 }
1506 }
1507 buffer_append(&buffer, "\0", 1);
1508 cp = xstrdup(buffer_ptr(&buffer));
1509 buffer_free(&buffer);
1510 return cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001511}
1512
Damien Miller5428f641999-11-25 11:54:57 +11001513/*
1514 * Initiate forwarding of connections to local port "port" through the secure
1515 * channel to host:port from remote side.
1516 */
Damien Miller4af51302000-04-16 11:18:38 +10001517void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001518channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
1519 u_short port_to_connect, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001520{
Damien Miller0bc1bd82000-11-13 22:57:25 +11001521 channel_request_forwarding(
1522 NULL, listen_port,
1523 host_to_connect, port_to_connect,
1524 gateway_ports, /*remote_fwd*/ 0);
1525}
1526
1527/*
1528 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
1529 * (SSH_CHANNEL_RPORT_LISTENER).
1530 */
1531void
1532channel_request_forwarding(
1533 const char *listen_address, u_short listen_port,
1534 const char *host_to_connect, u_short port_to_connect,
1535 int gateway_ports, int remote_fwd)
1536{
1537 int success, ch, sock, on = 1, ctype;
Damien Miller34132e52000-01-14 15:45:46 +11001538 struct addrinfo hints, *ai, *aitop;
1539 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0bc1bd82000-11-13 22:57:25 +11001540 const char *host;
Damien Miller5428f641999-11-25 11:54:57 +11001541 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001542
Damien Miller0bc1bd82000-11-13 22:57:25 +11001543 if (remote_fwd) {
1544 host = listen_address;
1545 ctype = SSH_CHANNEL_RPORT_LISTENER;
1546 } else {
1547 host = host_to_connect;
1548 ctype =SSH_CHANNEL_PORT_LISTENER;
1549 }
1550
Damien Miller95def091999-11-25 00:26:21 +11001551 if (strlen(host) > sizeof(channels[0].path) - 1)
1552 packet_disconnect("Forward host name too long.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001553
Damien Miller0bc1bd82000-11-13 22:57:25 +11001554 /* XXX listen_address is currently ignored */
Damien Miller5428f641999-11-25 11:54:57 +11001555 /*
Damien Miller34132e52000-01-14 15:45:46 +11001556 * getaddrinfo returns a loopback address if the hostname is
1557 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11001558 */
Damien Miller34132e52000-01-14 15:45:46 +11001559 memset(&hints, 0, sizeof(hints));
1560 hints.ai_family = IPv4or6;
1561 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
1562 hints.ai_socktype = SOCK_STREAM;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001563 snprintf(strport, sizeof strport, "%d", listen_port);
Damien Miller34132e52000-01-14 15:45:46 +11001564 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
1565 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11001566
Damien Miller34132e52000-01-14 15:45:46 +11001567 success = 0;
1568 for (ai = aitop; ai; ai = ai->ai_next) {
1569 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1570 continue;
1571 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1572 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001573 error("channel_request_forwarding: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001574 continue;
1575 }
1576 /* Create a port to listen for the host. */
1577 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1578 if (sock < 0) {
1579 /* this is no error since kernel may not support ipv6 */
1580 verbose("socket: %.100s", strerror(errno));
1581 continue;
1582 }
1583 /*
1584 * Set socket options. We would like the socket to disappear
1585 * as soon as it has been closed for whatever reason.
1586 */
1587 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
1588 linger.l_onoff = 1;
1589 linger.l_linger = 5;
1590 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
1591 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11001592
Damien Miller34132e52000-01-14 15:45:46 +11001593 /* Bind the socket to the address. */
1594 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1595 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11001596 if (!ai->ai_next)
1597 error("bind: %.100s", strerror(errno));
1598 else
1599 verbose("bind: %.100s", strerror(errno));
1600
Damien Miller34132e52000-01-14 15:45:46 +11001601 close(sock);
1602 continue;
1603 }
1604 /* Start listening for connections on the socket. */
1605 if (listen(sock, 5) < 0) {
1606 error("listen: %.100s", strerror(errno));
1607 close(sock);
1608 continue;
1609 }
1610 /* Allocate a channel number for the socket. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001611 ch = channel_new("port listener", ctype, sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10001612 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11001613 0, xstrdup("port listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11001614 strlcpy(channels[ch].path, host, sizeof(channels[ch].path));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001615 channels[ch].host_port = port_to_connect;
1616 channels[ch].listening_port = listen_port;
Damien Miller34132e52000-01-14 15:45:46 +11001617 success = 1;
1618 }
1619 if (success == 0)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001620 packet_disconnect("cannot listen port: %d", listen_port); /*XXX ?disconnect? */
Damien Miller34132e52000-01-14 15:45:46 +11001621 freeaddrinfo(aitop);
Damien Miller95def091999-11-25 00:26:21 +11001622}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001623
Damien Miller5428f641999-11-25 11:54:57 +11001624/*
1625 * Initiate forwarding of connections to port "port" on remote host through
1626 * the secure channel to host:port from local side.
1627 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001628
Damien Miller4af51302000-04-16 11:18:38 +10001629void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001630channel_request_remote_forwarding(u_short listen_port,
1631 const char *host_to_connect, u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001632{
Damien Miller0bc1bd82000-11-13 22:57:25 +11001633 int payload_len, type, success = 0;
1634
Damien Miller95def091999-11-25 00:26:21 +11001635 /* Record locally that connection to this host/port is permitted. */
1636 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1637 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001638
Damien Miller95def091999-11-25 00:26:21 +11001639 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10001640 if (compat20) {
1641 const char *address_to_bind = "0.0.0.0";
1642 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1643 packet_put_cstring("tcpip-forward");
1644 packet_put_char(0); /* boolean: want reply */
1645 packet_put_cstring(address_to_bind);
1646 packet_put_int(listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001647 packet_send();
1648 packet_write_wait();
1649 /* Assume that server accepts the request */
1650 success = 1;
Damien Miller33b13562000-04-04 14:38:59 +10001651 } else {
1652 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10001653 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10001654 packet_put_cstring(host_to_connect);
1655 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10001656 packet_send();
1657 packet_write_wait();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001658
1659 /* Wait for response from the remote side. */
1660 type = packet_read(&payload_len);
1661 switch (type) {
1662 case SSH_SMSG_SUCCESS:
1663 success = 1;
1664 break;
1665 case SSH_SMSG_FAILURE:
1666 log("Warning: Server denied remote port forwarding.");
1667 break;
1668 default:
1669 /* Unknown packet */
1670 packet_disconnect("Protocol error for port forward request:"
1671 "received packet type %d.", type);
1672 }
1673 }
1674 if (success) {
1675 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
1676 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
1677 permitted_opens[num_permitted_opens].listen_port = listen_port;
1678 num_permitted_opens++;
Damien Miller33b13562000-04-04 14:38:59 +10001679 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001680}
1681
Damien Miller5428f641999-11-25 11:54:57 +11001682/*
1683 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
1684 * listening for the port, and sends back a success reply (or disconnect
1685 * message if there was an error). This never returns if there was an error.
1686 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001687
Damien Miller4af51302000-04-16 11:18:38 +10001688void
Damien Millere247cc42000-05-07 12:03:14 +10001689channel_input_port_forward_request(int is_root, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001690{
Damien Milleraae6c611999-12-06 11:47:28 +11001691 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11001692 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001693
Damien Miller95def091999-11-25 00:26:21 +11001694 /* Get arguments from the packet. */
1695 port = packet_get_int();
1696 hostname = packet_get_string(NULL);
1697 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001698
Damien Millerbac2d8a2000-09-05 16:13:06 +11001699#ifndef HAVE_CYGWIN
Damien Miller5428f641999-11-25 11:54:57 +11001700 /*
1701 * Check that an unprivileged user is not trying to forward a
1702 * privileged port.
1703 */
Damien Miller95def091999-11-25 00:26:21 +11001704 if (port < IPPORT_RESERVED && !is_root)
1705 packet_disconnect("Requested forwarding of port %d but user is not root.",
1706 port);
Damien Millerbac2d8a2000-09-05 16:13:06 +11001707#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11001708 /* Initiate forwarding */
Damien Millere247cc42000-05-07 12:03:14 +10001709 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
Damien Miller95def091999-11-25 00:26:21 +11001710
1711 /* Free the argument string. */
1712 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001713}
1714
Damien Millerb38eff82000-04-01 11:09:21 +10001715/* XXX move to aux.c */
1716int
1717channel_connect_to(const char *host, u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001718{
Damien Miller34132e52000-01-14 15:45:46 +11001719 struct addrinfo hints, *ai, *aitop;
1720 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1721 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10001722 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11001723
Damien Miller34132e52000-01-14 15:45:46 +11001724 memset(&hints, 0, sizeof(hints));
1725 hints.ai_family = IPv4or6;
1726 hints.ai_socktype = SOCK_STREAM;
1727 snprintf(strport, sizeof strport, "%d", host_port);
1728 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
1729 error("%.100s: unknown host (%s)", host, gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10001730 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001731 }
Damien Miller34132e52000-01-14 15:45:46 +11001732 for (ai = aitop; ai; ai = ai->ai_next) {
1733 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1734 continue;
1735 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1736 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001737 error("channel_connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001738 continue;
1739 }
1740 /* Create the socket. */
1741 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1742 if (sock < 0) {
1743 error("socket: %.100s", strerror(errno));
1744 continue;
1745 }
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001746 if (fcntl(sock, F_SETFL, O_NDELAY) < 0)
1747 fatal("connect_to: F_SETFL: %s", strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001748 /* Connect to the host/port. */
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001749 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
1750 errno != EINPROGRESS) {
Damien Miller34132e52000-01-14 15:45:46 +11001751 error("connect %.100s port %s: %.100s", ntop, strport,
1752 strerror(errno));
1753 close(sock);
1754 continue; /* fail -- try next */
1755 }
1756 break; /* success */
1757
1758 }
1759 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11001760 if (!ai) {
1761 error("connect %.100s port %d: failed.", host, host_port);
Damien Millerb38eff82000-04-01 11:09:21 +10001762 return -1;
1763 }
1764 /* success */
1765 return sock;
1766}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001767int
1768channel_connect_by_listen_adress(u_short listen_port)
1769{
1770 int i;
1771 for (i = 0; i < num_permitted_opens; i++)
1772 if (permitted_opens[i].listen_port == listen_port)
1773 return channel_connect_to(
1774 permitted_opens[i].host_to_connect,
1775 permitted_opens[i].port_to_connect);
Ben Lindstromc72745a2000-12-02 19:03:54 +00001776 error("WARNING: Server requests forwarding for unknown listen_port %d",
1777 listen_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001778 return -1;
1779}
Damien Millerb38eff82000-04-01 11:09:21 +10001780
1781/*
1782 * This is called after receiving PORT_OPEN message. This attempts to
1783 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
1784 * or CHANNEL_OPEN_FAILURE.
1785 */
1786
Damien Miller4af51302000-04-16 11:18:38 +10001787void
Damien Miller62cee002000-09-23 17:15:56 +11001788channel_input_port_open(int type, int plen, void *ctxt)
Damien Millerb38eff82000-04-01 11:09:21 +10001789{
1790 u_short host_port;
1791 char *host, *originator_string;
1792 int remote_channel, sock = -1, newch, i, denied;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001793 u_int host_len, originator_len;
Damien Millerb38eff82000-04-01 11:09:21 +10001794
1795 /* Get remote channel number. */
1796 remote_channel = packet_get_int();
1797
1798 /* Get host name to connect to. */
1799 host = packet_get_string(&host_len);
1800
1801 /* Get port to connect to. */
1802 host_port = packet_get_int();
1803
1804 /* Get remote originator name. */
1805 if (have_hostname_in_open) {
1806 originator_string = packet_get_string(&originator_len);
1807 originator_len += 4; /* size of packet_int */
1808 } else {
1809 originator_string = xstrdup("unknown (remote did not supply name)");
1810 originator_len = 0; /* no originator supplied */
Damien Miller95def091999-11-25 00:26:21 +11001811 }
Damien Miller34132e52000-01-14 15:45:46 +11001812
Damien Millerb38eff82000-04-01 11:09:21 +10001813 packet_integrity_check(plen,
1814 4 + 4 + host_len + 4 + originator_len, SSH_MSG_PORT_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001815
Damien Millerb38eff82000-04-01 11:09:21 +10001816 /* Check if opening that port is permitted. */
1817 denied = 0;
1818 if (!all_opens_permitted) {
1819 /* Go trough all permitted ports. */
1820 for (i = 0; i < num_permitted_opens; i++)
1821 if (permitted_opens[i].port_to_connect == host_port &&
1822 strcmp(permitted_opens[i].host_to_connect, host) == 0)
1823 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001824
Damien Millerb38eff82000-04-01 11:09:21 +10001825 /* Check if we found the requested port among those permitted. */
1826 if (i >= num_permitted_opens) {
1827 /* The port is not permitted. */
1828 log("Received request to connect to %.100s:%d, but the request was denied.",
1829 host, host_port);
1830 denied = 1;
1831 }
1832 }
1833 sock = denied ? -1 : channel_connect_to(host, host_port);
1834 if (sock > 0) {
1835 /* Allocate a channel for this connection. */
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001836 newch = channel_allocate(SSH_CHANNEL_CONNECTING,
1837 sock, originator_string);
1838/*XXX delay answer? */
Damien Millerb38eff82000-04-01 11:09:21 +10001839 channels[newch].remote_id = remote_channel;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840
Damien Millerb38eff82000-04-01 11:09:21 +10001841 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1842 packet_put_int(remote_channel);
1843 packet_put_int(newch);
1844 packet_send();
1845 } else {
1846 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1847 packet_put_int(remote_channel);
1848 packet_send();
1849 }
Damien Miller95def091999-11-25 00:26:21 +11001850 xfree(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001851}
1852
Damien Miller5428f641999-11-25 11:54:57 +11001853/*
1854 * Creates an internet domain socket for listening for X11 connections.
1855 * Returns a suitable value for the DISPLAY variable, or NULL if an error
1856 * occurs.
1857 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001858
Damien Miller34132e52000-01-14 15:45:46 +11001859#define NUM_SOCKS 10
1860
Damien Miller95def091999-11-25 00:26:21 +11001861char *
Damien Millera34a28b1999-12-14 10:47:15 +11001862x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863{
Damien Milleraae6c611999-12-06 11:47:28 +11001864 int display_number, sock;
1865 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11001866 struct addrinfo hints, *ai, *aitop;
1867 char strport[NI_MAXSERV];
1868 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1869 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11001870 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001871
Damien Millera34a28b1999-12-14 10:47:15 +11001872 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11001873 display_number < MAX_DISPLAYS;
1874 display_number++) {
1875 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11001876 memset(&hints, 0, sizeof(hints));
1877 hints.ai_family = IPv4or6;
1878 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
1879 hints.ai_socktype = SOCK_STREAM;
1880 snprintf(strport, sizeof strport, "%d", port);
1881 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1882 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11001883 return NULL;
1884 }
Damien Miller34132e52000-01-14 15:45:46 +11001885 for (ai = aitop; ai; ai = ai->ai_next) {
1886 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1887 continue;
1888 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1889 if (sock < 0) {
Damien Miller89d97962000-10-14 12:37:19 +11001890 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
Damien Millere2192732000-01-17 13:22:55 +11001891 error("socket: %.100s", strerror(errno));
1892 return NULL;
1893 } else {
Damien Millercb5e44a2000-09-29 12:12:36 +11001894 debug("x11_create_display_inet: Socket family %d not supported",
1895 ai->ai_family);
Damien Millere2192732000-01-17 13:22:55 +11001896 continue;
1897 }
Damien Miller34132e52000-01-14 15:45:46 +11001898 }
1899 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1900 debug("bind port %d: %.100s", port, strerror(errno));
1901 shutdown(sock, SHUT_RDWR);
1902 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11001903
1904 if (ai->ai_next)
1905 continue;
1906
Damien Miller34132e52000-01-14 15:45:46 +11001907 for (n = 0; n < num_socks; n++) {
1908 shutdown(socks[n], SHUT_RDWR);
1909 close(socks[n]);
1910 }
1911 num_socks = 0;
1912 break;
1913 }
1914 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11001915#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11001916 if (num_socks == NUM_SOCKS)
1917 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11001918#else
1919 break;
1920#endif
Damien Miller95def091999-11-25 00:26:21 +11001921 }
Damien Miller34132e52000-01-14 15:45:46 +11001922 if (num_socks > 0)
1923 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001924 }
Damien Miller95def091999-11-25 00:26:21 +11001925 if (display_number >= MAX_DISPLAYS) {
1926 error("Failed to allocate internet-domain X11 display socket.");
1927 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001928 }
Damien Miller95def091999-11-25 00:26:21 +11001929 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11001930 for (n = 0; n < num_socks; n++) {
1931 sock = socks[n];
1932 if (listen(sock, 5) < 0) {
1933 error("listen: %.100s", strerror(errno));
1934 shutdown(sock, SHUT_RDWR);
1935 close(sock);
1936 return NULL;
1937 }
Damien Miller95def091999-11-25 00:26:21 +11001938 }
Damien Miller34132e52000-01-14 15:45:46 +11001939
Damien Miller95def091999-11-25 00:26:21 +11001940 /* Set up a suitable value for the DISPLAY variable. */
1941 if (gethostname(hostname, sizeof(hostname)) < 0)
1942 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11001943
1944#ifdef IPADDR_IN_DISPLAY
1945 /*
1946 * HPUX detects the local hostname in the DISPLAY variable and tries
1947 * to set up a shared memory connection to the server, which it
1948 * incorrectly supposes to be local.
1949 *
1950 * The workaround - as used in later $$H and other programs - is
1951 * is to set display to the host's IP address.
1952 */
1953 {
1954 struct hostent *he;
1955 struct in_addr my_addr;
1956
1957 he = gethostbyname(hostname);
1958 if (he == NULL) {
1959 error("[X11-broken-fwd-hostname-workaround] Could not get "
1960 "IP address for hostname %s.", hostname);
1961
1962 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
1963 "Could not get IP address for hostname %s.", hostname);
1964
1965 shutdown(sock, SHUT_RDWR);
1966 close(sock);
1967
1968 return NULL;
1969 }
1970
1971 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
1972
1973 /* Set DISPLAY to <ip address>:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001974 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Kevin Stevesda6cd592000-12-29 18:41:21 +00001975 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11001976 }
1977#else /* IPADDR_IN_DISPLAY */
1978 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001979 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Kevin Stevesda6cd592000-12-29 18:41:21 +00001980 display_number, screen_number);
Damien Miller76112de1999-12-21 11:18:08 +11001981#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982
Damien Miller34132e52000-01-14 15:45:46 +11001983 /* Allocate a channel for each socket. */
1984 for (n = 0; n < num_socks; n++) {
1985 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10001986 (void) channel_new("x11 listener",
1987 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
1988 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Miller69b69aa2000-10-28 14:19:58 +11001989 0, xstrdup("X11 inet listener"), 1);
Damien Miller34132e52000-01-14 15:45:46 +11001990 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001991
Damien Miller95def091999-11-25 00:26:21 +11001992 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11001993 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001994}
1995
1996#ifndef X_UNIX_PATH
1997#define X_UNIX_PATH "/tmp/.X11-unix/X"
1998#endif
1999
2000static
2001int
Ben Lindstrom46c16222000-12-22 01:43:59 +00002002connect_local_xsocket(u_int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002003{
Damien Miller95def091999-11-25 00:26:21 +11002004 static const char *const x_sockets[] = {
2005 X_UNIX_PATH "%u",
2006 "/var/X/.X11-unix/X" "%u",
2007 "/usr/spool/sockets/X11/" "%u",
2008 NULL
2009 };
2010 int sock;
2011 struct sockaddr_un addr;
2012 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002013
Damien Miller95def091999-11-25 00:26:21 +11002014 for (path = x_sockets; *path; ++path) {
2015 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2016 if (sock < 0)
2017 error("socket: %.100s", strerror(errno));
2018 memset(&addr, 0, sizeof(addr));
2019 addr.sun_family = AF_UNIX;
2020 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
2021 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2022 return sock;
2023 close(sock);
2024 }
2025 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2026 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002027}
2028
Damien Millerbd483e72000-04-30 10:00:53 +10002029int
2030x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002031{
Damien Millerbd483e72000-04-30 10:00:53 +10002032 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11002033 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10002034 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11002035 struct addrinfo hints, *ai, *aitop;
2036 char strport[NI_MAXSERV];
2037 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002038
Damien Miller95def091999-11-25 00:26:21 +11002039 /* Try to open a socket for the local X server. */
2040 display = getenv("DISPLAY");
2041 if (!display) {
2042 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10002043 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002044 }
Damien Miller5428f641999-11-25 11:54:57 +11002045 /*
2046 * Now we decode the value of the DISPLAY variable and make a
2047 * connection to the real X server.
2048 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002049
Damien Miller5428f641999-11-25 11:54:57 +11002050 /*
2051 * Check if it is a unix domain socket. Unix domain displays are in
2052 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2053 */
Damien Miller95def091999-11-25 00:26:21 +11002054 if (strncmp(display, "unix:", 5) == 0 ||
2055 display[0] == ':') {
2056 /* Connect to the unix domain socket. */
2057 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2058 error("Could not parse display number from DISPLAY: %.100s",
2059 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002060 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002061 }
2062 /* Create a socket. */
2063 sock = connect_local_xsocket(display_number);
2064 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10002065 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002066
2067 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10002068 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002069 }
Damien Miller5428f641999-11-25 11:54:57 +11002070 /*
2071 * Connect to an inet socket. The DISPLAY value is supposedly
2072 * hostname:d[.s], where hostname may also be numeric IP address.
2073 */
Damien Miller95def091999-11-25 00:26:21 +11002074 strncpy(buf, display, sizeof(buf));
2075 buf[sizeof(buf) - 1] = 0;
2076 cp = strchr(buf, ':');
2077 if (!cp) {
2078 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10002079 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002080 }
Damien Miller95def091999-11-25 00:26:21 +11002081 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11002082 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11002083 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2084 error("Could not parse display number from DISPLAY: %.100s",
2085 display);
Damien Millerbd483e72000-04-30 10:00:53 +10002086 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002087 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002088
Damien Miller34132e52000-01-14 15:45:46 +11002089 /* Look up the host address */
2090 memset(&hints, 0, sizeof(hints));
2091 hints.ai_family = IPv4or6;
2092 hints.ai_socktype = SOCK_STREAM;
2093 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2094 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2095 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10002096 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002097 }
Damien Miller34132e52000-01-14 15:45:46 +11002098 for (ai = aitop; ai; ai = ai->ai_next) {
2099 /* Create a socket. */
2100 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2101 if (sock < 0) {
2102 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10002103 continue;
2104 }
2105 /* Connect it to the display. */
2106 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2107 debug("connect %.100s port %d: %.100s", buf,
2108 6000 + display_number, strerror(errno));
2109 close(sock);
2110 continue;
2111 }
2112 /* Success */
2113 break;
Damien Miller34132e52000-01-14 15:45:46 +11002114 }
Damien Miller34132e52000-01-14 15:45:46 +11002115 freeaddrinfo(aitop);
2116 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10002117 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11002118 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10002119 return -1;
Damien Miller95def091999-11-25 00:26:21 +11002120 }
Damien Millerbd483e72000-04-30 10:00:53 +10002121 return sock;
2122}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002123
Damien Millerbd483e72000-04-30 10:00:53 +10002124/*
2125 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2126 * the remote channel number. We should do whatever we want, and respond
2127 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002129
Damien Millerbd483e72000-04-30 10:00:53 +10002130void
Damien Miller62cee002000-09-23 17:15:56 +11002131x11_input_open(int type, int plen, void *ctxt)
Damien Millerbd483e72000-04-30 10:00:53 +10002132{
2133 int remote_channel, sock = 0, newch;
2134 char *remote_host;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002135 u_int remote_len;
Damien Miller95def091999-11-25 00:26:21 +11002136
Damien Millerbd483e72000-04-30 10:00:53 +10002137 /* Get remote channel number. */
2138 remote_channel = packet_get_int();
Damien Miller95def091999-11-25 00:26:21 +11002139
Damien Millerbd483e72000-04-30 10:00:53 +10002140 /* Get remote originator name. */
2141 if (have_hostname_in_open) {
2142 remote_host = packet_get_string(&remote_len);
2143 remote_len += 4;
2144 } else {
2145 remote_host = xstrdup("unknown (remote did not supply name)");
2146 remote_len = 0;
2147 }
2148
2149 debug("Received X11 open request.");
2150 packet_integrity_check(plen, 4 + remote_len, SSH_SMSG_X11_OPEN);
2151
2152 /* Obtain a connection to the real X display. */
2153 sock = x11_connect_display();
2154 if (sock == -1) {
2155 /* Send refusal to the remote host. */
2156 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2157 packet_put_int(remote_channel);
2158 packet_send();
2159 } else {
2160 /* Allocate a channel for this connection. */
2161 newch = channel_allocate(
2162 (x11_saved_proto == NULL) ?
2163 SSH_CHANNEL_OPEN : SSH_CHANNEL_X11_OPEN,
2164 sock, remote_host);
2165 channels[newch].remote_id = remote_channel;
2166
2167 /* Send a confirmation to the remote host. */
2168 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2169 packet_put_int(remote_channel);
2170 packet_put_int(newch);
2171 packet_send();
2172 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173}
2174
Damien Miller69b69aa2000-10-28 14:19:58 +11002175/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2176void
2177deny_input_open(int type, int plen, void *ctxt)
2178{
2179 int rchan = packet_get_int();
2180 switch(type){
2181 case SSH_SMSG_AGENT_OPEN:
2182 error("Warning: ssh server tried agent forwarding.");
2183 break;
2184 case SSH_SMSG_X11_OPEN:
2185 error("Warning: ssh server tried X11 forwarding.");
2186 break;
2187 default:
2188 error("deny_input_open: type %d plen %d", type, plen);
2189 break;
2190 }
2191 error("Warning: this is probably a break in attempt by a malicious server.");
2192 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2193 packet_put_int(rchan);
2194 packet_send();
2195}
2196
Damien Miller5428f641999-11-25 11:54:57 +11002197/*
2198 * Requests forwarding of X11 connections, generates fake authentication
2199 * data, and enables authentication spoofing.
2200 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002201
Damien Miller4af51302000-04-16 11:18:38 +10002202void
Damien Millerbd483e72000-04-30 10:00:53 +10002203x11_request_forwarding_with_spoofing(int client_session_id,
2204 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002205{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002206 u_int data_len = (u_int) strlen(data) / 2;
2207 u_int i, value;
Damien Miller95def091999-11-25 00:26:21 +11002208 char *new_data;
2209 int screen_number;
2210 const char *cp;
2211 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002212
Damien Miller95def091999-11-25 00:26:21 +11002213 cp = getenv("DISPLAY");
2214 if (cp)
2215 cp = strchr(cp, ':');
2216 if (cp)
2217 cp = strchr(cp, '.');
2218 if (cp)
2219 screen_number = atoi(cp + 1);
2220 else
2221 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002222
Damien Miller95def091999-11-25 00:26:21 +11002223 /* Save protocol name. */
2224 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002225
Damien Miller5428f641999-11-25 11:54:57 +11002226 /*
2227 * Extract real authentication data and generate fake data of the
2228 * same length.
2229 */
Damien Miller95def091999-11-25 00:26:21 +11002230 x11_saved_data = xmalloc(data_len);
2231 x11_fake_data = xmalloc(data_len);
2232 for (i = 0; i < data_len; i++) {
2233 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2234 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2235 if (i % 4 == 0)
2236 rand = arc4random();
2237 x11_saved_data[i] = value;
2238 x11_fake_data[i] = rand & 0xff;
2239 rand >>= 8;
2240 }
2241 x11_saved_data_len = data_len;
2242 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002243
Damien Miller95def091999-11-25 00:26:21 +11002244 /* Convert the fake data into hex. */
2245 new_data = xmalloc(2 * data_len + 1);
2246 for (i = 0; i < data_len; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +00002247 sprintf(new_data + 2 * i, "%02x", (u_char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002248
Damien Miller95def091999-11-25 00:26:21 +11002249 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002250 if (compat20) {
2251 channel_request_start(client_session_id, "x11-req", 0);
2252 packet_put_char(0); /* XXX bool single connection */
2253 } else {
2254 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2255 }
2256 packet_put_cstring(proto);
2257 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002258 packet_put_int(screen_number);
2259 packet_send();
2260 packet_write_wait();
2261 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002262}
2263
2264/* Sends a message to the server to request authentication fd forwarding. */
2265
Damien Miller4af51302000-04-16 11:18:38 +10002266void
Damien Miller95def091999-11-25 00:26:21 +11002267auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002268{
Damien Miller95def091999-11-25 00:26:21 +11002269 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2270 packet_send();
2271 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002272}
2273
Damien Miller5428f641999-11-25 11:54:57 +11002274/*
2275 * Returns the name of the forwarded authentication socket. Returns NULL if
2276 * there is no forwarded authentication socket. The returned value points to
2277 * a static buffer.
2278 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002279
Damien Miller95def091999-11-25 00:26:21 +11002280char *
2281auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002282{
Damien Miller95def091999-11-25 00:26:21 +11002283 return channel_forwarded_auth_socket_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002284}
2285
2286/* removes the agent forwarding socket */
2287
Damien Miller4af51302000-04-16 11:18:38 +10002288void
Damien Miller95def091999-11-25 00:26:21 +11002289cleanup_socket(void)
2290{
Damien Miller78315eb2000-09-29 23:01:36 +11002291 unlink(channel_forwarded_auth_socket_name);
Damien Miller95def091999-11-25 00:26:21 +11002292 rmdir(channel_forwarded_auth_socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002293}
2294
Damien Miller5428f641999-11-25 11:54:57 +11002295/*
Damien Millerd3a18572000-06-07 19:55:44 +10002296 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
Damien Miller5428f641999-11-25 11:54:57 +11002297 * This starts forwarding authentication requests.
2298 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002299
Damien Millerd3a18572000-06-07 19:55:44 +10002300int
Damien Miller95def091999-11-25 00:26:21 +11002301auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002302{
Damien Miller95def091999-11-25 00:26:21 +11002303 int sock, newch;
2304 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002305
Damien Miller95def091999-11-25 00:26:21 +11002306 if (auth_get_socket_name() != NULL)
2307 fatal("Protocol error: authentication forwarding requested twice.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002308
Damien Miller95def091999-11-25 00:26:21 +11002309 /* Temporarily drop privileged uid for mkdir/bind. */
2310 temporarily_use_uid(pw->pw_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002311
Damien Miller95def091999-11-25 00:26:21 +11002312 /* Allocate a buffer for the socket name, and format the name. */
2313 channel_forwarded_auth_socket_name = xmalloc(MAX_SOCKET_NAME);
2314 channel_forwarded_auth_socket_dir = xmalloc(MAX_SOCKET_NAME);
2315 strlcpy(channel_forwarded_auth_socket_dir, "/tmp/ssh-XXXXXXXX", MAX_SOCKET_NAME);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002316
Damien Miller95def091999-11-25 00:26:21 +11002317 /* Create private directory for socket */
Damien Millerd3a18572000-06-07 19:55:44 +10002318 if (mkdtemp(channel_forwarded_auth_socket_dir) == NULL) {
2319 packet_send_debug("Agent forwarding disabled: mkdtemp() failed: %.100s",
2320 strerror(errno));
2321 restore_uid();
2322 xfree(channel_forwarded_auth_socket_name);
2323 xfree(channel_forwarded_auth_socket_dir);
2324 channel_forwarded_auth_socket_name = NULL;
2325 channel_forwarded_auth_socket_dir = NULL;
2326 return 0;
2327 }
Damien Miller95def091999-11-25 00:26:21 +11002328 snprintf(channel_forwarded_auth_socket_name, MAX_SOCKET_NAME, "%s/agent.%d",
2329 channel_forwarded_auth_socket_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002330
Damien Miller95def091999-11-25 00:26:21 +11002331 if (atexit(cleanup_socket) < 0) {
2332 int saved = errno;
2333 cleanup_socket();
2334 packet_disconnect("socket: %.100s", strerror(saved));
2335 }
2336 /* Create the socket. */
2337 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2338 if (sock < 0)
2339 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002340
Damien Miller95def091999-11-25 00:26:21 +11002341 /* Bind it to the name. */
2342 memset(&sunaddr, 0, sizeof(sunaddr));
2343 sunaddr.sun_family = AF_UNIX;
2344 strncpy(sunaddr.sun_path, channel_forwarded_auth_socket_name,
2345 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002346
Damien Miller95def091999-11-25 00:26:21 +11002347 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2348 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002349
Damien Miller95def091999-11-25 00:26:21 +11002350 /* Restore the privileged uid. */
2351 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002352
Damien Miller95def091999-11-25 00:26:21 +11002353 /* Start listening on the socket. */
2354 if (listen(sock, 5) < 0)
2355 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002356
Damien Miller95def091999-11-25 00:26:21 +11002357 /* Allocate a channel for the authentication agent socket. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11002358 newch = channel_new("auth socket",
2359 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2360 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2361 0, xstrdup("auth socket"), 1);
2362
Damien Miller037a0dc1999-12-07 15:38:31 +11002363 strlcpy(channels[newch].path, channel_forwarded_auth_socket_name,
2364 sizeof(channels[newch].path));
Damien Millerd3a18572000-06-07 19:55:44 +10002365 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002366}
2367
2368/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2369
Damien Miller4af51302000-04-16 11:18:38 +10002370void
Damien Miller62cee002000-09-23 17:15:56 +11002371auth_input_open_request(int type, int plen, void *ctxt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002372{
Damien Miller95def091999-11-25 00:26:21 +11002373 int remch, sock, newch;
2374 char *dummyname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002375
Damien Millerb38eff82000-04-01 11:09:21 +10002376 packet_integrity_check(plen, 4, type);
2377
Damien Miller95def091999-11-25 00:26:21 +11002378 /* Read the remote channel number from the message. */
2379 remch = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002380
Damien Miller5428f641999-11-25 11:54:57 +11002381 /*
2382 * Get a connection to the local authentication agent (this may again
2383 * get forwarded).
2384 */
Damien Miller95def091999-11-25 00:26:21 +11002385 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002386
Damien Miller5428f641999-11-25 11:54:57 +11002387 /*
2388 * If we could not connect the agent, send an error message back to
2389 * the server. This should never happen unless the agent dies,
2390 * because authentication forwarding is only enabled if we have an
2391 * agent.
2392 */
Damien Miller95def091999-11-25 00:26:21 +11002393 if (sock < 0) {
2394 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2395 packet_put_int(remch);
2396 packet_send();
2397 return;
2398 }
2399 debug("Forwarding authentication connection.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002400
Damien Miller5428f641999-11-25 11:54:57 +11002401 /*
2402 * Dummy host name. This will be freed when the channel is freed; it
2403 * will still be valid in the packet_put_string below since the
2404 * channel cannot yet be freed at that point.
2405 */
Damien Miller95def091999-11-25 00:26:21 +11002406 dummyname = xstrdup("authentication agent connection");
2407
2408 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, dummyname);
2409 channels[newch].remote_id = remch;
2410
2411 /* Send a confirmation to the remote host. */
2412 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2413 packet_put_int(remch);
2414 packet_put_int(newch);
2415 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002416}
Damien Miller33b13562000-04-04 14:38:59 +10002417
2418void
Damien Millerbd483e72000-04-30 10:00:53 +10002419channel_start_open(int id)
Damien Miller33b13562000-04-04 14:38:59 +10002420{
2421 Channel *c = channel_lookup(id);
2422 if (c == NULL) {
2423 log("channel_open: %d: bad id", id);
2424 return;
2425 }
Damien Millerbd483e72000-04-30 10:00:53 +10002426 debug("send channel open %d", id);
Damien Miller33b13562000-04-04 14:38:59 +10002427 packet_start(SSH2_MSG_CHANNEL_OPEN);
2428 packet_put_cstring(c->ctype);
2429 packet_put_int(c->self);
2430 packet_put_int(c->local_window);
2431 packet_put_int(c->local_maxpacket);
Damien Millerbd483e72000-04-30 10:00:53 +10002432}
2433void
2434channel_open(int id)
2435{
2436 /* XXX REMOVE ME */
2437 channel_start_open(id);
Damien Miller33b13562000-04-04 14:38:59 +10002438 packet_send();
Damien Miller33b13562000-04-04 14:38:59 +10002439}
2440void
2441channel_request(int id, char *service, int wantconfirm)
2442{
2443 channel_request_start(id, service, wantconfirm);
2444 packet_send();
2445 debug("channel request %d: %s", id, service) ;
2446}
2447void
2448channel_request_start(int id, char *service, int wantconfirm)
2449{
2450 Channel *c = channel_lookup(id);
2451 if (c == NULL) {
2452 log("channel_request: %d: bad id", id);
2453 return;
2454 }
2455 packet_start(SSH2_MSG_CHANNEL_REQUEST);
2456 packet_put_int(c->remote_id);
2457 packet_put_cstring(service);
2458 packet_put_char(wantconfirm);
2459}
2460void
2461channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
2462{
2463 Channel *c = channel_lookup(id);
2464 if (c == NULL) {
2465 log("channel_register_callback: %d: bad id", id);
2466 return;
2467 }
2468 c->cb_event = mtype;
2469 c->cb_fn = fn;
2470 c->cb_arg = arg;
2471}
2472void
2473channel_register_cleanup(int id, channel_callback_fn *fn)
2474{
2475 Channel *c = channel_lookup(id);
2476 if (c == NULL) {
2477 log("channel_register_cleanup: %d: bad id", id);
2478 return;
2479 }
2480 c->dettach_user = fn;
2481}
2482void
2483channel_cancel_cleanup(int id)
2484{
2485 Channel *c = channel_lookup(id);
2486 if (c == NULL) {
2487 log("channel_cancel_cleanup: %d: bad id", id);
2488 return;
2489 }
2490 c->dettach_user = NULL;
2491}
Damien Millerad833b32000-08-23 10:46:23 +10002492void
2493channel_register_filter(int id, channel_filter_fn *fn)
2494{
2495 Channel *c = channel_lookup(id);
2496 if (c == NULL) {
2497 log("channel_register_filter: %d: bad id", id);
2498 return;
2499 }
2500 c->input_filter = fn;
2501}
Damien Miller33b13562000-04-04 14:38:59 +10002502
2503void
Damien Miller69b69aa2000-10-28 14:19:58 +11002504channel_set_fds(int id, int rfd, int wfd, int efd,
2505 int extusage, int nonblock)
Damien Miller33b13562000-04-04 14:38:59 +10002506{
2507 Channel *c = channel_lookup(id);
2508 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
2509 fatal("channel_activate for non-larval channel %d.", id);
Damien Miller69b69aa2000-10-28 14:19:58 +11002510 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
Damien Miller33b13562000-04-04 14:38:59 +10002511 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10002512 /* XXX window size? */
Damien Millere4340be2000-09-16 13:29:08 +11002513 c->local_window = c->local_window_max = c->local_maxpacket * 2;
Damien Miller33b13562000-04-04 14:38:59 +10002514 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2515 packet_put_int(c->remote_id);
2516 packet_put_int(c->local_window);
2517 packet_send();
2518}