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