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