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