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