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