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