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