blob: 1f9b515c3d86714f8f98367da7a6c65a5b48a133 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * channels.c
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Fri Mar 24 16:35:24 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * This file contains functions for generic socket connection forwarding.
13 * There is also code for initiating connection forwarding for X11 connections,
14 * arbitrary tcp/ip connections, and the authentication agent connection.
Damien Miller4af51302000-04-16 11:18:38 +100015 *
Damien Miller33b13562000-04-04 14:38:59 +100016 * SSH2 support added by Markus Friedl.
Damien Miller95def091999-11-25 00:26:21 +110017 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include "includes.h"
Damien Millerbd483e72000-04-30 10:00:53 +100020RCSID("$Id: channels.c,v 1.27 2000/04/30 00:00:53 damien Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
22#include "ssh.h"
23#include "packet.h"
24#include "xmalloc.h"
25#include "buffer.h"
26#include "authfd.h"
27#include "uidswap.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110028#include "readconf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029#include "servconf.h"
30
31#include "channels.h"
32#include "nchan.h"
33#include "compat.h"
34
Damien Miller33b13562000-04-04 14:38:59 +100035#include "ssh2.h"
36
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037/* Maximum number of fake X11 displays to try. */
38#define MAX_DISPLAYS 1000
39
40/* Max len of agent socket */
41#define MAX_SOCKET_NAME 100
42
Damien Millerbd483e72000-04-30 10:00:53 +100043/* default window/packet sizes for tcp/x11-fwd-channel */
44#define CHAN_TCP_WINDOW_DEFAULT (8*1024)
45#define CHAN_TCP_PACKET_DEFAULT (CHAN_TCP_WINDOW_DEFAULT/2)
46#define CHAN_X11_WINDOW_DEFAULT (4*1024)
47#define CHAN_X11_PACKET_DEFAULT (CHAN_X11_WINDOW_DEFAULT/2)
Damien Millerb38eff82000-04-01 11:09:21 +100048
Damien Miller5428f641999-11-25 11:54:57 +110049/*
50 * Pointer to an array containing all allocated channels. The array is
51 * dynamically extended as needed.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053static Channel *channels = NULL;
54
Damien Miller5428f641999-11-25 11:54:57 +110055/*
56 * Size of the channel array. All slots of the array must always be
57 * initialized (at least the type field); unused slots are marked with type
58 * SSH_CHANNEL_FREE.
59 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060static int channels_alloc = 0;
61
Damien Miller5428f641999-11-25 11:54:57 +110062/*
63 * Maximum file descriptor value used in any of the channels. This is
64 * updated in channel_allocate.
65 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066static int channel_max_fd_value = 0;
67
68/* Name and directory of socket for authentication agent forwarding. */
69static char *channel_forwarded_auth_socket_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +110070static char *channel_forwarded_auth_socket_dir = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
72/* Saved X11 authentication protocol name. */
73char *x11_saved_proto = NULL;
74
75/* Saved X11 authentication data. This is the real data. */
76char *x11_saved_data = NULL;
77unsigned int x11_saved_data_len = 0;
78
Damien Miller5428f641999-11-25 11:54:57 +110079/*
80 * Fake X11 authentication data. This is what the server will be sending us;
81 * we should replace any occurrences of this by the real data.
82 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083char *x11_fake_data = NULL;
84unsigned int x11_fake_data_len;
85
Damien Miller5428f641999-11-25 11:54:57 +110086/*
87 * Data structure for storing which hosts are permitted for forward requests.
88 * The local sides of any remote forwards are stored in this array to prevent
89 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
90 * network (which might be behind a firewall).
91 */
Damien Miller95def091999-11-25 00:26:21 +110092typedef struct {
Damien Millerb38eff82000-04-01 11:09:21 +100093 char *host_to_connect; /* Connect to 'host'. */
94 u_short port_to_connect; /* Connect to 'port'. */
95 u_short listen_port; /* Remote side should listen port number. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096} ForwardPermission;
97
98/* List of all permitted host/port pairs to connect. */
99static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
100/* Number of permitted host/port pairs in the array. */
101static int num_permitted_opens = 0;
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * If this is true, all opens are permitted. This is the case on the server
104 * on which we have to trust the client anyway, and the user could do
105 * anything after logging in anyway.
106 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107static int all_opens_permitted = 0;
108
109/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
110static int have_hostname_in_open = 0;
111
112/* Sets specific protocol options. */
113
Damien Miller4af51302000-04-16 11:18:38 +1000114void
Damien Miller95def091999-11-25 00:26:21 +1100115channel_set_options(int hostname_in_open)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116{
Damien Miller95def091999-11-25 00:26:21 +1100117 have_hostname_in_open = hostname_in_open;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118}
119
Damien Miller5428f641999-11-25 11:54:57 +1100120/*
121 * Permits opening to any host/port in SSH_MSG_PORT_OPEN. This is usually
122 * called by the server, because the user could connect to any port anyway,
123 * and the server has no way to know but to trust the client anyway.
124 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Damien Miller4af51302000-04-16 11:18:38 +1000126void
Damien Miller95def091999-11-25 00:26:21 +1100127channel_permit_all_opens()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128{
Damien Miller95def091999-11-25 00:26:21 +1100129 all_opens_permitted = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130}
131
Damien Millerb38eff82000-04-01 11:09:21 +1000132/* lookup channel by id */
133
134Channel *
135channel_lookup(int id)
136{
137 Channel *c;
138 if (id < 0 && id > channels_alloc) {
139 log("channel_lookup: %d: bad id", id);
140 return NULL;
141 }
142 c = &channels[id];
143 if (c->type == SSH_CHANNEL_FREE) {
144 log("channel_lookup: %d: bad id: channel free", id);
145 return NULL;
146 }
147 return c;
148}
149
Damien Miller5428f641999-11-25 11:54:57 +1100150/*
151 * Allocate a new channel object and set its type and socket. This will cause
152 * remote_name to be freed.
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller4af51302000-04-16 11:18:38 +1000155int
Damien Millerb38eff82000-04-01 11:09:21 +1000156channel_new(char *ctype, int type, int rfd, int wfd, int efd,
157 int window, int maxpack, int extended_usage, char *remote_name)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller95def091999-11-25 00:26:21 +1100159 int i, found;
160 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
Damien Miller95def091999-11-25 00:26:21 +1100162 /* Update the maximum file descriptor value. */
Damien Millerb38eff82000-04-01 11:09:21 +1000163 if (rfd > channel_max_fd_value)
164 channel_max_fd_value = rfd;
165 if (wfd > channel_max_fd_value)
166 channel_max_fd_value = wfd;
167 if (efd > channel_max_fd_value)
168 channel_max_fd_value = efd;
Damien Miller5428f641999-11-25 11:54:57 +1100169 /* XXX set close-on-exec -markus */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
Damien Miller95def091999-11-25 00:26:21 +1100171 /* Do initial allocation if this is the first call. */
172 if (channels_alloc == 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000173 chan_init();
Damien Miller95def091999-11-25 00:26:21 +1100174 channels_alloc = 10;
175 channels = xmalloc(channels_alloc * sizeof(Channel));
176 for (i = 0; i < channels_alloc; i++)
177 channels[i].type = SSH_CHANNEL_FREE;
Damien Miller5428f641999-11-25 11:54:57 +1100178 /*
179 * Kludge: arrange a call to channel_stop_listening if we
180 * terminate with fatal().
181 */
Damien Miller95def091999-11-25 00:26:21 +1100182 fatal_add_cleanup((void (*) (void *)) channel_stop_listening, NULL);
183 }
184 /* Try to find a free slot where to put the new channel. */
185 for (found = -1, i = 0; i < channels_alloc; i++)
186 if (channels[i].type == SSH_CHANNEL_FREE) {
187 /* Found a free slot. */
188 found = i;
189 break;
190 }
191 if (found == -1) {
Damien Miller5428f641999-11-25 11:54:57 +1100192 /* There are no free slots. Take last+1 slot and expand the array. */
Damien Miller95def091999-11-25 00:26:21 +1100193 found = channels_alloc;
194 channels_alloc += 10;
195 debug("channel: expanding %d", channels_alloc);
196 channels = xrealloc(channels, channels_alloc * sizeof(Channel));
197 for (i = found; i < channels_alloc; i++)
198 channels[i].type = SSH_CHANNEL_FREE;
199 }
200 /* Initialize and return new channel number. */
201 c = &channels[found];
202 buffer_init(&c->input);
203 buffer_init(&c->output);
Damien Millerb38eff82000-04-01 11:09:21 +1000204 buffer_init(&c->extended);
Damien Miller95def091999-11-25 00:26:21 +1100205 chan_init_iostates(c);
206 c->self = found;
207 c->type = type;
Damien Millerb38eff82000-04-01 11:09:21 +1000208 c->ctype = ctype;
Damien Millerb38eff82000-04-01 11:09:21 +1000209 c->rfd = rfd;
210 c->wfd = wfd;
211 c->sock = (rfd == wfd) ? rfd : -1;
212 c->efd = efd;
213 c->extended_usage = extended_usage;
Damien Millerbd483e72000-04-30 10:00:53 +1000214 c->local_window = window;
215 c->local_window_max = window;
216 c->local_consumed = 0;
217 c->local_maxpacket = maxpack;
Damien Miller95def091999-11-25 00:26:21 +1100218 c->remote_id = -1;
219 c->remote_name = remote_name;
Damien Millerb38eff82000-04-01 11:09:21 +1000220 c->remote_window = 0;
221 c->remote_maxpacket = 0;
222 c->cb_fn = NULL;
223 c->cb_arg = NULL;
224 c->cb_event = 0;
225 c->dettach_user = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100226 debug("channel %d: new [%s]", found, remote_name);
227 return found;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228}
Damien Miller4af51302000-04-16 11:18:38 +1000229int
Damien Millerb38eff82000-04-01 11:09:21 +1000230channel_allocate(int type, int sock, char *remote_name)
231{
232 return channel_new("", type, sock, sock, -1, 0, 0, 0, remote_name);
233}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234
235/* Free the channel and close its socket. */
236
Damien Miller4af51302000-04-16 11:18:38 +1000237void
Damien Millerb38eff82000-04-01 11:09:21 +1000238channel_free(int id)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239{
Damien Millerb38eff82000-04-01 11:09:21 +1000240 Channel *c = channel_lookup(id);
241 if (c == NULL)
242 packet_disconnect("channel free: bad local channel %d", id);
243 debug("channel_free: channel %d: status: %s", id, channel_open_message());
Damien Miller33b13562000-04-04 14:38:59 +1000244 if (c->dettach_user != NULL) {
245 debug("channel_free: channel %d: dettaching channel user", id);
246 c->dettach_user(c->self, NULL);
247 }
Damien Millerb38eff82000-04-01 11:09:21 +1000248 if (c->sock != -1) {
249 shutdown(c->sock, SHUT_RDWR);
250 close(c->sock);
Damien Miller33b13562000-04-04 14:38:59 +1000251 c->sock = -1;
252 }
253 if (compat20) {
254 if (c->rfd != -1) {
255 close(c->rfd);
256 c->rfd = -1;
257 }
258 if (c->wfd != -1) {
259 close(c->wfd);
260 c->wfd = -1;
261 }
262 if (c->efd != -1) {
263 close(c->efd);
264 c->efd = -1;
265 }
Damien Millerb38eff82000-04-01 11:09:21 +1000266 }
267 buffer_free(&c->input);
268 buffer_free(&c->output);
269 buffer_free(&c->extended);
270 c->type = SSH_CHANNEL_FREE;
271 if (c->remote_name) {
272 xfree(c->remote_name);
273 c->remote_name = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100274 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275}
276
Damien Miller5428f641999-11-25 11:54:57 +1100277/*
Damien Millerb38eff82000-04-01 11:09:21 +1000278 * 'channel_pre*' are called just before select() to add any bits relevant to
279 * channels in the select bitmasks.
Damien Miller5428f641999-11-25 11:54:57 +1100280 */
Damien Millerb38eff82000-04-01 11:09:21 +1000281/*
282 * 'channel_post*': perform any appropriate operations for channels which
283 * have events pending.
284 */
285typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
286chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
287chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
288
289void
290channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
291{
292 FD_SET(c->sock, readset);
293}
294
295void
296channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
297{
298 if (buffer_len(&c->input) < packet_get_maxsize())
299 FD_SET(c->sock, readset);
300 if (buffer_len(&c->output) > 0)
301 FD_SET(c->sock, writeset);
302}
303
304void
305channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
306{
307 /* test whether sockets are 'alive' for read/write */
308 if (c->istate == CHAN_INPUT_OPEN)
309 if (buffer_len(&c->input) < packet_get_maxsize())
310 FD_SET(c->sock, readset);
311 if (c->ostate == CHAN_OUTPUT_OPEN ||
312 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
313 if (buffer_len(&c->output) > 0) {
314 FD_SET(c->sock, writeset);
315 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
316 chan_obuf_empty(c);
317 }
318 }
319}
320
321void
Damien Miller33b13562000-04-04 14:38:59 +1000322channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
323{
324 if (c->istate == CHAN_INPUT_OPEN &&
325 c->remote_window > 0 &&
326 buffer_len(&c->input) < c->remote_window)
327 FD_SET(c->rfd, readset);
328 if (c->ostate == CHAN_OUTPUT_OPEN ||
329 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
330 if (buffer_len(&c->output) > 0) {
331 FD_SET(c->wfd, writeset);
332 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
333 chan_obuf_empty(c);
334 }
335 }
336 /** XXX check close conditions, too */
337 if (c->efd != -1) {
338 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
339 buffer_len(&c->extended) > 0)
340 FD_SET(c->efd, writeset);
341 else if (c->extended_usage == CHAN_EXTENDED_READ &&
342 buffer_len(&c->extended) < c->remote_window)
343 FD_SET(c->efd, readset);
344 }
345}
346
347void
Damien Millerb38eff82000-04-01 11:09:21 +1000348channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
349{
350 if (buffer_len(&c->input) == 0) {
351 packet_start(SSH_MSG_CHANNEL_CLOSE);
352 packet_put_int(c->remote_id);
353 packet_send();
354 c->type = SSH_CHANNEL_CLOSED;
355 debug("Closing channel %d after input drain.", c->self);
356 }
357}
358
359void
360channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
361{
362 if (buffer_len(&c->output) == 0)
363 channel_free(c->self);
Damien Miller4af51302000-04-16 11:18:38 +1000364 else
Damien Millerb38eff82000-04-01 11:09:21 +1000365 FD_SET(c->sock, writeset);
366}
367
368/*
369 * This is a special state for X11 authentication spoofing. An opened X11
370 * connection (when authentication spoofing is being done) remains in this
371 * state until the first packet has been completely read. The authentication
372 * data in that packet is then substituted by the real data if it matches the
373 * fake data, and the channel is put into normal mode.
Damien Millerbd483e72000-04-30 10:00:53 +1000374 * XXX All this happens at the client side.
Damien Millerb38eff82000-04-01 11:09:21 +1000375 */
376int
377x11_open_helper(Channel *c)
378{
379 unsigned char *ucp;
380 unsigned int proto_len, data_len;
381
382 /* Check if the fixed size part of the packet is in buffer. */
383 if (buffer_len(&c->output) < 12)
384 return 0;
385
386 /* Parse the lengths of variable-length fields. */
387 ucp = (unsigned char *) buffer_ptr(&c->output);
388 if (ucp[0] == 0x42) { /* Byte order MSB first. */
389 proto_len = 256 * ucp[6] + ucp[7];
390 data_len = 256 * ucp[8] + ucp[9];
391 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
392 proto_len = ucp[6] + 256 * ucp[7];
393 data_len = ucp[8] + 256 * ucp[9];
394 } else {
395 debug("Initial X11 packet contains bad byte order byte: 0x%x",
396 ucp[0]);
397 return -1;
398 }
399
400 /* Check if the whole packet is in buffer. */
401 if (buffer_len(&c->output) <
402 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
403 return 0;
404
405 /* Check if authentication protocol matches. */
406 if (proto_len != strlen(x11_saved_proto) ||
407 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
408 debug("X11 connection uses different authentication protocol.");
409 return -1;
410 }
411 /* Check if authentication data matches our fake data. */
412 if (data_len != x11_fake_data_len ||
413 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
414 x11_fake_data, x11_fake_data_len) != 0) {
415 debug("X11 auth data does not match fake data.");
416 return -1;
417 }
418 /* Check fake data length */
419 if (x11_fake_data_len != x11_saved_data_len) {
420 error("X11 fake_data_len %d != saved_data_len %d",
421 x11_fake_data_len, x11_saved_data_len);
422 return -1;
423 }
424 /*
425 * Received authentication protocol and data match
426 * our fake data. Substitute the fake data with real
427 * data.
428 */
429 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
430 x11_saved_data, x11_saved_data_len);
431 return 1;
432}
433
434void
435channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
436{
437 int ret = x11_open_helper(c);
438 if (ret == 1) {
439 /* Start normal processing for the channel. */
440 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000441 channel_pre_open_13(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000442 } else if (ret == -1) {
443 /*
444 * We have received an X11 connection that has bad
445 * authentication information.
446 */
447 log("X11 connection rejected because of wrong authentication.\r\n");
448 buffer_clear(&c->input);
449 buffer_clear(&c->output);
450 close(c->sock);
451 c->sock = -1;
452 c->type = SSH_CHANNEL_CLOSED;
453 packet_start(SSH_MSG_CHANNEL_CLOSE);
454 packet_put_int(c->remote_id);
455 packet_send();
456 }
457}
458
459void
Damien Millerbd483e72000-04-30 10:00:53 +1000460channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
Damien Millerb38eff82000-04-01 11:09:21 +1000461{
462 int ret = x11_open_helper(c);
463 if (ret == 1) {
464 c->type = SSH_CHANNEL_OPEN;
Damien Miller78928792000-04-12 20:17:38 +1000465 channel_pre_open_15(c, readset, writeset);
Damien Millerb38eff82000-04-01 11:09:21 +1000466 } else if (ret == -1) {
467 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
Damien Millerbd483e72000-04-30 10:00:53 +1000468 chan_read_failed(c); /** force close? */
Damien Millerb38eff82000-04-01 11:09:21 +1000469 chan_write_failed(c);
470 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
471 }
472}
473
474/* This is our fake X11 server socket. */
475void
476channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
477{
478 struct sockaddr addr;
479 int newsock, newch;
480 socklen_t addrlen;
481 char buf[16384], *remote_hostname;
Damien Millerbd483e72000-04-30 10:00:53 +1000482 int remote_port;
Damien Millerb38eff82000-04-01 11:09:21 +1000483
484 if (FD_ISSET(c->sock, readset)) {
485 debug("X11 connection requested.");
486 addrlen = sizeof(addr);
487 newsock = accept(c->sock, &addr, &addrlen);
488 if (newsock < 0) {
489 error("accept: %.100s", strerror(errno));
490 return;
491 }
492 remote_hostname = get_remote_hostname(newsock);
Damien Millerbd483e72000-04-30 10:00:53 +1000493 remote_port = get_peer_port(newsock);
Damien Millerb38eff82000-04-01 11:09:21 +1000494 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
Damien Millerbd483e72000-04-30 10:00:53 +1000495 remote_hostname, remote_port);
496
497 newch = channel_new("x11",
498 SSH_CHANNEL_OPENING, newsock, newsock, -1,
499 c->local_window_max, c->local_maxpacket,
500 0, xstrdup(buf));
501 if (compat20) {
502 packet_start(SSH2_MSG_CHANNEL_OPEN);
503 packet_put_cstring("x11");
504 packet_put_int(newch);
505 packet_put_int(c->local_window_max);
506 packet_put_int(c->local_maxpacket);
507 /* originator host and port */
508 packet_put_cstring(remote_hostname);
509 packet_put_int(remote_port);
510 packet_send();
511 } else {
512 packet_start(SSH_SMSG_X11_OPEN);
513 packet_put_int(newch);
514 if (have_hostname_in_open)
515 packet_put_string(buf, strlen(buf));
516 packet_send();
517 }
Damien Millerb38eff82000-04-01 11:09:21 +1000518 xfree(remote_hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000519 }
520}
521
522/*
523 * This socket is listening for connections to a forwarded TCP/IP port.
524 */
525void
526channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
527{
528 struct sockaddr addr;
529 int newsock, newch;
530 socklen_t addrlen;
531 char buf[1024], *remote_hostname;
532 int remote_port;
533
534 if (FD_ISSET(c->sock, readset)) {
535 debug("Connection to port %d forwarding "
536 "to %.100s port %d requested.",
537 c->listening_port, c->path, c->host_port);
538 addrlen = sizeof(addr);
539 newsock = accept(c->sock, &addr, &addrlen);
540 if (newsock < 0) {
541 error("accept: %.100s", strerror(errno));
542 return;
543 }
544 remote_hostname = get_remote_hostname(newsock);
545 remote_port = get_peer_port(newsock);
546 snprintf(buf, sizeof buf,
547 "listen port %d for %.100s port %d, "
548 "connect from %.200s port %d",
549 c->listening_port, c->path, c->host_port,
550 remote_hostname, remote_port);
551 newch = channel_new("direct-tcpip",
552 SSH_CHANNEL_OPENING, newsock, newsock, -1,
553 c->local_window_max, c->local_maxpacket,
554 0, xstrdup(buf));
Damien Miller33b13562000-04-04 14:38:59 +1000555 if (compat20) {
556 packet_start(SSH2_MSG_CHANNEL_OPEN);
557 packet_put_cstring("direct-tcpip");
558 packet_put_int(newch);
559 packet_put_int(c->local_window_max);
560 packet_put_int(c->local_maxpacket);
Damien Miller4af51302000-04-16 11:18:38 +1000561 /* target host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000562 packet_put_string(c->path, strlen(c->path));
563 packet_put_int(c->host_port);
Damien Miller4af51302000-04-16 11:18:38 +1000564 /* originator host and port */
Damien Miller33b13562000-04-04 14:38:59 +1000565 packet_put_cstring(remote_hostname);
566 packet_put_int(remote_port);
567 packet_send();
568 } else {
569 packet_start(SSH_MSG_PORT_OPEN);
570 packet_put_int(newch);
571 packet_put_string(c->path, strlen(c->path));
572 packet_put_int(c->host_port);
573 if (have_hostname_in_open) {
574 packet_put_string(buf, strlen(buf));
575 }
576 packet_send();
Damien Millerb38eff82000-04-01 11:09:21 +1000577 }
Damien Millerb38eff82000-04-01 11:09:21 +1000578 xfree(remote_hostname);
579 }
580}
581
582/*
583 * This is the authentication agent socket listening for connections from
584 * clients.
585 */
586void
587channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
588{
589 struct sockaddr addr;
590 int newsock, newch;
591 socklen_t addrlen;
592
593 if (FD_ISSET(c->sock, readset)) {
594 addrlen = sizeof(addr);
595 newsock = accept(c->sock, &addr, &addrlen);
596 if (newsock < 0) {
597 error("accept from auth socket: %.100s", strerror(errno));
598 return;
599 }
600 newch = channel_allocate(SSH_CHANNEL_OPENING, newsock,
601 xstrdup("accepted auth socket"));
602 packet_start(SSH_SMSG_AGENT_OPEN);
603 packet_put_int(newch);
604 packet_send();
605 }
606}
607
608int
609channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
610{
611 char buf[16*1024];
612 int len;
613
614 if (c->rfd != -1 &&
615 FD_ISSET(c->rfd, readset)) {
616 len = read(c->rfd, buf, sizeof(buf));
617 if (len <= 0) {
Damien Millerbd483e72000-04-30 10:00:53 +1000618 debug("channel %d: read<=0 rfd %d len %d",
Damien Millerb38eff82000-04-01 11:09:21 +1000619 c->self, c->rfd, len);
620 if (compat13) {
621 buffer_consume(&c->output, buffer_len(&c->output));
622 c->type = SSH_CHANNEL_INPUT_DRAINING;
623 debug("Channel %d status set to input draining.", c->self);
624 } else {
625 chan_read_failed(c);
626 }
627 return -1;
628 }
629 buffer_append(&c->input, buf, len);
630 }
631 return 1;
632}
633int
634channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
635{
636 int len;
637
638 /* Send buffered output data to the socket. */
639 if (c->wfd != -1 &&
640 FD_ISSET(c->wfd, writeset) &&
641 buffer_len(&c->output) > 0) {
642 len = write(c->wfd, buffer_ptr(&c->output),
643 buffer_len(&c->output));
644 if (len <= 0) {
645 if (compat13) {
646 buffer_consume(&c->output, buffer_len(&c->output));
647 debug("Channel %d status set to input draining.", c->self);
648 c->type = SSH_CHANNEL_INPUT_DRAINING;
649 } else {
650 chan_write_failed(c);
651 }
652 return -1;
653 }
654 buffer_consume(&c->output, len);
Damien Miller33b13562000-04-04 14:38:59 +1000655 if (compat20 && len > 0) {
656 c->local_consumed += len;
657 }
658 }
659 return 1;
660}
661int
662channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
663{
664 char buf[16*1024];
665 int len;
666
Damien Miller1383bd82000-04-06 12:32:37 +1000667/** XXX handle drain efd, too */
Damien Miller33b13562000-04-04 14:38:59 +1000668 if (c->efd != -1) {
669 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
670 FD_ISSET(c->efd, writeset) &&
671 buffer_len(&c->extended) > 0) {
672 len = write(c->efd, buffer_ptr(&c->extended),
673 buffer_len(&c->extended));
674 debug("channel %d: written %d to efd %d",
675 c->self, len, c->efd);
676 if (len > 0) {
677 buffer_consume(&c->extended, len);
678 c->local_consumed += len;
679 }
680 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
681 FD_ISSET(c->efd, readset)) {
682 len = read(c->efd, buf, sizeof(buf));
683 debug("channel %d: read %d from efd %d",
684 c->self, len, c->efd);
Damien Miller1383bd82000-04-06 12:32:37 +1000685 if (len == 0) {
686 debug("channel %d: closing efd %d",
687 c->self, c->efd);
688 close(c->efd);
689 c->efd = -1;
690 } else if (len > 0)
Damien Miller33b13562000-04-04 14:38:59 +1000691 buffer_append(&c->extended, buf, len);
692 }
693 }
694 return 1;
695}
696int
697channel_check_window(Channel *c, fd_set * readset, fd_set * writeset)
698{
Damien Millerefb4afe2000-04-12 18:45:05 +1000699 if (!(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
Damien Miller33b13562000-04-04 14:38:59 +1000700 c->local_window < c->local_window_max/2 &&
701 c->local_consumed > 0) {
702 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
703 packet_put_int(c->remote_id);
704 packet_put_int(c->local_consumed);
705 packet_send();
706 debug("channel %d: window %d sent adjust %d",
707 c->self, c->local_window,
708 c->local_consumed);
709 c->local_window += c->local_consumed;
710 c->local_consumed = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000711 }
712 return 1;
713}
714
715void
716channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
717{
718 channel_handle_rfd(c, readset, writeset);
719 channel_handle_wfd(c, readset, writeset);
720}
721
722void
Damien Miller33b13562000-04-04 14:38:59 +1000723channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
724{
725 channel_handle_rfd(c, readset, writeset);
726 channel_handle_wfd(c, readset, writeset);
727 channel_handle_efd(c, readset, writeset);
728 channel_check_window(c, readset, writeset);
729}
730
731void
Damien Millerb38eff82000-04-01 11:09:21 +1000732channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
733{
734 int len;
735 /* Send buffered output data to the socket. */
736 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
737 len = write(c->sock, buffer_ptr(&c->output),
738 buffer_len(&c->output));
739 if (len <= 0)
740 buffer_consume(&c->output, buffer_len(&c->output));
741 else
742 buffer_consume(&c->output, len);
743 }
744}
745
746void
Damien Miller33b13562000-04-04 14:38:59 +1000747channel_handler_init_20(void)
748{
749 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
Damien Millerbd483e72000-04-30 10:00:53 +1000750 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Miller33b13562000-04-04 14:38:59 +1000751 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000752 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000753
754 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
755 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
Damien Millerbd483e72000-04-30 10:00:53 +1000756 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
Damien Miller33b13562000-04-04 14:38:59 +1000757}
758
759void
Damien Millerb38eff82000-04-01 11:09:21 +1000760channel_handler_init_13(void)
761{
762 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
763 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
764 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
765 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
766 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
767 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
768 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
769
770 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
771 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
772 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
773 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
774 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
775}
776
777void
778channel_handler_init_15(void)
779{
780 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
Damien Millerbd483e72000-04-30 10:00:53 +1000781 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
Damien Millerb38eff82000-04-01 11:09:21 +1000782 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
783 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
784 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
785
786 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
787 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
788 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
789 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
790}
791
792void
793channel_handler_init(void)
794{
795 int i;
796 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
797 channel_pre[i] = NULL;
798 channel_post[i] = NULL;
799 }
Damien Miller33b13562000-04-04 14:38:59 +1000800 if (compat20)
801 channel_handler_init_20();
802 else if (compat13)
Damien Millerb38eff82000-04-01 11:09:21 +1000803 channel_handler_init_13();
804 else
805 channel_handler_init_15();
806}
807
Damien Miller4af51302000-04-16 11:18:38 +1000808void
Damien Millerb38eff82000-04-01 11:09:21 +1000809channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
810{
811 static int did_init = 0;
812 int i;
813 Channel *c;
814
815 if (!did_init) {
816 channel_handler_init();
817 did_init = 1;
818 }
819 for (i = 0; i < channels_alloc; i++) {
820 c = &channels[i];
821 if (c->type == SSH_CHANNEL_FREE)
822 continue;
823 if (ftab[c->type] == NULL)
824 continue;
825 (*ftab[c->type])(c, readset, writeset);
Damien Miller33b13562000-04-04 14:38:59 +1000826 chan_delete_if_full_closed(c);
Damien Millerb38eff82000-04-01 11:09:21 +1000827 }
828}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000829
Damien Miller4af51302000-04-16 11:18:38 +1000830void
Damien Miller95def091999-11-25 00:26:21 +1100831channel_prepare_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000832{
Damien Millerb38eff82000-04-01 11:09:21 +1000833 channel_handler(channel_pre, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834}
835
Damien Miller4af51302000-04-16 11:18:38 +1000836void
Damien Miller95def091999-11-25 00:26:21 +1100837channel_after_select(fd_set * readset, fd_set * writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000838{
Damien Millerb38eff82000-04-01 11:09:21 +1000839 channel_handler(channel_post, readset, writeset);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000840}
841
842/* If there is data to send to the connection, send some of it now. */
843
Damien Miller4af51302000-04-16 11:18:38 +1000844void
Damien Miller95def091999-11-25 00:26:21 +1100845channel_output_poll()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846{
Damien Miller95def091999-11-25 00:26:21 +1100847 int len, i;
Damien Millerb38eff82000-04-01 11:09:21 +1000848 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000849
Damien Miller95def091999-11-25 00:26:21 +1100850 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +1000851 c = &channels[i];
Damien Miller34132e52000-01-14 15:45:46 +1100852
Damien Miller5428f641999-11-25 11:54:57 +1100853 /* We are only interested in channels that can have buffered incoming data. */
Damien Miller34132e52000-01-14 15:45:46 +1100854 if (compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000855 if (c->type != SSH_CHANNEL_OPEN &&
856 c->type != SSH_CHANNEL_INPUT_DRAINING)
Damien Miller34132e52000-01-14 15:45:46 +1100857 continue;
858 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000859 if (c->type != SSH_CHANNEL_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +1100860 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000861 if (c->istate != CHAN_INPUT_OPEN &&
862 c->istate != CHAN_INPUT_WAIT_DRAIN)
Damien Miller34132e52000-01-14 15:45:46 +1100863 continue;
864 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000865 if (compat20 &&
866 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
Damien Miller33b13562000-04-04 14:38:59 +1000867 debug("channel: %d: no data after CLOSE", c->self);
868 continue;
869 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870
Damien Miller95def091999-11-25 00:26:21 +1100871 /* Get the amount of buffered data for this channel. */
Damien Millerb38eff82000-04-01 11:09:21 +1000872 len = buffer_len(&c->input);
Damien Miller95def091999-11-25 00:26:21 +1100873 if (len > 0) {
Damien Miller5428f641999-11-25 11:54:57 +1100874 /* Send some data for the other side over the secure connection. */
Damien Miller33b13562000-04-04 14:38:59 +1000875 if (compat20) {
876 if (len > c->remote_window)
877 len = c->remote_window;
878 if (len > c->remote_maxpacket)
879 len = c->remote_maxpacket;
Damien Miller95def091999-11-25 00:26:21 +1100880 } else {
Damien Miller33b13562000-04-04 14:38:59 +1000881 if (packet_is_interactive()) {
882 if (len > 1024)
883 len = 512;
884 } else {
885 /* Keep the packets at reasonable size. */
886 if (len > packet_get_maxsize()/2)
887 len = packet_get_maxsize()/2;
888 }
Damien Miller95def091999-11-25 00:26:21 +1100889 }
Damien Millerb38eff82000-04-01 11:09:21 +1000890 if (len > 0) {
Damien Miller33b13562000-04-04 14:38:59 +1000891 packet_start(compat20 ?
892 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
Damien Millerb38eff82000-04-01 11:09:21 +1000893 packet_put_int(c->remote_id);
894 packet_put_string(buffer_ptr(&c->input), len);
895 packet_send();
896 buffer_consume(&c->input, len);
897 c->remote_window -= len;
Damien Miller33b13562000-04-04 14:38:59 +1000898 debug("channel %d: send data len %d", c->self, len);
Damien Millerb38eff82000-04-01 11:09:21 +1000899 }
900 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
Damien Miller95def091999-11-25 00:26:21 +1100901 if (compat13)
902 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
Damien Miller5428f641999-11-25 11:54:57 +1100903 /*
904 * input-buffer is empty and read-socket shutdown:
905 * tell peer, that we will not send more data: send IEOF
906 */
Damien Millerb38eff82000-04-01 11:09:21 +1000907 chan_ibuf_empty(c);
Damien Miller95def091999-11-25 00:26:21 +1100908 }
Damien Miller33b13562000-04-04 14:38:59 +1000909 /* Send extended data, i.e. stderr */
910 if (compat20 &&
911 c->remote_window > 0 &&
912 (len = buffer_len(&c->extended)) > 0 &&
913 c->extended_usage == CHAN_EXTENDED_READ) {
914 if (len > c->remote_window)
915 len = c->remote_window;
916 if (len > c->remote_maxpacket)
917 len = c->remote_maxpacket;
918 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
919 packet_put_int(c->remote_id);
920 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
921 packet_put_string(buffer_ptr(&c->extended), len);
922 packet_send();
923 buffer_consume(&c->extended, len);
924 c->remote_window -= len;
925 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927}
928
Damien Miller5428f641999-11-25 11:54:57 +1100929/*
930 * This is called when a packet of type CHANNEL_DATA has just been received.
931 * The message type has already been consumed, but channel number and data is
932 * still there.
933 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller4af51302000-04-16 11:18:38 +1000935void
Damien Millerb38eff82000-04-01 11:09:21 +1000936channel_input_data(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937{
Damien Miller34132e52000-01-14 15:45:46 +1100938 int id;
Damien Miller95def091999-11-25 00:26:21 +1100939 char *data;
940 unsigned int data_len;
Damien Millerb38eff82000-04-01 11:09:21 +1000941 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000942
Damien Miller95def091999-11-25 00:26:21 +1100943 /* Get the channel number and verify it. */
Damien Miller34132e52000-01-14 15:45:46 +1100944 id = packet_get_int();
Damien Millerb38eff82000-04-01 11:09:21 +1000945 c = channel_lookup(id);
946 if (c == NULL)
Damien Miller34132e52000-01-14 15:45:46 +1100947 packet_disconnect("Received data for nonexistent channel %d.", id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000948
Damien Miller95def091999-11-25 00:26:21 +1100949 /* Ignore any data for non-open channels (might happen on close) */
Damien Millerb38eff82000-04-01 11:09:21 +1000950 if (c->type != SSH_CHANNEL_OPEN &&
951 c->type != SSH_CHANNEL_X11_OPEN)
Damien Miller34132e52000-01-14 15:45:46 +1100952 return;
953
954 /* same for protocol 1.5 if output end is no longer open */
Damien Millerb38eff82000-04-01 11:09:21 +1000955 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
Damien Miller95def091999-11-25 00:26:21 +1100956 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller95def091999-11-25 00:26:21 +1100958 /* Get the data. */
959 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +1000960 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +1000961
Damien Miller33b13562000-04-04 14:38:59 +1000962 if (compat20){
963 if (data_len > c->local_maxpacket) {
964 log("channel %d: rcvd big packet %d, maxpack %d",
965 c->self, data_len, c->local_maxpacket);
966 }
967 if (data_len > c->local_window) {
968 log("channel %d: rcvd too much data %d, win %d",
969 c->self, data_len, c->local_window);
970 xfree(data);
971 return;
972 }
973 c->local_window -= data_len;
974 }else{
975 packet_integrity_check(plen, 4 + 4 + data_len, type);
976 }
Damien Millerb38eff82000-04-01 11:09:21 +1000977 buffer_append(&c->output, data, data_len);
Damien Miller95def091999-11-25 00:26:21 +1100978 xfree(data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979}
Damien Miller4af51302000-04-16 11:18:38 +1000980void
Damien Miller33b13562000-04-04 14:38:59 +1000981channel_input_extended_data(int type, int plen)
982{
983 int id;
984 int tcode;
985 char *data;
986 unsigned int data_len;
987 Channel *c;
988
989 /* Get the channel number and verify it. */
990 id = packet_get_int();
991 c = channel_lookup(id);
992
993 if (c == NULL)
994 packet_disconnect("Received extended_data for bad channel %d.", id);
995 if (c->type != SSH_CHANNEL_OPEN) {
996 log("channel %d: ext data for non open", id);
997 return;
998 }
999 tcode = packet_get_int();
1000 if (c->efd == -1 ||
1001 c->extended_usage != CHAN_EXTENDED_WRITE ||
1002 tcode != SSH2_EXTENDED_DATA_STDERR) {
1003 log("channel %d: bad ext data", c->self);
1004 return;
1005 }
1006 data = packet_get_string(&data_len);
Damien Miller4af51302000-04-16 11:18:38 +10001007 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001008 if (data_len > c->local_window) {
1009 log("channel %d: rcvd too much extended_data %d, win %d",
1010 c->self, data_len, c->local_window);
1011 xfree(data);
1012 return;
1013 }
1014 debug("channel %d: rcvd ext data %d", c->self, data_len);
1015 c->local_window -= data_len;
1016 buffer_append(&c->extended, data, data_len);
1017 xfree(data);
1018}
1019
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020
Damien Miller5428f641999-11-25 11:54:57 +11001021/*
1022 * Returns true if no channel has too much buffered data, and false if one or
1023 * more channel is overfull.
1024 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001025
Damien Miller4af51302000-04-16 11:18:38 +10001026int
Damien Miller95def091999-11-25 00:26:21 +11001027channel_not_very_much_buffered_data()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001028{
Damien Miller95def091999-11-25 00:26:21 +11001029 unsigned int i;
Damien Millerb38eff82000-04-01 11:09:21 +10001030 Channel *c;
Damien Miller95def091999-11-25 00:26:21 +11001031
1032 for (i = 0; i < channels_alloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001033 c = &channels[i];
1034 if (c->type == SSH_CHANNEL_OPEN) {
Damien Miller33b13562000-04-04 14:38:59 +10001035 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
Damien Millerb38eff82000-04-01 11:09:21 +10001036 debug("channel %d: big input buffer %d",
1037 c->self, buffer_len(&c->input));
Damien Miller95def091999-11-25 00:26:21 +11001038 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001039 }
1040 if (buffer_len(&c->output) > packet_get_maxsize()) {
1041 debug("channel %d: big output buffer %d",
1042 c->self, buffer_len(&c->output));
Damien Miller95def091999-11-25 00:26:21 +11001043 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001044 }
Damien Miller95def091999-11-25 00:26:21 +11001045 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001046 }
Damien Miller95def091999-11-25 00:26:21 +11001047 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001048}
1049
Damien Miller4af51302000-04-16 11:18:38 +10001050void
Damien Millerb38eff82000-04-01 11:09:21 +10001051channel_input_ieof(int type, int plen)
1052{
1053 int id;
1054 Channel *c;
1055
1056 packet_integrity_check(plen, 4, type);
1057
1058 id = packet_get_int();
1059 c = channel_lookup(id);
1060 if (c == NULL)
1061 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1062 chan_rcvd_ieof(c);
1063}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001064
Damien Miller4af51302000-04-16 11:18:38 +10001065void
Damien Millerb38eff82000-04-01 11:09:21 +10001066channel_input_close(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067{
Damien Millerb38eff82000-04-01 11:09:21 +10001068 int id;
1069 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070
Damien Millerb38eff82000-04-01 11:09:21 +10001071 packet_integrity_check(plen, 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001072
Damien Millerb38eff82000-04-01 11:09:21 +10001073 id = packet_get_int();
1074 c = channel_lookup(id);
1075 if (c == NULL)
1076 packet_disconnect("Received close for nonexistent channel %d.", id);
Damien Miller5428f641999-11-25 11:54:57 +11001077
1078 /*
1079 * Send a confirmation that we have closed the channel and no more
1080 * data is coming for it.
1081 */
Damien Miller95def091999-11-25 00:26:21 +11001082 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
Damien Millerb38eff82000-04-01 11:09:21 +10001083 packet_put_int(c->remote_id);
Damien Miller95def091999-11-25 00:26:21 +11001084 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085
Damien Miller5428f641999-11-25 11:54:57 +11001086 /*
1087 * If the channel is in closed state, we have sent a close request,
1088 * and the other side will eventually respond with a confirmation.
1089 * Thus, we cannot free the channel here, because then there would be
1090 * no-one to receive the confirmation. The channel gets freed when
1091 * the confirmation arrives.
1092 */
Damien Millerb38eff82000-04-01 11:09:21 +10001093 if (c->type != SSH_CHANNEL_CLOSED) {
Damien Miller5428f641999-11-25 11:54:57 +11001094 /*
1095 * Not a closed channel - mark it as draining, which will
1096 * cause it to be freed later.
1097 */
Damien Millerb38eff82000-04-01 11:09:21 +10001098 buffer_consume(&c->input, buffer_len(&c->input));
1099 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
Damien Miller95def091999-11-25 00:26:21 +11001100 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101}
1102
Damien Millerb38eff82000-04-01 11:09:21 +10001103/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
Damien Miller4af51302000-04-16 11:18:38 +10001104void
Damien Millerb38eff82000-04-01 11:09:21 +10001105channel_input_oclose(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001106{
Damien Millerb38eff82000-04-01 11:09:21 +10001107 int id = packet_get_int();
1108 Channel *c = channel_lookup(id);
1109 packet_integrity_check(plen, 4, type);
1110 if (c == NULL)
1111 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1112 chan_rcvd_oclose(c);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001113}
1114
Damien Miller4af51302000-04-16 11:18:38 +10001115void
Damien Millerb38eff82000-04-01 11:09:21 +10001116channel_input_close_confirmation(int type, int plen)
1117{
1118 int id = packet_get_int();
1119 Channel *c = channel_lookup(id);
1120
Damien Miller4af51302000-04-16 11:18:38 +10001121 packet_done();
Damien Millerb38eff82000-04-01 11:09:21 +10001122 if (c == NULL)
1123 packet_disconnect("Received close confirmation for "
1124 "out-of-range channel %d.", id);
1125 if (c->type != SSH_CHANNEL_CLOSED)
1126 packet_disconnect("Received close confirmation for "
1127 "non-closed channel %d (type %d).", id, c->type);
1128 channel_free(c->self);
1129}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001130
Damien Miller4af51302000-04-16 11:18:38 +10001131void
Damien Millerb38eff82000-04-01 11:09:21 +10001132channel_input_open_confirmation(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001133{
Damien Millerb38eff82000-04-01 11:09:21 +10001134 int id, remote_id;
1135 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001136
Damien Miller33b13562000-04-04 14:38:59 +10001137 if (!compat20)
1138 packet_integrity_check(plen, 4 + 4, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001139
Damien Millerb38eff82000-04-01 11:09:21 +10001140 id = packet_get_int();
1141 c = channel_lookup(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001142
Damien Millerb38eff82000-04-01 11:09:21 +10001143 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1144 packet_disconnect("Received open confirmation for "
1145 "non-opening channel %d.", id);
1146 remote_id = packet_get_int();
Damien Miller5428f641999-11-25 11:54:57 +11001147 /* Record the remote channel number and mark that the channel is now open. */
Damien Millerb38eff82000-04-01 11:09:21 +10001148 c->remote_id = remote_id;
1149 c->type = SSH_CHANNEL_OPEN;
Damien Miller33b13562000-04-04 14:38:59 +10001150
1151 if (compat20) {
1152 c->remote_window = packet_get_int();
1153 c->remote_maxpacket = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001154 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001155 if (c->cb_fn != NULL && c->cb_event == type) {
1156 debug("callback start");
1157 c->cb_fn(c->self, c->cb_arg);
1158 debug("callback done");
1159 }
1160 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1161 c->remote_window, c->remote_maxpacket);
1162 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163}
1164
Damien Miller4af51302000-04-16 11:18:38 +10001165void
Damien Millerb38eff82000-04-01 11:09:21 +10001166channel_input_open_failure(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001167{
Damien Millerb38eff82000-04-01 11:09:21 +10001168 int id;
1169 Channel *c;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001170
Damien Miller33b13562000-04-04 14:38:59 +10001171 if (!compat20)
1172 packet_integrity_check(plen, 4, type);
Damien Millerb38eff82000-04-01 11:09:21 +10001173
1174 id = packet_get_int();
1175 c = channel_lookup(id);
1176
1177 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1178 packet_disconnect("Received open failure for "
1179 "non-opening channel %d.", id);
Damien Miller33b13562000-04-04 14:38:59 +10001180 if (compat20) {
1181 int reason = packet_get_int();
1182 char *msg = packet_get_string(NULL);
Damien Miller4af51302000-04-16 11:18:38 +10001183 char *lang = packet_get_string(NULL);
Damien Miller33b13562000-04-04 14:38:59 +10001184 log("channel_open_failure: %d: reason %d: %s", id, reason, msg);
Damien Miller4af51302000-04-16 11:18:38 +10001185 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001186 xfree(msg);
Damien Miller4af51302000-04-16 11:18:38 +10001187 xfree(lang);
Damien Miller33b13562000-04-04 14:38:59 +10001188 }
Damien Miller95def091999-11-25 00:26:21 +11001189 /* Free the channel. This will also close the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001190 channel_free(id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001191}
1192
Damien Miller33b13562000-04-04 14:38:59 +10001193void
1194channel_input_channel_request(int type, int plen)
1195{
1196 int id;
1197 Channel *c;
1198
1199 id = packet_get_int();
1200 c = channel_lookup(id);
1201
1202 if (c == NULL ||
1203 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1204 packet_disconnect("Received request for "
1205 "non-open channel %d.", id);
1206 if (c->cb_fn != NULL && c->cb_event == type) {
1207 debug("callback start");
1208 c->cb_fn(c->self, c->cb_arg);
1209 debug("callback done");
1210 } else {
1211 char *service = packet_get_string(NULL);
1212 debug("channel: %d rcvd request for %s", c->self, service);
1213debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
1214 xfree(service);
1215 }
1216}
1217
Damien Miller4af51302000-04-16 11:18:38 +10001218void
Damien Miller33b13562000-04-04 14:38:59 +10001219channel_input_window_adjust(int type, int plen)
1220{
1221 Channel *c;
1222 int id, adjust;
1223
1224 if (!compat20)
1225 return;
1226
1227 /* Get the channel number and verify it. */
1228 id = packet_get_int();
1229 c = channel_lookup(id);
1230
1231 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1232 log("Received window adjust for "
1233 "non-open channel %d.", id);
1234 return;
1235 }
1236 adjust = packet_get_int();
Damien Miller4af51302000-04-16 11:18:38 +10001237 packet_done();
Damien Miller33b13562000-04-04 14:38:59 +10001238 debug("channel %d: rcvd adjust %d", id, adjust);
1239 c->remote_window += adjust;
1240}
1241
Damien Miller5428f641999-11-25 11:54:57 +11001242/*
1243 * Stops listening for channels, and removes any unix domain sockets that we
1244 * might have.
1245 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001246
Damien Miller4af51302000-04-16 11:18:38 +10001247void
Damien Miller95def091999-11-25 00:26:21 +11001248channel_stop_listening()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001249{
Damien Miller95def091999-11-25 00:26:21 +11001250 int i;
1251 for (i = 0; i < channels_alloc; i++) {
1252 switch (channels[i].type) {
1253 case SSH_CHANNEL_AUTH_SOCKET:
1254 close(channels[i].sock);
1255 remove(channels[i].path);
1256 channel_free(i);
1257 break;
1258 case SSH_CHANNEL_PORT_LISTENER:
1259 case SSH_CHANNEL_X11_LISTENER:
1260 close(channels[i].sock);
1261 channel_free(i);
1262 break;
1263 default:
1264 break;
1265 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267}
1268
Damien Miller5428f641999-11-25 11:54:57 +11001269/*
1270 * Closes the sockets of all channels. This is used to close extra file
1271 * descriptors after a fork.
1272 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Damien Miller4af51302000-04-16 11:18:38 +10001274void
Damien Miller95def091999-11-25 00:26:21 +11001275channel_close_all()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276{
Damien Miller95def091999-11-25 00:26:21 +11001277 int i;
1278 for (i = 0; i < channels_alloc; i++) {
1279 if (channels[i].type != SSH_CHANNEL_FREE)
1280 close(channels[i].sock);
1281 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001282}
1283
1284/* Returns the maximum file descriptor number used by the channels. */
1285
Damien Miller4af51302000-04-16 11:18:38 +10001286int
Damien Miller95def091999-11-25 00:26:21 +11001287channel_max_fd()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001288{
Damien Miller95def091999-11-25 00:26:21 +11001289 return channel_max_fd_value;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001290}
1291
1292/* Returns true if any channel is still open. */
1293
Damien Miller4af51302000-04-16 11:18:38 +10001294int
Damien Miller95def091999-11-25 00:26:21 +11001295channel_still_open()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296{
Damien Miller95def091999-11-25 00:26:21 +11001297 unsigned int i;
1298 for (i = 0; i < channels_alloc; i++)
1299 switch (channels[i].type) {
1300 case SSH_CHANNEL_FREE:
1301 case SSH_CHANNEL_X11_LISTENER:
1302 case SSH_CHANNEL_PORT_LISTENER:
1303 case SSH_CHANNEL_CLOSED:
1304 case SSH_CHANNEL_AUTH_SOCKET:
1305 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001306 case SSH_CHANNEL_LARVAL:
1307 if (!compat20)
1308 fatal("cannot happen: SSH_CHANNEL_LARVAL");
1309 continue;
Damien Miller95def091999-11-25 00:26:21 +11001310 case SSH_CHANNEL_OPENING:
1311 case SSH_CHANNEL_OPEN:
1312 case SSH_CHANNEL_X11_OPEN:
1313 return 1;
1314 case SSH_CHANNEL_INPUT_DRAINING:
1315 case SSH_CHANNEL_OUTPUT_DRAINING:
1316 if (!compat13)
1317 fatal("cannot happen: OUT_DRAIN");
1318 return 1;
1319 default:
1320 fatal("channel_still_open: bad channel type %d", channels[i].type);
1321 /* NOTREACHED */
1322 }
1323 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001324}
1325
Damien Miller5428f641999-11-25 11:54:57 +11001326/*
1327 * Returns a message describing the currently open forwarded connections,
1328 * suitable for sending to the client. The message contains crlf pairs for
1329 * newlines.
1330 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001331
Damien Miller95def091999-11-25 00:26:21 +11001332char *
1333channel_open_message()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001334{
Damien Miller95def091999-11-25 00:26:21 +11001335 Buffer buffer;
1336 int i;
1337 char buf[512], *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001338
Damien Miller95def091999-11-25 00:26:21 +11001339 buffer_init(&buffer);
1340 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341 buffer_append(&buffer, buf, strlen(buf));
Damien Miller95def091999-11-25 00:26:21 +11001342 for (i = 0; i < channels_alloc; i++) {
1343 Channel *c = &channels[i];
1344 switch (c->type) {
1345 case SSH_CHANNEL_FREE:
1346 case SSH_CHANNEL_X11_LISTENER:
1347 case SSH_CHANNEL_PORT_LISTENER:
1348 case SSH_CHANNEL_CLOSED:
1349 case SSH_CHANNEL_AUTH_SOCKET:
1350 continue;
Damien Miller33b13562000-04-04 14:38:59 +10001351 case SSH_CHANNEL_LARVAL:
Damien Miller95def091999-11-25 00:26:21 +11001352 case SSH_CHANNEL_OPENING:
1353 case SSH_CHANNEL_OPEN:
1354 case SSH_CHANNEL_X11_OPEN:
1355 case SSH_CHANNEL_INPUT_DRAINING:
1356 case SSH_CHANNEL_OUTPUT_DRAINING:
Damien Millerb38eff82000-04-01 11:09:21 +10001357 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 +11001358 c->self, c->remote_name,
1359 c->type, c->remote_id,
1360 c->istate, buffer_len(&c->input),
Damien Millerb38eff82000-04-01 11:09:21 +10001361 c->ostate, buffer_len(&c->output),
1362 c->rfd, c->wfd);
Damien Miller95def091999-11-25 00:26:21 +11001363 buffer_append(&buffer, buf, strlen(buf));
1364 continue;
1365 default:
Damien Millerb38eff82000-04-01 11:09:21 +10001366 fatal("channel_open_message: bad channel type %d", c->type);
Damien Miller95def091999-11-25 00:26:21 +11001367 /* NOTREACHED */
1368 }
1369 }
1370 buffer_append(&buffer, "\0", 1);
1371 cp = xstrdup(buffer_ptr(&buffer));
1372 buffer_free(&buffer);
1373 return cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374}
1375
Damien Miller5428f641999-11-25 11:54:57 +11001376/*
1377 * Initiate forwarding of connections to local port "port" through the secure
1378 * channel to host:port from remote side.
1379 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001380
Damien Miller4af51302000-04-16 11:18:38 +10001381void
Damien Milleraae6c611999-12-06 11:47:28 +11001382channel_request_local_forwarding(u_short port, const char *host,
Damien Millera34a28b1999-12-14 10:47:15 +11001383 u_short host_port, int gateway_ports)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384{
Damien Miller34132e52000-01-14 15:45:46 +11001385 int success, ch, sock, on = 1;
1386 struct addrinfo hints, *ai, *aitop;
1387 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller5428f641999-11-25 11:54:57 +11001388 struct linger linger;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389
Damien Miller95def091999-11-25 00:26:21 +11001390 if (strlen(host) > sizeof(channels[0].path) - 1)
1391 packet_disconnect("Forward host name too long.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
Damien Miller5428f641999-11-25 11:54:57 +11001393 /*
Damien Miller34132e52000-01-14 15:45:46 +11001394 * getaddrinfo returns a loopback address if the hostname is
1395 * set to NULL and hints.ai_flags is not AI_PASSIVE
Damien Miller5428f641999-11-25 11:54:57 +11001396 */
Damien Miller34132e52000-01-14 15:45:46 +11001397 memset(&hints, 0, sizeof(hints));
1398 hints.ai_family = IPv4or6;
1399 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
1400 hints.ai_socktype = SOCK_STREAM;
1401 snprintf(strport, sizeof strport, "%d", port);
1402 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
1403 packet_disconnect("getaddrinfo: fatal error");
Damien Miller5428f641999-11-25 11:54:57 +11001404
Damien Miller34132e52000-01-14 15:45:46 +11001405 success = 0;
1406 for (ai = aitop; ai; ai = ai->ai_next) {
1407 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1408 continue;
1409 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1410 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1411 error("channel_request_local_forwarding: getnameinfo failed");
1412 continue;
1413 }
1414 /* Create a port to listen for the host. */
1415 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1416 if (sock < 0) {
1417 /* this is no error since kernel may not support ipv6 */
1418 verbose("socket: %.100s", strerror(errno));
1419 continue;
1420 }
1421 /*
1422 * Set socket options. We would like the socket to disappear
1423 * as soon as it has been closed for whatever reason.
1424 */
1425 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
1426 linger.l_onoff = 1;
1427 linger.l_linger = 5;
1428 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
1429 debug("Local forwarding listening on %s port %s.", ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +11001430
Damien Miller34132e52000-01-14 15:45:46 +11001431 /* Bind the socket to the address. */
1432 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1433 /* address can be in use ipv6 address is already bound */
Damien Miller3c7eeb22000-03-03 22:35:33 +11001434 if (!ai->ai_next)
1435 error("bind: %.100s", strerror(errno));
1436 else
1437 verbose("bind: %.100s", strerror(errno));
1438
Damien Miller34132e52000-01-14 15:45:46 +11001439 close(sock);
1440 continue;
1441 }
1442 /* Start listening for connections on the socket. */
1443 if (listen(sock, 5) < 0) {
1444 error("listen: %.100s", strerror(errno));
1445 close(sock);
1446 continue;
1447 }
1448 /* Allocate a channel number for the socket. */
Damien Millerb38eff82000-04-01 11:09:21 +10001449 ch = channel_new(
1450 "port listener", SSH_CHANNEL_PORT_LISTENER,
1451 sock, sock, -1,
Damien Millerbd483e72000-04-30 10:00:53 +10001452 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
Damien Millerb38eff82000-04-01 11:09:21 +10001453 0, xstrdup("port listener"));
Damien Miller34132e52000-01-14 15:45:46 +11001454 strlcpy(channels[ch].path, host, sizeof(channels[ch].path));
1455 channels[ch].host_port = host_port;
1456 channels[ch].listening_port = port;
1457 success = 1;
1458 }
1459 if (success == 0)
1460 packet_disconnect("cannot listen port: %d", port);
1461 freeaddrinfo(aitop);
Damien Miller95def091999-11-25 00:26:21 +11001462}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001463
Damien Miller5428f641999-11-25 11:54:57 +11001464/*
1465 * Initiate forwarding of connections to port "port" on remote host through
1466 * the secure channel to host:port from local side.
1467 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001468
Damien Miller4af51302000-04-16 11:18:38 +10001469void
Damien Millerb38eff82000-04-01 11:09:21 +10001470channel_request_remote_forwarding(u_short listen_port, const char *host_to_connect,
1471 u_short port_to_connect)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001472{
Damien Miller95def091999-11-25 00:26:21 +11001473 int payload_len;
1474 /* Record locally that connection to this host/port is permitted. */
1475 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1476 fatal("channel_request_remote_forwarding: too many forwards");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001477
Damien Millerb38eff82000-04-01 11:09:21 +10001478 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
1479 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
1480 permitted_opens[num_permitted_opens].listen_port = listen_port;
Damien Miller95def091999-11-25 00:26:21 +11001481 num_permitted_opens++;
1482
1483 /* Send the forward request to the remote side. */
Damien Miller33b13562000-04-04 14:38:59 +10001484 if (compat20) {
1485 const char *address_to_bind = "0.0.0.0";
1486 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1487 packet_put_cstring("tcpip-forward");
1488 packet_put_char(0); /* boolean: want reply */
1489 packet_put_cstring(address_to_bind);
1490 packet_put_int(listen_port);
1491 } else {
1492 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
Damien Miller33b13562000-04-04 14:38:59 +10001493 packet_put_int(listen_port);
Damien Miller8bb73be2000-04-19 16:26:12 +10001494 packet_put_cstring(host_to_connect);
1495 packet_put_int(port_to_connect);
Damien Miller33b13562000-04-04 14:38:59 +10001496 packet_send();
1497 packet_write_wait();
1498 /*
1499 * Wait for response from the remote side. It will send a disconnect
1500 * message on failure, and we will never see it here.
1501 */
1502 packet_read_expect(&payload_len, SSH_SMSG_SUCCESS);
1503 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001504}
1505
Damien Miller5428f641999-11-25 11:54:57 +11001506/*
1507 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
1508 * listening for the port, and sends back a success reply (or disconnect
1509 * message if there was an error). This never returns if there was an error.
1510 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001511
Damien Miller4af51302000-04-16 11:18:38 +10001512void
Damien Miller95def091999-11-25 00:26:21 +11001513channel_input_port_forward_request(int is_root)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514{
Damien Milleraae6c611999-12-06 11:47:28 +11001515 u_short port, host_port;
Damien Miller95def091999-11-25 00:26:21 +11001516 char *hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001517
Damien Miller95def091999-11-25 00:26:21 +11001518 /* Get arguments from the packet. */
1519 port = packet_get_int();
1520 hostname = packet_get_string(NULL);
1521 host_port = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001522
Damien Miller5428f641999-11-25 11:54:57 +11001523 /*
1524 * Check that an unprivileged user is not trying to forward a
1525 * privileged port.
1526 */
Damien Miller95def091999-11-25 00:26:21 +11001527 if (port < IPPORT_RESERVED && !is_root)
1528 packet_disconnect("Requested forwarding of port %d but user is not root.",
1529 port);
Damien Millera34a28b1999-12-14 10:47:15 +11001530 /*
1531 * Initiate forwarding,
1532 * bind port to localhost only (gateway ports == 0).
1533 */
1534 channel_request_local_forwarding(port, hostname, host_port, 0);
Damien Miller95def091999-11-25 00:26:21 +11001535
1536 /* Free the argument string. */
1537 xfree(hostname);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001538}
1539
Damien Millerb38eff82000-04-01 11:09:21 +10001540/* XXX move to aux.c */
1541int
1542channel_connect_to(const char *host, u_short host_port)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001543{
Damien Miller34132e52000-01-14 15:45:46 +11001544 struct addrinfo hints, *ai, *aitop;
1545 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1546 int gaierr;
Damien Millerb38eff82000-04-01 11:09:21 +10001547 int sock = -1;
Damien Miller95def091999-11-25 00:26:21 +11001548
Damien Miller34132e52000-01-14 15:45:46 +11001549 memset(&hints, 0, sizeof(hints));
1550 hints.ai_family = IPv4or6;
1551 hints.ai_socktype = SOCK_STREAM;
1552 snprintf(strport, sizeof strport, "%d", host_port);
1553 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
1554 error("%.100s: unknown host (%s)", host, gai_strerror(gaierr));
Damien Millerb38eff82000-04-01 11:09:21 +10001555 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001556 }
Damien Miller34132e52000-01-14 15:45:46 +11001557 for (ai = aitop; ai; ai = ai->ai_next) {
1558 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1559 continue;
1560 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1561 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
Damien Millerb38eff82000-04-01 11:09:21 +10001562 error("channel_connect_to: getnameinfo failed");
Damien Miller34132e52000-01-14 15:45:46 +11001563 continue;
1564 }
1565 /* Create the socket. */
1566 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1567 if (sock < 0) {
1568 error("socket: %.100s", strerror(errno));
1569 continue;
1570 }
1571 /* Connect to the host/port. */
1572 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1573 error("connect %.100s port %s: %.100s", ntop, strport,
1574 strerror(errno));
1575 close(sock);
1576 continue; /* fail -- try next */
1577 }
1578 break; /* success */
1579
1580 }
1581 freeaddrinfo(aitop);
Damien Miller34132e52000-01-14 15:45:46 +11001582 if (!ai) {
1583 error("connect %.100s port %d: failed.", host, host_port);
Damien Millerb38eff82000-04-01 11:09:21 +10001584 return -1;
1585 }
1586 /* success */
1587 return sock;
1588}
1589
1590/*
1591 * This is called after receiving PORT_OPEN message. This attempts to
1592 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
1593 * or CHANNEL_OPEN_FAILURE.
1594 */
1595
Damien Miller4af51302000-04-16 11:18:38 +10001596void
Damien Millerb38eff82000-04-01 11:09:21 +10001597channel_input_port_open(int type, int plen)
1598{
1599 u_short host_port;
1600 char *host, *originator_string;
1601 int remote_channel, sock = -1, newch, i, denied;
1602 unsigned int host_len, originator_len;
1603
1604 /* Get remote channel number. */
1605 remote_channel = packet_get_int();
1606
1607 /* Get host name to connect to. */
1608 host = packet_get_string(&host_len);
1609
1610 /* Get port to connect to. */
1611 host_port = packet_get_int();
1612
1613 /* Get remote originator name. */
1614 if (have_hostname_in_open) {
1615 originator_string = packet_get_string(&originator_len);
1616 originator_len += 4; /* size of packet_int */
1617 } else {
1618 originator_string = xstrdup("unknown (remote did not supply name)");
1619 originator_len = 0; /* no originator supplied */
Damien Miller95def091999-11-25 00:26:21 +11001620 }
Damien Miller34132e52000-01-14 15:45:46 +11001621
Damien Millerb38eff82000-04-01 11:09:21 +10001622 packet_integrity_check(plen,
1623 4 + 4 + host_len + 4 + originator_len, SSH_MSG_PORT_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001624
Damien Millerb38eff82000-04-01 11:09:21 +10001625 /* Check if opening that port is permitted. */
1626 denied = 0;
1627 if (!all_opens_permitted) {
1628 /* Go trough all permitted ports. */
1629 for (i = 0; i < num_permitted_opens; i++)
1630 if (permitted_opens[i].port_to_connect == host_port &&
1631 strcmp(permitted_opens[i].host_to_connect, host) == 0)
1632 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001633
Damien Millerb38eff82000-04-01 11:09:21 +10001634 /* Check if we found the requested port among those permitted. */
1635 if (i >= num_permitted_opens) {
1636 /* The port is not permitted. */
1637 log("Received request to connect to %.100s:%d, but the request was denied.",
1638 host, host_port);
1639 denied = 1;
1640 }
1641 }
1642 sock = denied ? -1 : channel_connect_to(host, host_port);
1643 if (sock > 0) {
1644 /* Allocate a channel for this connection. */
1645 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, originator_string);
1646 channels[newch].remote_id = remote_channel;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001647
Damien Millerb38eff82000-04-01 11:09:21 +10001648 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1649 packet_put_int(remote_channel);
1650 packet_put_int(newch);
1651 packet_send();
1652 } else {
1653 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1654 packet_put_int(remote_channel);
1655 packet_send();
1656 }
Damien Miller95def091999-11-25 00:26:21 +11001657 xfree(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001658}
1659
Damien Miller5428f641999-11-25 11:54:57 +11001660/*
1661 * Creates an internet domain socket for listening for X11 connections.
1662 * Returns a suitable value for the DISPLAY variable, or NULL if an error
1663 * occurs.
1664 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001665
Damien Miller34132e52000-01-14 15:45:46 +11001666#define NUM_SOCKS 10
1667
Damien Miller95def091999-11-25 00:26:21 +11001668char *
Damien Millera34a28b1999-12-14 10:47:15 +11001669x11_create_display_inet(int screen_number, int x11_display_offset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670{
Damien Milleraae6c611999-12-06 11:47:28 +11001671 int display_number, sock;
1672 u_short port;
Damien Miller34132e52000-01-14 15:45:46 +11001673 struct addrinfo hints, *ai, *aitop;
1674 char strport[NI_MAXSERV];
1675 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
1676 char display[512];
Damien Miller95def091999-11-25 00:26:21 +11001677 char hostname[MAXHOSTNAMELEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001678
Damien Millera34a28b1999-12-14 10:47:15 +11001679 for (display_number = x11_display_offset;
Damien Miller95def091999-11-25 00:26:21 +11001680 display_number < MAX_DISPLAYS;
1681 display_number++) {
1682 port = 6000 + display_number;
Damien Miller34132e52000-01-14 15:45:46 +11001683 memset(&hints, 0, sizeof(hints));
1684 hints.ai_family = IPv4or6;
1685 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
1686 hints.ai_socktype = SOCK_STREAM;
1687 snprintf(strport, sizeof strport, "%d", port);
1688 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
1689 error("getaddrinfo: %.100s", gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +11001690 return NULL;
1691 }
Damien Miller34132e52000-01-14 15:45:46 +11001692 for (ai = aitop; ai; ai = ai->ai_next) {
1693 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1694 continue;
1695 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1696 if (sock < 0) {
Damien Millere2192732000-01-17 13:22:55 +11001697 if (errno != EINVAL) {
1698 error("socket: %.100s", strerror(errno));
1699 return NULL;
1700 } else {
1701 debug("Socket family %d not supported [X11 disp create]", ai->ai_family);
1702 continue;
1703 }
Damien Miller34132e52000-01-14 15:45:46 +11001704 }
1705 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1706 debug("bind port %d: %.100s", port, strerror(errno));
1707 shutdown(sock, SHUT_RDWR);
1708 close(sock);
Damien Miller3c7eeb22000-03-03 22:35:33 +11001709
1710 if (ai->ai_next)
1711 continue;
1712
Damien Miller34132e52000-01-14 15:45:46 +11001713 for (n = 0; n < num_socks; n++) {
1714 shutdown(socks[n], SHUT_RDWR);
1715 close(socks[n]);
1716 }
1717 num_socks = 0;
1718 break;
1719 }
1720 socks[num_socks++] = sock;
Damien Miller7bcb0892000-03-11 20:45:40 +11001721#ifndef DONT_TRY_OTHER_AF
Damien Miller34132e52000-01-14 15:45:46 +11001722 if (num_socks == NUM_SOCKS)
1723 break;
Damien Miller7bcb0892000-03-11 20:45:40 +11001724#else
1725 break;
1726#endif
Damien Miller95def091999-11-25 00:26:21 +11001727 }
Damien Miller34132e52000-01-14 15:45:46 +11001728 if (num_socks > 0)
1729 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001730 }
Damien Miller95def091999-11-25 00:26:21 +11001731 if (display_number >= MAX_DISPLAYS) {
1732 error("Failed to allocate internet-domain X11 display socket.");
1733 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001734 }
Damien Miller95def091999-11-25 00:26:21 +11001735 /* Start listening for connections on the socket. */
Damien Miller34132e52000-01-14 15:45:46 +11001736 for (n = 0; n < num_socks; n++) {
1737 sock = socks[n];
1738 if (listen(sock, 5) < 0) {
1739 error("listen: %.100s", strerror(errno));
1740 shutdown(sock, SHUT_RDWR);
1741 close(sock);
1742 return NULL;
1743 }
Damien Miller95def091999-11-25 00:26:21 +11001744 }
Damien Miller34132e52000-01-14 15:45:46 +11001745
Damien Miller95def091999-11-25 00:26:21 +11001746 /* Set up a suitable value for the DISPLAY variable. */
Damien Miller76112de1999-12-21 11:18:08 +11001747
Damien Miller95def091999-11-25 00:26:21 +11001748 if (gethostname(hostname, sizeof(hostname)) < 0)
1749 fatal("gethostname: %.100s", strerror(errno));
Damien Miller76112de1999-12-21 11:18:08 +11001750
1751#ifdef IPADDR_IN_DISPLAY
1752 /*
1753 * HPUX detects the local hostname in the DISPLAY variable and tries
1754 * to set up a shared memory connection to the server, which it
1755 * incorrectly supposes to be local.
1756 *
1757 * The workaround - as used in later $$H and other programs - is
1758 * is to set display to the host's IP address.
1759 */
1760 {
1761 struct hostent *he;
1762 struct in_addr my_addr;
1763
1764 he = gethostbyname(hostname);
1765 if (he == NULL) {
1766 error("[X11-broken-fwd-hostname-workaround] Could not get "
1767 "IP address for hostname %s.", hostname);
1768
1769 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
1770 "Could not get IP address for hostname %s.", hostname);
1771
1772 shutdown(sock, SHUT_RDWR);
1773 close(sock);
1774
1775 return NULL;
1776 }
1777
1778 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
1779
1780 /* Set DISPLAY to <ip address>:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001781 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
Damien Miller76112de1999-12-21 11:18:08 +11001782 display_number, screen_number);
1783 }
1784#else /* IPADDR_IN_DISPLAY */
1785 /* Just set DISPLAY to hostname:screen.display */
Damien Miller34132e52000-01-14 15:45:46 +11001786 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
Damien Miller76112de1999-12-21 11:18:08 +11001787 display_number, screen_number);
1788#endif /* IPADDR_IN_DISPLAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001789
Damien Miller34132e52000-01-14 15:45:46 +11001790 /* Allocate a channel for each socket. */
1791 for (n = 0; n < num_socks; n++) {
1792 sock = socks[n];
Damien Millerbd483e72000-04-30 10:00:53 +10001793 (void) channel_new("x11 listener",
1794 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
1795 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
1796 0, xstrdup("X11 inet listener"));
Damien Miller34132e52000-01-14 15:45:46 +11001797 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001798
Damien Miller95def091999-11-25 00:26:21 +11001799 /* Return a suitable value for the DISPLAY environment variable. */
Damien Miller34132e52000-01-14 15:45:46 +11001800 return xstrdup(display);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001801}
1802
1803#ifndef X_UNIX_PATH
1804#define X_UNIX_PATH "/tmp/.X11-unix/X"
1805#endif
1806
1807static
1808int
Damien Miller81b25cf1999-12-07 16:47:28 +11001809connect_local_xsocket(unsigned int dnr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001810{
Damien Miller95def091999-11-25 00:26:21 +11001811 static const char *const x_sockets[] = {
1812 X_UNIX_PATH "%u",
1813 "/var/X/.X11-unix/X" "%u",
1814 "/usr/spool/sockets/X11/" "%u",
1815 NULL
1816 };
1817 int sock;
1818 struct sockaddr_un addr;
1819 const char *const * path;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001820
Damien Miller95def091999-11-25 00:26:21 +11001821 for (path = x_sockets; *path; ++path) {
1822 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1823 if (sock < 0)
1824 error("socket: %.100s", strerror(errno));
1825 memset(&addr, 0, sizeof(addr));
1826 addr.sun_family = AF_UNIX;
1827 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
1828 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
1829 return sock;
1830 close(sock);
1831 }
1832 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
1833 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001834}
1835
Damien Millerbd483e72000-04-30 10:00:53 +10001836int
1837x11_connect_display(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001838{
Damien Millerbd483e72000-04-30 10:00:53 +10001839 int display_number, sock = 0;
Damien Miller95def091999-11-25 00:26:21 +11001840 const char *display;
Damien Millerbd483e72000-04-30 10:00:53 +10001841 char buf[1024], *cp;
Damien Miller34132e52000-01-14 15:45:46 +11001842 struct addrinfo hints, *ai, *aitop;
1843 char strport[NI_MAXSERV];
1844 int gaierr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845
Damien Miller95def091999-11-25 00:26:21 +11001846 /* Try to open a socket for the local X server. */
1847 display = getenv("DISPLAY");
1848 if (!display) {
1849 error("DISPLAY not set.");
Damien Millerbd483e72000-04-30 10:00:53 +10001850 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001851 }
Damien Miller5428f641999-11-25 11:54:57 +11001852 /*
1853 * Now we decode the value of the DISPLAY variable and make a
1854 * connection to the real X server.
1855 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001856
Damien Miller5428f641999-11-25 11:54:57 +11001857 /*
1858 * Check if it is a unix domain socket. Unix domain displays are in
1859 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
1860 */
Damien Miller95def091999-11-25 00:26:21 +11001861 if (strncmp(display, "unix:", 5) == 0 ||
1862 display[0] == ':') {
1863 /* Connect to the unix domain socket. */
1864 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
1865 error("Could not parse display number from DISPLAY: %.100s",
1866 display);
Damien Millerbd483e72000-04-30 10:00:53 +10001867 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001868 }
1869 /* Create a socket. */
1870 sock = connect_local_xsocket(display_number);
1871 if (sock < 0)
Damien Millerbd483e72000-04-30 10:00:53 +10001872 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001873
1874 /* OK, we now have a connection to the display. */
Damien Millerbd483e72000-04-30 10:00:53 +10001875 return sock;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001876 }
Damien Miller5428f641999-11-25 11:54:57 +11001877 /*
1878 * Connect to an inet socket. The DISPLAY value is supposedly
1879 * hostname:d[.s], where hostname may also be numeric IP address.
1880 */
Damien Miller95def091999-11-25 00:26:21 +11001881 strncpy(buf, display, sizeof(buf));
1882 buf[sizeof(buf) - 1] = 0;
1883 cp = strchr(buf, ':');
1884 if (!cp) {
1885 error("Could not find ':' in DISPLAY: %.100s", display);
Damien Millerbd483e72000-04-30 10:00:53 +10001886 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001887 }
Damien Miller95def091999-11-25 00:26:21 +11001888 *cp = 0;
Damien Miller5428f641999-11-25 11:54:57 +11001889 /* buf now contains the host name. But first we parse the display number. */
Damien Miller95def091999-11-25 00:26:21 +11001890 if (sscanf(cp + 1, "%d", &display_number) != 1) {
1891 error("Could not parse display number from DISPLAY: %.100s",
1892 display);
Damien Millerbd483e72000-04-30 10:00:53 +10001893 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001894 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001895
Damien Miller34132e52000-01-14 15:45:46 +11001896 /* Look up the host address */
1897 memset(&hints, 0, sizeof(hints));
1898 hints.ai_family = IPv4or6;
1899 hints.ai_socktype = SOCK_STREAM;
1900 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
1901 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
1902 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
Damien Millerbd483e72000-04-30 10:00:53 +10001903 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001904 }
Damien Miller34132e52000-01-14 15:45:46 +11001905 for (ai = aitop; ai; ai = ai->ai_next) {
1906 /* Create a socket. */
1907 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1908 if (sock < 0) {
1909 debug("socket: %.100s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +10001910 continue;
1911 }
1912 /* Connect it to the display. */
1913 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1914 debug("connect %.100s port %d: %.100s", buf,
1915 6000 + display_number, strerror(errno));
1916 close(sock);
1917 continue;
1918 }
1919 /* Success */
1920 break;
Damien Miller34132e52000-01-14 15:45:46 +11001921 }
Damien Miller34132e52000-01-14 15:45:46 +11001922 freeaddrinfo(aitop);
1923 if (!ai) {
Damien Miller4af51302000-04-16 11:18:38 +10001924 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
Damien Miller34132e52000-01-14 15:45:46 +11001925 strerror(errno));
Damien Millerbd483e72000-04-30 10:00:53 +10001926 return -1;
Damien Miller95def091999-11-25 00:26:21 +11001927 }
Damien Millerbd483e72000-04-30 10:00:53 +10001928 return sock;
1929}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001930
Damien Millerbd483e72000-04-30 10:00:53 +10001931/*
1932 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
1933 * the remote channel number. We should do whatever we want, and respond
1934 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
1935 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001936
Damien Millerbd483e72000-04-30 10:00:53 +10001937void
1938x11_input_open(int type, int plen)
1939{
1940 int remote_channel, sock = 0, newch;
1941 char *remote_host;
1942 unsigned int remote_len;
Damien Miller95def091999-11-25 00:26:21 +11001943
Damien Millerbd483e72000-04-30 10:00:53 +10001944 /* Get remote channel number. */
1945 remote_channel = packet_get_int();
Damien Miller95def091999-11-25 00:26:21 +11001946
Damien Millerbd483e72000-04-30 10:00:53 +10001947 /* Get remote originator name. */
1948 if (have_hostname_in_open) {
1949 remote_host = packet_get_string(&remote_len);
1950 remote_len += 4;
1951 } else {
1952 remote_host = xstrdup("unknown (remote did not supply name)");
1953 remote_len = 0;
1954 }
1955
1956 debug("Received X11 open request.");
1957 packet_integrity_check(plen, 4 + remote_len, SSH_SMSG_X11_OPEN);
1958
1959 /* Obtain a connection to the real X display. */
1960 sock = x11_connect_display();
1961 if (sock == -1) {
1962 /* Send refusal to the remote host. */
1963 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
1964 packet_put_int(remote_channel);
1965 packet_send();
1966 } else {
1967 /* Allocate a channel for this connection. */
1968 newch = channel_allocate(
1969 (x11_saved_proto == NULL) ?
1970 SSH_CHANNEL_OPEN : SSH_CHANNEL_X11_OPEN,
1971 sock, remote_host);
1972 channels[newch].remote_id = remote_channel;
1973
1974 /* Send a confirmation to the remote host. */
1975 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
1976 packet_put_int(remote_channel);
1977 packet_put_int(newch);
1978 packet_send();
1979 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001980}
1981
Damien Miller5428f641999-11-25 11:54:57 +11001982/*
1983 * Requests forwarding of X11 connections, generates fake authentication
1984 * data, and enables authentication spoofing.
1985 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001986
Damien Miller4af51302000-04-16 11:18:38 +10001987void
Damien Millerbd483e72000-04-30 10:00:53 +10001988x11_request_forwarding_with_spoofing(int client_session_id,
1989 const char *proto, const char *data)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001990{
Damien Miller95def091999-11-25 00:26:21 +11001991 unsigned int data_len = (unsigned int) strlen(data) / 2;
1992 unsigned int i, value;
1993 char *new_data;
1994 int screen_number;
1995 const char *cp;
1996 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001997
Damien Miller95def091999-11-25 00:26:21 +11001998 cp = getenv("DISPLAY");
1999 if (cp)
2000 cp = strchr(cp, ':');
2001 if (cp)
2002 cp = strchr(cp, '.');
2003 if (cp)
2004 screen_number = atoi(cp + 1);
2005 else
2006 screen_number = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002007
Damien Miller95def091999-11-25 00:26:21 +11002008 /* Save protocol name. */
2009 x11_saved_proto = xstrdup(proto);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002010
Damien Miller5428f641999-11-25 11:54:57 +11002011 /*
2012 * Extract real authentication data and generate fake data of the
2013 * same length.
2014 */
Damien Miller95def091999-11-25 00:26:21 +11002015 x11_saved_data = xmalloc(data_len);
2016 x11_fake_data = xmalloc(data_len);
2017 for (i = 0; i < data_len; i++) {
2018 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2019 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2020 if (i % 4 == 0)
2021 rand = arc4random();
2022 x11_saved_data[i] = value;
2023 x11_fake_data[i] = rand & 0xff;
2024 rand >>= 8;
2025 }
2026 x11_saved_data_len = data_len;
2027 x11_fake_data_len = data_len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002028
Damien Miller95def091999-11-25 00:26:21 +11002029 /* Convert the fake data into hex. */
2030 new_data = xmalloc(2 * data_len + 1);
2031 for (i = 0; i < data_len; i++)
2032 sprintf(new_data + 2 * i, "%02x", (unsigned char) x11_fake_data[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002033
Damien Miller95def091999-11-25 00:26:21 +11002034 /* Send the request packet. */
Damien Millerbd483e72000-04-30 10:00:53 +10002035 if (compat20) {
2036 channel_request_start(client_session_id, "x11-req", 0);
2037 packet_put_char(0); /* XXX bool single connection */
2038 } else {
2039 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2040 }
2041 packet_put_cstring(proto);
2042 packet_put_cstring(new_data);
Damien Miller95def091999-11-25 00:26:21 +11002043 packet_put_int(screen_number);
2044 packet_send();
2045 packet_write_wait();
2046 xfree(new_data);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002047}
2048
2049/* Sends a message to the server to request authentication fd forwarding. */
2050
Damien Miller4af51302000-04-16 11:18:38 +10002051void
Damien Miller95def091999-11-25 00:26:21 +11002052auth_request_forwarding()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002053{
Damien Miller95def091999-11-25 00:26:21 +11002054 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2055 packet_send();
2056 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002057}
2058
Damien Miller5428f641999-11-25 11:54:57 +11002059/*
2060 * Returns the name of the forwarded authentication socket. Returns NULL if
2061 * there is no forwarded authentication socket. The returned value points to
2062 * a static buffer.
2063 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002064
Damien Miller95def091999-11-25 00:26:21 +11002065char *
2066auth_get_socket_name()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002067{
Damien Miller95def091999-11-25 00:26:21 +11002068 return channel_forwarded_auth_socket_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002069}
2070
2071/* removes the agent forwarding socket */
2072
Damien Miller4af51302000-04-16 11:18:38 +10002073void
Damien Miller95def091999-11-25 00:26:21 +11002074cleanup_socket(void)
2075{
2076 remove(channel_forwarded_auth_socket_name);
2077 rmdir(channel_forwarded_auth_socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002078}
2079
Damien Miller5428f641999-11-25 11:54:57 +11002080/*
2081 * This if called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
2082 * This starts forwarding authentication requests.
2083 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002084
Damien Miller4af51302000-04-16 11:18:38 +10002085void
Damien Miller95def091999-11-25 00:26:21 +11002086auth_input_request_forwarding(struct passwd * pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002087{
Damien Miller95def091999-11-25 00:26:21 +11002088 int sock, newch;
2089 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002090
Damien Miller95def091999-11-25 00:26:21 +11002091 if (auth_get_socket_name() != NULL)
2092 fatal("Protocol error: authentication forwarding requested twice.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002093
Damien Miller95def091999-11-25 00:26:21 +11002094 /* Temporarily drop privileged uid for mkdir/bind. */
2095 temporarily_use_uid(pw->pw_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002096
Damien Miller95def091999-11-25 00:26:21 +11002097 /* Allocate a buffer for the socket name, and format the name. */
2098 channel_forwarded_auth_socket_name = xmalloc(MAX_SOCKET_NAME);
2099 channel_forwarded_auth_socket_dir = xmalloc(MAX_SOCKET_NAME);
2100 strlcpy(channel_forwarded_auth_socket_dir, "/tmp/ssh-XXXXXXXX", MAX_SOCKET_NAME);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002101
Damien Miller95def091999-11-25 00:26:21 +11002102 /* Create private directory for socket */
2103 if (mkdtemp(channel_forwarded_auth_socket_dir) == NULL)
2104 packet_disconnect("mkdtemp: %.100s", strerror(errno));
2105 snprintf(channel_forwarded_auth_socket_name, MAX_SOCKET_NAME, "%s/agent.%d",
2106 channel_forwarded_auth_socket_dir, (int) getpid());
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002107
Damien Miller95def091999-11-25 00:26:21 +11002108 if (atexit(cleanup_socket) < 0) {
2109 int saved = errno;
2110 cleanup_socket();
2111 packet_disconnect("socket: %.100s", strerror(saved));
2112 }
2113 /* Create the socket. */
2114 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2115 if (sock < 0)
2116 packet_disconnect("socket: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002117
Damien Miller95def091999-11-25 00:26:21 +11002118 /* Bind it to the name. */
2119 memset(&sunaddr, 0, sizeof(sunaddr));
2120 sunaddr.sun_family = AF_UNIX;
2121 strncpy(sunaddr.sun_path, channel_forwarded_auth_socket_name,
2122 sizeof(sunaddr.sun_path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002123
Damien Miller95def091999-11-25 00:26:21 +11002124 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2125 packet_disconnect("bind: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002126
Damien Miller95def091999-11-25 00:26:21 +11002127 /* Restore the privileged uid. */
2128 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002129
Damien Miller95def091999-11-25 00:26:21 +11002130 /* Start listening on the socket. */
2131 if (listen(sock, 5) < 0)
2132 packet_disconnect("listen: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002133
Damien Miller95def091999-11-25 00:26:21 +11002134 /* Allocate a channel for the authentication agent socket. */
2135 newch = channel_allocate(SSH_CHANNEL_AUTH_SOCKET, sock,
2136 xstrdup("auth socket"));
Damien Miller037a0dc1999-12-07 15:38:31 +11002137 strlcpy(channels[newch].path, channel_forwarded_auth_socket_name,
2138 sizeof(channels[newch].path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002139}
2140
2141/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2142
Damien Miller4af51302000-04-16 11:18:38 +10002143void
Damien Millerb38eff82000-04-01 11:09:21 +10002144auth_input_open_request(int type, int plen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002145{
Damien Miller95def091999-11-25 00:26:21 +11002146 int remch, sock, newch;
2147 char *dummyname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002148
Damien Millerb38eff82000-04-01 11:09:21 +10002149 packet_integrity_check(plen, 4, type);
2150
Damien Miller95def091999-11-25 00:26:21 +11002151 /* Read the remote channel number from the message. */
2152 remch = packet_get_int();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002153
Damien Miller5428f641999-11-25 11:54:57 +11002154 /*
2155 * Get a connection to the local authentication agent (this may again
2156 * get forwarded).
2157 */
Damien Miller95def091999-11-25 00:26:21 +11002158 sock = ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002159
Damien Miller5428f641999-11-25 11:54:57 +11002160 /*
2161 * If we could not connect the agent, send an error message back to
2162 * the server. This should never happen unless the agent dies,
2163 * because authentication forwarding is only enabled if we have an
2164 * agent.
2165 */
Damien Miller95def091999-11-25 00:26:21 +11002166 if (sock < 0) {
2167 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2168 packet_put_int(remch);
2169 packet_send();
2170 return;
2171 }
2172 debug("Forwarding authentication connection.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002173
Damien Miller5428f641999-11-25 11:54:57 +11002174 /*
2175 * Dummy host name. This will be freed when the channel is freed; it
2176 * will still be valid in the packet_put_string below since the
2177 * channel cannot yet be freed at that point.
2178 */
Damien Miller95def091999-11-25 00:26:21 +11002179 dummyname = xstrdup("authentication agent connection");
2180
2181 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, dummyname);
2182 channels[newch].remote_id = remch;
2183
2184 /* Send a confirmation to the remote host. */
2185 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2186 packet_put_int(remch);
2187 packet_put_int(newch);
2188 packet_send();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002189}
Damien Miller33b13562000-04-04 14:38:59 +10002190
2191void
Damien Millerbd483e72000-04-30 10:00:53 +10002192channel_start_open(int id)
Damien Miller33b13562000-04-04 14:38:59 +10002193{
2194 Channel *c = channel_lookup(id);
2195 if (c == NULL) {
2196 log("channel_open: %d: bad id", id);
2197 return;
2198 }
Damien Millerbd483e72000-04-30 10:00:53 +10002199 debug("send channel open %d", id);
Damien Miller33b13562000-04-04 14:38:59 +10002200 packet_start(SSH2_MSG_CHANNEL_OPEN);
2201 packet_put_cstring(c->ctype);
2202 packet_put_int(c->self);
2203 packet_put_int(c->local_window);
2204 packet_put_int(c->local_maxpacket);
Damien Millerbd483e72000-04-30 10:00:53 +10002205}
2206void
2207channel_open(int id)
2208{
2209 /* XXX REMOVE ME */
2210 channel_start_open(id);
Damien Miller33b13562000-04-04 14:38:59 +10002211 packet_send();
Damien Miller33b13562000-04-04 14:38:59 +10002212}
2213void
2214channel_request(int id, char *service, int wantconfirm)
2215{
2216 channel_request_start(id, service, wantconfirm);
2217 packet_send();
2218 debug("channel request %d: %s", id, service) ;
2219}
2220void
2221channel_request_start(int id, char *service, int wantconfirm)
2222{
2223 Channel *c = channel_lookup(id);
2224 if (c == NULL) {
2225 log("channel_request: %d: bad id", id);
2226 return;
2227 }
2228 packet_start(SSH2_MSG_CHANNEL_REQUEST);
2229 packet_put_int(c->remote_id);
2230 packet_put_cstring(service);
2231 packet_put_char(wantconfirm);
2232}
2233void
2234channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
2235{
2236 Channel *c = channel_lookup(id);
2237 if (c == NULL) {
2238 log("channel_register_callback: %d: bad id", id);
2239 return;
2240 }
2241 c->cb_event = mtype;
2242 c->cb_fn = fn;
2243 c->cb_arg = arg;
2244}
2245void
2246channel_register_cleanup(int id, channel_callback_fn *fn)
2247{
2248 Channel *c = channel_lookup(id);
2249 if (c == NULL) {
2250 log("channel_register_cleanup: %d: bad id", id);
2251 return;
2252 }
2253 c->dettach_user = fn;
2254}
2255void
2256channel_cancel_cleanup(int id)
2257{
2258 Channel *c = channel_lookup(id);
2259 if (c == NULL) {
2260 log("channel_cancel_cleanup: %d: bad id", id);
2261 return;
2262 }
2263 c->dettach_user = NULL;
2264}
2265
2266void
2267channel_set_fds(int id, int rfd, int wfd, int efd, int extusage)
2268{
2269 Channel *c = channel_lookup(id);
2270 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
2271 fatal("channel_activate for non-larval channel %d.", id);
2272 if (rfd > channel_max_fd_value)
2273 channel_max_fd_value = rfd;
2274 if (wfd > channel_max_fd_value)
2275 channel_max_fd_value = wfd;
2276 if (efd > channel_max_fd_value)
2277 channel_max_fd_value = efd;
2278 c->type = SSH_CHANNEL_OPEN;
2279 c->rfd = rfd;
2280 c->wfd = wfd;
2281 c->efd = efd;
2282 c->extended_usage = extusage;
2283 /* XXX window size? */
2284 c->local_window = c->local_window_max = c->local_maxpacket/2;
2285 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2286 packet_put_int(c->remote_id);
2287 packet_put_int(c->local_window);
2288 packet_send();
2289}