2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
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.
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".
15 * SSH2 support added by Markus Friedl.
16 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
17 * Copyright (c) 1999 Dug Song. All rights reserved.
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
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.
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.
42 RCSID("$OpenBSD: channels.c,v 1.221 2005/07/16 01:35:24 djm Exp $");
56 #include "pathnames.h"
61 #define CHAN_RBUF 16*1024
64 * Pointer to an array containing all allocated channels. The array is
65 * dynamically extended as needed.
67 static Channel
**channels
= NULL
;
70 * Size of the channel array. All slots of the array must always be
71 * initialized (at least the type field); unused slots set to NULL
73 static u_int channels_alloc
= 0;
76 * Maximum file descriptor value used in any of the channels. This is
77 * updated in channel_new.
79 static int channel_max_fd
= 0;
82 /* -- tcp forwarding */
85 * Data structure for storing which hosts are permitted for forward requests.
86 * The local sides of any remote forwards are stored in this array to prevent
87 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
88 * network (which might be behind a firewall).
91 char *host_to_connect
; /* Connect to 'host'. */
92 u_short port_to_connect
; /* Connect to 'port'. */
93 u_short listen_port
; /* Remote side should listen port number. */
96 /* List of all permitted host/port pairs to connect. */
97 static ForwardPermission permitted_opens
[SSH_MAX_FORWARDS_PER_DIRECTION
];
99 /* Number of permitted host/port pairs in the array. */
100 static int num_permitted_opens
= 0;
102 * If this is true, all opens are permitted. This is the case on the server
103 * on which we have to trust the client anyway, and the user could do
104 * anything after logging in anyway.
106 static int all_opens_permitted
= 0;
109 /* -- X11 forwarding */
111 /* Maximum number of fake X11 displays to try. */
112 #define MAX_DISPLAYS 1000
114 /* Saved X11 local (client) display. */
115 static char *x11_saved_display
= NULL
;
117 /* Saved X11 authentication protocol name. */
118 static char *x11_saved_proto
= NULL
;
120 /* Saved X11 authentication data. This is the real data. */
121 static char *x11_saved_data
= NULL
;
122 static u_int x11_saved_data_len
= 0;
125 * Fake X11 authentication data. This is what the server will be sending us;
126 * we should replace any occurrences of this by the real data.
128 static char *x11_fake_data
= NULL
;
129 static u_int x11_fake_data_len
;
132 /* -- agent forwarding */
136 /* AF_UNSPEC or AF_INET or AF_INET6 */
137 static int IPv4or6
= AF_UNSPEC
;
140 static void port_open_helper(Channel
*c
, char *rtype
);
142 /* -- channel core */
145 channel_lookup(int id
)
149 if (id
< 0 || (u_int
)id
>= channels_alloc
) {
150 logit("channel_lookup: %d: bad id", id
);
155 logit("channel_lookup: %d: bad id: channel free", id
);
162 * Register filedescriptors for a channel, used when allocating a channel or
163 * when the channel consumer/producer is ready, e.g. shell exec'd
167 channel_register_fds(Channel
*c
, int rfd
, int wfd
, int efd
,
168 int extusage
, int nonblock
)
170 /* Update the maximum file descriptor value. */
171 channel_max_fd
= MAX(channel_max_fd
, rfd
);
172 channel_max_fd
= MAX(channel_max_fd
, wfd
);
173 channel_max_fd
= MAX(channel_max_fd
, efd
);
175 /* XXX set close-on-exec -markus */
179 c
->sock
= (rfd
== wfd
) ? rfd
: -1;
180 c
->ctl_fd
= -1; /* XXX: set elsewhere */
182 c
->extended_usage
= extusage
;
184 /* XXX ugly hack: nonblock is only set by the server */
185 if (nonblock
&& isatty(c
->rfd
)) {
186 debug2("channel %d: rfd %d isatty", c
->self
, c
->rfd
);
188 if (!isatty(c
->wfd
)) {
189 error("channel %d: wfd %d is not a tty?",
195 c
->wfd_isatty
= isatty(c
->wfd
);
197 /* enable nonblocking mode */
209 * Allocate a new channel object and set its type and socket. This will cause
210 * remote_name to be freed.
214 channel_new(char *ctype
, int type
, int rfd
, int wfd
, int efd
,
215 u_int window
, u_int maxpack
, int extusage
, char *remote_name
, int nonblock
)
221 /* Do initial allocation if this is the first call. */
222 if (channels_alloc
== 0) {
224 channels
= xmalloc(channels_alloc
* sizeof(Channel
*));
225 for (i
= 0; i
< channels_alloc
; i
++)
228 /* Try to find a free slot where to put the new channel. */
229 for (found
= -1, i
= 0; i
< channels_alloc
; i
++)
230 if (channels
[i
] == NULL
) {
231 /* Found a free slot. */
236 /* There are no free slots. Take last+1 slot and expand the array. */
237 found
= channels_alloc
;
238 if (channels_alloc
> 10000)
239 fatal("channel_new: internal error: channels_alloc %d "
240 "too big.", channels_alloc
);
241 channels
= xrealloc(channels
,
242 (channels_alloc
+ 10) * sizeof(Channel
*));
243 channels_alloc
+= 10;
244 debug2("channel: expanding %d", channels_alloc
);
245 for (i
= found
; i
< channels_alloc
; i
++)
248 /* Initialize and return new channel. */
249 c
= channels
[found
] = xmalloc(sizeof(Channel
));
250 memset(c
, 0, sizeof(Channel
));
251 buffer_init(&c
->input
);
252 buffer_init(&c
->output
);
253 buffer_init(&c
->extended
);
254 c
->ostate
= CHAN_OUTPUT_OPEN
;
255 c
->istate
= CHAN_INPUT_OPEN
;
257 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
);
261 c
->local_window
= window
;
262 c
->local_window_max
= window
;
263 c
->local_consumed
= 0;
264 c
->local_maxpacket
= maxpack
;
266 c
->remote_name
= xstrdup(remote_name
);
267 c
->remote_window
= 0;
268 c
->remote_maxpacket
= 0;
270 c
->single_connection
= 0;
271 c
->detach_user
= NULL
;
273 c
->confirm_ctx
= NULL
;
274 c
->input_filter
= NULL
;
275 debug("channel %d: new [%s]", found
, remote_name
);
280 channel_find_maxfd(void)
286 for (i
= 0; i
< channels_alloc
; i
++) {
289 max
= MAX(max
, c
->rfd
);
290 max
= MAX(max
, c
->wfd
);
291 max
= MAX(max
, c
->efd
);
298 channel_close_fd(int *fdp
)
300 int ret
= 0, fd
= *fdp
;
305 if (fd
== channel_max_fd
)
306 channel_max_fd
= channel_find_maxfd();
311 /* Close all channel fd/socket. */
314 channel_close_fds(Channel
*c
)
316 debug3("channel %d: close_fds r %d w %d e %d c %d",
317 c
->self
, c
->rfd
, c
->wfd
, c
->efd
, c
->ctl_fd
);
319 channel_close_fd(&c
->sock
);
320 channel_close_fd(&c
->ctl_fd
);
321 channel_close_fd(&c
->rfd
);
322 channel_close_fd(&c
->wfd
);
323 channel_close_fd(&c
->efd
);
326 /* Free the channel and close its fd/socket. */
329 channel_free(Channel
*c
)
334 for (n
= 0, i
= 0; i
< channels_alloc
; i
++)
337 debug("channel %d: free: %s, nchannels %u", c
->self
,
338 c
->remote_name
? c
->remote_name
: "???", n
);
340 s
= channel_open_message();
341 debug3("channel %d: status: %s", c
->self
, s
);
345 shutdown(c
->sock
, SHUT_RDWR
);
347 shutdown(c
->ctl_fd
, SHUT_RDWR
);
348 channel_close_fds(c
);
349 buffer_free(&c
->input
);
350 buffer_free(&c
->output
);
351 buffer_free(&c
->extended
);
352 if (c
->remote_name
) {
353 xfree(c
->remote_name
);
354 c
->remote_name
= NULL
;
356 channels
[c
->self
] = NULL
;
361 channel_free_all(void)
365 for (i
= 0; i
< channels_alloc
; i
++)
366 if (channels
[i
] != NULL
)
367 channel_free(channels
[i
]);
371 * Closes the sockets/fds of all channels. This is used to close extra file
372 * descriptors after a fork.
376 channel_close_all(void)
380 for (i
= 0; i
< channels_alloc
; i
++)
381 if (channels
[i
] != NULL
)
382 channel_close_fds(channels
[i
]);
386 * Stop listening to channels.
390 channel_stop_listening(void)
395 for (i
= 0; i
< channels_alloc
; i
++) {
399 case SSH_CHANNEL_AUTH_SOCKET
:
400 case SSH_CHANNEL_PORT_LISTENER
:
401 case SSH_CHANNEL_RPORT_LISTENER
:
402 case SSH_CHANNEL_X11_LISTENER
:
403 channel_close_fd(&c
->sock
);
412 * Returns true if no channel has too much buffered data, and false if one or
413 * more channel is overfull.
417 channel_not_very_much_buffered_data(void)
422 for (i
= 0; i
< channels_alloc
; i
++) {
424 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_OPEN
) {
427 buffer_len(&c
->input
) > packet_get_maxsize()) {
428 debug2("channel %d: big input buffer %d",
429 c
->self
, buffer_len(&c
->input
));
433 if (buffer_len(&c
->output
) > packet_get_maxsize()) {
434 debug2("channel %d: big output buffer %u > %u",
435 c
->self
, buffer_len(&c
->output
),
436 packet_get_maxsize());
444 /* Returns true if any channel is still open. */
447 channel_still_open(void)
452 for (i
= 0; i
< channels_alloc
; i
++) {
457 case SSH_CHANNEL_X11_LISTENER
:
458 case SSH_CHANNEL_PORT_LISTENER
:
459 case SSH_CHANNEL_RPORT_LISTENER
:
460 case SSH_CHANNEL_CLOSED
:
461 case SSH_CHANNEL_AUTH_SOCKET
:
462 case SSH_CHANNEL_DYNAMIC
:
463 case SSH_CHANNEL_CONNECTING
:
464 case SSH_CHANNEL_ZOMBIE
:
466 case SSH_CHANNEL_LARVAL
:
468 fatal("cannot happen: SSH_CHANNEL_LARVAL");
470 case SSH_CHANNEL_OPENING
:
471 case SSH_CHANNEL_OPEN
:
472 case SSH_CHANNEL_X11_OPEN
:
474 case SSH_CHANNEL_INPUT_DRAINING
:
475 case SSH_CHANNEL_OUTPUT_DRAINING
:
477 fatal("cannot happen: OUT_DRAIN");
480 fatal("channel_still_open: bad channel type %d", c
->type
);
487 /* Returns the id of an open channel suitable for keepaliving */
490 channel_find_open(void)
495 for (i
= 0; i
< channels_alloc
; i
++) {
497 if (c
== NULL
|| c
->remote_id
< 0)
500 case SSH_CHANNEL_CLOSED
:
501 case SSH_CHANNEL_DYNAMIC
:
502 case SSH_CHANNEL_X11_LISTENER
:
503 case SSH_CHANNEL_PORT_LISTENER
:
504 case SSH_CHANNEL_RPORT_LISTENER
:
505 case SSH_CHANNEL_OPENING
:
506 case SSH_CHANNEL_CONNECTING
:
507 case SSH_CHANNEL_ZOMBIE
:
509 case SSH_CHANNEL_LARVAL
:
510 case SSH_CHANNEL_AUTH_SOCKET
:
511 case SSH_CHANNEL_OPEN
:
512 case SSH_CHANNEL_X11_OPEN
:
514 case SSH_CHANNEL_INPUT_DRAINING
:
515 case SSH_CHANNEL_OUTPUT_DRAINING
:
517 fatal("cannot happen: OUT_DRAIN");
520 fatal("channel_find_open: bad channel type %d", c
->type
);
529 * Returns a message describing the currently open forwarded connections,
530 * suitable for sending to the client. The message contains crlf pairs for
535 channel_open_message(void)
542 buffer_init(&buffer
);
543 snprintf(buf
, sizeof buf
, "The following connections are open:\r\n");
544 buffer_append(&buffer
, buf
, strlen(buf
));
545 for (i
= 0; i
< channels_alloc
; i
++) {
550 case SSH_CHANNEL_X11_LISTENER
:
551 case SSH_CHANNEL_PORT_LISTENER
:
552 case SSH_CHANNEL_RPORT_LISTENER
:
553 case SSH_CHANNEL_CLOSED
:
554 case SSH_CHANNEL_AUTH_SOCKET
:
555 case SSH_CHANNEL_ZOMBIE
:
557 case SSH_CHANNEL_LARVAL
:
558 case SSH_CHANNEL_OPENING
:
559 case SSH_CHANNEL_CONNECTING
:
560 case SSH_CHANNEL_DYNAMIC
:
561 case SSH_CHANNEL_OPEN
:
562 case SSH_CHANNEL_X11_OPEN
:
563 case SSH_CHANNEL_INPUT_DRAINING
:
564 case SSH_CHANNEL_OUTPUT_DRAINING
:
565 snprintf(buf
, sizeof buf
,
566 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
567 c
->self
, c
->remote_name
,
568 c
->type
, c
->remote_id
,
569 c
->istate
, buffer_len(&c
->input
),
570 c
->ostate
, buffer_len(&c
->output
),
571 c
->rfd
, c
->wfd
, c
->ctl_fd
);
572 buffer_append(&buffer
, buf
, strlen(buf
));
575 fatal("channel_open_message: bad channel type %d", c
->type
);
579 buffer_append(&buffer
, "\0", 1);
580 cp
= xstrdup(buffer_ptr(&buffer
));
581 buffer_free(&buffer
);
586 channel_send_open(int id
)
588 Channel
*c
= channel_lookup(id
);
591 logit("channel_send_open: %d: bad id", id
);
594 debug2("channel %d: send open", id
);
595 packet_start(SSH2_MSG_CHANNEL_OPEN
);
596 packet_put_cstring(c
->ctype
);
597 packet_put_int(c
->self
);
598 packet_put_int(c
->local_window
);
599 packet_put_int(c
->local_maxpacket
);
604 channel_request_start(int id
, char *service
, int wantconfirm
)
606 Channel
*c
= channel_lookup(id
);
609 logit("channel_request_start: %d: unknown channel id", id
);
612 debug2("channel %d: request %s confirm %d", id
, service
, wantconfirm
);
613 packet_start(SSH2_MSG_CHANNEL_REQUEST
);
614 packet_put_int(c
->remote_id
);
615 packet_put_cstring(service
);
616 packet_put_char(wantconfirm
);
619 channel_register_confirm(int id
, channel_callback_fn
*fn
, void *ctx
)
621 Channel
*c
= channel_lookup(id
);
624 logit("channel_register_comfirm: %d: bad id", id
);
628 c
->confirm_ctx
= ctx
;
631 channel_register_cleanup(int id
, channel_callback_fn
*fn
)
633 Channel
*c
= channel_lookup(id
);
636 logit("channel_register_cleanup: %d: bad id", id
);
642 channel_cancel_cleanup(int id
)
644 Channel
*c
= channel_lookup(id
);
647 logit("channel_cancel_cleanup: %d: bad id", id
);
650 c
->detach_user
= NULL
;
653 channel_register_filter(int id
, channel_filter_fn
*fn
)
655 Channel
*c
= channel_lookup(id
);
658 logit("channel_register_filter: %d: bad id", id
);
661 c
->input_filter
= fn
;
665 channel_set_fds(int id
, int rfd
, int wfd
, int efd
,
666 int extusage
, int nonblock
, u_int window_max
)
668 Channel
*c
= channel_lookup(id
);
670 if (c
== NULL
|| c
->type
!= SSH_CHANNEL_LARVAL
)
671 fatal("channel_activate for non-larval channel %d.", id
);
672 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
);
673 c
->type
= SSH_CHANNEL_OPEN
;
674 c
->local_window
= c
->local_window_max
= window_max
;
675 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
676 packet_put_int(c
->remote_id
);
677 packet_put_int(c
->local_window
);
682 * 'channel_pre*' are called just before select() to add any bits relevant to
683 * channels in the select bitmasks.
686 * 'channel_post*': perform any appropriate operations for channels which
687 * have events pending.
689 typedef void chan_fn(Channel
*c
, fd_set
* readset
, fd_set
* writeset
);
690 chan_fn
*channel_pre
[SSH_CHANNEL_MAX_TYPE
];
691 chan_fn
*channel_post
[SSH_CHANNEL_MAX_TYPE
];
694 channel_pre_listener(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
696 FD_SET(c
->sock
, readset
);
700 channel_pre_connecting(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
702 debug3("channel %d: waiting for connection", c
->self
);
703 FD_SET(c
->sock
, writeset
);
707 channel_pre_open_13(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
709 if (buffer_len(&c
->input
) < packet_get_maxsize())
710 FD_SET(c
->sock
, readset
);
711 if (buffer_len(&c
->output
) > 0)
712 FD_SET(c
->sock
, writeset
);
716 channel_pre_open(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
718 u_int limit
= compat20
? c
->remote_window
: packet_get_maxsize();
720 /* check buffer limits */
721 limit
= MIN(limit
, (BUFFER_MAX_LEN
- BUFFER_MAX_CHUNK
- CHAN_RBUF
));
723 if (c
->istate
== CHAN_INPUT_OPEN
&&
725 buffer_len(&c
->input
) < limit
)
726 FD_SET(c
->rfd
, readset
);
727 if (c
->ostate
== CHAN_OUTPUT_OPEN
||
728 c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
729 if (buffer_len(&c
->output
) > 0) {
730 FD_SET(c
->wfd
, writeset
);
731 } else if (c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
732 if (CHANNEL_EFD_OUTPUT_ACTIVE(c
))
733 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
734 c
->self
, c
->efd
, buffer_len(&c
->extended
));
739 /** XXX check close conditions, too */
740 if (compat20
&& c
->efd
!= -1) {
741 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
742 buffer_len(&c
->extended
) > 0)
743 FD_SET(c
->efd
, writeset
);
744 else if (!(c
->flags
& CHAN_EOF_SENT
) &&
745 c
->extended_usage
== CHAN_EXTENDED_READ
&&
746 buffer_len(&c
->extended
) < c
->remote_window
)
747 FD_SET(c
->efd
, readset
);
749 /* XXX: What about efd? races? */
750 if (compat20
&& c
->ctl_fd
!= -1 &&
751 c
->istate
== CHAN_INPUT_OPEN
&& c
->ostate
== CHAN_OUTPUT_OPEN
)
752 FD_SET(c
->ctl_fd
, readset
);
756 channel_pre_input_draining(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
758 if (buffer_len(&c
->input
) == 0) {
759 packet_start(SSH_MSG_CHANNEL_CLOSE
);
760 packet_put_int(c
->remote_id
);
762 c
->type
= SSH_CHANNEL_CLOSED
;
763 debug2("channel %d: closing after input drain.", c
->self
);
768 channel_pre_output_draining(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
770 if (buffer_len(&c
->output
) == 0)
773 FD_SET(c
->sock
, writeset
);
777 * This is a special state for X11 authentication spoofing. An opened X11
778 * connection (when authentication spoofing is being done) remains in this
779 * state until the first packet has been completely read. The authentication
780 * data in that packet is then substituted by the real data if it matches the
781 * fake data, and the channel is put into normal mode.
782 * XXX All this happens at the client side.
783 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
786 x11_open_helper(Buffer
*b
)
789 u_int proto_len
, data_len
;
791 /* Check if the fixed size part of the packet is in buffer. */
792 if (buffer_len(b
) < 12)
795 /* Parse the lengths of variable-length fields. */
797 if (ucp
[0] == 0x42) { /* Byte order MSB first. */
798 proto_len
= 256 * ucp
[6] + ucp
[7];
799 data_len
= 256 * ucp
[8] + ucp
[9];
800 } else if (ucp
[0] == 0x6c) { /* Byte order LSB first. */
801 proto_len
= ucp
[6] + 256 * ucp
[7];
802 data_len
= ucp
[8] + 256 * ucp
[9];
804 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
809 /* Check if the whole packet is in buffer. */
811 12 + ((proto_len
+ 3) & ~3) + ((data_len
+ 3) & ~3))
814 /* Check if authentication protocol matches. */
815 if (proto_len
!= strlen(x11_saved_proto
) ||
816 memcmp(ucp
+ 12, x11_saved_proto
, proto_len
) != 0) {
817 debug2("X11 connection uses different authentication protocol.");
820 /* Check if authentication data matches our fake data. */
821 if (data_len
!= x11_fake_data_len
||
822 memcmp(ucp
+ 12 + ((proto_len
+ 3) & ~3),
823 x11_fake_data
, x11_fake_data_len
) != 0) {
824 debug2("X11 auth data does not match fake data.");
827 /* Check fake data length */
828 if (x11_fake_data_len
!= x11_saved_data_len
) {
829 error("X11 fake_data_len %d != saved_data_len %d",
830 x11_fake_data_len
, x11_saved_data_len
);
834 * Received authentication protocol and data match
835 * our fake data. Substitute the fake data with real
838 memcpy(ucp
+ 12 + ((proto_len
+ 3) & ~3),
839 x11_saved_data
, x11_saved_data_len
);
844 channel_pre_x11_open_13(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
846 int ret
= x11_open_helper(&c
->output
);
849 /* Start normal processing for the channel. */
850 c
->type
= SSH_CHANNEL_OPEN
;
851 channel_pre_open_13(c
, readset
, writeset
);
852 } else if (ret
== -1) {
854 * We have received an X11 connection that has bad
855 * authentication information.
857 logit("X11 connection rejected because of wrong authentication.");
858 buffer_clear(&c
->input
);
859 buffer_clear(&c
->output
);
860 channel_close_fd(&c
->sock
);
862 c
->type
= SSH_CHANNEL_CLOSED
;
863 packet_start(SSH_MSG_CHANNEL_CLOSE
);
864 packet_put_int(c
->remote_id
);
870 channel_pre_x11_open(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
872 int ret
= x11_open_helper(&c
->output
);
874 /* c->force_drain = 1; */
877 c
->type
= SSH_CHANNEL_OPEN
;
878 channel_pre_open(c
, readset
, writeset
);
879 } else if (ret
== -1) {
880 logit("X11 connection rejected because of wrong authentication.");
881 debug2("X11 rejected %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
883 buffer_clear(&c
->input
);
885 buffer_clear(&c
->output
);
886 /* for proto v1, the peer will send an IEOF */
888 chan_write_failed(c
);
890 c
->type
= SSH_CHANNEL_OPEN
;
891 debug2("X11 closed %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
895 /* try to decode a socks4 header */
897 channel_decode_socks4(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
900 u_int len
, have
, i
, found
;
906 struct in_addr dest_addr
;
909 debug2("channel %d: decode socks4", c
->self
);
911 have
= buffer_len(&c
->input
);
912 len
= sizeof(s4_req
);
915 p
= buffer_ptr(&c
->input
);
916 for (found
= 0, i
= len
; i
< have
; i
++) {
922 /* the peer is probably sending garbage */
923 debug("channel %d: decode socks4: too long",
930 buffer_get(&c
->input
, (char *)&s4_req
.version
, 1);
931 buffer_get(&c
->input
, (char *)&s4_req
.command
, 1);
932 buffer_get(&c
->input
, (char *)&s4_req
.dest_port
, 2);
933 buffer_get(&c
->input
, (char *)&s4_req
.dest_addr
, 4);
934 have
= buffer_len(&c
->input
);
935 p
= buffer_ptr(&c
->input
);
937 debug2("channel %d: decode socks4: user %s/%d", c
->self
, p
, len
);
939 fatal("channel %d: decode socks4: len %d > have %d",
941 strlcpy(username
, p
, sizeof(username
));
942 buffer_consume(&c
->input
, len
);
943 buffer_consume(&c
->input
, 1); /* trailing '\0' */
945 host
= inet_ntoa(s4_req
.dest_addr
);
946 strlcpy(c
->path
, host
, sizeof(c
->path
));
947 c
->host_port
= ntohs(s4_req
.dest_port
);
949 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
950 c
->self
, host
, c
->host_port
, s4_req
.command
);
952 if (s4_req
.command
!= 1) {
953 debug("channel %d: cannot handle: socks4 cn %d",
954 c
->self
, s4_req
.command
);
957 s4_rsp
.version
= 0; /* vn: 0 for reply */
958 s4_rsp
.command
= 90; /* cd: req granted */
959 s4_rsp
.dest_port
= 0; /* ignored */
960 s4_rsp
.dest_addr
.s_addr
= INADDR_ANY
; /* ignored */
961 buffer_append(&c
->output
, (char *)&s4_rsp
, sizeof(s4_rsp
));
965 /* try to decode a socks5 header */
966 #define SSH_SOCKS5_AUTHDONE 0x1000
967 #define SSH_SOCKS5_NOAUTH 0x00
968 #define SSH_SOCKS5_IPV4 0x01
969 #define SSH_SOCKS5_DOMAIN 0x03
970 #define SSH_SOCKS5_IPV6 0x04
971 #define SSH_SOCKS5_CONNECT 0x01
972 #define SSH_SOCKS5_SUCCESS 0x00
975 channel_decode_socks5(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
984 u_char
*p
, dest_addr
[255+1];
985 u_int have
, i
, found
, nmethods
, addrlen
, af
;
987 debug2("channel %d: decode socks5", c
->self
);
988 p
= buffer_ptr(&c
->input
);
991 have
= buffer_len(&c
->input
);
992 if (!(c
->flags
& SSH_SOCKS5_AUTHDONE
)) {
993 /* format: ver | nmethods | methods */
997 if (have
< nmethods
+ 2)
999 /* look for method: "NO AUTHENTICATION REQUIRED" */
1000 for (found
= 0, i
= 2 ; i
< nmethods
+ 2; i
++) {
1001 if (p
[i
] == SSH_SOCKS5_NOAUTH
) {
1007 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1011 buffer_consume(&c
->input
, nmethods
+ 2);
1012 buffer_put_char(&c
->output
, 0x05); /* version */
1013 buffer_put_char(&c
->output
, SSH_SOCKS5_NOAUTH
); /* method */
1014 FD_SET(c
->sock
, writeset
);
1015 c
->flags
|= SSH_SOCKS5_AUTHDONE
;
1016 debug2("channel %d: socks5 auth done", c
->self
);
1017 return 0; /* need more */
1019 debug2("channel %d: socks5 post auth", c
->self
);
1020 if (have
< sizeof(s5_req
)+1)
1021 return 0; /* need more */
1022 memcpy((char *)&s5_req
, p
, sizeof(s5_req
));
1023 if (s5_req
.version
!= 0x05 ||
1024 s5_req
.command
!= SSH_SOCKS5_CONNECT
||
1025 s5_req
.reserved
!= 0x00) {
1026 debug2("channel %d: only socks5 connect supported", c
->self
);
1029 switch (s5_req
.atyp
){
1030 case SSH_SOCKS5_IPV4
:
1034 case SSH_SOCKS5_DOMAIN
:
1035 addrlen
= p
[sizeof(s5_req
)];
1038 case SSH_SOCKS5_IPV6
:
1043 debug2("channel %d: bad socks5 atyp %d", c
->self
, s5_req
.atyp
);
1046 if (have
< 4 + addrlen
+ 2)
1048 buffer_consume(&c
->input
, sizeof(s5_req
));
1049 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1050 buffer_consume(&c
->input
, 1); /* host string length */
1051 buffer_get(&c
->input
, (char *)&dest_addr
, addrlen
);
1052 buffer_get(&c
->input
, (char *)&dest_port
, 2);
1053 dest_addr
[addrlen
] = '\0';
1054 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1055 strlcpy(c
->path
, (char *)dest_addr
, sizeof(c
->path
));
1056 else if (inet_ntop(af
, dest_addr
, c
->path
, sizeof(c
->path
)) == NULL
)
1058 c
->host_port
= ntohs(dest_port
);
1060 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
1061 c
->self
, c
->path
, c
->host_port
, s5_req
.command
);
1063 s5_rsp
.version
= 0x05;
1064 s5_rsp
.command
= SSH_SOCKS5_SUCCESS
;
1065 s5_rsp
.reserved
= 0; /* ignored */
1066 s5_rsp
.atyp
= SSH_SOCKS5_IPV4
;
1067 ((struct in_addr
*)&dest_addr
)->s_addr
= INADDR_ANY
;
1068 dest_port
= 0; /* ignored */
1070 buffer_append(&c
->output
, (char *)&s5_rsp
, sizeof(s5_rsp
));
1071 buffer_append(&c
->output
, (char *)&dest_addr
, sizeof(struct in_addr
));
1072 buffer_append(&c
->output
, (char *)&dest_port
, sizeof(dest_port
));
1076 /* dynamic port forwarding */
1078 channel_pre_dynamic(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1084 have
= buffer_len(&c
->input
);
1086 debug2("channel %d: pre_dynamic: have %d", c
->self
, have
);
1087 /* buffer_dump(&c->input); */
1088 /* check if the fixed size part of the packet is in buffer. */
1091 FD_SET(c
->sock
, readset
);
1094 /* try to guess the protocol */
1095 p
= buffer_ptr(&c
->input
);
1098 ret
= channel_decode_socks4(c
, readset
, writeset
);
1101 ret
= channel_decode_socks5(c
, readset
, writeset
);
1109 } else if (ret
== 0) {
1110 debug2("channel %d: pre_dynamic: need more", c
->self
);
1112 FD_SET(c
->sock
, readset
);
1114 /* switch to the next state */
1115 c
->type
= SSH_CHANNEL_OPENING
;
1116 port_open_helper(c
, "direct-tcpip");
1120 /* This is our fake X11 server socket. */
1122 channel_post_x11_listener(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1125 struct sockaddr addr
;
1128 char buf
[16384], *remote_ipaddr
;
1131 if (FD_ISSET(c
->sock
, readset
)) {
1132 debug("X11 connection requested.");
1133 addrlen
= sizeof(addr
);
1134 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1135 if (c
->single_connection
) {
1136 debug2("single_connection: closing X11 listener.");
1137 channel_close_fd(&c
->sock
);
1141 error("accept: %.100s", strerror(errno
));
1144 set_nodelay(newsock
);
1145 remote_ipaddr
= get_peer_ipaddr(newsock
);
1146 remote_port
= get_peer_port(newsock
);
1147 snprintf(buf
, sizeof buf
, "X11 connection from %.200s port %d",
1148 remote_ipaddr
, remote_port
);
1150 nc
= channel_new("accepted x11 socket",
1151 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1152 c
->local_window_max
, c
->local_maxpacket
, 0, buf
, 1);
1154 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1155 packet_put_cstring("x11");
1156 packet_put_int(nc
->self
);
1157 packet_put_int(nc
->local_window_max
);
1158 packet_put_int(nc
->local_maxpacket
);
1159 /* originator ipaddr and port */
1160 packet_put_cstring(remote_ipaddr
);
1161 if (datafellows
& SSH_BUG_X11FWD
) {
1162 debug2("ssh2 x11 bug compat mode");
1164 packet_put_int(remote_port
);
1168 packet_start(SSH_SMSG_X11_OPEN
);
1169 packet_put_int(nc
->self
);
1170 if (packet_get_protocol_flags() &
1171 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1172 packet_put_cstring(buf
);
1175 xfree(remote_ipaddr
);
1180 port_open_helper(Channel
*c
, char *rtype
)
1184 char *remote_ipaddr
= get_peer_ipaddr(c
->sock
);
1185 int remote_port
= get_peer_port(c
->sock
);
1187 direct
= (strcmp(rtype
, "direct-tcpip") == 0);
1189 snprintf(buf
, sizeof buf
,
1190 "%s: listening port %d for %.100s port %d, "
1191 "connect from %.200s port %d",
1192 rtype
, c
->listening_port
, c
->path
, c
->host_port
,
1193 remote_ipaddr
, remote_port
);
1195 xfree(c
->remote_name
);
1196 c
->remote_name
= xstrdup(buf
);
1199 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1200 packet_put_cstring(rtype
);
1201 packet_put_int(c
->self
);
1202 packet_put_int(c
->local_window_max
);
1203 packet_put_int(c
->local_maxpacket
);
1205 /* target host, port */
1206 packet_put_cstring(c
->path
);
1207 packet_put_int(c
->host_port
);
1209 /* listen address, port */
1210 packet_put_cstring(c
->path
);
1211 packet_put_int(c
->listening_port
);
1213 /* originator host and port */
1214 packet_put_cstring(remote_ipaddr
);
1215 packet_put_int((u_int
)remote_port
);
1218 packet_start(SSH_MSG_PORT_OPEN
);
1219 packet_put_int(c
->self
);
1220 packet_put_cstring(c
->path
);
1221 packet_put_int(c
->host_port
);
1222 if (packet_get_protocol_flags() &
1223 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1224 packet_put_cstring(c
->remote_name
);
1227 xfree(remote_ipaddr
);
1231 * This socket is listening for connections to a forwarded TCP/IP port.
1234 channel_post_port_listener(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1237 struct sockaddr addr
;
1238 int newsock
, nextstate
;
1242 if (FD_ISSET(c
->sock
, readset
)) {
1243 debug("Connection to port %d forwarding "
1244 "to %.100s port %d requested.",
1245 c
->listening_port
, c
->path
, c
->host_port
);
1247 if (c
->type
== SSH_CHANNEL_RPORT_LISTENER
) {
1248 nextstate
= SSH_CHANNEL_OPENING
;
1249 rtype
= "forwarded-tcpip";
1251 if (c
->host_port
== 0) {
1252 nextstate
= SSH_CHANNEL_DYNAMIC
;
1253 rtype
= "dynamic-tcpip";
1255 nextstate
= SSH_CHANNEL_OPENING
;
1256 rtype
= "direct-tcpip";
1260 addrlen
= sizeof(addr
);
1261 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1263 error("accept: %.100s", strerror(errno
));
1266 set_nodelay(newsock
);
1267 nc
= channel_new(rtype
, nextstate
, newsock
, newsock
, -1,
1268 c
->local_window_max
, c
->local_maxpacket
, 0, rtype
, 1);
1269 nc
->listening_port
= c
->listening_port
;
1270 nc
->host_port
= c
->host_port
;
1271 strlcpy(nc
->path
, c
->path
, sizeof(nc
->path
));
1273 if (nextstate
== SSH_CHANNEL_DYNAMIC
) {
1275 * do not call the channel_post handler until
1276 * this flag has been reset by a pre-handler.
1277 * otherwise the FD_ISSET calls might overflow
1281 port_open_helper(nc
, rtype
);
1287 * This is the authentication agent socket listening for connections from
1291 channel_post_auth_listener(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1295 struct sockaddr addr
;
1298 if (FD_ISSET(c
->sock
, readset
)) {
1299 addrlen
= sizeof(addr
);
1300 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1302 error("accept from auth socket: %.100s", strerror(errno
));
1305 nc
= channel_new("accepted auth socket",
1306 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1307 c
->local_window_max
, c
->local_maxpacket
,
1308 0, "accepted auth socket", 1);
1310 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1311 packet_put_cstring("auth-agent@openssh.com");
1312 packet_put_int(nc
->self
);
1313 packet_put_int(c
->local_window_max
);
1314 packet_put_int(c
->local_maxpacket
);
1316 packet_start(SSH_SMSG_AGENT_OPEN
);
1317 packet_put_int(nc
->self
);
1324 channel_post_connecting(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1327 socklen_t sz
= sizeof(err
);
1329 if (FD_ISSET(c
->sock
, writeset
)) {
1330 if (getsockopt(c
->sock
, SOL_SOCKET
, SO_ERROR
, &err
, &sz
) < 0) {
1332 error("getsockopt SO_ERROR failed");
1335 debug("channel %d: connected", c
->self
);
1336 c
->type
= SSH_CHANNEL_OPEN
;
1338 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
1339 packet_put_int(c
->remote_id
);
1340 packet_put_int(c
->self
);
1341 packet_put_int(c
->local_window
);
1342 packet_put_int(c
->local_maxpacket
);
1344 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
1345 packet_put_int(c
->remote_id
);
1346 packet_put_int(c
->self
);
1349 debug("channel %d: not connected: %s",
1350 c
->self
, strerror(err
));
1352 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
1353 packet_put_int(c
->remote_id
);
1354 packet_put_int(SSH2_OPEN_CONNECT_FAILED
);
1355 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
1356 packet_put_cstring(strerror(err
));
1357 packet_put_cstring("");
1360 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
1361 packet_put_int(c
->remote_id
);
1370 channel_handle_rfd(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1372 char buf
[CHAN_RBUF
];
1376 FD_ISSET(c
->rfd
, readset
)) {
1377 len
= read(c
->rfd
, buf
, sizeof(buf
));
1378 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1381 debug2("channel %d: read<=0 rfd %d len %d",
1382 c
->self
, c
->rfd
, len
);
1383 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1384 debug2("channel %d: not open", c
->self
);
1387 } else if (compat13
) {
1388 buffer_clear(&c
->output
);
1389 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1390 debug2("channel %d: input draining.", c
->self
);
1392 chan_read_failed(c
);
1396 if (c
->input_filter
!= NULL
) {
1397 if (c
->input_filter(c
, buf
, len
) == -1) {
1398 debug2("channel %d: filter stops", c
->self
);
1399 chan_read_failed(c
);
1402 buffer_append(&c
->input
, buf
, len
);
1408 channel_handle_wfd(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1415 /* Send buffered output data to the socket. */
1417 FD_ISSET(c
->wfd
, writeset
) &&
1418 buffer_len(&c
->output
) > 0) {
1419 data
= buffer_ptr(&c
->output
);
1420 dlen
= buffer_len(&c
->output
);
1422 /* XXX: Later AIX versions can't push as much data to tty */
1423 if (compat20
&& c
->wfd_isatty
)
1424 dlen
= MIN(dlen
, 8*1024);
1426 len
= write(c
->wfd
, data
, dlen
);
1427 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1430 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1431 debug2("channel %d: not open", c
->self
);
1434 } else if (compat13
) {
1435 buffer_clear(&c
->output
);
1436 debug2("channel %d: input draining.", c
->self
);
1437 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1439 chan_write_failed(c
);
1443 if (compat20
&& c
->isatty
&& dlen
>= 1 && data
[0] != '\r') {
1444 if (tcgetattr(c
->wfd
, &tio
) == 0 &&
1445 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
1447 * Simulate echo to reduce the impact of
1448 * traffic analysis. We need to match the
1449 * size of a SSH2_MSG_CHANNEL_DATA message
1450 * (4 byte channel id + data)
1452 packet_send_ignore(4 + len
);
1456 buffer_consume(&c
->output
, len
);
1457 if (compat20
&& len
> 0) {
1458 c
->local_consumed
+= len
;
1464 channel_handle_efd(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1466 char buf
[CHAN_RBUF
];
1469 /** XXX handle drain efd, too */
1471 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
1472 FD_ISSET(c
->efd
, writeset
) &&
1473 buffer_len(&c
->extended
) > 0) {
1474 len
= write(c
->efd
, buffer_ptr(&c
->extended
),
1475 buffer_len(&c
->extended
));
1476 debug2("channel %d: written %d to efd %d",
1477 c
->self
, len
, c
->efd
);
1478 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1481 debug2("channel %d: closing write-efd %d",
1483 channel_close_fd(&c
->efd
);
1485 buffer_consume(&c
->extended
, len
);
1486 c
->local_consumed
+= len
;
1488 } else if (c
->extended_usage
== CHAN_EXTENDED_READ
&&
1489 FD_ISSET(c
->efd
, readset
)) {
1490 len
= read(c
->efd
, buf
, sizeof(buf
));
1491 debug2("channel %d: read %d from efd %d",
1492 c
->self
, len
, c
->efd
);
1493 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1496 debug2("channel %d: closing read-efd %d",
1498 channel_close_fd(&c
->efd
);
1500 buffer_append(&c
->extended
, buf
, len
);
1507 channel_handle_ctl(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1512 /* Monitor control fd to detect if the slave client exits */
1513 if (c
->ctl_fd
!= -1 && FD_ISSET(c
->ctl_fd
, readset
)) {
1514 len
= read(c
->ctl_fd
, buf
, sizeof(buf
));
1515 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1518 debug2("channel %d: ctl read<=0", c
->self
);
1519 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1520 debug2("channel %d: not open", c
->self
);
1524 chan_read_failed(c
);
1525 chan_write_failed(c
);
1529 fatal("%s: unexpected data on ctl fd", __func__
);
1534 channel_check_window(Channel
*c
)
1536 if (c
->type
== SSH_CHANNEL_OPEN
&&
1537 !(c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
)) &&
1538 c
->local_window
< c
->local_window_max
/2 &&
1539 c
->local_consumed
> 0) {
1540 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
1541 packet_put_int(c
->remote_id
);
1542 packet_put_int(c
->local_consumed
);
1544 debug2("channel %d: window %d sent adjust %d",
1545 c
->self
, c
->local_window
,
1547 c
->local_window
+= c
->local_consumed
;
1548 c
->local_consumed
= 0;
1554 channel_post_open(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1558 channel_handle_rfd(c
, readset
, writeset
);
1559 channel_handle_wfd(c
, readset
, writeset
);
1562 channel_handle_efd(c
, readset
, writeset
);
1563 channel_handle_ctl(c
, readset
, writeset
);
1564 channel_check_window(c
);
1568 channel_post_output_drain_13(Channel
*c
, fd_set
* readset
, fd_set
* writeset
)
1572 /* Send buffered output data to the socket. */
1573 if (FD_ISSET(c
->sock
, writeset
) && buffer_len(&c
->output
) > 0) {
1574 len
= write(c
->sock
, buffer_ptr(&c
->output
),
1575 buffer_len(&c
->output
));
1577 buffer_clear(&c
->output
);
1579 buffer_consume(&c
->output
, len
);
1584 channel_handler_init_20(void)
1586 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1587 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1588 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1589 channel_pre
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_pre_listener
;
1590 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1591 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1592 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1593 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1595 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1596 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1597 channel_post
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_post_port_listener
;
1598 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1599 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1600 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1601 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1605 channel_handler_init_13(void)
1607 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open_13
;
1608 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open_13
;
1609 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1610 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1611 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1612 channel_pre
[SSH_CHANNEL_INPUT_DRAINING
] = &channel_pre_input_draining
;
1613 channel_pre
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_pre_output_draining
;
1614 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1615 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1617 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1618 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1619 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1620 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1621 channel_post
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_post_output_drain_13
;
1622 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1623 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1627 channel_handler_init_15(void)
1629 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1630 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1631 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1632 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1633 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1634 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1635 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1637 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1638 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1639 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1640 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1641 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1642 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1646 channel_handler_init(void)
1650 for (i
= 0; i
< SSH_CHANNEL_MAX_TYPE
; i
++) {
1651 channel_pre
[i
] = NULL
;
1652 channel_post
[i
] = NULL
;
1655 channel_handler_init_20();
1657 channel_handler_init_13();
1659 channel_handler_init_15();
1662 /* gc dead channels */
1664 channel_garbage_collect(Channel
*c
)
1668 if (c
->detach_user
!= NULL
) {
1669 if (!chan_is_dead(c
, 0))
1671 debug2("channel %d: gc: notify user", c
->self
);
1672 c
->detach_user(c
->self
, NULL
);
1673 /* if we still have a callback */
1674 if (c
->detach_user
!= NULL
)
1676 debug2("channel %d: gc: user detached", c
->self
);
1678 if (!chan_is_dead(c
, 1))
1680 debug2("channel %d: garbage collecting", c
->self
);
1685 channel_handler(chan_fn
*ftab
[], fd_set
* readset
, fd_set
* writeset
)
1687 static int did_init
= 0;
1692 channel_handler_init();
1695 for (i
= 0; i
< channels_alloc
; i
++) {
1699 if (ftab
[c
->type
] != NULL
)
1700 (*ftab
[c
->type
])(c
, readset
, writeset
);
1701 channel_garbage_collect(c
);
1706 * Allocate/update select bitmasks and add any bits relevant to channels in
1710 channel_prepare_select(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
1711 u_int
*nallocp
, int rekeying
)
1715 n
= MAX(*maxfdp
, channel_max_fd
);
1717 sz
= howmany(n
+1, NFDBITS
) * sizeof(fd_mask
);
1718 /* perhaps check sz < nalloc/2 and shrink? */
1719 if (*readsetp
== NULL
|| sz
> *nallocp
) {
1720 *readsetp
= xrealloc(*readsetp
, sz
);
1721 *writesetp
= xrealloc(*writesetp
, sz
);
1725 memset(*readsetp
, 0, sz
);
1726 memset(*writesetp
, 0, sz
);
1729 channel_handler(channel_pre
, *readsetp
, *writesetp
);
1733 * After select, perform any appropriate operations for channels which have
1737 channel_after_select(fd_set
* readset
, fd_set
* writeset
)
1739 channel_handler(channel_post
, readset
, writeset
);
1743 /* If there is data to send to the connection, enqueue some of it now. */
1746 channel_output_poll(void)
1751 for (i
= 0; i
< channels_alloc
; i
++) {
1757 * We are only interested in channels that can have buffered
1761 if (c
->type
!= SSH_CHANNEL_OPEN
&&
1762 c
->type
!= SSH_CHANNEL_INPUT_DRAINING
)
1765 if (c
->type
!= SSH_CHANNEL_OPEN
)
1769 (c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
))) {
1770 /* XXX is this true? */
1771 debug3("channel %d: will not send data after close", c
->self
);
1775 /* Get the amount of buffered data for this channel. */
1776 if ((c
->istate
== CHAN_INPUT_OPEN
||
1777 c
->istate
== CHAN_INPUT_WAIT_DRAIN
) &&
1778 (len
= buffer_len(&c
->input
)) > 0) {
1780 * Send some data for the other side over the secure
1784 if (len
> c
->remote_window
)
1785 len
= c
->remote_window
;
1786 if (len
> c
->remote_maxpacket
)
1787 len
= c
->remote_maxpacket
;
1789 if (packet_is_interactive()) {
1793 /* Keep the packets at reasonable size. */
1794 if (len
> packet_get_maxsize()/2)
1795 len
= packet_get_maxsize()/2;
1799 packet_start(compat20
?
1800 SSH2_MSG_CHANNEL_DATA
: SSH_MSG_CHANNEL_DATA
);
1801 packet_put_int(c
->remote_id
);
1802 packet_put_string(buffer_ptr(&c
->input
), len
);
1804 buffer_consume(&c
->input
, len
);
1805 c
->remote_window
-= len
;
1807 } else if (c
->istate
== CHAN_INPUT_WAIT_DRAIN
) {
1809 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
1811 * input-buffer is empty and read-socket shutdown:
1812 * tell peer, that we will not send more data: send IEOF.
1813 * hack for extended data: delay EOF if EFD still in use.
1815 if (CHANNEL_EFD_INPUT_ACTIVE(c
))
1816 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1817 c
->self
, c
->efd
, buffer_len(&c
->extended
));
1821 /* Send extended data, i.e. stderr */
1823 !(c
->flags
& CHAN_EOF_SENT
) &&
1824 c
->remote_window
> 0 &&
1825 (len
= buffer_len(&c
->extended
)) > 0 &&
1826 c
->extended_usage
== CHAN_EXTENDED_READ
) {
1827 debug2("channel %d: rwin %u elen %u euse %d",
1828 c
->self
, c
->remote_window
, buffer_len(&c
->extended
),
1830 if (len
> c
->remote_window
)
1831 len
= c
->remote_window
;
1832 if (len
> c
->remote_maxpacket
)
1833 len
= c
->remote_maxpacket
;
1834 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA
);
1835 packet_put_int(c
->remote_id
);
1836 packet_put_int(SSH2_EXTENDED_DATA_STDERR
);
1837 packet_put_string(buffer_ptr(&c
->extended
), len
);
1839 buffer_consume(&c
->extended
, len
);
1840 c
->remote_window
-= len
;
1841 debug2("channel %d: sent ext data %d", c
->self
, len
);
1847 /* -- protocol input */
1850 channel_input_data(int type
, u_int32_t seq
, void *ctxt
)
1857 /* Get the channel number and verify it. */
1858 id
= packet_get_int();
1859 c
= channel_lookup(id
);
1861 packet_disconnect("Received data for nonexistent channel %d.", id
);
1863 /* Ignore any data for non-open channels (might happen on close) */
1864 if (c
->type
!= SSH_CHANNEL_OPEN
&&
1865 c
->type
!= SSH_CHANNEL_X11_OPEN
)
1869 data
= packet_get_string(&data_len
);
1872 * Ignore data for protocol > 1.3 if output end is no longer open.
1873 * For protocol 2 the sending side is reducing its window as it sends
1874 * data, so we must 'fake' consumption of the data in order to ensure
1875 * that window updates are sent back. Otherwise the connection might
1878 if (!compat13
&& c
->ostate
!= CHAN_OUTPUT_OPEN
) {
1880 c
->local_window
-= data_len
;
1881 c
->local_consumed
+= data_len
;
1888 if (data_len
> c
->local_maxpacket
) {
1889 logit("channel %d: rcvd big packet %d, maxpack %d",
1890 c
->self
, data_len
, c
->local_maxpacket
);
1892 if (data_len
> c
->local_window
) {
1893 logit("channel %d: rcvd too much data %d, win %d",
1894 c
->self
, data_len
, c
->local_window
);
1898 c
->local_window
-= data_len
;
1901 buffer_append(&c
->output
, data
, data_len
);
1906 channel_input_extended_data(int type
, u_int32_t seq
, void *ctxt
)
1910 u_int data_len
, tcode
;
1913 /* Get the channel number and verify it. */
1914 id
= packet_get_int();
1915 c
= channel_lookup(id
);
1918 packet_disconnect("Received extended_data for bad channel %d.", id
);
1919 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1920 logit("channel %d: ext data for non open", id
);
1923 if (c
->flags
& CHAN_EOF_RCVD
) {
1924 if (datafellows
& SSH_BUG_EXTEOF
)
1925 debug("channel %d: accepting ext data after eof", id
);
1927 packet_disconnect("Received extended_data after EOF "
1928 "on channel %d.", id
);
1930 tcode
= packet_get_int();
1932 c
->extended_usage
!= CHAN_EXTENDED_WRITE
||
1933 tcode
!= SSH2_EXTENDED_DATA_STDERR
) {
1934 logit("channel %d: bad ext data", c
->self
);
1937 data
= packet_get_string(&data_len
);
1939 if (data_len
> c
->local_window
) {
1940 logit("channel %d: rcvd too much extended_data %d, win %d",
1941 c
->self
, data_len
, c
->local_window
);
1945 debug2("channel %d: rcvd ext data %d", c
->self
, data_len
);
1946 c
->local_window
-= data_len
;
1947 buffer_append(&c
->extended
, data
, data_len
);
1952 channel_input_ieof(int type
, u_int32_t seq
, void *ctxt
)
1957 id
= packet_get_int();
1959 c
= channel_lookup(id
);
1961 packet_disconnect("Received ieof for nonexistent channel %d.", id
);
1964 /* XXX force input close */
1965 if (c
->force_drain
&& c
->istate
== CHAN_INPUT_OPEN
) {
1966 debug("channel %d: FORCE input drain", c
->self
);
1967 c
->istate
= CHAN_INPUT_WAIT_DRAIN
;
1968 if (buffer_len(&c
->input
) == 0)
1975 channel_input_close(int type
, u_int32_t seq
, void *ctxt
)
1980 id
= packet_get_int();
1982 c
= channel_lookup(id
);
1984 packet_disconnect("Received close for nonexistent channel %d.", id
);
1987 * Send a confirmation that we have closed the channel and no more
1988 * data is coming for it.
1990 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
);
1991 packet_put_int(c
->remote_id
);
1995 * If the channel is in closed state, we have sent a close request,
1996 * and the other side will eventually respond with a confirmation.
1997 * Thus, we cannot free the channel here, because then there would be
1998 * no-one to receive the confirmation. The channel gets freed when
1999 * the confirmation arrives.
2001 if (c
->type
!= SSH_CHANNEL_CLOSED
) {
2003 * Not a closed channel - mark it as draining, which will
2004 * cause it to be freed later.
2006 buffer_clear(&c
->input
);
2007 c
->type
= SSH_CHANNEL_OUTPUT_DRAINING
;
2011 /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
2013 channel_input_oclose(int type
, u_int32_t seq
, void *ctxt
)
2015 int id
= packet_get_int();
2016 Channel
*c
= channel_lookup(id
);
2020 packet_disconnect("Received oclose for nonexistent channel %d.", id
);
2021 chan_rcvd_oclose(c
);
2025 channel_input_close_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2027 int id
= packet_get_int();
2028 Channel
*c
= channel_lookup(id
);
2032 packet_disconnect("Received close confirmation for "
2033 "out-of-range channel %d.", id
);
2034 if (c
->type
!= SSH_CHANNEL_CLOSED
)
2035 packet_disconnect("Received close confirmation for "
2036 "non-closed channel %d (type %d).", id
, c
->type
);
2041 channel_input_open_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2046 id
= packet_get_int();
2047 c
= channel_lookup(id
);
2049 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2050 packet_disconnect("Received open confirmation for "
2051 "non-opening channel %d.", id
);
2052 remote_id
= packet_get_int();
2053 /* Record the remote channel number and mark that the channel is now open. */
2054 c
->remote_id
= remote_id
;
2055 c
->type
= SSH_CHANNEL_OPEN
;
2058 c
->remote_window
= packet_get_int();
2059 c
->remote_maxpacket
= packet_get_int();
2061 debug2("callback start");
2062 c
->confirm(c
->self
, c
->confirm_ctx
);
2063 debug2("callback done");
2065 debug2("channel %d: open confirm rwindow %u rmax %u", c
->self
,
2066 c
->remote_window
, c
->remote_maxpacket
);
2072 reason2txt(int reason
)
2075 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
:
2076 return "administratively prohibited";
2077 case SSH2_OPEN_CONNECT_FAILED
:
2078 return "connect failed";
2079 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE
:
2080 return "unknown channel type";
2081 case SSH2_OPEN_RESOURCE_SHORTAGE
:
2082 return "resource shortage";
2084 return "unknown reason";
2088 channel_input_open_failure(int type
, u_int32_t seq
, void *ctxt
)
2091 char *msg
= NULL
, *lang
= NULL
;
2094 id
= packet_get_int();
2095 c
= channel_lookup(id
);
2097 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2098 packet_disconnect("Received open failure for "
2099 "non-opening channel %d.", id
);
2101 reason
= packet_get_int();
2102 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
2103 msg
= packet_get_string(NULL
);
2104 lang
= packet_get_string(NULL
);
2106 logit("channel %d: open failed: %s%s%s", id
,
2107 reason2txt(reason
), msg
? ": ": "", msg
? msg
: "");
2114 /* Free the channel. This will also close the socket. */
2119 channel_input_window_adjust(int type
, u_int32_t seq
, void *ctxt
)
2128 /* Get the channel number and verify it. */
2129 id
= packet_get_int();
2130 c
= channel_lookup(id
);
2132 if (c
== NULL
|| c
->type
!= SSH_CHANNEL_OPEN
) {
2133 logit("Received window adjust for "
2134 "non-open channel %d.", id
);
2137 adjust
= packet_get_int();
2139 debug2("channel %d: rcvd adjust %u", id
, adjust
);
2140 c
->remote_window
+= adjust
;
2144 channel_input_port_open(int type
, u_int32_t seq
, void *ctxt
)
2148 char *host
, *originator_string
;
2149 int remote_id
, sock
= -1;
2151 remote_id
= packet_get_int();
2152 host
= packet_get_string(NULL
);
2153 host_port
= packet_get_int();
2155 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
2156 originator_string
= packet_get_string(NULL
);
2158 originator_string
= xstrdup("unknown (remote did not supply name)");
2161 sock
= channel_connect_to(host
, host_port
);
2163 c
= channel_new("connected socket",
2164 SSH_CHANNEL_CONNECTING
, sock
, sock
, -1, 0, 0, 0,
2165 originator_string
, 1);
2166 c
->remote_id
= remote_id
;
2168 xfree(originator_string
);
2170 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
2171 packet_put_int(remote_id
);
2178 /* -- tcp forwarding */
2181 channel_set_af(int af
)
2187 channel_setup_fwd_listener(int type
, const char *listen_addr
, u_short listen_port
,
2188 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2191 int sock
, r
, success
= 0, on
= 1, wildcard
= 0, is_client
;
2192 struct addrinfo hints
, *ai
, *aitop
;
2193 const char *host
, *addr
;
2194 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2196 host
= (type
== SSH_CHANNEL_RPORT_LISTENER
) ?
2197 listen_addr
: host_to_connect
;
2198 is_client
= (type
== SSH_CHANNEL_PORT_LISTENER
);
2201 error("No forward host name.");
2204 if (strlen(host
) > SSH_CHANNEL_PATH_LEN
- 1) {
2205 error("Forward host name too long.");
2210 * Determine whether or not a port forward listens to loopback,
2211 * specified address or wildcard. On the client, a specified bind
2212 * address will always override gateway_ports. On the server, a
2213 * gateway_ports of 1 (``yes'') will override the client's
2214 * specification and force a wildcard bind, whereas a value of 2
2215 * (``clientspecified'') will bind to whatever address the client
2218 * Special-case listen_addrs are:
2220 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2221 * "" (empty string), "*" -> wildcard v4/v6
2222 * "localhost" -> loopback v4/v6
2225 if (listen_addr
== NULL
) {
2226 /* No address specified: default to gateway_ports setting */
2229 } else if (gateway_ports
|| is_client
) {
2230 if (((datafellows
& SSH_OLD_FORWARD_ADDR
) &&
2231 strcmp(listen_addr
, "0.0.0.0") == 0) ||
2232 *listen_addr
== '\0' || strcmp(listen_addr
, "*") == 0 ||
2233 (!is_client
&& gateway_ports
== 1))
2235 else if (strcmp(listen_addr
, "localhost") != 0)
2239 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2240 type
, wildcard
, (addr
== NULL
) ? "NULL" : addr
);
2243 * getaddrinfo returns a loopback address if the hostname is
2244 * set to NULL and hints.ai_flags is not AI_PASSIVE
2246 memset(&hints
, 0, sizeof(hints
));
2247 hints
.ai_family
= IPv4or6
;
2248 hints
.ai_flags
= wildcard
? AI_PASSIVE
: 0;
2249 hints
.ai_socktype
= SOCK_STREAM
;
2250 snprintf(strport
, sizeof strport
, "%d", listen_port
);
2251 if ((r
= getaddrinfo(addr
, strport
, &hints
, &aitop
)) != 0) {
2253 /* This really shouldn't happen */
2254 packet_disconnect("getaddrinfo: fatal error: %s",
2257 error("channel_setup_fwd_listener: "
2258 "getaddrinfo(%.64s): %s", addr
, gai_strerror(r
));
2263 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2264 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2266 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop
, sizeof(ntop
),
2267 strport
, sizeof(strport
), NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2268 error("channel_setup_fwd_listener: getnameinfo failed");
2271 /* Create a port to listen for the host. */
2272 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
2274 /* this is no error since kernel may not support ipv6 */
2275 verbose("socket: %.100s", strerror(errno
));
2279 * Set socket options.
2280 * Allow local port reuse in TIME_WAIT.
2282 if (setsockopt(sock
, SOL_SOCKET
, SO_REUSEADDR
, &on
,
2284 error("setsockopt SO_REUSEADDR: %s", strerror(errno
));
2286 debug("Local forwarding listening on %s port %s.", ntop
, strport
);
2288 /* Bind the socket to the address. */
2289 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2290 /* address can be in use ipv6 address is already bound */
2292 error("bind: %.100s", strerror(errno
));
2294 verbose("bind: %.100s", strerror(errno
));
2299 /* Start listening for connections on the socket. */
2300 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
2301 error("listen: %.100s", strerror(errno
));
2305 /* Allocate a channel number for the socket. */
2306 c
= channel_new("port listener", type
, sock
, sock
, -1,
2307 CHAN_TCP_WINDOW_DEFAULT
, CHAN_TCP_PACKET_DEFAULT
,
2308 0, "port listener", 1);
2309 strlcpy(c
->path
, host
, sizeof(c
->path
));
2310 c
->host_port
= port_to_connect
;
2311 c
->listening_port
= listen_port
;
2315 error("channel_setup_fwd_listener: cannot listen to port: %d",
2317 freeaddrinfo(aitop
);
2322 channel_cancel_rport_listener(const char *host
, u_short port
)
2327 for (i
= 0; i
< channels_alloc
; i
++) {
2328 Channel
*c
= channels
[i
];
2330 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_RPORT_LISTENER
&&
2331 strncmp(c
->path
, host
, sizeof(c
->path
)) == 0 &&
2332 c
->listening_port
== port
) {
2333 debug2("%s: close channel %d", __func__
, i
);
2342 /* protocol local port fwd, used by ssh (and sshd in v1) */
2344 channel_setup_local_fwd_listener(const char *listen_host
, u_short listen_port
,
2345 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2347 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER
,
2348 listen_host
, listen_port
, host_to_connect
, port_to_connect
,
2352 /* protocol v2 remote port fwd, used by sshd */
2354 channel_setup_remote_fwd_listener(const char *listen_address
,
2355 u_short listen_port
, int gateway_ports
)
2357 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER
,
2358 listen_address
, listen_port
, NULL
, 0, gateway_ports
);
2362 * Initiate forwarding of connections to port "port" on remote host through
2363 * the secure channel to host:port from local side.
2367 channel_request_remote_forwarding(const char *listen_host
, u_short listen_port
,
2368 const char *host_to_connect
, u_short port_to_connect
)
2370 int type
, success
= 0;
2372 /* Record locally that connection to this host/port is permitted. */
2373 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2374 fatal("channel_request_remote_forwarding: too many forwards");
2376 /* Send the forward request to the remote side. */
2378 const char *address_to_bind
;
2379 if (listen_host
== NULL
)
2380 address_to_bind
= "localhost";
2381 else if (*listen_host
== '\0' || strcmp(listen_host
, "*") == 0)
2382 address_to_bind
= "";
2384 address_to_bind
= listen_host
;
2386 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2387 packet_put_cstring("tcpip-forward");
2388 packet_put_char(1); /* boolean: want reply */
2389 packet_put_cstring(address_to_bind
);
2390 packet_put_int(listen_port
);
2392 packet_write_wait();
2393 /* Assume that server accepts the request */
2396 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST
);
2397 packet_put_int(listen_port
);
2398 packet_put_cstring(host_to_connect
);
2399 packet_put_int(port_to_connect
);
2401 packet_write_wait();
2403 /* Wait for response from the remote side. */
2404 type
= packet_read();
2406 case SSH_SMSG_SUCCESS
:
2409 case SSH_SMSG_FAILURE
:
2410 logit("Warning: Server denied remote port forwarding.");
2413 /* Unknown packet */
2414 packet_disconnect("Protocol error for port forward request:"
2415 "received packet type %d.", type
);
2419 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host_to_connect
);
2420 permitted_opens
[num_permitted_opens
].port_to_connect
= port_to_connect
;
2421 permitted_opens
[num_permitted_opens
].listen_port
= listen_port
;
2422 num_permitted_opens
++;
2427 * Request cancellation of remote forwarding of connection host:port from
2431 channel_request_rforward_cancel(const char *host
, u_short port
)
2438 for (i
= 0; i
< num_permitted_opens
; i
++) {
2439 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2440 permitted_opens
[i
].listen_port
== port
)
2443 if (i
>= num_permitted_opens
) {
2444 debug("%s: requested forward not found", __func__
);
2447 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2448 packet_put_cstring("cancel-tcpip-forward");
2450 packet_put_cstring(host
== NULL
? "" : host
);
2451 packet_put_int(port
);
2454 permitted_opens
[i
].listen_port
= 0;
2455 permitted_opens
[i
].port_to_connect
= 0;
2456 free(permitted_opens
[i
].host_to_connect
);
2457 permitted_opens
[i
].host_to_connect
= NULL
;
2461 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2462 * listening for the port, and sends back a success reply (or disconnect
2463 * message if there was an error). This never returns if there was an error.
2467 channel_input_port_forward_request(int is_root
, int gateway_ports
)
2469 u_short port
, host_port
;
2472 /* Get arguments from the packet. */
2473 port
= packet_get_int();
2474 hostname
= packet_get_string(NULL
);
2475 host_port
= packet_get_int();
2479 * Check that an unprivileged user is not trying to forward a
2482 if (port
< IPPORT_RESERVED
&& !is_root
)
2484 "Requested forwarding of port %d but user is not root.",
2487 packet_disconnect("Dynamic forwarding denied.");
2490 /* Initiate forwarding */
2491 channel_setup_local_fwd_listener(NULL
, port
, hostname
,
2492 host_port
, gateway_ports
);
2494 /* Free the argument string. */
2499 * Permits opening to any host/port if permitted_opens[] is empty. This is
2500 * usually called by the server, because the user could connect to any port
2501 * anyway, and the server has no way to know but to trust the client anyway.
2504 channel_permit_all_opens(void)
2506 if (num_permitted_opens
== 0)
2507 all_opens_permitted
= 1;
2511 channel_add_permitted_opens(char *host
, int port
)
2513 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2514 fatal("channel_request_remote_forwarding: too many forwards");
2515 debug("allow port forwarding to host %s port %d", host
, port
);
2517 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host
);
2518 permitted_opens
[num_permitted_opens
].port_to_connect
= port
;
2519 num_permitted_opens
++;
2521 all_opens_permitted
= 0;
2525 channel_clear_permitted_opens(void)
2529 for (i
= 0; i
< num_permitted_opens
; i
++)
2530 if (permitted_opens
[i
].host_to_connect
!= NULL
)
2531 xfree(permitted_opens
[i
].host_to_connect
);
2532 num_permitted_opens
= 0;
2537 /* return socket to remote host, port */
2539 connect_to(const char *host
, u_short port
)
2541 struct addrinfo hints
, *ai
, *aitop
;
2542 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2546 memset(&hints
, 0, sizeof(hints
));
2547 hints
.ai_family
= IPv4or6
;
2548 hints
.ai_socktype
= SOCK_STREAM
;
2549 snprintf(strport
, sizeof strport
, "%d", port
);
2550 if ((gaierr
= getaddrinfo(host
, strport
, &hints
, &aitop
)) != 0) {
2551 error("connect_to %.100s: unknown host (%s)", host
,
2552 gai_strerror(gaierr
));
2555 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2556 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2558 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop
, sizeof(ntop
),
2559 strport
, sizeof(strport
), NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2560 error("connect_to: getnameinfo failed");
2563 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
2565 if (ai
->ai_next
== NULL
)
2566 error("socket: %.100s", strerror(errno
));
2568 verbose("socket: %.100s", strerror(errno
));
2571 if (set_nonblock(sock
) == -1)
2572 fatal("%s: set_nonblock(%d)", __func__
, sock
);
2573 if (connect(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0 &&
2574 errno
!= EINPROGRESS
) {
2575 error("connect_to %.100s port %s: %.100s", ntop
, strport
,
2578 continue; /* fail -- try next */
2580 break; /* success */
2583 freeaddrinfo(aitop
);
2585 error("connect_to %.100s port %d: failed.", host
, port
);
2594 channel_connect_by_listen_address(u_short listen_port
)
2598 for (i
= 0; i
< num_permitted_opens
; i
++)
2599 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2600 permitted_opens
[i
].listen_port
== listen_port
)
2602 permitted_opens
[i
].host_to_connect
,
2603 permitted_opens
[i
].port_to_connect
);
2604 error("WARNING: Server requests forwarding for unknown listen_port %d",
2609 /* Check if connecting to that port is permitted and connect. */
2611 channel_connect_to(const char *host
, u_short port
)
2615 permit
= all_opens_permitted
;
2617 for (i
= 0; i
< num_permitted_opens
; i
++)
2618 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2619 permitted_opens
[i
].port_to_connect
== port
&&
2620 strcmp(permitted_opens
[i
].host_to_connect
, host
) == 0)
2625 logit("Received request to connect to host %.100s port %d, "
2626 "but the request was denied.", host
, port
);
2629 return connect_to(host
, port
);
2633 channel_send_window_changes(void)
2638 for (i
= 0; i
< channels_alloc
; i
++) {
2639 if (channels
[i
] == NULL
|| !channels
[i
]->client_tty
||
2640 channels
[i
]->type
!= SSH_CHANNEL_OPEN
)
2642 if (ioctl(channels
[i
]->rfd
, TIOCGWINSZ
, &ws
) < 0)
2644 channel_request_start(i
, "window-change", 0);
2645 packet_put_int(ws
.ws_col
);
2646 packet_put_int(ws
.ws_row
);
2647 packet_put_int(ws
.ws_xpixel
);
2648 packet_put_int(ws
.ws_ypixel
);
2653 /* -- X11 forwarding */
2656 * Creates an internet domain socket for listening for X11 connections.
2657 * Returns 0 and a suitable display number for the DISPLAY variable
2658 * stored in display_numberp , or -1 if an error occurs.
2661 x11_create_display_inet(int x11_display_offset
, int x11_use_localhost
,
2662 int single_connection
, u_int
*display_numberp
)
2665 int display_number
, sock
;
2667 struct addrinfo hints
, *ai
, *aitop
;
2668 char strport
[NI_MAXSERV
];
2669 int gaierr
, n
, num_socks
= 0, socks
[NUM_SOCKS
];
2671 for (display_number
= x11_display_offset
;
2672 display_number
< MAX_DISPLAYS
;
2674 port
= 6000 + display_number
;
2675 memset(&hints
, 0, sizeof(hints
));
2676 hints
.ai_family
= IPv4or6
;
2677 hints
.ai_flags
= x11_use_localhost
? 0: AI_PASSIVE
;
2678 hints
.ai_socktype
= SOCK_STREAM
;
2679 snprintf(strport
, sizeof strport
, "%d", port
);
2680 if ((gaierr
= getaddrinfo(NULL
, strport
, &hints
, &aitop
)) != 0) {
2681 error("getaddrinfo: %.100s", gai_strerror(gaierr
));
2684 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2685 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2687 sock
= socket(ai
->ai_family
, ai
->ai_socktype
,
2690 if ((errno
!= EINVAL
) && (errno
!= EAFNOSUPPORT
)) {
2691 error("socket: %.100s", strerror(errno
));
2692 freeaddrinfo(aitop
);
2695 debug("x11_create_display_inet: Socket family %d not supported",
2701 if (ai
->ai_family
== AF_INET6
) {
2703 if (setsockopt(sock
, IPPROTO_IPV6
, IPV6_V6ONLY
, &on
, sizeof(on
)) < 0)
2704 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno
));
2707 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2708 debug2("bind port %d: %.100s", port
, strerror(errno
));
2714 for (n
= 0; n
< num_socks
; n
++) {
2720 socks
[num_socks
++] = sock
;
2721 #ifndef DONT_TRY_OTHER_AF
2722 if (num_socks
== NUM_SOCKS
)
2725 if (x11_use_localhost
) {
2726 if (num_socks
== NUM_SOCKS
)
2733 freeaddrinfo(aitop
);
2737 if (display_number
>= MAX_DISPLAYS
) {
2738 error("Failed to allocate internet-domain X11 display socket.");
2741 /* Start listening for connections on the socket. */
2742 for (n
= 0; n
< num_socks
; n
++) {
2744 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
2745 error("listen: %.100s", strerror(errno
));
2751 /* Allocate a channel for each socket. */
2752 for (n
= 0; n
< num_socks
; n
++) {
2754 nc
= channel_new("x11 listener",
2755 SSH_CHANNEL_X11_LISTENER
, sock
, sock
, -1,
2756 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
2757 0, "X11 inet listener", 1);
2758 nc
->single_connection
= single_connection
;
2761 /* Return the display number for the DISPLAY environment variable. */
2762 *display_numberp
= display_number
;
2767 connect_local_xsocket(u_int dnr
)
2770 struct sockaddr_un addr
;
2772 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
2774 error("socket: %.100s", strerror(errno
));
2775 memset(&addr
, 0, sizeof(addr
));
2776 addr
.sun_family
= AF_UNIX
;
2777 snprintf(addr
.sun_path
, sizeof addr
.sun_path
, _PATH_UNIX_X
, dnr
);
2778 if (connect(sock
, (struct sockaddr
*) & addr
, sizeof(addr
)) == 0)
2781 error("connect %.100s: %.100s", addr
.sun_path
, strerror(errno
));
2786 x11_connect_display(void)
2788 int display_number
, sock
= 0;
2789 const char *display
;
2790 char buf
[1024], *cp
;
2791 struct addrinfo hints
, *ai
, *aitop
;
2792 char strport
[NI_MAXSERV
];
2795 /* Try to open a socket for the local X server. */
2796 display
= getenv("DISPLAY");
2798 error("DISPLAY not set.");
2802 * Now we decode the value of the DISPLAY variable and make a
2803 * connection to the real X server.
2807 * Check if it is a unix domain socket. Unix domain displays are in
2808 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
2810 if (strncmp(display
, "unix:", 5) == 0 ||
2811 display
[0] == ':') {
2812 /* Connect to the unix domain socket. */
2813 if (sscanf(strrchr(display
, ':') + 1, "%d", &display_number
) != 1) {
2814 error("Could not parse display number from DISPLAY: %.100s",
2818 /* Create a socket. */
2819 sock
= connect_local_xsocket(display_number
);
2823 /* OK, we now have a connection to the display. */
2827 * Connect to an inet socket. The DISPLAY value is supposedly
2828 * hostname:d[.s], where hostname may also be numeric IP address.
2830 strlcpy(buf
, display
, sizeof(buf
));
2831 cp
= strchr(buf
, ':');
2833 error("Could not find ':' in DISPLAY: %.100s", display
);
2837 /* buf now contains the host name. But first we parse the display number. */
2838 if (sscanf(cp
+ 1, "%d", &display_number
) != 1) {
2839 error("Could not parse display number from DISPLAY: %.100s",
2844 /* Look up the host address */
2845 memset(&hints
, 0, sizeof(hints
));
2846 hints
.ai_family
= IPv4or6
;
2847 hints
.ai_socktype
= SOCK_STREAM
;
2848 snprintf(strport
, sizeof strport
, "%d", 6000 + display_number
);
2849 if ((gaierr
= getaddrinfo(buf
, strport
, &hints
, &aitop
)) != 0) {
2850 error("%.100s: unknown host. (%s)", buf
, gai_strerror(gaierr
));
2853 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2854 /* Create a socket. */
2855 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
2857 debug2("socket: %.100s", strerror(errno
));
2860 /* Connect it to the display. */
2861 if (connect(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2862 debug2("connect %.100s port %d: %.100s", buf
,
2863 6000 + display_number
, strerror(errno
));
2870 freeaddrinfo(aitop
);
2872 error("connect %.100s port %d: %.100s", buf
, 6000 + display_number
,
2881 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
2882 * the remote channel number. We should do whatever we want, and respond
2883 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
2887 x11_input_open(int type
, u_int32_t seq
, void *ctxt
)
2890 int remote_id
, sock
= 0;
2893 debug("Received X11 open request.");
2895 remote_id
= packet_get_int();
2897 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
2898 remote_host
= packet_get_string(NULL
);
2900 remote_host
= xstrdup("unknown (remote did not supply name)");
2904 /* Obtain a connection to the real X display. */
2905 sock
= x11_connect_display();
2907 /* Allocate a channel for this connection. */
2908 c
= channel_new("connected x11 socket",
2909 SSH_CHANNEL_X11_OPEN
, sock
, sock
, -1, 0, 0, 0,
2911 c
->remote_id
= remote_id
;
2916 /* Send refusal to the remote host. */
2917 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
2918 packet_put_int(remote_id
);
2920 /* Send a confirmation to the remote host. */
2921 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
2922 packet_put_int(remote_id
);
2923 packet_put_int(c
->self
);
2928 /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
2930 deny_input_open(int type
, u_int32_t seq
, void *ctxt
)
2932 int rchan
= packet_get_int();
2935 case SSH_SMSG_AGENT_OPEN
:
2936 error("Warning: ssh server tried agent forwarding.");
2938 case SSH_SMSG_X11_OPEN
:
2939 error("Warning: ssh server tried X11 forwarding.");
2942 error("deny_input_open: type %d", type
);
2945 error("Warning: this is probably a break in attempt by a malicious server.");
2946 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
2947 packet_put_int(rchan
);
2952 * Requests forwarding of X11 connections, generates fake authentication
2953 * data, and enables authentication spoofing.
2954 * This should be called in the client only.
2957 x11_request_forwarding_with_spoofing(int client_session_id
, const char *disp
,
2958 const char *proto
, const char *data
)
2960 u_int data_len
= (u_int
) strlen(data
) / 2;
2967 if (x11_saved_display
== NULL
)
2968 x11_saved_display
= xstrdup(disp
);
2969 else if (strcmp(disp
, x11_saved_display
) != 0) {
2970 error("x11_request_forwarding_with_spoofing: different "
2971 "$DISPLAY already forwarded");
2977 cp
= strchr(disp
, ':');
2979 cp
= strchr(cp
, '.');
2981 screen_number
= atoi(cp
+ 1);
2985 if (x11_saved_proto
== NULL
) {
2986 /* Save protocol name. */
2987 x11_saved_proto
= xstrdup(proto
);
2989 * Extract real authentication data and generate fake data
2990 * of the same length.
2992 x11_saved_data
= xmalloc(data_len
);
2993 x11_fake_data
= xmalloc(data_len
);
2994 for (i
= 0; i
< data_len
; i
++) {
2995 if (sscanf(data
+ 2 * i
, "%2x", &value
) != 1)
2996 fatal("x11_request_forwarding: bad "
2997 "authentication data: %.100s", data
);
3000 x11_saved_data
[i
] = value
;
3001 x11_fake_data
[i
] = rnd
& 0xff;
3004 x11_saved_data_len
= data_len
;
3005 x11_fake_data_len
= data_len
;
3008 /* Convert the fake data into hex. */
3009 new_data
= tohex(x11_fake_data
, data_len
);
3011 /* Send the request packet. */
3013 channel_request_start(client_session_id
, "x11-req", 0);
3014 packet_put_char(0); /* XXX bool single connection */
3016 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING
);
3018 packet_put_cstring(proto
);
3019 packet_put_cstring(new_data
);
3020 packet_put_int(screen_number
);
3022 packet_write_wait();
3027 /* -- agent forwarding */
3029 /* Sends a message to the server to request authentication fd forwarding. */
3032 auth_request_forwarding(void)
3034 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING
);
3036 packet_write_wait();