]> andersk Git - openssh.git/blame - channels.c
- markus@cvs.openbsd.org 2001/04/17 12:55:04
[openssh.git] / channels.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * This file contains functions for generic socket connection forwarding.
6 * There is also code for initiating connection forwarding for X11 connections,
7 * arbitrary tcp/ip connections, and the authentication agent connection.
6ae2364d 8 *
bcbf86ec 9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
15 *
7e7327a1 16 * SSH2 support added by Markus Friedl.
bcbf86ec 17 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
18 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 40 */
8efc0c15 41
42#include "includes.h"
53b8fe68 43RCSID("$OpenBSD: channels.c,v 1.109 2001/04/17 12:55:03 markus Exp $");
42f11eb2 44
45#include <openssl/rsa.h>
46#include <openssl/dsa.h>
8efc0c15 47
48#include "ssh.h"
42f11eb2 49#include "ssh1.h"
50#include "ssh2.h"
8efc0c15 51#include "packet.h"
52#include "xmalloc.h"
53#include "buffer.h"
0490e609 54#include "bufaux.h"
8efc0c15 55#include "uidswap.h"
42f11eb2 56#include "log.h"
57#include "misc.h"
8efc0c15 58#include "channels.h"
59#include "nchan.h"
60#include "compat.h"
42f11eb2 61#include "canohost.h"
4c8722d9 62#include "key.h"
63#include "authfd.h"
7e7327a1 64
8efc0c15 65/* Maximum number of fake X11 displays to try. */
66#define MAX_DISPLAYS 1000
67
68/* Max len of agent socket */
69#define MAX_SOCKET_NAME 100
70
aa3378df 71/*
72 * Pointer to an array containing all allocated channels. The array is
73 * dynamically extended as needed.
74 */
8efc0c15 75static Channel *channels = NULL;
76
aa3378df 77/*
78 * Size of the channel array. All slots of the array must always be
79 * initialized (at least the type field); unused slots are marked with type
80 * SSH_CHANNEL_FREE.
81 */
8efc0c15 82static int channels_alloc = 0;
83
aa3378df 84/*
85 * Maximum file descriptor value used in any of the channels. This is
86 * updated in channel_allocate.
87 */
39929cdb 88static int channel_max_fd = 0;
8efc0c15 89
90/* Name and directory of socket for authentication agent forwarding. */
91static char *channel_forwarded_auth_socket_name = NULL;
5260325f 92static char *channel_forwarded_auth_socket_dir = NULL;
8efc0c15 93
94/* Saved X11 authentication protocol name. */
95char *x11_saved_proto = NULL;
96
97/* Saved X11 authentication data. This is the real data. */
98char *x11_saved_data = NULL;
1e3b8b07 99u_int x11_saved_data_len = 0;
8efc0c15 100
aa3378df 101/*
102 * Fake X11 authentication data. This is what the server will be sending us;
103 * we should replace any occurrences of this by the real data.
104 */
8efc0c15 105char *x11_fake_data = NULL;
1e3b8b07 106u_int x11_fake_data_len;
8efc0c15 107
aa3378df 108/*
109 * Data structure for storing which hosts are permitted for forward requests.
110 * The local sides of any remote forwards are stored in this array to prevent
111 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
112 * network (which might be behind a firewall).
113 */
5260325f 114typedef struct {
7368a6c8 115 char *host_to_connect; /* Connect to 'host'. */
116 u_short port_to_connect; /* Connect to 'port'. */
117 u_short listen_port; /* Remote side should listen port number. */
8efc0c15 118} ForwardPermission;
119
120/* List of all permitted host/port pairs to connect. */
121static ForwardPermission permitted_opens[SSH_MAX_FORWARDS_PER_DIRECTION];
122/* Number of permitted host/port pairs in the array. */
123static int num_permitted_opens = 0;
aa3378df 124/*
125 * If this is true, all opens are permitted. This is the case on the server
126 * on which we have to trust the client anyway, and the user could do
127 * anything after logging in anyway.
128 */
8efc0c15 129static int all_opens_permitted = 0;
130
131/* This is set to true if both sides support SSH_PROTOFLAG_HOST_IN_FWD_OPEN. */
132static int have_hostname_in_open = 0;
133
42f11eb2 134/* AF_UNSPEC or AF_INET or AF_INET6 */
135extern int IPv4or6;
136
0490e609 137void port_open_helper(Channel *c, char *rtype);
138
8efc0c15 139/* Sets specific protocol options. */
140
6ae2364d 141void
5260325f 142channel_set_options(int hostname_in_open)
8efc0c15 143{
5260325f 144 have_hostname_in_open = hostname_in_open;
8efc0c15 145}
146
7368a6c8 147/* lookup channel by id */
148
149Channel *
150channel_lookup(int id)
151{
152 Channel *c;
3e98362e 153 if (id < 0 || id > channels_alloc) {
7368a6c8 154 log("channel_lookup: %d: bad id", id);
155 return NULL;
156 }
157 c = &channels[id];
158 if (c->type == SSH_CHANNEL_FREE) {
159 log("channel_lookup: %d: bad id: channel free", id);
160 return NULL;
161 }
162 return c;
163}
164
aa3378df 165/*
1d1ffb87 166 * Register filedescriptors for a channel, used when allocating a channel or
0fbe8c74 167 * when the channel consumer/producer is ready, e.g. shell exec'd
aa3378df 168 */
8efc0c15 169
0fbe8c74 170void
a22aff1f 171channel_register_fds(Channel *c, int rfd, int wfd, int efd,
172 int extusage, int nonblock)
8efc0c15 173{
5260325f 174 /* Update the maximum file descriptor value. */
39929cdb 175 channel_max_fd = MAX(channel_max_fd, rfd);
176 channel_max_fd = MAX(channel_max_fd, wfd);
177 channel_max_fd = MAX(channel_max_fd, efd);
178
aa3378df 179 /* XXX set close-on-exec -markus */
1d1ffb87 180
0fbe8c74 181 c->rfd = rfd;
182 c->wfd = wfd;
183 c->sock = (rfd == wfd) ? rfd : -1;
184 c->efd = efd;
185 c->extended_usage = extusage;
a22aff1f 186
0ae4fe1d 187 /* XXX ugly hack: nonblock is only set by the server */
188 if (nonblock && isatty(c->rfd)) {
94dfb550 189 debug("channel %d: rfd %d isatty", c->self, c->rfd);
0ae4fe1d 190 c->isatty = 1;
191 if (!isatty(c->wfd)) {
94dfb550 192 error("channel %d: wfd %d is not a tty?",
0ae4fe1d 193 c->self, c->wfd);
194 }
195 } else {
196 c->isatty = 0;
197 }
198
a22aff1f 199 /* enable nonblocking mode */
200 if (nonblock) {
201 if (rfd != -1)
202 set_nonblock(rfd);
203 if (wfd != -1)
204 set_nonblock(wfd);
205 if (efd != -1)
206 set_nonblock(efd);
207 }
0fbe8c74 208}
209
210/*
211 * Allocate a new channel object and set its type and socket. This will cause
212 * remote_name to be freed.
213 */
214
215int
216channel_new(char *ctype, int type, int rfd, int wfd, int efd,
a22aff1f 217 int window, int maxpack, int extusage, char *remote_name, int nonblock)
0fbe8c74 218{
219 int i, found;
220 Channel *c;
5260325f 221
222 /* Do initial allocation if this is the first call. */
223 if (channels_alloc == 0) {
7e7327a1 224 chan_init();
5260325f 225 channels_alloc = 10;
226 channels = xmalloc(channels_alloc * sizeof(Channel));
227 for (i = 0; i < channels_alloc; i++)
228 channels[i].type = SSH_CHANNEL_FREE;
aa3378df 229 /*
230 * Kludge: arrange a call to channel_stop_listening if we
231 * terminate with fatal().
232 */
5260325f 233 fatal_add_cleanup((void (*) (void *)) channel_stop_listening, NULL);
234 }
235 /* Try to find a free slot where to put the new channel. */
236 for (found = -1, i = 0; i < channels_alloc; i++)
237 if (channels[i].type == SSH_CHANNEL_FREE) {
238 /* Found a free slot. */
239 found = i;
240 break;
241 }
242 if (found == -1) {
aa3378df 243 /* There are no free slots. Take last+1 slot and expand the array. */
5260325f 244 found = channels_alloc;
245 channels_alloc += 10;
de273eef 246 debug2("channel: expanding %d", channels_alloc);
5260325f 247 channels = xrealloc(channels, channels_alloc * sizeof(Channel));
248 for (i = found; i < channels_alloc; i++)
249 channels[i].type = SSH_CHANNEL_FREE;
250 }
251 /* Initialize and return new channel number. */
252 c = &channels[found];
253 buffer_init(&c->input);
254 buffer_init(&c->output);
7368a6c8 255 buffer_init(&c->extended);
5260325f 256 chan_init_iostates(c);
a22aff1f 257 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
5260325f 258 c->self = found;
259 c->type = type;
7368a6c8 260 c->ctype = ctype;
0b242b12 261 c->local_window = window;
262 c->local_window_max = window;
263 c->local_consumed = 0;
264 c->local_maxpacket = maxpack;
5260325f 265 c->remote_id = -1;
266 c->remote_name = remote_name;
7368a6c8 267 c->remote_window = 0;
268 c->remote_maxpacket = 0;
269 c->cb_fn = NULL;
270 c->cb_arg = NULL;
271 c->cb_event = 0;
272 c->dettach_user = NULL;
2e73a022 273 c->input_filter = NULL;
5260325f 274 debug("channel %d: new [%s]", found, remote_name);
275 return found;
8efc0c15 276}
0fbe8c74 277/* old interface XXX */
6ae2364d 278int
7368a6c8 279channel_allocate(int type, int sock, char *remote_name)
280{
a22aff1f 281 return channel_new("", type, sock, sock, -1, 0, 0, 0, remote_name, 1);
7368a6c8 282}
8efc0c15 283
0fbe8c74 284
285/* Close all channel fd/socket. */
286
287void
288channel_close_fds(Channel *c)
289{
290 if (c->sock != -1) {
291 close(c->sock);
292 c->sock = -1;
293 }
294 if (c->rfd != -1) {
295 close(c->rfd);
296 c->rfd = -1;
297 }
298 if (c->wfd != -1) {
299 close(c->wfd);
300 c->wfd = -1;
301 }
302 if (c->efd != -1) {
303 close(c->efd);
304 c->efd = -1;
305 }
306}
307
308/* Free the channel and close its fd/socket. */
8efc0c15 309
6ae2364d 310void
7368a6c8 311channel_free(int id)
8efc0c15 312{
7368a6c8 313 Channel *c = channel_lookup(id);
b148018f 314 char *s = channel_open_message();
315
7368a6c8 316 if (c == NULL)
317 packet_disconnect("channel free: bad local channel %d", id);
b148018f 318 debug("channel_free: channel %d: status: %s", id, s);
319 xfree(s);
320
7e7327a1 321 if (c->dettach_user != NULL) {
322 debug("channel_free: channel %d: dettaching channel user", id);
323 c->dettach_user(c->self, NULL);
324 }
0fbe8c74 325 if (c->sock != -1)
7368a6c8 326 shutdown(c->sock, SHUT_RDWR);
0fbe8c74 327 channel_close_fds(c);
7368a6c8 328 buffer_free(&c->input);
329 buffer_free(&c->output);
330 buffer_free(&c->extended);
331 c->type = SSH_CHANNEL_FREE;
332 if (c->remote_name) {
333 xfree(c->remote_name);
334 c->remote_name = NULL;
5260325f 335 }
8efc0c15 336}
337
aa3378df 338/*
7368a6c8 339 * 'channel_pre*' are called just before select() to add any bits relevant to
340 * channels in the select bitmasks.
aa3378df 341 */
7368a6c8 342/*
343 * 'channel_post*': perform any appropriate operations for channels which
344 * have events pending.
345 */
346typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset);
347chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
348chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
8efc0c15 349
7368a6c8 350void
351channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset)
8efc0c15 352{
7368a6c8 353 FD_SET(c->sock, readset);
354}
5260325f 355
97fb6912 356void
357channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset)
358{
359 debug3("channel %d: waiting for connection", c->self);
360 FD_SET(c->sock, writeset);
361}
362
7368a6c8 363void
364channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
365{
366 if (buffer_len(&c->input) < packet_get_maxsize())
367 FD_SET(c->sock, readset);
368 if (buffer_len(&c->output) > 0)
369 FD_SET(c->sock, writeset);
370}
5260325f 371
7368a6c8 372void
373channel_pre_open_15(Channel *c, fd_set * readset, fd_set * writeset)
374{
375 /* test whether sockets are 'alive' for read/write */
376 if (c->istate == CHAN_INPUT_OPEN)
377 if (buffer_len(&c->input) < packet_get_maxsize())
378 FD_SET(c->sock, readset);
379 if (c->ostate == CHAN_OUTPUT_OPEN ||
380 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
381 if (buffer_len(&c->output) > 0) {
382 FD_SET(c->sock, writeset);
383 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
384 chan_obuf_empty(c);
385 }
386 }
387}
5260325f 388
7e7327a1 389void
390channel_pre_open_20(Channel *c, fd_set * readset, fd_set * writeset)
391{
392 if (c->istate == CHAN_INPUT_OPEN &&
393 c->remote_window > 0 &&
394 buffer_len(&c->input) < c->remote_window)
395 FD_SET(c->rfd, readset);
396 if (c->ostate == CHAN_OUTPUT_OPEN ||
397 c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
398 if (buffer_len(&c->output) > 0) {
399 FD_SET(c->wfd, writeset);
400 } else if (c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
401 chan_obuf_empty(c);
402 }
403 }
404 /** XXX check close conditions, too */
405 if (c->efd != -1) {
406 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
407 buffer_len(&c->extended) > 0)
408 FD_SET(c->efd, writeset);
409 else if (c->extended_usage == CHAN_EXTENDED_READ &&
410 buffer_len(&c->extended) < c->remote_window)
411 FD_SET(c->efd, readset);
412 }
413}
414
7368a6c8 415void
416channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
417{
418 if (buffer_len(&c->input) == 0) {
419 packet_start(SSH_MSG_CHANNEL_CLOSE);
420 packet_put_int(c->remote_id);
421 packet_send();
422 c->type = SSH_CHANNEL_CLOSED;
070adba2 423 debug("channel %d: closing after input drain.", c->self);
7368a6c8 424 }
425}
5260325f 426
7368a6c8 427void
428channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset)
429{
430 if (buffer_len(&c->output) == 0)
431 channel_free(c->self);
6ae2364d 432 else
7368a6c8 433 FD_SET(c->sock, writeset);
434}
5260325f 435
7368a6c8 436/*
437 * This is a special state for X11 authentication spoofing. An opened X11
438 * connection (when authentication spoofing is being done) remains in this
439 * state until the first packet has been completely read. The authentication
440 * data in that packet is then substituted by the real data if it matches the
441 * fake data, and the channel is put into normal mode.
0b242b12 442 * XXX All this happens at the client side.
7368a6c8 443 */
444int
445x11_open_helper(Channel *c)
446{
1e3b8b07 447 u_char *ucp;
448 u_int proto_len, data_len;
5260325f 449
7368a6c8 450 /* Check if the fixed size part of the packet is in buffer. */
451 if (buffer_len(&c->output) < 12)
452 return 0;
453
454 /* Parse the lengths of variable-length fields. */
1e3b8b07 455 ucp = (u_char *) buffer_ptr(&c->output);
7368a6c8 456 if (ucp[0] == 0x42) { /* Byte order MSB first. */
457 proto_len = 256 * ucp[6] + ucp[7];
458 data_len = 256 * ucp[8] + ucp[9];
459 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */
460 proto_len = ucp[6] + 256 * ucp[7];
461 data_len = ucp[8] + 256 * ucp[9];
462 } else {
463 debug("Initial X11 packet contains bad byte order byte: 0x%x",
464 ucp[0]);
465 return -1;
466 }
5260325f 467
7368a6c8 468 /* Check if the whole packet is in buffer. */
469 if (buffer_len(&c->output) <
470 12 + ((proto_len + 3) & ~3) + ((data_len + 3) & ~3))
471 return 0;
5260325f 472
7368a6c8 473 /* Check if authentication protocol matches. */
474 if (proto_len != strlen(x11_saved_proto) ||
475 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) {
476 debug("X11 connection uses different authentication protocol.");
477 return -1;
478 }
479 /* Check if authentication data matches our fake data. */
480 if (data_len != x11_fake_data_len ||
481 memcmp(ucp + 12 + ((proto_len + 3) & ~3),
482 x11_fake_data, x11_fake_data_len) != 0) {
483 debug("X11 auth data does not match fake data.");
484 return -1;
485 }
486 /* Check fake data length */
487 if (x11_fake_data_len != x11_saved_data_len) {
488 error("X11 fake_data_len %d != saved_data_len %d",
489 x11_fake_data_len, x11_saved_data_len);
490 return -1;
491 }
492 /*
493 * Received authentication protocol and data match
494 * our fake data. Substitute the fake data with real
495 * data.
496 */
497 memcpy(ucp + 12 + ((proto_len + 3) & ~3),
498 x11_saved_data, x11_saved_data_len);
499 return 1;
500}
5260325f 501
7368a6c8 502void
503channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
504{
505 int ret = x11_open_helper(c);
506 if (ret == 1) {
507 /* Start normal processing for the channel. */
508 c->type = SSH_CHANNEL_OPEN;
a8be9f80 509 channel_pre_open_13(c, readset, writeset);
7368a6c8 510 } else if (ret == -1) {
511 /*
512 * We have received an X11 connection that has bad
513 * authentication information.
514 */
54b974dc 515 log("X11 connection rejected because of wrong authentication.");
7368a6c8 516 buffer_clear(&c->input);
517 buffer_clear(&c->output);
518 close(c->sock);
519 c->sock = -1;
520 c->type = SSH_CHANNEL_CLOSED;
521 packet_start(SSH_MSG_CHANNEL_CLOSE);
522 packet_put_int(c->remote_id);
523 packet_send();
524 }
525}
5260325f 526
7368a6c8 527void
0b242b12 528channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
7368a6c8 529{
530 int ret = x11_open_helper(c);
531 if (ret == 1) {
532 c->type = SSH_CHANNEL_OPEN;
d0c832f3 533 if (compat20)
534 channel_pre_open_20(c, readset, writeset);
535 else
536 channel_pre_open_15(c, readset, writeset);
7368a6c8 537 } else if (ret == -1) {
538 debug("X11 rejected %d i%d/o%d", c->self, c->istate, c->ostate);
0b242b12 539 chan_read_failed(c); /** force close? */
7368a6c8 540 chan_write_failed(c);
541 debug("X11 closed %d i%d/o%d", c->self, c->istate, c->ostate);
542 }
543}
5260325f 544
28b9cb4d 545/* try to decode a socks4 header */
546int
547channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
0490e609 548{
549 u_char *p, *host;
53b8fe68 550 int len, have, i, found;
28b9cb4d 551 char username[256];
0490e609 552 struct {
553 u_int8_t version;
554 u_int8_t command;
555 u_int16_t dest_port;
28b9cb4d 556 struct in_addr dest_addr;
0490e609 557 } s4_req, s4_rsp;
558
28b9cb4d 559 debug2("channel %d: decode socks4", c->self);
53b8fe68 560
561 have = buffer_len(&c->input);
562 len = sizeof(s4_req);
563 if (have < len)
564 return 0;
565 p = buffer_ptr(&c->input);
566 for (found = 0, i = len; i < have; i++) {
567 if (p[i] == '\0') {
568 found = 1;
569 break;
570 }
571 if (i > 1024) {
572 /* the peer is probably sending garbage */
573 debug("channel %d: decode socks4: too long",
574 c->self);
575 return -1;
576 }
577 }
578 if (!found)
579 return 0;
0490e609 580 buffer_get(&c->input, (char *)&s4_req.version, 1);
581 buffer_get(&c->input, (char *)&s4_req.command, 1);
582 buffer_get(&c->input, (char *)&s4_req.dest_port, 2);
28b9cb4d 583 buffer_get(&c->input, (char *)&s4_req.dest_addr, 4);
53b8fe68 584 have = buffer_len(&c->input);
0490e609 585 p = buffer_ptr(&c->input);
586 len = strlen(p);
6683b40f 587 debug2("channel %d: decode socks4: user %s/%d", c->self, p, len);
0490e609 588 if (len > have)
28b9cb4d 589 fatal("channel %d: decode socks4: len %d > have %d",
0490e609 590 c->self, len, have);
591 strlcpy(username, p, sizeof(username));
592 buffer_consume(&c->input, len);
593 buffer_consume(&c->input, 1); /* trailing '\0' */
594
28b9cb4d 595 host = inet_ntoa(s4_req.dest_addr);
0490e609 596 strlcpy(c->path, host, sizeof(c->path));
597 c->host_port = ntohs(s4_req.dest_port);
598
6683b40f 599 debug("channel %d: dynamic request: socks4 host %s port %u command %u",
600 c->self, host, c->host_port, s4_req.command);
0490e609 601
28b9cb4d 602 if (s4_req.command != 1) {
603 debug("channel %d: cannot handle: socks4 cn %d",
604 c->self, s4_req.command);
605 return -1;
0490e609 606 }
28b9cb4d 607 s4_rsp.version = 0; /* vn: 0 for reply */
608 s4_rsp.command = 90; /* cd: req granted */
0490e609 609 s4_rsp.dest_port = 0; /* ignored */
28b9cb4d 610 s4_rsp.dest_addr.s_addr = INADDR_ANY; /* ignored */
0490e609 611 buffer_append(&c->output, (char *)&s4_rsp, sizeof(s4_rsp));
28b9cb4d 612 return 1;
0490e609 613}
614
28b9cb4d 615/* dynamic port forwarding */
616void
617channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
618{
619 u_char *p;
620 int have, ret;
621
622 have = buffer_len(&c->input);
623
624 debug2("channel %d: pre_dynamic: have %d", c->self, have);
070adba2 625 /* buffer_dump(&c->input); */
28b9cb4d 626 /* check if the fixed size part of the packet is in buffer. */
627 if (have < 4) {
628 /* need more */
629 FD_SET(c->sock, readset);
630 return;
631 }
632 /* try to guess the protocol */
633 p = buffer_ptr(&c->input);
634 switch (p[0]) {
6683b40f 635 case 0x04:
636 ret = channel_decode_socks4(c, readset, writeset);
637 break;
28b9cb4d 638 default:
639 ret = -1;
640 break;
641 }
642 if (ret < 0) {
643 channel_free(c->self);
644 } else if (ret == 0) {
645 debug2("channel %d: pre_dynamic: need more", c->self);
646 /* need more */
647 FD_SET(c->sock, readset);
648 } else {
649 /* switch to the next state */
650 c->type = SSH_CHANNEL_OPENING;
651 port_open_helper(c, "direct-tcpip");
652 }
653}
0490e609 654
7368a6c8 655/* This is our fake X11 server socket. */
656void
657channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset)
658{
659 struct sockaddr addr;
660 int newsock, newch;
661 socklen_t addrlen;
865ac82e 662 char buf[16384], *remote_ipaddr;
0b242b12 663 int remote_port;
7368a6c8 664
665 if (FD_ISSET(c->sock, readset)) {
666 debug("X11 connection requested.");
667 addrlen = sizeof(addr);
668 newsock = accept(c->sock, &addr, &addrlen);
669 if (newsock < 0) {
670 error("accept: %.100s", strerror(errno));
671 return;
5260325f 672 }
865ac82e 673 remote_ipaddr = get_peer_ipaddr(newsock);
0b242b12 674 remote_port = get_peer_port(newsock);
7368a6c8 675 snprintf(buf, sizeof buf, "X11 connection from %.200s port %d",
865ac82e 676 remote_ipaddr, remote_port);
0b242b12 677
678 newch = channel_new("x11",
679 SSH_CHANNEL_OPENING, newsock, newsock, -1,
680 c->local_window_max, c->local_maxpacket,
a22aff1f 681 0, xstrdup(buf), 1);
0b242b12 682 if (compat20) {
683 packet_start(SSH2_MSG_CHANNEL_OPEN);
684 packet_put_cstring("x11");
685 packet_put_int(newch);
686 packet_put_int(c->local_window_max);
687 packet_put_int(c->local_maxpacket);
865ac82e 688 /* originator ipaddr and port */
689 packet_put_cstring(remote_ipaddr);
d0c832f3 690 if (datafellows & SSH_BUG_X11FWD) {
691 debug("ssh2 x11 bug compat mode");
692 } else {
693 packet_put_int(remote_port);
694 }
0b242b12 695 packet_send();
696 } else {
697 packet_start(SSH_SMSG_X11_OPEN);
698 packet_put_int(newch);
699 if (have_hostname_in_open)
700 packet_put_string(buf, strlen(buf));
701 packet_send();
702 }
865ac82e 703 xfree(remote_ipaddr);
8efc0c15 704 }
8efc0c15 705}
706
0490e609 707void
708port_open_helper(Channel *c, char *rtype)
709{
710 int direct;
711 char buf[1024];
712 char *remote_ipaddr = get_peer_ipaddr(c->sock);
713 u_short remote_port = get_peer_port(c->sock);
714
715 direct = (strcmp(rtype, "direct-tcpip") == 0);
716
717 snprintf(buf, sizeof buf,
718 "%s: listening port %d for %.100s port %d, "
719 "connect from %.200s port %d",
720 rtype, c->listening_port, c->path, c->host_port,
721 remote_ipaddr, remote_port);
722
723 xfree(c->remote_name);
724 c->remote_name = xstrdup(buf);
725
726 if (compat20) {
727 packet_start(SSH2_MSG_CHANNEL_OPEN);
728 packet_put_cstring(rtype);
729 packet_put_int(c->self);
730 packet_put_int(c->local_window_max);
731 packet_put_int(c->local_maxpacket);
732 if (direct) {
733 /* target host, port */
734 packet_put_cstring(c->path);
735 packet_put_int(c->host_port);
736 } else {
737 /* listen address, port */
738 packet_put_cstring(c->path);
739 packet_put_int(c->listening_port);
740 }
741 /* originator host and port */
742 packet_put_cstring(remote_ipaddr);
743 packet_put_int(remote_port);
744 packet_send();
745 } else {
746 packet_start(SSH_MSG_PORT_OPEN);
747 packet_put_int(c->self);
748 packet_put_cstring(c->path);
749 packet_put_int(c->host_port);
750 if (have_hostname_in_open)
751 packet_put_cstring(c->remote_name);
752 packet_send();
753 }
754 xfree(remote_ipaddr);
755}
756
aa3378df 757/*
7368a6c8 758 * This socket is listening for connections to a forwarded TCP/IP port.
aa3378df 759 */
7368a6c8 760void
761channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
762{
0490e609 763 Channel *nc;
7368a6c8 764 struct sockaddr addr;
0490e609 765 int newsock, newch, nextstate;
7368a6c8 766 socklen_t addrlen;
0490e609 767 char *rtype;
fa08c86b 768
7368a6c8 769 if (FD_ISSET(c->sock, readset)) {
770 debug("Connection to port %d forwarding "
771 "to %.100s port %d requested.",
772 c->listening_port, c->path, c->host_port);
0490e609 773
774 rtype = (c->type == SSH_CHANNEL_RPORT_LISTENER) ?
775 "forwarded-tcpip" : "direct-tcpip";
776 nextstate = (c->host_port == 0) ? SSH_CHANNEL_DYNAMIC :
777 SSH_CHANNEL_OPENING;
778
7368a6c8 779 addrlen = sizeof(addr);
780 newsock = accept(c->sock, &addr, &addrlen);
781 if (newsock < 0) {
782 error("accept: %.100s", strerror(errno));
783 return;
784 }
fa08c86b 785 newch = channel_new(rtype,
0490e609 786 nextstate, newsock, newsock, -1,
7368a6c8 787 c->local_window_max, c->local_maxpacket,
0490e609 788 0, xstrdup(rtype), 1);
789
790 nc = channel_lookup(newch);
791 if (nc == NULL) {
792 error("xxx: no new channel:");
793 return;
7368a6c8 794 }
0490e609 795 nc->listening_port = c->listening_port;
796 nc->host_port = c->host_port;
797 strlcpy(nc->path, c->path, sizeof(nc->path));
798
799 if (nextstate != SSH_CHANNEL_DYNAMIC)
800 port_open_helper(nc, rtype);
7368a6c8 801 }
802}
8efc0c15 803
7368a6c8 804/*
805 * This is the authentication agent socket listening for connections from
806 * clients.
807 */
808void
809channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
8efc0c15 810{
5260325f 811 struct sockaddr addr;
7368a6c8 812 int newsock, newch;
48e671d5 813 socklen_t addrlen;
5260325f 814
7368a6c8 815 if (FD_ISSET(c->sock, readset)) {
816 addrlen = sizeof(addr);
817 newsock = accept(c->sock, &addr, &addrlen);
818 if (newsock < 0) {
819 error("accept from auth socket: %.100s", strerror(errno));
820 return;
821 }
fa08c86b 822 newch = channel_new("accepted auth socket",
823 SSH_CHANNEL_OPENING, newsock, newsock, -1,
824 c->local_window_max, c->local_maxpacket,
825 0, xstrdup("accepted auth socket"), 1);
826 if (compat20) {
827 packet_start(SSH2_MSG_CHANNEL_OPEN);
828 packet_put_cstring("auth-agent@openssh.com");
829 packet_put_int(newch);
830 packet_put_int(c->local_window_max);
831 packet_put_int(c->local_maxpacket);
832 } else {
833 packet_start(SSH_SMSG_AGENT_OPEN);
834 packet_put_int(newch);
835 }
7368a6c8 836 packet_send();
837 }
838}
5260325f 839
97fb6912 840void
841channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
842{
843 if (FD_ISSET(c->sock, writeset)) {
844 int err = 0;
845 int sz = sizeof(err);
846 c->type = SSH_CHANNEL_OPEN;
2b87da3b 847 if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err, &sz) < 0) {
97fb6912 848 debug("getsockopt SO_ERROR failed");
849 } else {
850 if (err == 0) {
851 debug("channel %d: connected)", c->self);
852 } else {
853 debug("channel %d: not connected: %s",
854 c->self, strerror(err));
855 chan_read_failed(c);
856 chan_write_failed(c);
857 }
858 }
859 }
860}
861
7368a6c8 862int
863channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
864{
865 char buf[16*1024];
866 int len;
867
868 if (c->rfd != -1 &&
869 FD_ISSET(c->rfd, readset)) {
870 len = read(c->rfd, buf, sizeof(buf));
0fbe8c74 871 if (len < 0 && (errno == EINTR || errno == EAGAIN))
872 return 1;
7368a6c8 873 if (len <= 0) {
0b242b12 874 debug("channel %d: read<=0 rfd %d len %d",
7368a6c8 875 c->self, c->rfd, len);
28b9cb4d 876 if (c->type != SSH_CHANNEL_OPEN) {
877 debug("channel %d: not open", c->self);
0490e609 878 channel_free(c->self);
879 return -1;
28b9cb4d 880 } else if (compat13) {
7368a6c8 881 buffer_consume(&c->output, buffer_len(&c->output));
882 c->type = SSH_CHANNEL_INPUT_DRAINING;
070adba2 883 debug("channel %d: status set to input draining.", c->self);
7368a6c8 884 } else {
885 chan_read_failed(c);
5260325f 886 }
7368a6c8 887 return -1;
888 }
2e73a022 889 if(c->input_filter != NULL) {
890 if (c->input_filter(c, buf, len) == -1) {
070adba2 891 debug("channel %d: filter stops", c->self);
2e73a022 892 chan_read_failed(c);
893 }
894 } else {
895 buffer_append(&c->input, buf, len);
896 }
7368a6c8 897 }
898 return 1;
899}
900int
901channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
902{
95ce5599 903 struct termios tio;
7368a6c8 904 int len;
905
906 /* Send buffered output data to the socket. */
907 if (c->wfd != -1 &&
908 FD_ISSET(c->wfd, writeset) &&
909 buffer_len(&c->output) > 0) {
910 len = write(c->wfd, buffer_ptr(&c->output),
0fbe8c74 911 buffer_len(&c->output));
912 if (len < 0 && (errno == EINTR || errno == EAGAIN))
913 return 1;
7368a6c8 914 if (len <= 0) {
28b9cb4d 915 if (c->type != SSH_CHANNEL_OPEN) {
916 debug("channel %d: not open", c->self);
917 channel_free(c->self);
918 return -1;
919 } else if (compat13) {
7368a6c8 920 buffer_consume(&c->output, buffer_len(&c->output));
070adba2 921 debug("channel %d: status set to input draining.", c->self);
7368a6c8 922 c->type = SSH_CHANNEL_INPUT_DRAINING;
923 } else {
924 chan_write_failed(c);
5260325f 925 }
7368a6c8 926 return -1;
927 }
0ae4fe1d 928 if (compat20 && c->isatty) {
0ae4fe1d 929 if (tcgetattr(c->wfd, &tio) == 0 &&
930 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
931 /*
932 * Simulate echo to reduce the impact of
355724fc 933 * traffic analysis. We need to match the
95ce5599 934 * size of a SSH2_MSG_CHANNEL_DATA message
935 * (4 byte channel id + data)
0ae4fe1d 936 */
95ce5599 937 packet_send_ignore(4 + len);
0ae4fe1d 938 packet_send();
0ae4fe1d 939 }
940 }
7368a6c8 941 buffer_consume(&c->output, len);
7e7327a1 942 if (compat20 && len > 0) {
943 c->local_consumed += len;
944 }
945 }
946 return 1;
947}
948int
949channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
950{
951 char buf[16*1024];
952 int len;
953
8ce64345 954/** XXX handle drain efd, too */
7e7327a1 955 if (c->efd != -1) {
956 if (c->extended_usage == CHAN_EXTENDED_WRITE &&
957 FD_ISSET(c->efd, writeset) &&
958 buffer_len(&c->extended) > 0) {
959 len = write(c->efd, buffer_ptr(&c->extended),
960 buffer_len(&c->extended));
de273eef 961 debug2("channel %d: written %d to efd %d",
7e7327a1 962 c->self, len, c->efd);
ee55dacf 963 if (len < 0 && (errno == EINTR || errno == EAGAIN))
964 return 1;
965 if (len <= 0) {
966 debug2("channel %d: closing write-efd %d",
967 c->self, c->efd);
968 close(c->efd);
969 c->efd = -1;
970 } else {
7e7327a1 971 buffer_consume(&c->extended, len);
972 c->local_consumed += len;
973 }
974 } else if (c->extended_usage == CHAN_EXTENDED_READ &&
975 FD_ISSET(c->efd, readset)) {
976 len = read(c->efd, buf, sizeof(buf));
de273eef 977 debug2("channel %d: read %d from efd %d",
7e7327a1 978 c->self, len, c->efd);
ee55dacf 979 if (len < 0 && (errno == EINTR || errno == EAGAIN))
980 return 1;
981 if (len <= 0) {
982 debug2("channel %d: closing read-efd %d",
8ce64345 983 c->self, c->efd);
984 close(c->efd);
985 c->efd = -1;
ee55dacf 986 } else {
7e7327a1 987 buffer_append(&c->extended, buf, len);
ee55dacf 988 }
7e7327a1 989 }
990 }
991 return 1;
992}
993int
ee55dacf 994channel_check_window(Channel *c)
7e7327a1 995{
28b9cb4d 996 if (c->type == SSH_CHANNEL_OPEN &&
997 !(c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD)) &&
7e7327a1 998 c->local_window < c->local_window_max/2 &&
999 c->local_consumed > 0) {
1000 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
1001 packet_put_int(c->remote_id);
1002 packet_put_int(c->local_consumed);
1003 packet_send();
de273eef 1004 debug2("channel %d: window %d sent adjust %d",
7e7327a1 1005 c->self, c->local_window,
1006 c->local_consumed);
1007 c->local_window += c->local_consumed;
1008 c->local_consumed = 0;
7368a6c8 1009 }
1010 return 1;
1011}
5260325f 1012
7368a6c8 1013void
1014channel_post_open_1(Channel *c, fd_set * readset, fd_set * writeset)
1015{
1016 channel_handle_rfd(c, readset, writeset);
1017 channel_handle_wfd(c, readset, writeset);
1018}
aa3378df 1019
7e7327a1 1020void
1021channel_post_open_2(Channel *c, fd_set * readset, fd_set * writeset)
1022{
1023 channel_handle_rfd(c, readset, writeset);
1024 channel_handle_wfd(c, readset, writeset);
1025 channel_handle_efd(c, readset, writeset);
ee55dacf 1026
1027 channel_check_window(c);
7e7327a1 1028}
1029
7368a6c8 1030void
1031channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset)
1032{
1033 int len;
1034 /* Send buffered output data to the socket. */
1035 if (FD_ISSET(c->sock, writeset) && buffer_len(&c->output) > 0) {
1036 len = write(c->sock, buffer_ptr(&c->output),
1037 buffer_len(&c->output));
1038 if (len <= 0)
1039 buffer_consume(&c->output, buffer_len(&c->output));
1040 else
1041 buffer_consume(&c->output, len);
1042 }
1043}
5260325f 1044
7e7327a1 1045void
1046channel_handler_init_20(void)
1047{
1048 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_20;
0b242b12 1049 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
7e7327a1 1050 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
fa08c86b 1051 channel_pre[SSH_CHANNEL_RPORT_LISTENER] = &channel_pre_listener;
0b242b12 1052 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
fa08c86b 1053 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
97fb6912 1054 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
0490e609 1055 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
7e7327a1 1056
1057 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_2;
1058 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
fa08c86b 1059 channel_post[SSH_CHANNEL_RPORT_LISTENER] = &channel_post_port_listener;
0b242b12 1060 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
fa08c86b 1061 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
97fb6912 1062 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
28b9cb4d 1063 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_2;
7e7327a1 1064}
1065
7368a6c8 1066void
1067channel_handler_init_13(void)
1068{
1069 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_13;
1070 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open_13;
1071 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1072 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1073 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
1074 channel_pre[SSH_CHANNEL_INPUT_DRAINING] = &channel_pre_input_draining;
1075 channel_pre[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_pre_output_draining;
97fb6912 1076 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
0490e609 1077 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
7368a6c8 1078
1079 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
1080 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1081 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1082 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1083 channel_post[SSH_CHANNEL_OUTPUT_DRAINING] = &channel_post_output_drain_13;
97fb6912 1084 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
28b9cb4d 1085 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
7368a6c8 1086}
5260325f 1087
7368a6c8 1088void
1089channel_handler_init_15(void)
1090{
1091 channel_pre[SSH_CHANNEL_OPEN] = &channel_pre_open_15;
0b242b12 1092 channel_pre[SSH_CHANNEL_X11_OPEN] = &channel_pre_x11_open;
7368a6c8 1093 channel_pre[SSH_CHANNEL_X11_LISTENER] = &channel_pre_listener;
1094 channel_pre[SSH_CHANNEL_PORT_LISTENER] = &channel_pre_listener;
1095 channel_pre[SSH_CHANNEL_AUTH_SOCKET] = &channel_pre_listener;
97fb6912 1096 channel_pre[SSH_CHANNEL_CONNECTING] = &channel_pre_connecting;
0490e609 1097 channel_pre[SSH_CHANNEL_DYNAMIC] = &channel_pre_dynamic;
7368a6c8 1098
1099 channel_post[SSH_CHANNEL_X11_LISTENER] = &channel_post_x11_listener;
1100 channel_post[SSH_CHANNEL_PORT_LISTENER] = &channel_post_port_listener;
1101 channel_post[SSH_CHANNEL_AUTH_SOCKET] = &channel_post_auth_listener;
1102 channel_post[SSH_CHANNEL_OPEN] = &channel_post_open_1;
97fb6912 1103 channel_post[SSH_CHANNEL_CONNECTING] = &channel_post_connecting;
28b9cb4d 1104 channel_post[SSH_CHANNEL_DYNAMIC] = &channel_post_open_1;
7368a6c8 1105}
1106
1107void
1108channel_handler_init(void)
1109{
1110 int i;
1111 for(i = 0; i < SSH_CHANNEL_MAX_TYPE; i++) {
1112 channel_pre[i] = NULL;
1113 channel_post[i] = NULL;
1114 }
7e7327a1 1115 if (compat20)
1116 channel_handler_init_20();
1117 else if (compat13)
7368a6c8 1118 channel_handler_init_13();
1119 else
1120 channel_handler_init_15();
1121}
1122
6ae2364d 1123void
7368a6c8 1124channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset)
1125{
1126 static int did_init = 0;
1127 int i;
1128 Channel *c;
1129
1130 if (!did_init) {
1131 channel_handler_init();
1132 did_init = 1;
1133 }
1134 for (i = 0; i < channels_alloc; i++) {
1135 c = &channels[i];
1136 if (c->type == SSH_CHANNEL_FREE)
5260325f 1137 continue;
7368a6c8 1138 if (ftab[c->type] == NULL)
1139 continue;
1140 (*ftab[c->type])(c, readset, writeset);
ee55dacf 1141 if (chan_is_dead(c)) {
1142 /*
1143 * we have to remove the fd's from the select mask
1144 * before the channels are free'd and the fd's are
1145 * closed
1146 */
1147 if (c->wfd != -1)
1148 FD_CLR(c->wfd, writeset);
1149 if (c->rfd != -1)
1150 FD_CLR(c->rfd, readset);
1151 if (c->efd != -1) {
1152 if (c->extended_usage == CHAN_EXTENDED_READ)
1153 FD_CLR(c->efd, readset);
1154 if (c->extended_usage == CHAN_EXTENDED_WRITE)
1155 FD_CLR(c->efd, writeset);
1156 }
1157 channel_free(c->self);
1158 }
8efc0c15 1159 }
8efc0c15 1160}
1161
6ae2364d 1162void
c422989b 1163channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
1164 int rekeying)
7368a6c8 1165{
39929cdb 1166 int n;
1167 u_int sz;
1168
1169 n = MAX(*maxfdp, channel_max_fd);
1170
1171 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
1172 if (*readsetp == NULL || n > *maxfdp) {
1173 if (*readsetp)
1174 xfree(*readsetp);
1175 if (*writesetp)
1176 xfree(*writesetp);
1177 *readsetp = xmalloc(sz);
1178 *writesetp = xmalloc(sz);
1179 *maxfdp = n;
1180 }
1181 memset(*readsetp, 0, sz);
1182 memset(*writesetp, 0, sz);
1183
c422989b 1184 if (!rekeying)
1185 channel_handler(channel_pre, *readsetp, *writesetp);
7368a6c8 1186}
1187
6ae2364d 1188void
7368a6c8 1189channel_after_select(fd_set * readset, fd_set * writeset)
1190{
1191 channel_handler(channel_post, readset, writeset);
1192}
1193
39929cdb 1194/* If there is data to send to the connection, enqueue some of it now. */
8efc0c15 1195
6ae2364d 1196void
5260325f 1197channel_output_poll()
8efc0c15 1198{
5260325f 1199 int len, i;
7368a6c8 1200 Channel *c;
5260325f 1201
1202 for (i = 0; i < channels_alloc; i++) {
7368a6c8 1203 c = &channels[i];
48e671d5 1204
aa3378df 1205 /* We are only interested in channels that can have buffered incoming data. */
48e671d5 1206 if (compat13) {
7368a6c8 1207 if (c->type != SSH_CHANNEL_OPEN &&
1208 c->type != SSH_CHANNEL_INPUT_DRAINING)
48e671d5 1209 continue;
1210 } else {
7368a6c8 1211 if (c->type != SSH_CHANNEL_OPEN)
48e671d5 1212 continue;
48e671d5 1213 }
e78a59f5 1214 if (compat20 &&
1215 (c->flags & (CHAN_CLOSE_SENT|CHAN_CLOSE_RCVD))) {
ee55dacf 1216 /* XXX is this true? */
61f8a1d1 1217 debug2("channel %d: no data after CLOSE", c->self);
7e7327a1 1218 continue;
1219 }
5260325f 1220
1221 /* Get the amount of buffered data for this channel. */
ee55dacf 1222 if ((c->istate == CHAN_INPUT_OPEN ||
1223 c->istate == CHAN_INPUT_WAIT_DRAIN) &&
1224 (len = buffer_len(&c->input)) > 0) {
aa3378df 1225 /* Send some data for the other side over the secure connection. */
7e7327a1 1226 if (compat20) {
1227 if (len > c->remote_window)
1228 len = c->remote_window;
1229 if (len > c->remote_maxpacket)
1230 len = c->remote_maxpacket;
5260325f 1231 } else {
7e7327a1 1232 if (packet_is_interactive()) {
1233 if (len > 1024)
1234 len = 512;
1235 } else {
1236 /* Keep the packets at reasonable size. */
1237 if (len > packet_get_maxsize()/2)
1238 len = packet_get_maxsize()/2;
1239 }
5260325f 1240 }
7368a6c8 1241 if (len > 0) {
7e7327a1 1242 packet_start(compat20 ?
1243 SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA);
7368a6c8 1244 packet_put_int(c->remote_id);
1245 packet_put_string(buffer_ptr(&c->input), len);
1246 packet_send();
1247 buffer_consume(&c->input, len);
1248 c->remote_window -= len;
7368a6c8 1249 }
1250 } else if (c->istate == CHAN_INPUT_WAIT_DRAIN) {
5260325f 1251 if (compat13)
1252 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
aa3378df 1253 /*
1254 * input-buffer is empty and read-socket shutdown:
1255 * tell peer, that we will not send more data: send IEOF
1256 */
7368a6c8 1257 chan_ibuf_empty(c);
5260325f 1258 }
7e7327a1 1259 /* Send extended data, i.e. stderr */
1260 if (compat20 &&
1261 c->remote_window > 0 &&
1262 (len = buffer_len(&c->extended)) > 0 &&
1263 c->extended_usage == CHAN_EXTENDED_READ) {
ee55dacf 1264 debug2("channel %d: rwin %d elen %d euse %d",
1265 c->self, c->remote_window, buffer_len(&c->extended),
1266 c->extended_usage);
7e7327a1 1267 if (len > c->remote_window)
1268 len = c->remote_window;
1269 if (len > c->remote_maxpacket)
1270 len = c->remote_maxpacket;
1271 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA);
1272 packet_put_int(c->remote_id);
1273 packet_put_int(SSH2_EXTENDED_DATA_STDERR);
1274 packet_put_string(buffer_ptr(&c->extended), len);
1275 packet_send();
1276 buffer_consume(&c->extended, len);
1277 c->remote_window -= len;
ee55dacf 1278 debug2("channel %d: sent ext data %d", c->self, len);
7e7327a1 1279 }
8efc0c15 1280 }
8efc0c15 1281}
1282
aa3378df 1283/*
1284 * This is called when a packet of type CHANNEL_DATA has just been received.
1285 * The message type has already been consumed, but channel number and data is
1286 * still there.
1287 */
8efc0c15 1288
6ae2364d 1289void
188adeb2 1290channel_input_data(int type, int plen, void *ctxt)
8efc0c15 1291{
48e671d5 1292 int id;
5260325f 1293 char *data;
1e3b8b07 1294 u_int data_len;
7368a6c8 1295 Channel *c;
5260325f 1296
1297 /* Get the channel number and verify it. */
48e671d5 1298 id = packet_get_int();
7368a6c8 1299 c = channel_lookup(id);
1300 if (c == NULL)
48e671d5 1301 packet_disconnect("Received data for nonexistent channel %d.", id);
5260325f 1302
1303 /* Ignore any data for non-open channels (might happen on close) */
7368a6c8 1304 if (c->type != SSH_CHANNEL_OPEN &&
1305 c->type != SSH_CHANNEL_X11_OPEN)
48e671d5 1306 return;
1307
1308 /* same for protocol 1.5 if output end is no longer open */
7368a6c8 1309 if (!compat13 && c->ostate != CHAN_OUTPUT_OPEN)
5260325f 1310 return;
1311
1312 /* Get the data. */
1313 data = packet_get_string(&data_len);
6ae2364d 1314 packet_done();
7368a6c8 1315
7e7327a1 1316 if (compat20){
1317 if (data_len > c->local_maxpacket) {
1318 log("channel %d: rcvd big packet %d, maxpack %d",
1319 c->self, data_len, c->local_maxpacket);
1320 }
1321 if (data_len > c->local_window) {
1322 log("channel %d: rcvd too much data %d, win %d",
1323 c->self, data_len, c->local_window);
1324 xfree(data);
1325 return;
1326 }
1327 c->local_window -= data_len;
1328 }else{
1329 packet_integrity_check(plen, 4 + 4 + data_len, type);
1330 }
7368a6c8 1331 buffer_append(&c->output, data, data_len);
5260325f 1332 xfree(data);
8efc0c15 1333}
6ae2364d 1334void
188adeb2 1335channel_input_extended_data(int type, int plen, void *ctxt)
7e7327a1 1336{
1337 int id;
1338 int tcode;
1339 char *data;
1e3b8b07 1340 u_int data_len;
7e7327a1 1341 Channel *c;
1342
1343 /* Get the channel number and verify it. */
1344 id = packet_get_int();
1345 c = channel_lookup(id);
1346
1347 if (c == NULL)
1348 packet_disconnect("Received extended_data for bad channel %d.", id);
1349 if (c->type != SSH_CHANNEL_OPEN) {
1350 log("channel %d: ext data for non open", id);
1351 return;
1352 }
1353 tcode = packet_get_int();
1354 if (c->efd == -1 ||
1355 c->extended_usage != CHAN_EXTENDED_WRITE ||
1356 tcode != SSH2_EXTENDED_DATA_STDERR) {
1357 log("channel %d: bad ext data", c->self);
1358 return;
1359 }
1360 data = packet_get_string(&data_len);
6ae2364d 1361 packet_done();
7e7327a1 1362 if (data_len > c->local_window) {
1363 log("channel %d: rcvd too much extended_data %d, win %d",
1364 c->self, data_len, c->local_window);
1365 xfree(data);
1366 return;
1367 }
de273eef 1368 debug2("channel %d: rcvd ext data %d", c->self, data_len);
7e7327a1 1369 c->local_window -= data_len;
1370 buffer_append(&c->extended, data, data_len);
1371 xfree(data);
1372}
1373
8efc0c15 1374
aa3378df 1375/*
1376 * Returns true if no channel has too much buffered data, and false if one or
1377 * more channel is overfull.
1378 */
8efc0c15 1379
6ae2364d 1380int
5260325f 1381channel_not_very_much_buffered_data()
8efc0c15 1382{
1e3b8b07 1383 u_int i;
7368a6c8 1384 Channel *c;
5260325f 1385
1386 for (i = 0; i < channels_alloc; i++) {
7368a6c8 1387 c = &channels[i];
1388 if (c->type == SSH_CHANNEL_OPEN) {
7e7327a1 1389 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) {
7368a6c8 1390 debug("channel %d: big input buffer %d",
1391 c->self, buffer_len(&c->input));
5260325f 1392 return 0;
7368a6c8 1393 }
1394 if (buffer_len(&c->output) > packet_get_maxsize()) {
1395 debug("channel %d: big output buffer %d",
1396 c->self, buffer_len(&c->output));
5260325f 1397 return 0;
7368a6c8 1398 }
5260325f 1399 }
8efc0c15 1400 }
5260325f 1401 return 1;
8efc0c15 1402}
1403
6ae2364d 1404void
188adeb2 1405channel_input_ieof(int type, int plen, void *ctxt)
7368a6c8 1406{
1407 int id;
1408 Channel *c;
1409
1410 packet_integrity_check(plen, 4, type);
1411
1412 id = packet_get_int();
1413 c = channel_lookup(id);
1414 if (c == NULL)
1415 packet_disconnect("Received ieof for nonexistent channel %d.", id);
1416 chan_rcvd_ieof(c);
1417}
8efc0c15 1418
6ae2364d 1419void
188adeb2 1420channel_input_close(int type, int plen, void *ctxt)
8efc0c15 1421{
7368a6c8 1422 int id;
1423 Channel *c;
5260325f 1424
7368a6c8 1425 packet_integrity_check(plen, 4, type);
1426
1427 id = packet_get_int();
1428 c = channel_lookup(id);
1429 if (c == NULL)
1430 packet_disconnect("Received close for nonexistent channel %d.", id);
aa3378df 1431
1432 /*
1433 * Send a confirmation that we have closed the channel and no more
1434 * data is coming for it.
1435 */
5260325f 1436 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION);
7368a6c8 1437 packet_put_int(c->remote_id);
5260325f 1438 packet_send();
1439
aa3378df 1440 /*
1441 * If the channel is in closed state, we have sent a close request,
1442 * and the other side will eventually respond with a confirmation.
1443 * Thus, we cannot free the channel here, because then there would be
1444 * no-one to receive the confirmation. The channel gets freed when
1445 * the confirmation arrives.
1446 */
7368a6c8 1447 if (c->type != SSH_CHANNEL_CLOSED) {
aa3378df 1448 /*
1449 * Not a closed channel - mark it as draining, which will
1450 * cause it to be freed later.
1451 */
7368a6c8 1452 buffer_consume(&c->input, buffer_len(&c->input));
1453 c->type = SSH_CHANNEL_OUTPUT_DRAINING;
5260325f 1454 }
8efc0c15 1455}
1456
7368a6c8 1457/* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
6ae2364d 1458void
188adeb2 1459channel_input_oclose(int type, int plen, void *ctxt)
8efc0c15 1460{
7368a6c8 1461 int id = packet_get_int();
1462 Channel *c = channel_lookup(id);
1463 packet_integrity_check(plen, 4, type);
1464 if (c == NULL)
1465 packet_disconnect("Received oclose for nonexistent channel %d.", id);
1466 chan_rcvd_oclose(c);
8efc0c15 1467}
1468
6ae2364d 1469void
188adeb2 1470channel_input_close_confirmation(int type, int plen, void *ctxt)
7368a6c8 1471{
1472 int id = packet_get_int();
1473 Channel *c = channel_lookup(id);
1474
6ae2364d 1475 packet_done();
7368a6c8 1476 if (c == NULL)
1477 packet_disconnect("Received close confirmation for "
1478 "out-of-range channel %d.", id);
1479 if (c->type != SSH_CHANNEL_CLOSED)
1480 packet_disconnect("Received close confirmation for "
1481 "non-closed channel %d (type %d).", id, c->type);
1482 channel_free(c->self);
1483}
8efc0c15 1484
6ae2364d 1485void
188adeb2 1486channel_input_open_confirmation(int type, int plen, void *ctxt)
8efc0c15 1487{
7368a6c8 1488 int id, remote_id;
1489 Channel *c;
5260325f 1490
7e7327a1 1491 if (!compat20)
1492 packet_integrity_check(plen, 4 + 4, type);
5260325f 1493
7368a6c8 1494 id = packet_get_int();
1495 c = channel_lookup(id);
5260325f 1496
7368a6c8 1497 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1498 packet_disconnect("Received open confirmation for "
1499 "non-opening channel %d.", id);
1500 remote_id = packet_get_int();
aa3378df 1501 /* Record the remote channel number and mark that the channel is now open. */
7368a6c8 1502 c->remote_id = remote_id;
1503 c->type = SSH_CHANNEL_OPEN;
7e7327a1 1504
1505 if (compat20) {
1506 c->remote_window = packet_get_int();
1507 c->remote_maxpacket = packet_get_int();
6ae2364d 1508 packet_done();
7e7327a1 1509 if (c->cb_fn != NULL && c->cb_event == type) {
de273eef 1510 debug2("callback start");
7e7327a1 1511 c->cb_fn(c->self, c->cb_arg);
de273eef 1512 debug2("callback done");
7e7327a1 1513 }
1514 debug("channel %d: open confirm rwindow %d rmax %d", c->self,
1515 c->remote_window, c->remote_maxpacket);
1516 }
8efc0c15 1517}
1518
6ae2364d 1519void
188adeb2 1520channel_input_open_failure(int type, int plen, void *ctxt)
8efc0c15 1521{
02a024dd 1522 int id, reason;
1523 char *msg = NULL, *lang = NULL;
7368a6c8 1524 Channel *c;
5260325f 1525
7e7327a1 1526 if (!compat20)
1527 packet_integrity_check(plen, 4, type);
7368a6c8 1528
1529 id = packet_get_int();
1530 c = channel_lookup(id);
1531
1532 if (c==NULL || c->type != SSH_CHANNEL_OPENING)
1533 packet_disconnect("Received open failure for "
1534 "non-opening channel %d.", id);
7e7327a1 1535 if (compat20) {
02a024dd 1536 reason = packet_get_int();
1537 if (packet_remaining() > 0) {
1538 msg = packet_get_string(NULL);
1539 lang = packet_get_string(NULL);
1540 }
6ae2364d 1541 packet_done();
02a024dd 1542 log("channel_open_failure: %d: reason %d %s", id,
1543 reason, msg ? msg : "<no additional info>");
1544 if (msg != NULL)
1545 xfree(msg);
1546 if (lang != NULL)
1547 xfree(lang);
7e7327a1 1548 }
5260325f 1549 /* Free the channel. This will also close the socket. */
7368a6c8 1550 channel_free(id);
8efc0c15 1551}
1552
7e7327a1 1553void
188adeb2 1554channel_input_channel_request(int type, int plen, void *ctxt)
7e7327a1 1555{
1556 int id;
1557 Channel *c;
1558
1559 id = packet_get_int();
1560 c = channel_lookup(id);
1561
1562 if (c == NULL ||
1563 (c->type != SSH_CHANNEL_OPEN && c->type != SSH_CHANNEL_LARVAL))
1564 packet_disconnect("Received request for "
1565 "non-open channel %d.", id);
1566 if (c->cb_fn != NULL && c->cb_event == type) {
de273eef 1567 debug2("callback start");
7e7327a1 1568 c->cb_fn(c->self, c->cb_arg);
de273eef 1569 debug2("callback done");
7e7327a1 1570 } else {
1571 char *service = packet_get_string(NULL);
94dfb550 1572 debug("channel %d: rcvd request for %s", c->self, service);
de273eef 1573 debug("cb_fn %p cb_event %d", c->cb_fn , c->cb_event);
7e7327a1 1574 xfree(service);
1575 }
1576}
1577
6ae2364d 1578void
188adeb2 1579channel_input_window_adjust(int type, int plen, void *ctxt)
7e7327a1 1580{
1581 Channel *c;
1582 int id, adjust;
1583
1584 if (!compat20)
1585 return;
1586
1587 /* Get the channel number and verify it. */
1588 id = packet_get_int();
1589 c = channel_lookup(id);
1590
1591 if (c == NULL || c->type != SSH_CHANNEL_OPEN) {
1592 log("Received window adjust for "
1593 "non-open channel %d.", id);
1594 return;
1595 }
1596 adjust = packet_get_int();
6ae2364d 1597 packet_done();
de273eef 1598 debug2("channel %d: rcvd adjust %d", id, adjust);
7e7327a1 1599 c->remote_window += adjust;
1600}
1601
aa3378df 1602/*
1603 * Stops listening for channels, and removes any unix domain sockets that we
1604 * might have.
1605 */
8efc0c15 1606
6ae2364d 1607void
5260325f 1608channel_stop_listening()
8efc0c15 1609{
5260325f 1610 int i;
1611 for (i = 0; i < channels_alloc; i++) {
1612 switch (channels[i].type) {
1613 case SSH_CHANNEL_AUTH_SOCKET:
1614 close(channels[i].sock);
77bb0bca 1615 unlink(channels[i].path);
5260325f 1616 channel_free(i);
1617 break;
1618 case SSH_CHANNEL_PORT_LISTENER:
fa08c86b 1619 case SSH_CHANNEL_RPORT_LISTENER:
5260325f 1620 case SSH_CHANNEL_X11_LISTENER:
1621 close(channels[i].sock);
1622 channel_free(i);
1623 break;
1624 default:
1625 break;
1626 }
8efc0c15 1627 }
8efc0c15 1628}
1629
aa3378df 1630/*
0fbe8c74 1631 * Closes the sockets/fds of all channels. This is used to close extra file
aa3378df 1632 * descriptors after a fork.
1633 */
8efc0c15 1634
6ae2364d 1635void
5260325f 1636channel_close_all()
8efc0c15 1637{
5260325f 1638 int i;
0fbe8c74 1639 for (i = 0; i < channels_alloc; i++)
5260325f 1640 if (channels[i].type != SSH_CHANNEL_FREE)
0fbe8c74 1641 channel_close_fds(&channels[i]);
8efc0c15 1642}
1643
8efc0c15 1644/* Returns true if any channel is still open. */
1645
6ae2364d 1646int
5260325f 1647channel_still_open()
8efc0c15 1648{
1e3b8b07 1649 u_int i;
5260325f 1650 for (i = 0; i < channels_alloc; i++)
1651 switch (channels[i].type) {
1652 case SSH_CHANNEL_FREE:
1653 case SSH_CHANNEL_X11_LISTENER:
1654 case SSH_CHANNEL_PORT_LISTENER:
fa08c86b 1655 case SSH_CHANNEL_RPORT_LISTENER:
5260325f 1656 case SSH_CHANNEL_CLOSED:
1657 case SSH_CHANNEL_AUTH_SOCKET:
0490e609 1658 case SSH_CHANNEL_DYNAMIC:
97fb6912 1659 case SSH_CHANNEL_CONNECTING: /* XXX ??? */
5260325f 1660 continue;
7e7327a1 1661 case SSH_CHANNEL_LARVAL:
1662 if (!compat20)
1663 fatal("cannot happen: SSH_CHANNEL_LARVAL");
1664 continue;
5260325f 1665 case SSH_CHANNEL_OPENING:
1666 case SSH_CHANNEL_OPEN:
1667 case SSH_CHANNEL_X11_OPEN:
1668 return 1;
1669 case SSH_CHANNEL_INPUT_DRAINING:
1670 case SSH_CHANNEL_OUTPUT_DRAINING:
1671 if (!compat13)
1672 fatal("cannot happen: OUT_DRAIN");
1673 return 1;
1674 default:
1675 fatal("channel_still_open: bad channel type %d", channels[i].type);
1676 /* NOTREACHED */
1677 }
1678 return 0;
8efc0c15 1679}
1680
3ffc6336 1681/* Returns the id of an open channel suitable for keepaliving */
1682
1683int
1684channel_find_open()
1685{
1686 u_int i;
1687 for (i = 0; i < channels_alloc; i++)
1688 switch (channels[i].type) {
1689 case SSH_CHANNEL_CLOSED:
3ffc6336 1690 case SSH_CHANNEL_DYNAMIC:
3ffc6336 1691 case SSH_CHANNEL_FREE:
1692 case SSH_CHANNEL_X11_LISTENER:
1693 case SSH_CHANNEL_PORT_LISTENER:
1694 case SSH_CHANNEL_RPORT_LISTENER:
1695 case SSH_CHANNEL_OPENING:
9cf972fa 1696 continue;
1697 case SSH_CHANNEL_LARVAL:
1698 case SSH_CHANNEL_AUTH_SOCKET:
1699 case SSH_CHANNEL_CONNECTING: /* XXX ??? */
3ffc6336 1700 case SSH_CHANNEL_OPEN:
1701 case SSH_CHANNEL_X11_OPEN:
1702 return i;
1703 case SSH_CHANNEL_INPUT_DRAINING:
1704 case SSH_CHANNEL_OUTPUT_DRAINING:
1705 if (!compat13)
1706 fatal("cannot happen: OUT_DRAIN");
1707 return i;
1708 default:
1709 fatal("channel_find_open: bad channel type %d", channels[i].type);
1710 /* NOTREACHED */
1711 }
1712 return -1;
1713}
1714
1715
aa3378df 1716/*
1717 * Returns a message describing the currently open forwarded connections,
1718 * suitable for sending to the client. The message contains crlf pairs for
1719 * newlines.
1720 */
8efc0c15 1721
5260325f 1722char *
1723channel_open_message()
8efc0c15 1724{
5260325f 1725 Buffer buffer;
1726 int i;
1727 char buf[512], *cp;
1728
1729 buffer_init(&buffer);
1730 snprintf(buf, sizeof buf, "The following connections are open:\r\n");
8efc0c15 1731 buffer_append(&buffer, buf, strlen(buf));
5260325f 1732 for (i = 0; i < channels_alloc; i++) {
1733 Channel *c = &channels[i];
1734 switch (c->type) {
1735 case SSH_CHANNEL_FREE:
1736 case SSH_CHANNEL_X11_LISTENER:
1737 case SSH_CHANNEL_PORT_LISTENER:
fa08c86b 1738 case SSH_CHANNEL_RPORT_LISTENER:
5260325f 1739 case SSH_CHANNEL_CLOSED:
1740 case SSH_CHANNEL_AUTH_SOCKET:
1741 continue;
7e7327a1 1742 case SSH_CHANNEL_LARVAL:
5260325f 1743 case SSH_CHANNEL_OPENING:
97fb6912 1744 case SSH_CHANNEL_CONNECTING:
0490e609 1745 case SSH_CHANNEL_DYNAMIC:
5260325f 1746 case SSH_CHANNEL_OPEN:
1747 case SSH_CHANNEL_X11_OPEN:
1748 case SSH_CHANNEL_INPUT_DRAINING:
1749 case SSH_CHANNEL_OUTPUT_DRAINING:
7368a6c8 1750 snprintf(buf, sizeof buf, " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d)\r\n",
48e671d5 1751 c->self, c->remote_name,
1752 c->type, c->remote_id,
1753 c->istate, buffer_len(&c->input),
7368a6c8 1754 c->ostate, buffer_len(&c->output),
1755 c->rfd, c->wfd);
5260325f 1756 buffer_append(&buffer, buf, strlen(buf));
1757 continue;
1758 default:
7368a6c8 1759 fatal("channel_open_message: bad channel type %d", c->type);
5260325f 1760 /* NOTREACHED */
1761 }
1762 }
1763 buffer_append(&buffer, "\0", 1);
1764 cp = xstrdup(buffer_ptr(&buffer));
1765 buffer_free(&buffer);
1766 return cp;
8efc0c15 1767}
1768
aa3378df 1769/*
1770 * Initiate forwarding of connections to local port "port" through the secure
1771 * channel to host:port from remote side.
1772 */
02a024dd 1773int
fa08c86b 1774channel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
1775 u_short port_to_connect, int gateway_ports)
1776{
02a024dd 1777 return channel_request_forwarding(
fa08c86b 1778 NULL, listen_port,
1779 host_to_connect, port_to_connect,
1780 gateway_ports, /*remote_fwd*/ 0);
1781}
8efc0c15 1782
fa08c86b 1783/*
1784 * If 'remote_fwd' is true we have a '-R style' listener for protocol 2
1785 * (SSH_CHANNEL_RPORT_LISTENER).
1786 */
02a024dd 1787int
fa08c86b 1788channel_request_forwarding(
1789 const char *listen_address, u_short listen_port,
1790 const char *host_to_connect, u_short port_to_connect,
1791 int gateway_ports, int remote_fwd)
8efc0c15 1792{
fa08c86b 1793 int success, ch, sock, on = 1, ctype;
48e671d5 1794 struct addrinfo hints, *ai, *aitop;
1795 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
fa08c86b 1796 const char *host;
aa3378df 1797 struct linger linger;
5260325f 1798
02a024dd 1799 success = 0;
1800
fa08c86b 1801 if (remote_fwd) {
1802 host = listen_address;
2b87da3b 1803 ctype = SSH_CHANNEL_RPORT_LISTENER;
fa08c86b 1804 } else {
1805 host = host_to_connect;
1806 ctype =SSH_CHANNEL_PORT_LISTENER;
1807 }
1808
02a024dd 1809 if (strlen(host) > sizeof(channels[0].path) - 1) {
1810 error("Forward host name too long.");
1811 return success;
1812 }
5260325f 1813
fa08c86b 1814 /* XXX listen_address is currently ignored */
aa3378df 1815 /*
48e671d5 1816 * getaddrinfo returns a loopback address if the hostname is
1817 * set to NULL and hints.ai_flags is not AI_PASSIVE
aa3378df 1818 */
48e671d5 1819 memset(&hints, 0, sizeof(hints));
1820 hints.ai_family = IPv4or6;
1821 hints.ai_flags = gateway_ports ? AI_PASSIVE : 0;
1822 hints.ai_socktype = SOCK_STREAM;
fa08c86b 1823 snprintf(strport, sizeof strport, "%d", listen_port);
48e671d5 1824 if (getaddrinfo(NULL, strport, &hints, &aitop) != 0)
1825 packet_disconnect("getaddrinfo: fatal error");
1826
48e671d5 1827 for (ai = aitop; ai; ai = ai->ai_next) {
1828 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1829 continue;
1830 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
1831 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
fa08c86b 1832 error("channel_request_forwarding: getnameinfo failed");
48e671d5 1833 continue;
1834 }
1835 /* Create a port to listen for the host. */
1836 sock = socket(ai->ai_family, SOCK_STREAM, 0);
1837 if (sock < 0) {
1838 /* this is no error since kernel may not support ipv6 */
1839 verbose("socket: %.100s", strerror(errno));
1840 continue;
1841 }
1842 /*
1843 * Set socket options. We would like the socket to disappear
1844 * as soon as it has been closed for whatever reason.
1845 */
1846 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
1847 linger.l_onoff = 1;
1848 linger.l_linger = 5;
1849 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger));
1850 debug("Local forwarding listening on %s port %s.", ntop, strport);
1851
1852 /* Bind the socket to the address. */
1853 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1854 /* address can be in use ipv6 address is already bound */
16218745 1855 if (!ai->ai_next)
1856 error("bind: %.100s", strerror(errno));
1857 else
1858 verbose("bind: %.100s", strerror(errno));
2b87da3b 1859
48e671d5 1860 close(sock);
1861 continue;
1862 }
1863 /* Start listening for connections on the socket. */
1864 if (listen(sock, 5) < 0) {
1865 error("listen: %.100s", strerror(errno));
1866 close(sock);
1867 continue;
1868 }
1869 /* Allocate a channel number for the socket. */
fa08c86b 1870 ch = channel_new("port listener", ctype, sock, sock, -1,
0b242b12 1871 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
a22aff1f 1872 0, xstrdup("port listener"), 1);
48e671d5 1873 strlcpy(channels[ch].path, host, sizeof(channels[ch].path));
fa08c86b 1874 channels[ch].host_port = port_to_connect;
1875 channels[ch].listening_port = listen_port;
48e671d5 1876 success = 1;
1877 }
1878 if (success == 0)
02a024dd 1879 error("channel_request_forwarding: cannot listen to port: %d",
1880 listen_port);
48e671d5 1881 freeaddrinfo(aitop);
02a024dd 1882 return success;
5260325f 1883}
8efc0c15 1884
aa3378df 1885/*
1886 * Initiate forwarding of connections to port "port" on remote host through
1887 * the secure channel to host:port from local side.
1888 */
8efc0c15 1889
6ae2364d 1890void
fa08c86b 1891channel_request_remote_forwarding(u_short listen_port,
1892 const char *host_to_connect, u_short port_to_connect)
8efc0c15 1893{
fa08c86b 1894 int payload_len, type, success = 0;
1895
5260325f 1896 /* Record locally that connection to this host/port is permitted. */
1897 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1898 fatal("channel_request_remote_forwarding: too many forwards");
1899
5260325f 1900 /* Send the forward request to the remote side. */
7e7327a1 1901 if (compat20) {
1902 const char *address_to_bind = "0.0.0.0";
1903 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1904 packet_put_cstring("tcpip-forward");
1905 packet_put_char(0); /* boolean: want reply */
1906 packet_put_cstring(address_to_bind);
1907 packet_put_int(listen_port);
fa08c86b 1908 packet_send();
1909 packet_write_wait();
1910 /* Assume that server accepts the request */
1911 success = 1;
7e7327a1 1912 } else {
1913 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST);
7e7327a1 1914 packet_put_int(listen_port);
d6f24e45 1915 packet_put_cstring(host_to_connect);
1916 packet_put_int(port_to_connect);
7e7327a1 1917 packet_send();
1918 packet_write_wait();
fa08c86b 1919
1920 /* Wait for response from the remote side. */
1921 type = packet_read(&payload_len);
1922 switch (type) {
1923 case SSH_SMSG_SUCCESS:
1924 success = 1;
1925 break;
1926 case SSH_SMSG_FAILURE:
1927 log("Warning: Server denied remote port forwarding.");
1928 break;
1929 default:
1930 /* Unknown packet */
1931 packet_disconnect("Protocol error for port forward request:"
1932 "received packet type %d.", type);
1933 }
1934 }
1935 if (success) {
1936 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host_to_connect);
1937 permitted_opens[num_permitted_opens].port_to_connect = port_to_connect;
1938 permitted_opens[num_permitted_opens].listen_port = listen_port;
1939 num_permitted_opens++;
7e7327a1 1940 }
8efc0c15 1941}
1942
aa3378df 1943/*
1944 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
1945 * listening for the port, and sends back a success reply (or disconnect
1946 * message if there was an error). This never returns if there was an error.
1947 */
8efc0c15 1948
6ae2364d 1949void
1d1ffb87 1950channel_input_port_forward_request(int is_root, int gateway_ports)
8efc0c15 1951{
57112b5a 1952 u_short port, host_port;
5260325f 1953 char *hostname;
1954
1955 /* Get arguments from the packet. */
1956 port = packet_get_int();
1957 hostname = packet_get_string(NULL);
1958 host_port = packet_get_int();
1959
3c62e7eb 1960#ifndef HAVE_CYGWIN
aa3378df 1961 /*
1962 * Check that an unprivileged user is not trying to forward a
1963 * privileged port.
1964 */
5260325f 1965 if (port < IPPORT_RESERVED && !is_root)
1966 packet_disconnect("Requested forwarding of port %d but user is not root.",
1967 port);
3c62e7eb 1968#endif
fa08c86b 1969 /* Initiate forwarding */
1d1ffb87 1970 channel_request_local_forwarding(port, hostname, host_port, gateway_ports);
5260325f 1971
1972 /* Free the argument string. */
1973 xfree(hostname);
8efc0c15 1974}
1975
01794848 1976/*
1977 * Permits opening to any host/port if permitted_opens[] is empty. This is
1978 * usually called by the server, because the user could connect to any port
1979 * anyway, and the server has no way to know but to trust the client anyway.
1980 */
1981void
1982channel_permit_all_opens()
1983{
1984 if (num_permitted_opens == 0)
1985 all_opens_permitted = 1;
1986}
1987
cd332296 1988void
01794848 1989channel_add_permitted_opens(char *host, int port)
1990{
1991 if (num_permitted_opens >= SSH_MAX_FORWARDS_PER_DIRECTION)
1992 fatal("channel_request_remote_forwarding: too many forwards");
1993 debug("allow port forwarding to host %s port %d", host, port);
1994
1995 permitted_opens[num_permitted_opens].host_to_connect = xstrdup(host);
1996 permitted_opens[num_permitted_opens].port_to_connect = port;
1997 num_permitted_opens++;
1998
1999 all_opens_permitted = 0;
2000}
2001
cd332296 2002void
01794848 2003channel_clear_permitted_opens(void)
2004{
2005 int i;
2006
2007 for (i = 0; i < num_permitted_opens; i++)
2008 xfree(permitted_opens[i].host_to_connect);
2009 num_permitted_opens = 0;
2010
2011}
2012
2013
2014/* return socket to remote host, port */
7368a6c8 2015int
01794848 2016connect_to(const char *host, u_short port)
8efc0c15 2017{
48e671d5 2018 struct addrinfo hints, *ai, *aitop;
2019 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2020 int gaierr;
7368a6c8 2021 int sock = -1;
48e671d5 2022
2023 memset(&hints, 0, sizeof(hints));
2024 hints.ai_family = IPv4or6;
2025 hints.ai_socktype = SOCK_STREAM;
01794848 2026 snprintf(strport, sizeof strport, "%d", port);
48e671d5 2027 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
01794848 2028 error("connect_to %.100s: unknown host (%s)", host,
2029 gai_strerror(gaierr));
7368a6c8 2030 return -1;
48e671d5 2031 }
48e671d5 2032 for (ai = aitop; ai; ai = ai->ai_next) {
2033 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2034 continue;
2035 if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop, sizeof(ntop),
2036 strport, sizeof(strport), NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
01794848 2037 error("connect_to: getnameinfo failed");
48e671d5 2038 continue;
5260325f 2039 }
48e671d5 2040 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2041 if (sock < 0) {
2042 error("socket: %.100s", strerror(errno));
2043 continue;
5260325f 2044 }
eea39c02 2045 if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
97fb6912 2046 fatal("connect_to: F_SETFL: %s", strerror(errno));
97fb6912 2047 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&
2048 errno != EINPROGRESS) {
01794848 2049 error("connect_to %.100s port %s: %.100s", ntop, strport,
48e671d5 2050 strerror(errno));
2051 close(sock);
2b87da3b 2052 continue; /* fail -- try next */
48e671d5 2053 }
2054 break; /* success */
5260325f 2055
5260325f 2056 }
48e671d5 2057 freeaddrinfo(aitop);
48e671d5 2058 if (!ai) {
01794848 2059 error("connect_to %.100s port %d: failed.", host, port);
7368a6c8 2060 return -1;
8efc0c15 2061 }
7368a6c8 2062 /* success */
2063 return sock;
2064}
01794848 2065
fa08c86b 2066int
2067channel_connect_by_listen_adress(u_short listen_port)
2068{
2069 int i;
01794848 2070
fa08c86b 2071 for (i = 0; i < num_permitted_opens; i++)
2072 if (permitted_opens[i].listen_port == listen_port)
01794848 2073 return connect_to(
fa08c86b 2074 permitted_opens[i].host_to_connect,
2075 permitted_opens[i].port_to_connect);
0b6fbf03 2076 error("WARNING: Server requests forwarding for unknown listen_port %d",
2077 listen_port);
fa08c86b 2078 return -1;
2079}
48e671d5 2080
01794848 2081/* Check if connecting to that port is permitted and connect. */
2082int
2083channel_connect_to(const char *host, u_short port)
2084{
2085 int i, permit;
2086
2087 permit = all_opens_permitted;
2088 if (!permit) {
2089 for (i = 0; i < num_permitted_opens; i++)
2090 if (permitted_opens[i].port_to_connect == port &&
2091 strcmp(permitted_opens[i].host_to_connect, host) == 0)
2092 permit = 1;
2093
2094 }
2095 if (!permit) {
2096 log("Received request to connect to host %.100s port %d, "
2097 "but the request was denied.", host, port);
2098 return -1;
2099 }
2100 return connect_to(host, port);
2101}
2102
7368a6c8 2103/*
2104 * This is called after receiving PORT_OPEN message. This attempts to
2105 * connect to the given host:port, and sends back CHANNEL_OPEN_CONFIRMATION
2106 * or CHANNEL_OPEN_FAILURE.
2107 */
5260325f 2108
6ae2364d 2109void
188adeb2 2110channel_input_port_open(int type, int plen, void *ctxt)
7368a6c8 2111{
2112 u_short host_port;
2113 char *host, *originator_string;
01794848 2114 int remote_channel, sock = -1, newch;
5260325f 2115
7368a6c8 2116 remote_channel = packet_get_int();
01794848 2117 host = packet_get_string(NULL);
7368a6c8 2118 host_port = packet_get_int();
5260325f 2119
7368a6c8 2120 if (have_hostname_in_open) {
01794848 2121 originator_string = packet_get_string(NULL);
7368a6c8 2122 } else {
2123 originator_string = xstrdup("unknown (remote did not supply name)");
7368a6c8 2124 }
01794848 2125 packet_done();
2126 sock = channel_connect_to(host, host_port);
2127 if (sock != -1) {
97fb6912 2128 newch = channel_allocate(SSH_CHANNEL_CONNECTING,
2129 sock, originator_string);
7368a6c8 2130 channels[newch].remote_id = remote_channel;
2131
01794848 2132 /*XXX delay answer? */
7368a6c8 2133 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2134 packet_put_int(remote_channel);
2135 packet_put_int(newch);
2136 packet_send();
2137 } else {
2138 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2139 packet_put_int(remote_channel);
2140 packet_send();
2141 }
2142 xfree(host);
8efc0c15 2143}
2144
aa3378df 2145/*
2146 * Creates an internet domain socket for listening for X11 connections.
2147 * Returns a suitable value for the DISPLAY variable, or NULL if an error
2148 * occurs.
2149 */
8efc0c15 2150
48e671d5 2151#define NUM_SOCKS 10
2152
5260325f 2153char *
95f1eccc 2154x11_create_display_inet(int screen_number, int x11_display_offset)
8efc0c15 2155{
57112b5a 2156 int display_number, sock;
2157 u_short port;
48e671d5 2158 struct addrinfo hints, *ai, *aitop;
2159 char strport[NI_MAXSERV];
2160 int gaierr, n, num_socks = 0, socks[NUM_SOCKS];
2161 char display[512];
5260325f 2162 char hostname[MAXHOSTNAMELEN];
2163
95f1eccc 2164 for (display_number = x11_display_offset;
5260325f 2165 display_number < MAX_DISPLAYS;
2166 display_number++) {
2167 port = 6000 + display_number;
48e671d5 2168 memset(&hints, 0, sizeof(hints));
2169 hints.ai_family = IPv4or6;
2170 hints.ai_flags = AI_PASSIVE; /* XXX loopback only ? */
2171 hints.ai_socktype = SOCK_STREAM;
2172 snprintf(strport, sizeof strport, "%d", port);
2173 if ((gaierr = getaddrinfo(NULL, strport, &hints, &aitop)) != 0) {
2174 error("getaddrinfo: %.100s", gai_strerror(gaierr));
5260325f 2175 return NULL;
2176 }
48e671d5 2177 for (ai = aitop; ai; ai = ai->ai_next) {
2178 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
2179 continue;
2180 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2181 if (sock < 0) {
4ee81249 2182 if ((errno != EINVAL) && (errno != EAFNOSUPPORT)) {
80a44451 2183 error("socket: %.100s", strerror(errno));
2184 return NULL;
2185 } else {
22d89d24 2186 debug("x11_create_display_inet: Socket family %d not supported",
2187 ai->ai_family);
80a44451 2188 continue;
2189 }
48e671d5 2190 }
2191 if (bind(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2192 debug("bind port %d: %.100s", port, strerror(errno));
2193 shutdown(sock, SHUT_RDWR);
2194 close(sock);
16218745 2195
2196 if (ai->ai_next)
2197 continue;
2198
48e671d5 2199 for (n = 0; n < num_socks; n++) {
2200 shutdown(socks[n], SHUT_RDWR);
2201 close(socks[n]);
2202 }
2203 num_socks = 0;
2204 break;
2205 }
2206 socks[num_socks++] = sock;
80faa19f 2207#ifndef DONT_TRY_OTHER_AF
48e671d5 2208 if (num_socks == NUM_SOCKS)
2209 break;
80faa19f 2210#else
2211 break;
2212#endif
5260325f 2213 }
4ccb01d6 2214 freeaddrinfo(aitop);
48e671d5 2215 if (num_socks > 0)
2216 break;
5260325f 2217 }
2218 if (display_number >= MAX_DISPLAYS) {
2219 error("Failed to allocate internet-domain X11 display socket.");
2220 return NULL;
8efc0c15 2221 }
5260325f 2222 /* Start listening for connections on the socket. */
48e671d5 2223 for (n = 0; n < num_socks; n++) {
2224 sock = socks[n];
2225 if (listen(sock, 5) < 0) {
2226 error("listen: %.100s", strerror(errno));
2227 shutdown(sock, SHUT_RDWR);
2228 close(sock);
2229 return NULL;
2230 }
8efc0c15 2231 }
48e671d5 2232
5260325f 2233 /* Set up a suitable value for the DISPLAY variable. */
2234 if (gethostname(hostname, sizeof(hostname)) < 0)
2235 fatal("gethostname: %.100s", strerror(errno));
a7effaac 2236
2237#ifdef IPADDR_IN_DISPLAY
2b87da3b 2238 /*
a7effaac 2239 * HPUX detects the local hostname in the DISPLAY variable and tries
2240 * to set up a shared memory connection to the server, which it
2241 * incorrectly supposes to be local.
2242 *
2243 * The workaround - as used in later $$H and other programs - is
2244 * is to set display to the host's IP address.
2245 */
2246 {
2247 struct hostent *he;
2248 struct in_addr my_addr;
2249
2250 he = gethostbyname(hostname);
2251 if (he == NULL) {
2252 error("[X11-broken-fwd-hostname-workaround] Could not get "
2253 "IP address for hostname %s.", hostname);
2254
2255 packet_send_debug("[X11-broken-fwd-hostname-workaround]"
2256 "Could not get IP address for hostname %s.", hostname);
2257
2258 shutdown(sock, SHUT_RDWR);
2259 close(sock);
2260
2261 return NULL;
2262 }
2263
2264 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2265
2266 /* Set DISPLAY to <ip address>:screen.display */
2b87da3b 2267 snprintf(display, sizeof(display), "%.50s:%d.%d", inet_ntoa(my_addr),
74141647 2268 display_number, screen_number);
a7effaac 2269 }
2270#else /* IPADDR_IN_DISPLAY */
2271 /* Just set DISPLAY to hostname:screen.display */
48e671d5 2272 snprintf(display, sizeof display, "%.400s:%d.%d", hostname,
74141647 2273 display_number, screen_number);
a7effaac 2274#endif /* IPADDR_IN_DISPLAY */
5260325f 2275
48e671d5 2276 /* Allocate a channel for each socket. */
2277 for (n = 0; n < num_socks; n++) {
2278 sock = socks[n];
0b242b12 2279 (void) channel_new("x11 listener",
2280 SSH_CHANNEL_X11_LISTENER, sock, sock, -1,
2281 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
a22aff1f 2282 0, xstrdup("X11 inet listener"), 1);
48e671d5 2283 }
5260325f 2284
2285 /* Return a suitable value for the DISPLAY environment variable. */
48e671d5 2286 return xstrdup(display);
8efc0c15 2287}
2288
2289#ifndef X_UNIX_PATH
2290#define X_UNIX_PATH "/tmp/.X11-unix/X"
2291#endif
2292
2293static
2294int
1e3b8b07 2295connect_local_xsocket(u_int dnr)
8efc0c15 2296{
5260325f 2297 static const char *const x_sockets[] = {
2298 X_UNIX_PATH "%u",
2299 "/var/X/.X11-unix/X" "%u",
2300 "/usr/spool/sockets/X11/" "%u",
2301 NULL
2302 };
2303 int sock;
2304 struct sockaddr_un addr;
2305 const char *const * path;
2306
2307 for (path = x_sockets; *path; ++path) {
2308 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2309 if (sock < 0)
2310 error("socket: %.100s", strerror(errno));
2311 memset(&addr, 0, sizeof(addr));
2312 addr.sun_family = AF_UNIX;
2313 snprintf(addr.sun_path, sizeof addr.sun_path, *path, dnr);
2314 if (connect(sock, (struct sockaddr *) & addr, sizeof(addr)) == 0)
2315 return sock;
2316 close(sock);
2317 }
2318 error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
2319 return -1;
8efc0c15 2320}
2321
0b242b12 2322int
2323x11_connect_display(void)
8efc0c15 2324{
0b242b12 2325 int display_number, sock = 0;
5260325f 2326 const char *display;
0b242b12 2327 char buf[1024], *cp;
48e671d5 2328 struct addrinfo hints, *ai, *aitop;
2329 char strport[NI_MAXSERV];
2330 int gaierr;
5260325f 2331
5260325f 2332 /* Try to open a socket for the local X server. */
2333 display = getenv("DISPLAY");
2334 if (!display) {
2335 error("DISPLAY not set.");
0b242b12 2336 return -1;
5260325f 2337 }
aa3378df 2338 /*
2339 * Now we decode the value of the DISPLAY variable and make a
2340 * connection to the real X server.
2341 */
2342
2343 /*
2344 * Check if it is a unix domain socket. Unix domain displays are in
2345 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2346 */
5260325f 2347 if (strncmp(display, "unix:", 5) == 0 ||
2348 display[0] == ':') {
2349 /* Connect to the unix domain socket. */
2350 if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
2351 error("Could not parse display number from DISPLAY: %.100s",
2352 display);
0b242b12 2353 return -1;
5260325f 2354 }
2355 /* Create a socket. */
2356 sock = connect_local_xsocket(display_number);
2357 if (sock < 0)
0b242b12 2358 return -1;
5260325f 2359
2360 /* OK, we now have a connection to the display. */
0b242b12 2361 return sock;
5260325f 2362 }
aa3378df 2363 /*
2364 * Connect to an inet socket. The DISPLAY value is supposedly
2365 * hostname:d[.s], where hostname may also be numeric IP address.
2366 */
5260325f 2367 strncpy(buf, display, sizeof(buf));
2368 buf[sizeof(buf) - 1] = 0;
2369 cp = strchr(buf, ':');
2370 if (!cp) {
2371 error("Could not find ':' in DISPLAY: %.100s", display);
0b242b12 2372 return -1;
5260325f 2373 }
2374 *cp = 0;
aa3378df 2375 /* buf now contains the host name. But first we parse the display number. */
5260325f 2376 if (sscanf(cp + 1, "%d", &display_number) != 1) {
2377 error("Could not parse display number from DISPLAY: %.100s",
2378 display);
0b242b12 2379 return -1;
5260325f 2380 }
5260325f 2381
48e671d5 2382 /* Look up the host address */
2383 memset(&hints, 0, sizeof(hints));
2384 hints.ai_family = IPv4or6;
2385 hints.ai_socktype = SOCK_STREAM;
2386 snprintf(strport, sizeof strport, "%d", 6000 + display_number);
2387 if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
2388 error("%.100s: unknown host. (%s)", buf, gai_strerror(gaierr));
0b242b12 2389 return -1;
8efc0c15 2390 }
48e671d5 2391 for (ai = aitop; ai; ai = ai->ai_next) {
2392 /* Create a socket. */
2393 sock = socket(ai->ai_family, SOCK_STREAM, 0);
2394 if (sock < 0) {
2395 debug("socket: %.100s", strerror(errno));
7368a6c8 2396 continue;
2397 }
2398 /* Connect it to the display. */
2399 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0) {
2400 debug("connect %.100s port %d: %.100s", buf,
2401 6000 + display_number, strerror(errno));
2402 close(sock);
2403 continue;
2404 }
2405 /* Success */
2406 break;
48e671d5 2407 }
48e671d5 2408 freeaddrinfo(aitop);
2409 if (!ai) {
6ae2364d 2410 error("connect %.100s port %d: %.100s", buf, 6000 + display_number,
48e671d5 2411 strerror(errno));
0b242b12 2412 return -1;
8efc0c15 2413 }
0b242b12 2414 return sock;
2415}
5260325f 2416
0b242b12 2417/*
2418 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2419 * the remote channel number. We should do whatever we want, and respond
2420 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2421 */
5260325f 2422
0b242b12 2423void
188adeb2 2424x11_input_open(int type, int plen, void *ctxt)
0b242b12 2425{
2426 int remote_channel, sock = 0, newch;
2427 char *remote_host;
1e3b8b07 2428 u_int remote_len;
5260325f 2429
0b242b12 2430 /* Get remote channel number. */
2431 remote_channel = packet_get_int();
5260325f 2432
0b242b12 2433 /* Get remote originator name. */
2434 if (have_hostname_in_open) {
2435 remote_host = packet_get_string(&remote_len);
2436 remote_len += 4;
2437 } else {
2438 remote_host = xstrdup("unknown (remote did not supply name)");
2439 remote_len = 0;
2440 }
2441
2442 debug("Received X11 open request.");
2443 packet_integrity_check(plen, 4 + remote_len, SSH_SMSG_X11_OPEN);
2444
2445 /* Obtain a connection to the real X display. */
2446 sock = x11_connect_display();
2447 if (sock == -1) {
2448 /* Send refusal to the remote host. */
2449 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2450 packet_put_int(remote_channel);
2451 packet_send();
2452 } else {
2453 /* Allocate a channel for this connection. */
2454 newch = channel_allocate(
2455 (x11_saved_proto == NULL) ?
2456 SSH_CHANNEL_OPEN : SSH_CHANNEL_X11_OPEN,
2457 sock, remote_host);
2458 channels[newch].remote_id = remote_channel;
2459
2460 /* Send a confirmation to the remote host. */
2461 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2462 packet_put_int(remote_channel);
2463 packet_put_int(newch);
2464 packet_send();
2465 }
8efc0c15 2466}
2467
a22aff1f 2468/* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2469void
2470deny_input_open(int type, int plen, void *ctxt)
2471{
2472 int rchan = packet_get_int();
2473 switch(type){
2474 case SSH_SMSG_AGENT_OPEN:
2475 error("Warning: ssh server tried agent forwarding.");
2476 break;
2477 case SSH_SMSG_X11_OPEN:
2478 error("Warning: ssh server tried X11 forwarding.");
2479 break;
2480 default:
2481 error("deny_input_open: type %d plen %d", type, plen);
2482 break;
2483 }
2484 error("Warning: this is probably a break in attempt by a malicious server.");
2485 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2486 packet_put_int(rchan);
2487 packet_send();
2488}
2489
aa3378df 2490/*
2491 * Requests forwarding of X11 connections, generates fake authentication
2492 * data, and enables authentication spoofing.
2493 */
8efc0c15 2494
6ae2364d 2495void
0b242b12 2496x11_request_forwarding_with_spoofing(int client_session_id,
2497 const char *proto, const char *data)
8efc0c15 2498{
1e3b8b07 2499 u_int data_len = (u_int) strlen(data) / 2;
ca910e13 2500 u_int i, value, len;
5260325f 2501 char *new_data;
2502 int screen_number;
2503 const char *cp;
2504 u_int32_t rand = 0;
2505
2506 cp = getenv("DISPLAY");
2507 if (cp)
2508 cp = strchr(cp, ':');
2509 if (cp)
2510 cp = strchr(cp, '.');
2511 if (cp)
2512 screen_number = atoi(cp + 1);
2513 else
2514 screen_number = 0;
2515
2516 /* Save protocol name. */
2517 x11_saved_proto = xstrdup(proto);
2518
aa3378df 2519 /*
2520 * Extract real authentication data and generate fake data of the
2521 * same length.
2522 */
5260325f 2523 x11_saved_data = xmalloc(data_len);
2524 x11_fake_data = xmalloc(data_len);
2525 for (i = 0; i < data_len; i++) {
2526 if (sscanf(data + 2 * i, "%2x", &value) != 1)
2527 fatal("x11_request_forwarding: bad authentication data: %.100s", data);
2528 if (i % 4 == 0)
2529 rand = arc4random();
2530 x11_saved_data[i] = value;
2531 x11_fake_data[i] = rand & 0xff;
2532 rand >>= 8;
2533 }
2534 x11_saved_data_len = data_len;
2535 x11_fake_data_len = data_len;
2536
2537 /* Convert the fake data into hex. */
ca910e13 2538 len = 2 * data_len + 1;
2539 new_data = xmalloc(len);
5260325f 2540 for (i = 0; i < data_len; i++)
ca910e13 2541 snprintf(new_data + 2 * i, len - 2 * i,
2542 "%02x", (u_char) x11_fake_data[i]);
5260325f 2543
2544 /* Send the request packet. */
0b242b12 2545 if (compat20) {
2546 channel_request_start(client_session_id, "x11-req", 0);
2547 packet_put_char(0); /* XXX bool single connection */
2548 } else {
2549 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING);
2550 }
2551 packet_put_cstring(proto);
2552 packet_put_cstring(new_data);
5260325f 2553 packet_put_int(screen_number);
2554 packet_send();
2555 packet_write_wait();
2556 xfree(new_data);
8efc0c15 2557}
2558
2559/* Sends a message to the server to request authentication fd forwarding. */
2560
6ae2364d 2561void
5260325f 2562auth_request_forwarding()
8efc0c15 2563{
5260325f 2564 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING);
2565 packet_send();
2566 packet_write_wait();
8efc0c15 2567}
2568
aa3378df 2569/*
2570 * Returns the name of the forwarded authentication socket. Returns NULL if
2571 * there is no forwarded authentication socket. The returned value points to
2572 * a static buffer.
2573 */
8efc0c15 2574
5260325f 2575char *
2576auth_get_socket_name()
8efc0c15 2577{
5260325f 2578 return channel_forwarded_auth_socket_name;
8efc0c15 2579}
2580
2581/* removes the agent forwarding socket */
2582
6ae2364d 2583void
5260325f 2584cleanup_socket(void)
2585{
77bb0bca 2586 unlink(channel_forwarded_auth_socket_name);
5260325f 2587 rmdir(channel_forwarded_auth_socket_dir);
8efc0c15 2588}
2589
aa3378df 2590/*
fa649821 2591 * This is called to process SSH_CMSG_AGENT_REQUEST_FORWARDING on the server.
aa3378df 2592 * This starts forwarding authentication requests.
2593 */
8efc0c15 2594
fa649821 2595int
5260325f 2596auth_input_request_forwarding(struct passwd * pw)
8efc0c15 2597{
5260325f 2598 int sock, newch;
2599 struct sockaddr_un sunaddr;
2600
2601 if (auth_get_socket_name() != NULL)
2602 fatal("Protocol error: authentication forwarding requested twice.");
2603
2604 /* Temporarily drop privileged uid for mkdir/bind. */
63bd8c36 2605 temporarily_use_uid(pw);
5260325f 2606
2607 /* Allocate a buffer for the socket name, and format the name. */
2608 channel_forwarded_auth_socket_name = xmalloc(MAX_SOCKET_NAME);
2609 channel_forwarded_auth_socket_dir = xmalloc(MAX_SOCKET_NAME);
2610 strlcpy(channel_forwarded_auth_socket_dir, "/tmp/ssh-XXXXXXXX", MAX_SOCKET_NAME);
2611
2612 /* Create private directory for socket */
fa649821 2613 if (mkdtemp(channel_forwarded_auth_socket_dir) == NULL) {
2614 packet_send_debug("Agent forwarding disabled: mkdtemp() failed: %.100s",
2615 strerror(errno));
2616 restore_uid();
2617 xfree(channel_forwarded_auth_socket_name);
2618 xfree(channel_forwarded_auth_socket_dir);
2619 channel_forwarded_auth_socket_name = NULL;
2620 channel_forwarded_auth_socket_dir = NULL;
2621 return 0;
2622 }
5260325f 2623 snprintf(channel_forwarded_auth_socket_name, MAX_SOCKET_NAME, "%s/agent.%d",
2624 channel_forwarded_auth_socket_dir, (int) getpid());
2625
2626 if (atexit(cleanup_socket) < 0) {
2627 int saved = errno;
2628 cleanup_socket();
2629 packet_disconnect("socket: %.100s", strerror(saved));
2630 }
2631 /* Create the socket. */
2632 sock = socket(AF_UNIX, SOCK_STREAM, 0);
2633 if (sock < 0)
2634 packet_disconnect("socket: %.100s", strerror(errno));
2635
2636 /* Bind it to the name. */
2637 memset(&sunaddr, 0, sizeof(sunaddr));
2638 sunaddr.sun_family = AF_UNIX;
2639 strncpy(sunaddr.sun_path, channel_forwarded_auth_socket_name,
2640 sizeof(sunaddr.sun_path));
2641
2642 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
2643 packet_disconnect("bind: %.100s", strerror(errno));
2644
2645 /* Restore the privileged uid. */
2646 restore_uid();
2647
2648 /* Start listening on the socket. */
2649 if (listen(sock, 5) < 0)
2650 packet_disconnect("listen: %.100s", strerror(errno));
2651
2652 /* Allocate a channel for the authentication agent socket. */
fa08c86b 2653 newch = channel_new("auth socket",
2654 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
2655 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
2656 0, xstrdup("auth socket"), 1);
2657
a408af76 2658 strlcpy(channels[newch].path, channel_forwarded_auth_socket_name,
2659 sizeof(channels[newch].path));
fa649821 2660 return 1;
8efc0c15 2661}
2662
2663/* This is called to process an SSH_SMSG_AGENT_OPEN message. */
2664
6ae2364d 2665void
188adeb2 2666auth_input_open_request(int type, int plen, void *ctxt)
8efc0c15 2667{
5260325f 2668 int remch, sock, newch;
2669 char *dummyname;
2670
7368a6c8 2671 packet_integrity_check(plen, 4, type);
2672
5260325f 2673 /* Read the remote channel number from the message. */
2674 remch = packet_get_int();
2675
aa3378df 2676 /*
2677 * Get a connection to the local authentication agent (this may again
2678 * get forwarded).
2679 */
5260325f 2680 sock = ssh_get_authentication_socket();
2681
aa3378df 2682 /*
2683 * If we could not connect the agent, send an error message back to
2684 * the server. This should never happen unless the agent dies,
2685 * because authentication forwarding is only enabled if we have an
2686 * agent.
2687 */
5260325f 2688 if (sock < 0) {
2689 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE);
2690 packet_put_int(remch);
2691 packet_send();
2692 return;
2693 }
2694 debug("Forwarding authentication connection.");
2695
aa3378df 2696 /*
2697 * Dummy host name. This will be freed when the channel is freed; it
2698 * will still be valid in the packet_put_string below since the
2699 * channel cannot yet be freed at that point.
2700 */
5260325f 2701 dummyname = xstrdup("authentication agent connection");
2702
2703 newch = channel_allocate(SSH_CHANNEL_OPEN, sock, dummyname);
2704 channels[newch].remote_id = remch;
2705
2706 /* Send a confirmation to the remote host. */
2707 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
2708 packet_put_int(remch);
2709 packet_put_int(newch);
2710 packet_send();
8efc0c15 2711}
7e7327a1 2712
2713void
0b242b12 2714channel_start_open(int id)
7e7327a1 2715{
2716 Channel *c = channel_lookup(id);
2717 if (c == NULL) {
2718 log("channel_open: %d: bad id", id);
2719 return;
2720 }
0b242b12 2721 debug("send channel open %d", id);
7e7327a1 2722 packet_start(SSH2_MSG_CHANNEL_OPEN);
2723 packet_put_cstring(c->ctype);
2724 packet_put_int(c->self);
2725 packet_put_int(c->local_window);
2726 packet_put_int(c->local_maxpacket);
0b242b12 2727}
2728void
2729channel_open(int id)
2730{
2731 /* XXX REMOVE ME */
2732 channel_start_open(id);
7e7327a1 2733 packet_send();
7e7327a1 2734}
2735void
2736channel_request(int id, char *service, int wantconfirm)
2737{
2738 channel_request_start(id, service, wantconfirm);
2739 packet_send();
2740 debug("channel request %d: %s", id, service) ;
2741}
2742void
2743channel_request_start(int id, char *service, int wantconfirm)
2744{
2745 Channel *c = channel_lookup(id);
2746 if (c == NULL) {
2747 log("channel_request: %d: bad id", id);
2748 return;
2749 }
2750 packet_start(SSH2_MSG_CHANNEL_REQUEST);
2751 packet_put_int(c->remote_id);
2752 packet_put_cstring(service);
2753 packet_put_char(wantconfirm);
2754}
2755void
2756channel_register_callback(int id, int mtype, channel_callback_fn *fn, void *arg)
2757{
2758 Channel *c = channel_lookup(id);
2759 if (c == NULL) {
2760 log("channel_register_callback: %d: bad id", id);
2761 return;
2762 }
2763 c->cb_event = mtype;
2764 c->cb_fn = fn;
2765 c->cb_arg = arg;
2766}
2767void
2768channel_register_cleanup(int id, channel_callback_fn *fn)
2769{
2770 Channel *c = channel_lookup(id);
2771 if (c == NULL) {
2772 log("channel_register_cleanup: %d: bad id", id);
2773 return;
2774 }
2775 c->dettach_user = fn;
2776}
2777void
2778channel_cancel_cleanup(int id)
2779{
2780 Channel *c = channel_lookup(id);
2781 if (c == NULL) {
2782 log("channel_cancel_cleanup: %d: bad id", id);
2783 return;
2784 }
2785 c->dettach_user = NULL;
2786}
2b87da3b 2787void
2e73a022 2788channel_register_filter(int id, channel_filter_fn *fn)
2789{
2790 Channel *c = channel_lookup(id);
2791 if (c == NULL) {
2792 log("channel_register_filter: %d: bad id", id);
2793 return;
2794 }
2795 c->input_filter = fn;
2796}
7e7327a1 2797
2798void
a22aff1f 2799channel_set_fds(int id, int rfd, int wfd, int efd,
2800 int extusage, int nonblock)
7e7327a1 2801{
2802 Channel *c = channel_lookup(id);
2803 if (c == NULL || c->type != SSH_CHANNEL_LARVAL)
2804 fatal("channel_activate for non-larval channel %d.", id);
a22aff1f 2805 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock);
7e7327a1 2806 c->type = SSH_CHANNEL_OPEN;
7e7327a1 2807 /* XXX window size? */
bcbf86ec 2808 c->local_window = c->local_window_max = c->local_maxpacket * 2;
7e7327a1 2809 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST);
2810 packet_put_int(c->remote_id);
2811 packet_put_int(c->local_window);
2812 packet_send();
2813}
This page took 0.603144 seconds and 5 git commands to generate.