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