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