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