1 /* $OpenBSD: channels.c,v 1.298 2009/11/10 04:30:44 dtucker Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * This file contains functions for generic socket connection forwarding.
7 * There is also code for initiating connection forwarding for X11 connections,
8 * arbitrary tcp/ip connections, and the authentication agent connection.
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
16 * SSH2 support added by Markus Friedl.
17 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
18 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 #include <sys/types.h>
45 #include <sys/ioctl.h>
47 #include <sys/socket.h>
48 #ifdef HAVE_SYS_TIME_H
49 # include <sys/time.h>
52 #include <netinet/in.h>
53 #include <arpa/inet.h>
65 #include "openbsd-compat/sys-queue.h"
79 #include "pathnames.h"
84 * Pointer to an array containing all allocated channels. The array is
85 * dynamically extended as needed.
87 static Channel
**channels
= NULL
;
90 * Size of the channel array. All slots of the array must always be
91 * initialized (at least the type field); unused slots set to NULL
93 static u_int channels_alloc
= 0;
96 * Maximum file descriptor value used in any of the channels. This is
97 * updated in channel_new.
99 static int channel_max_fd
= 0;
102 /* -- tcp forwarding */
105 * Data structure for storing which hosts are permitted for forward requests.
106 * The local sides of any remote forwards are stored in this array to prevent
107 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
108 * network (which might be behind a firewall).
111 char *host_to_connect
; /* Connect to 'host'. */
112 u_short port_to_connect
; /* Connect to 'port'. */
113 u_short listen_port
; /* Remote side should listen port number. */
116 /* List of all permitted host/port pairs to connect by the user. */
117 static ForwardPermission permitted_opens
[SSH_MAX_FORWARDS_PER_DIRECTION
];
119 /* List of all permitted host/port pairs to connect by the admin. */
120 static ForwardPermission permitted_adm_opens
[SSH_MAX_FORWARDS_PER_DIRECTION
];
122 /* Number of permitted host/port pairs in the array permitted by the user. */
123 static int num_permitted_opens
= 0;
125 /* Number of permitted host/port pair in the array permitted by the admin. */
126 static int num_adm_permitted_opens
= 0;
129 * If this is true, all opens are permitted. This is the case on the server
130 * on which we have to trust the client anyway, and the user could do
131 * anything after logging in anyway.
133 static int all_opens_permitted
= 0;
136 /* -- X11 forwarding */
138 /* Maximum number of fake X11 displays to try. */
139 #define MAX_DISPLAYS 1000
141 /* Saved X11 local (client) display. */
142 static char *x11_saved_display
= NULL
;
144 /* Saved X11 authentication protocol name. */
145 static char *x11_saved_proto
= NULL
;
147 /* Saved X11 authentication data. This is the real data. */
148 static char *x11_saved_data
= NULL
;
149 static u_int x11_saved_data_len
= 0;
152 * Fake X11 authentication data. This is what the server will be sending us;
153 * we should replace any occurrences of this by the real data.
155 static u_char
*x11_fake_data
= NULL
;
156 static u_int x11_fake_data_len
;
159 /* -- agent forwarding */
163 /* AF_UNSPEC or AF_INET or AF_INET6 */
164 static int IPv4or6
= AF_UNSPEC
;
166 /* Set the routing domain a.k.a. VRF */
167 static int channel_rdomain
= -1;
170 static void port_open_helper(Channel
*c
, char *rtype
);
172 /* non-blocking connect helpers */
173 static int connect_next(struct channel_connect
*);
174 static void channel_connect_ctx_free(struct channel_connect
*);
176 /* -- channel core */
179 channel_by_id(int id
)
183 if (id
< 0 || (u_int
)id
>= channels_alloc
) {
184 logit("channel_by_id: %d: bad id", id
);
189 logit("channel_by_id: %d: bad id: channel free", id
);
196 * Returns the channel if it is allowed to receive protocol messages.
197 * Private channels, like listening sockets, may not receive messages.
200 channel_lookup(int id
)
204 if ((c
= channel_by_id(id
)) == NULL
)
208 case SSH_CHANNEL_X11_OPEN
:
209 case SSH_CHANNEL_LARVAL
:
210 case SSH_CHANNEL_CONNECTING
:
211 case SSH_CHANNEL_DYNAMIC
:
212 case SSH_CHANNEL_OPENING
:
213 case SSH_CHANNEL_OPEN
:
214 case SSH_CHANNEL_INPUT_DRAINING
:
215 case SSH_CHANNEL_OUTPUT_DRAINING
:
218 logit("Non-public channel %d, type %d.", id
, c
->type
);
223 * Register filedescriptors for a channel, used when allocating a channel or
224 * when the channel consumer/producer is ready, e.g. shell exec'd
227 channel_register_fds(Channel
*c
, int rfd
, int wfd
, int efd
,
228 int extusage
, int nonblock
, int is_tty
)
230 /* Update the maximum file descriptor value. */
231 channel_max_fd
= MAX(channel_max_fd
, rfd
);
232 channel_max_fd
= MAX(channel_max_fd
, wfd
);
233 channel_max_fd
= MAX(channel_max_fd
, efd
);
236 fcntl(rfd
, F_SETFD
, FD_CLOEXEC
);
237 if (wfd
!= -1 && wfd
!= rfd
)
238 fcntl(wfd
, F_SETFD
, FD_CLOEXEC
);
239 if (efd
!= -1 && efd
!= rfd
&& efd
!= wfd
)
240 fcntl(efd
, F_SETFD
, FD_CLOEXEC
);
244 c
->sock
= (rfd
== wfd
) ? rfd
: -1;
245 c
->ctl_fd
= -1; /* XXX: set elsewhere */
247 c
->extended_usage
= extusage
;
249 if ((c
->isatty
= is_tty
) != 0)
250 debug2("channel %d: rfd %d isatty", c
->self
, c
->rfd
);
251 c
->wfd_isatty
= is_tty
|| isatty(c
->wfd
);
253 /* enable nonblocking mode */
265 * Allocate a new channel object and set its type and socket. This will cause
266 * remote_name to be freed.
269 channel_new(char *ctype
, int type
, int rfd
, int wfd
, int efd
,
270 u_int window
, u_int maxpack
, int extusage
, char *remote_name
, int nonblock
)
276 /* Do initial allocation if this is the first call. */
277 if (channels_alloc
== 0) {
279 channels
= xcalloc(channels_alloc
, sizeof(Channel
*));
280 for (i
= 0; i
< channels_alloc
; i
++)
283 /* Try to find a free slot where to put the new channel. */
284 for (found
= -1, i
= 0; i
< channels_alloc
; i
++)
285 if (channels
[i
] == NULL
) {
286 /* Found a free slot. */
291 /* There are no free slots. Take last+1 slot and expand the array. */
292 found
= channels_alloc
;
293 if (channels_alloc
> 10000)
294 fatal("channel_new: internal error: channels_alloc %d "
295 "too big.", channels_alloc
);
296 channels
= xrealloc(channels
, channels_alloc
+ 10,
298 channels_alloc
+= 10;
299 debug2("channel: expanding %d", channels_alloc
);
300 for (i
= found
; i
< channels_alloc
; i
++)
303 /* Initialize and return new channel. */
304 c
= channels
[found
] = xcalloc(1, sizeof(Channel
));
305 buffer_init(&c
->input
);
306 buffer_init(&c
->output
);
307 buffer_init(&c
->extended
);
309 c
->ostate
= CHAN_OUTPUT_OPEN
;
310 c
->istate
= CHAN_INPUT_OPEN
;
312 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
, 0);
316 c
->local_window
= window
;
317 c
->local_window_max
= window
;
318 c
->local_consumed
= 0;
319 c
->local_maxpacket
= maxpack
;
321 c
->remote_name
= xstrdup(remote_name
);
322 c
->remote_window
= 0;
323 c
->remote_maxpacket
= 0;
325 c
->single_connection
= 0;
326 c
->detach_user
= NULL
;
328 c
->open_confirm
= NULL
;
329 c
->open_confirm_ctx
= NULL
;
330 c
->input_filter
= NULL
;
331 c
->output_filter
= NULL
;
332 c
->filter_ctx
= NULL
;
333 c
->filter_cleanup
= NULL
;
334 TAILQ_INIT(&c
->status_confirms
);
335 debug("channel %d: new [%s]", found
, remote_name
);
340 channel_find_maxfd(void)
346 for (i
= 0; i
< channels_alloc
; i
++) {
349 max
= MAX(max
, c
->rfd
);
350 max
= MAX(max
, c
->wfd
);
351 max
= MAX(max
, c
->efd
);
358 channel_close_fd(int *fdp
)
360 int ret
= 0, fd
= *fdp
;
365 if (fd
== channel_max_fd
)
366 channel_max_fd
= channel_find_maxfd();
371 /* Close all channel fd/socket. */
373 channel_close_fds(Channel
*c
)
375 debug3("channel %d: close_fds r %d w %d e %d c %d",
376 c
->self
, c
->rfd
, c
->wfd
, c
->efd
, c
->ctl_fd
);
378 channel_close_fd(&c
->sock
);
379 channel_close_fd(&c
->ctl_fd
);
380 channel_close_fd(&c
->rfd
);
381 channel_close_fd(&c
->wfd
);
382 channel_close_fd(&c
->efd
);
385 /* Free the channel and close its fd/socket. */
387 channel_free(Channel
*c
)
391 struct channel_confirm
*cc
;
393 for (n
= 0, i
= 0; i
< channels_alloc
; i
++)
396 debug("channel %d: free: %s, nchannels %u", c
->self
,
397 c
->remote_name
? c
->remote_name
: "???", n
);
399 s
= channel_open_message();
400 debug3("channel %d: status: %s", c
->self
, s
);
404 shutdown(c
->sock
, SHUT_RDWR
);
406 shutdown(c
->ctl_fd
, SHUT_RDWR
);
407 channel_close_fds(c
);
408 buffer_free(&c
->input
);
409 buffer_free(&c
->output
);
410 buffer_free(&c
->extended
);
411 if (c
->remote_name
) {
412 xfree(c
->remote_name
);
413 c
->remote_name
= NULL
;
419 while ((cc
= TAILQ_FIRST(&c
->status_confirms
)) != NULL
) {
420 if (cc
->abandon_cb
!= NULL
)
421 cc
->abandon_cb(c
, cc
->ctx
);
422 TAILQ_REMOVE(&c
->status_confirms
, cc
, entry
);
423 bzero(cc
, sizeof(*cc
));
426 if (c
->filter_cleanup
!= NULL
&& c
->filter_ctx
!= NULL
)
427 c
->filter_cleanup(c
->self
, c
->filter_ctx
);
428 channels
[c
->self
] = NULL
;
433 channel_free_all(void)
437 for (i
= 0; i
< channels_alloc
; i
++)
438 if (channels
[i
] != NULL
)
439 channel_free(channels
[i
]);
443 * Closes the sockets/fds of all channels. This is used to close extra file
444 * descriptors after a fork.
447 channel_close_all(void)
451 for (i
= 0; i
< channels_alloc
; i
++)
452 if (channels
[i
] != NULL
)
453 channel_close_fds(channels
[i
]);
457 * Stop listening to channels.
460 channel_stop_listening(void)
465 for (i
= 0; i
< channels_alloc
; i
++) {
469 case SSH_CHANNEL_AUTH_SOCKET
:
470 case SSH_CHANNEL_PORT_LISTENER
:
471 case SSH_CHANNEL_RPORT_LISTENER
:
472 case SSH_CHANNEL_X11_LISTENER
:
473 channel_close_fd(&c
->sock
);
482 * Returns true if no channel has too much buffered data, and false if one or
483 * more channel is overfull.
486 channel_not_very_much_buffered_data(void)
491 for (i
= 0; i
< channels_alloc
; i
++) {
493 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_OPEN
) {
496 buffer_len(&c
->input
) > packet_get_maxsize()) {
497 debug2("channel %d: big input buffer %d",
498 c
->self
, buffer_len(&c
->input
));
502 if (buffer_len(&c
->output
) > packet_get_maxsize()) {
503 debug2("channel %d: big output buffer %u > %u",
504 c
->self
, buffer_len(&c
->output
),
505 packet_get_maxsize());
513 /* Returns true if any channel is still open. */
515 channel_still_open(void)
520 for (i
= 0; i
< channels_alloc
; i
++) {
525 case SSH_CHANNEL_X11_LISTENER
:
526 case SSH_CHANNEL_PORT_LISTENER
:
527 case SSH_CHANNEL_RPORT_LISTENER
:
528 case SSH_CHANNEL_CLOSED
:
529 case SSH_CHANNEL_AUTH_SOCKET
:
530 case SSH_CHANNEL_DYNAMIC
:
531 case SSH_CHANNEL_CONNECTING
:
532 case SSH_CHANNEL_ZOMBIE
:
534 case SSH_CHANNEL_LARVAL
:
536 fatal("cannot happen: SSH_CHANNEL_LARVAL");
538 case SSH_CHANNEL_OPENING
:
539 case SSH_CHANNEL_OPEN
:
540 case SSH_CHANNEL_X11_OPEN
:
542 case SSH_CHANNEL_INPUT_DRAINING
:
543 case SSH_CHANNEL_OUTPUT_DRAINING
:
545 fatal("cannot happen: OUT_DRAIN");
548 fatal("channel_still_open: bad channel type %d", c
->type
);
555 /* Returns the id of an open channel suitable for keepaliving */
557 channel_find_open(void)
562 for (i
= 0; i
< channels_alloc
; i
++) {
564 if (c
== NULL
|| c
->remote_id
< 0)
567 case SSH_CHANNEL_CLOSED
:
568 case SSH_CHANNEL_DYNAMIC
:
569 case SSH_CHANNEL_X11_LISTENER
:
570 case SSH_CHANNEL_PORT_LISTENER
:
571 case SSH_CHANNEL_RPORT_LISTENER
:
572 case SSH_CHANNEL_OPENING
:
573 case SSH_CHANNEL_CONNECTING
:
574 case SSH_CHANNEL_ZOMBIE
:
576 case SSH_CHANNEL_LARVAL
:
577 case SSH_CHANNEL_AUTH_SOCKET
:
578 case SSH_CHANNEL_OPEN
:
579 case SSH_CHANNEL_X11_OPEN
:
581 case SSH_CHANNEL_INPUT_DRAINING
:
582 case SSH_CHANNEL_OUTPUT_DRAINING
:
584 fatal("cannot happen: OUT_DRAIN");
587 fatal("channel_find_open: bad channel type %d", c
->type
);
596 * Returns a message describing the currently open forwarded connections,
597 * suitable for sending to the client. The message contains crlf pairs for
601 channel_open_message(void)
608 buffer_init(&buffer
);
609 snprintf(buf
, sizeof buf
, "The following connections are open:\r\n");
610 buffer_append(&buffer
, buf
, strlen(buf
));
611 for (i
= 0; i
< channels_alloc
; i
++) {
616 case SSH_CHANNEL_X11_LISTENER
:
617 case SSH_CHANNEL_PORT_LISTENER
:
618 case SSH_CHANNEL_RPORT_LISTENER
:
619 case SSH_CHANNEL_CLOSED
:
620 case SSH_CHANNEL_AUTH_SOCKET
:
621 case SSH_CHANNEL_ZOMBIE
:
623 case SSH_CHANNEL_LARVAL
:
624 case SSH_CHANNEL_OPENING
:
625 case SSH_CHANNEL_CONNECTING
:
626 case SSH_CHANNEL_DYNAMIC
:
627 case SSH_CHANNEL_OPEN
:
628 case SSH_CHANNEL_X11_OPEN
:
629 case SSH_CHANNEL_INPUT_DRAINING
:
630 case SSH_CHANNEL_OUTPUT_DRAINING
:
631 snprintf(buf
, sizeof buf
,
632 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
633 c
->self
, c
->remote_name
,
634 c
->type
, c
->remote_id
,
635 c
->istate
, buffer_len(&c
->input
),
636 c
->ostate
, buffer_len(&c
->output
),
637 c
->rfd
, c
->wfd
, c
->ctl_fd
);
638 buffer_append(&buffer
, buf
, strlen(buf
));
641 fatal("channel_open_message: bad channel type %d", c
->type
);
645 buffer_append(&buffer
, "\0", 1);
646 cp
= xstrdup(buffer_ptr(&buffer
));
647 buffer_free(&buffer
);
652 channel_send_open(int id
)
654 Channel
*c
= channel_lookup(id
);
657 logit("channel_send_open: %d: bad id", id
);
660 debug2("channel %d: send open", id
);
661 packet_start(SSH2_MSG_CHANNEL_OPEN
);
662 packet_put_cstring(c
->ctype
);
663 packet_put_int(c
->self
);
664 packet_put_int(c
->local_window
);
665 packet_put_int(c
->local_maxpacket
);
670 channel_request_start(int id
, char *service
, int wantconfirm
)
672 Channel
*c
= channel_lookup(id
);
675 logit("channel_request_start: %d: unknown channel id", id
);
678 debug2("channel %d: request %s confirm %d", id
, service
, wantconfirm
);
679 packet_start(SSH2_MSG_CHANNEL_REQUEST
);
680 packet_put_int(c
->remote_id
);
681 packet_put_cstring(service
);
682 packet_put_char(wantconfirm
);
686 channel_register_status_confirm(int id
, channel_confirm_cb
*cb
,
687 channel_confirm_abandon_cb
*abandon_cb
, void *ctx
)
689 struct channel_confirm
*cc
;
692 if ((c
= channel_lookup(id
)) == NULL
)
693 fatal("channel_register_expect: %d: bad id", id
);
695 cc
= xmalloc(sizeof(*cc
));
697 cc
->abandon_cb
= abandon_cb
;
699 TAILQ_INSERT_TAIL(&c
->status_confirms
, cc
, entry
);
703 channel_register_open_confirm(int id
, channel_callback_fn
*fn
, void *ctx
)
705 Channel
*c
= channel_lookup(id
);
708 logit("channel_register_open_confirm: %d: bad id", id
);
711 c
->open_confirm
= fn
;
712 c
->open_confirm_ctx
= ctx
;
716 channel_register_cleanup(int id
, channel_callback_fn
*fn
, int do_close
)
718 Channel
*c
= channel_by_id(id
);
721 logit("channel_register_cleanup: %d: bad id", id
);
725 c
->detach_close
= do_close
;
729 channel_cancel_cleanup(int id
)
731 Channel
*c
= channel_by_id(id
);
734 logit("channel_cancel_cleanup: %d: bad id", id
);
737 c
->detach_user
= NULL
;
742 channel_register_filter(int id
, channel_infilter_fn
*ifn
,
743 channel_outfilter_fn
*ofn
, channel_filter_cleanup_fn
*cfn
, void *ctx
)
745 Channel
*c
= channel_lookup(id
);
748 logit("channel_register_filter: %d: bad id", id
);
751 c
->input_filter
= ifn
;
752 c
->output_filter
= ofn
;
754 c
->filter_cleanup
= cfn
;
758 channel_set_fds(int id
, int rfd
, int wfd
, int efd
,
759 int extusage
, int nonblock
, int is_tty
, u_int window_max
)
761 Channel
*c
= channel_lookup(id
);
763 if (c
== NULL
|| c
->type
!= SSH_CHANNEL_LARVAL
)
764 fatal("channel_activate for non-larval channel %d.", id
);
765 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
, is_tty
);
766 c
->type
= SSH_CHANNEL_OPEN
;
767 c
->local_window
= c
->local_window_max
= window_max
;
768 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
769 packet_put_int(c
->remote_id
);
770 packet_put_int(c
->local_window
);
775 * 'channel_pre*' are called just before select() to add any bits relevant to
776 * channels in the select bitmasks.
779 * 'channel_post*': perform any appropriate operations for channels which
780 * have events pending.
782 typedef void chan_fn(Channel
*c
, fd_set
*readset
, fd_set
*writeset
);
783 chan_fn
*channel_pre
[SSH_CHANNEL_MAX_TYPE
];
784 chan_fn
*channel_post
[SSH_CHANNEL_MAX_TYPE
];
788 channel_pre_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
790 FD_SET(c
->sock
, readset
);
795 channel_pre_connecting(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
797 debug3("channel %d: waiting for connection", c
->self
);
798 FD_SET(c
->sock
, writeset
);
802 channel_pre_open_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
804 if (buffer_len(&c
->input
) < packet_get_maxsize())
805 FD_SET(c
->sock
, readset
);
806 if (buffer_len(&c
->output
) > 0)
807 FD_SET(c
->sock
, writeset
);
811 channel_pre_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
813 u_int limit
= compat20
? c
->remote_window
: packet_get_maxsize();
815 if (c
->istate
== CHAN_INPUT_OPEN
&&
817 buffer_len(&c
->input
) < limit
&&
818 buffer_check_alloc(&c
->input
, CHAN_RBUF
))
819 FD_SET(c
->rfd
, readset
);
820 if (c
->ostate
== CHAN_OUTPUT_OPEN
||
821 c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
822 if (buffer_len(&c
->output
) > 0) {
823 FD_SET(c
->wfd
, writeset
);
824 } else if (c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
825 if (CHANNEL_EFD_OUTPUT_ACTIVE(c
))
826 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
827 c
->self
, c
->efd
, buffer_len(&c
->extended
));
832 /** XXX check close conditions, too */
833 if (compat20
&& c
->efd
!= -1 &&
834 !(c
->istate
== CHAN_INPUT_CLOSED
&& c
->ostate
== CHAN_OUTPUT_CLOSED
)) {
835 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
836 buffer_len(&c
->extended
) > 0)
837 FD_SET(c
->efd
, writeset
);
838 else if (!(c
->flags
& CHAN_EOF_SENT
) &&
839 c
->extended_usage
== CHAN_EXTENDED_READ
&&
840 buffer_len(&c
->extended
) < c
->remote_window
)
841 FD_SET(c
->efd
, readset
);
843 /* XXX: What about efd? races? */
844 if (compat20
&& c
->ctl_fd
!= -1 &&
845 c
->istate
== CHAN_INPUT_OPEN
&& c
->ostate
== CHAN_OUTPUT_OPEN
)
846 FD_SET(c
->ctl_fd
, readset
);
851 channel_pre_input_draining(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
853 if (buffer_len(&c
->input
) == 0) {
854 packet_start(SSH_MSG_CHANNEL_CLOSE
);
855 packet_put_int(c
->remote_id
);
857 c
->type
= SSH_CHANNEL_CLOSED
;
858 debug2("channel %d: closing after input drain.", c
->self
);
864 channel_pre_output_draining(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
866 if (buffer_len(&c
->output
) == 0)
869 FD_SET(c
->sock
, writeset
);
873 * This is a special state for X11 authentication spoofing. An opened X11
874 * connection (when authentication spoofing is being done) remains in this
875 * state until the first packet has been completely read. The authentication
876 * data in that packet is then substituted by the real data if it matches the
877 * fake data, and the channel is put into normal mode.
878 * XXX All this happens at the client side.
879 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
882 x11_open_helper(Buffer
*b
)
885 u_int proto_len
, data_len
;
887 /* Check if the fixed size part of the packet is in buffer. */
888 if (buffer_len(b
) < 12)
891 /* Parse the lengths of variable-length fields. */
893 if (ucp
[0] == 0x42) { /* Byte order MSB first. */
894 proto_len
= 256 * ucp
[6] + ucp
[7];
895 data_len
= 256 * ucp
[8] + ucp
[9];
896 } else if (ucp
[0] == 0x6c) { /* Byte order LSB first. */
897 proto_len
= ucp
[6] + 256 * ucp
[7];
898 data_len
= ucp
[8] + 256 * ucp
[9];
900 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
905 /* Check if the whole packet is in buffer. */
907 12 + ((proto_len
+ 3) & ~3) + ((data_len
+ 3) & ~3))
910 /* Check if authentication protocol matches. */
911 if (proto_len
!= strlen(x11_saved_proto
) ||
912 memcmp(ucp
+ 12, x11_saved_proto
, proto_len
) != 0) {
913 debug2("X11 connection uses different authentication protocol.");
916 /* Check if authentication data matches our fake data. */
917 if (data_len
!= x11_fake_data_len
||
918 memcmp(ucp
+ 12 + ((proto_len
+ 3) & ~3),
919 x11_fake_data
, x11_fake_data_len
) != 0) {
920 debug2("X11 auth data does not match fake data.");
923 /* Check fake data length */
924 if (x11_fake_data_len
!= x11_saved_data_len
) {
925 error("X11 fake_data_len %d != saved_data_len %d",
926 x11_fake_data_len
, x11_saved_data_len
);
930 * Received authentication protocol and data match
931 * our fake data. Substitute the fake data with real
934 memcpy(ucp
+ 12 + ((proto_len
+ 3) & ~3),
935 x11_saved_data
, x11_saved_data_len
);
940 channel_pre_x11_open_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
942 int ret
= x11_open_helper(&c
->output
);
945 /* Start normal processing for the channel. */
946 c
->type
= SSH_CHANNEL_OPEN
;
947 channel_pre_open_13(c
, readset
, writeset
);
948 } else if (ret
== -1) {
950 * We have received an X11 connection that has bad
951 * authentication information.
953 logit("X11 connection rejected because of wrong authentication.");
954 buffer_clear(&c
->input
);
955 buffer_clear(&c
->output
);
956 channel_close_fd(&c
->sock
);
958 c
->type
= SSH_CHANNEL_CLOSED
;
959 packet_start(SSH_MSG_CHANNEL_CLOSE
);
960 packet_put_int(c
->remote_id
);
966 channel_pre_x11_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
968 int ret
= x11_open_helper(&c
->output
);
970 /* c->force_drain = 1; */
973 c
->type
= SSH_CHANNEL_OPEN
;
974 channel_pre_open(c
, readset
, writeset
);
975 } else if (ret
== -1) {
976 logit("X11 connection rejected because of wrong authentication.");
977 debug2("X11 rejected %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
979 buffer_clear(&c
->input
);
981 buffer_clear(&c
->output
);
982 /* for proto v1, the peer will send an IEOF */
984 chan_write_failed(c
);
986 c
->type
= SSH_CHANNEL_OPEN
;
987 debug2("X11 closed %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
991 /* try to decode a socks4 header */
994 channel_decode_socks4(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
997 u_int len
, have
, i
, found
, need
;
1002 u_int16_t dest_port
;
1003 struct in_addr dest_addr
;
1006 debug2("channel %d: decode socks4", c
->self
);
1008 have
= buffer_len(&c
->input
);
1009 len
= sizeof(s4_req
);
1012 p
= buffer_ptr(&c
->input
);
1015 /* SOCKS4A uses an invalid IP address 0.0.0.x */
1016 if (p
[4] == 0 && p
[5] == 0 && p
[6] == 0 && p
[7] != 0) {
1017 debug2("channel %d: socks4a request", c
->self
);
1018 /* ... and needs an extra string (the hostname) */
1021 /* Check for terminating NUL on the string(s) */
1022 for (found
= 0, i
= len
; i
< have
; i
++) {
1029 /* the peer is probably sending garbage */
1030 debug("channel %d: decode socks4: too long",
1037 buffer_get(&c
->input
, (char *)&s4_req
.version
, 1);
1038 buffer_get(&c
->input
, (char *)&s4_req
.command
, 1);
1039 buffer_get(&c
->input
, (char *)&s4_req
.dest_port
, 2);
1040 buffer_get(&c
->input
, (char *)&s4_req
.dest_addr
, 4);
1041 have
= buffer_len(&c
->input
);
1042 p
= buffer_ptr(&c
->input
);
1044 debug2("channel %d: decode socks4: user %s/%d", c
->self
, p
, len
);
1045 len
++; /* trailing '\0' */
1047 fatal("channel %d: decode socks4: len %d > have %d",
1048 c
->self
, len
, have
);
1049 strlcpy(username
, p
, sizeof(username
));
1050 buffer_consume(&c
->input
, len
);
1052 if (c
->path
!= NULL
) {
1056 if (need
== 1) { /* SOCKS4: one string */
1057 host
= inet_ntoa(s4_req
.dest_addr
);
1058 c
->path
= xstrdup(host
);
1059 } else { /* SOCKS4A: two strings */
1060 have
= buffer_len(&c
->input
);
1061 p
= buffer_ptr(&c
->input
);
1063 debug2("channel %d: decode socks4a: host %s/%d",
1065 len
++; /* trailing '\0' */
1067 fatal("channel %d: decode socks4a: len %d > have %d",
1068 c
->self
, len
, have
);
1069 if (len
> NI_MAXHOST
) {
1070 error("channel %d: hostname \"%.100s\" too long",
1074 c
->path
= xstrdup(p
);
1075 buffer_consume(&c
->input
, len
);
1077 c
->host_port
= ntohs(s4_req
.dest_port
);
1079 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
1080 c
->self
, c
->path
, c
->host_port
, s4_req
.command
);
1082 if (s4_req
.command
!= 1) {
1083 debug("channel %d: cannot handle: %s cn %d",
1084 c
->self
, need
== 1 ? "SOCKS4" : "SOCKS4A", s4_req
.command
);
1087 s4_rsp
.version
= 0; /* vn: 0 for reply */
1088 s4_rsp
.command
= 90; /* cd: req granted */
1089 s4_rsp
.dest_port
= 0; /* ignored */
1090 s4_rsp
.dest_addr
.s_addr
= INADDR_ANY
; /* ignored */
1091 buffer_append(&c
->output
, &s4_rsp
, sizeof(s4_rsp
));
1095 /* try to decode a socks5 header */
1096 #define SSH_SOCKS5_AUTHDONE 0x1000
1097 #define SSH_SOCKS5_NOAUTH 0x00
1098 #define SSH_SOCKS5_IPV4 0x01
1099 #define SSH_SOCKS5_DOMAIN 0x03
1100 #define SSH_SOCKS5_IPV6 0x04
1101 #define SSH_SOCKS5_CONNECT 0x01
1102 #define SSH_SOCKS5_SUCCESS 0x00
1106 channel_decode_socks5(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1114 u_int16_t dest_port
;
1115 u_char
*p
, dest_addr
[255+1], ntop
[INET6_ADDRSTRLEN
];
1116 u_int have
, need
, i
, found
, nmethods
, addrlen
, af
;
1118 debug2("channel %d: decode socks5", c
->self
);
1119 p
= buffer_ptr(&c
->input
);
1122 have
= buffer_len(&c
->input
);
1123 if (!(c
->flags
& SSH_SOCKS5_AUTHDONE
)) {
1124 /* format: ver | nmethods | methods */
1128 if (have
< nmethods
+ 2)
1130 /* look for method: "NO AUTHENTICATION REQUIRED" */
1131 for (found
= 0, i
= 2; i
< nmethods
+ 2; i
++) {
1132 if (p
[i
] == SSH_SOCKS5_NOAUTH
) {
1138 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1142 buffer_consume(&c
->input
, nmethods
+ 2);
1143 buffer_put_char(&c
->output
, 0x05); /* version */
1144 buffer_put_char(&c
->output
, SSH_SOCKS5_NOAUTH
); /* method */
1145 FD_SET(c
->sock
, writeset
);
1146 c
->flags
|= SSH_SOCKS5_AUTHDONE
;
1147 debug2("channel %d: socks5 auth done", c
->self
);
1148 return 0; /* need more */
1150 debug2("channel %d: socks5 post auth", c
->self
);
1151 if (have
< sizeof(s5_req
)+1)
1152 return 0; /* need more */
1153 memcpy(&s5_req
, p
, sizeof(s5_req
));
1154 if (s5_req
.version
!= 0x05 ||
1155 s5_req
.command
!= SSH_SOCKS5_CONNECT
||
1156 s5_req
.reserved
!= 0x00) {
1157 debug2("channel %d: only socks5 connect supported", c
->self
);
1160 switch (s5_req
.atyp
){
1161 case SSH_SOCKS5_IPV4
:
1165 case SSH_SOCKS5_DOMAIN
:
1166 addrlen
= p
[sizeof(s5_req
)];
1169 case SSH_SOCKS5_IPV6
:
1174 debug2("channel %d: bad socks5 atyp %d", c
->self
, s5_req
.atyp
);
1177 need
= sizeof(s5_req
) + addrlen
+ 2;
1178 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1182 buffer_consume(&c
->input
, sizeof(s5_req
));
1183 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1184 buffer_consume(&c
->input
, 1); /* host string length */
1185 buffer_get(&c
->input
, (char *)&dest_addr
, addrlen
);
1186 buffer_get(&c
->input
, (char *)&dest_port
, 2);
1187 dest_addr
[addrlen
] = '\0';
1188 if (c
->path
!= NULL
) {
1192 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
) {
1193 if (addrlen
>= NI_MAXHOST
) {
1194 error("channel %d: dynamic request: socks5 hostname "
1195 "\"%.100s\" too long", c
->self
, dest_addr
);
1198 c
->path
= xstrdup(dest_addr
);
1200 if (inet_ntop(af
, dest_addr
, ntop
, sizeof(ntop
)) == NULL
)
1202 c
->path
= xstrdup(ntop
);
1204 c
->host_port
= ntohs(dest_port
);
1206 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
1207 c
->self
, c
->path
, c
->host_port
, s5_req
.command
);
1209 s5_rsp
.version
= 0x05;
1210 s5_rsp
.command
= SSH_SOCKS5_SUCCESS
;
1211 s5_rsp
.reserved
= 0; /* ignored */
1212 s5_rsp
.atyp
= SSH_SOCKS5_IPV4
;
1213 ((struct in_addr
*)&dest_addr
)->s_addr
= INADDR_ANY
;
1214 dest_port
= 0; /* ignored */
1216 buffer_append(&c
->output
, &s5_rsp
, sizeof(s5_rsp
));
1217 buffer_append(&c
->output
, &dest_addr
, sizeof(struct in_addr
));
1218 buffer_append(&c
->output
, &dest_port
, sizeof(dest_port
));
1222 /* dynamic port forwarding */
1224 channel_pre_dynamic(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1230 have
= buffer_len(&c
->input
);
1232 debug2("channel %d: pre_dynamic: have %d", c
->self
, have
);
1233 /* buffer_dump(&c->input); */
1234 /* check if the fixed size part of the packet is in buffer. */
1237 FD_SET(c
->sock
, readset
);
1240 /* try to guess the protocol */
1241 p
= buffer_ptr(&c
->input
);
1244 ret
= channel_decode_socks4(c
, readset
, writeset
);
1247 ret
= channel_decode_socks5(c
, readset
, writeset
);
1255 } else if (ret
== 0) {
1256 debug2("channel %d: pre_dynamic: need more", c
->self
);
1258 FD_SET(c
->sock
, readset
);
1260 /* switch to the next state */
1261 c
->type
= SSH_CHANNEL_OPENING
;
1262 port_open_helper(c
, "direct-tcpip");
1266 /* This is our fake X11 server socket. */
1269 channel_post_x11_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1272 struct sockaddr_storage addr
;
1275 char buf
[16384], *remote_ipaddr
;
1278 if (FD_ISSET(c
->sock
, readset
)) {
1279 debug("X11 connection requested.");
1280 addrlen
= sizeof(addr
);
1281 newsock
= accept(c
->sock
, (struct sockaddr
*)&addr
, &addrlen
);
1282 if (c
->single_connection
) {
1283 debug2("single_connection: closing X11 listener.");
1284 channel_close_fd(&c
->sock
);
1288 error("accept: %.100s", strerror(errno
));
1291 set_nodelay(newsock
);
1292 remote_ipaddr
= get_peer_ipaddr(newsock
);
1293 remote_port
= get_peer_port(newsock
);
1294 snprintf(buf
, sizeof buf
, "X11 connection from %.200s port %d",
1295 remote_ipaddr
, remote_port
);
1297 nc
= channel_new("accepted x11 socket",
1298 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1299 c
->local_window_max
, c
->local_maxpacket
, 0, buf
, 1);
1301 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1302 packet_put_cstring("x11");
1303 packet_put_int(nc
->self
);
1304 packet_put_int(nc
->local_window_max
);
1305 packet_put_int(nc
->local_maxpacket
);
1306 /* originator ipaddr and port */
1307 packet_put_cstring(remote_ipaddr
);
1308 if (datafellows
& SSH_BUG_X11FWD
) {
1309 debug2("ssh2 x11 bug compat mode");
1311 packet_put_int(remote_port
);
1315 packet_start(SSH_SMSG_X11_OPEN
);
1316 packet_put_int(nc
->self
);
1317 if (packet_get_protocol_flags() &
1318 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1319 packet_put_cstring(buf
);
1322 xfree(remote_ipaddr
);
1327 port_open_helper(Channel
*c
, char *rtype
)
1331 char *remote_ipaddr
= get_peer_ipaddr(c
->sock
);
1332 int remote_port
= get_peer_port(c
->sock
);
1334 direct
= (strcmp(rtype
, "direct-tcpip") == 0);
1336 snprintf(buf
, sizeof buf
,
1337 "%s: listening port %d for %.100s port %d, "
1338 "connect from %.200s port %d",
1339 rtype
, c
->listening_port
, c
->path
, c
->host_port
,
1340 remote_ipaddr
, remote_port
);
1342 xfree(c
->remote_name
);
1343 c
->remote_name
= xstrdup(buf
);
1346 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1347 packet_put_cstring(rtype
);
1348 packet_put_int(c
->self
);
1349 packet_put_int(c
->local_window_max
);
1350 packet_put_int(c
->local_maxpacket
);
1352 /* target host, port */
1353 packet_put_cstring(c
->path
);
1354 packet_put_int(c
->host_port
);
1356 /* listen address, port */
1357 packet_put_cstring(c
->path
);
1358 packet_put_int(c
->listening_port
);
1360 /* originator host and port */
1361 packet_put_cstring(remote_ipaddr
);
1362 packet_put_int((u_int
)remote_port
);
1365 packet_start(SSH_MSG_PORT_OPEN
);
1366 packet_put_int(c
->self
);
1367 packet_put_cstring(c
->path
);
1368 packet_put_int(c
->host_port
);
1369 if (packet_get_protocol_flags() &
1370 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1371 packet_put_cstring(c
->remote_name
);
1374 xfree(remote_ipaddr
);
1378 channel_set_reuseaddr(int fd
)
1383 * Set socket options.
1384 * Allow local port reuse in TIME_WAIT.
1386 if (setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
)) == -1)
1387 error("setsockopt SO_REUSEADDR fd %d: %s", fd
, strerror(errno
));
1391 * This socket is listening for connections to a forwarded TCP/IP port.
1395 channel_post_port_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1398 struct sockaddr_storage addr
;
1399 int newsock
, nextstate
;
1403 if (FD_ISSET(c
->sock
, readset
)) {
1404 debug("Connection to port %d forwarding "
1405 "to %.100s port %d requested.",
1406 c
->listening_port
, c
->path
, c
->host_port
);
1408 if (c
->type
== SSH_CHANNEL_RPORT_LISTENER
) {
1409 nextstate
= SSH_CHANNEL_OPENING
;
1410 rtype
= "forwarded-tcpip";
1412 if (c
->host_port
== 0) {
1413 nextstate
= SSH_CHANNEL_DYNAMIC
;
1414 rtype
= "dynamic-tcpip";
1416 nextstate
= SSH_CHANNEL_OPENING
;
1417 rtype
= "direct-tcpip";
1421 addrlen
= sizeof(addr
);
1422 newsock
= accept(c
->sock
, (struct sockaddr
*)&addr
, &addrlen
);
1424 error("accept: %.100s", strerror(errno
));
1427 set_nodelay(newsock
);
1428 nc
= channel_new(rtype
, nextstate
, newsock
, newsock
, -1,
1429 c
->local_window_max
, c
->local_maxpacket
, 0, rtype
, 1);
1430 nc
->listening_port
= c
->listening_port
;
1431 nc
->host_port
= c
->host_port
;
1432 if (c
->path
!= NULL
)
1433 nc
->path
= xstrdup(c
->path
);
1435 if (nextstate
== SSH_CHANNEL_DYNAMIC
) {
1437 * do not call the channel_post handler until
1438 * this flag has been reset by a pre-handler.
1439 * otherwise the FD_ISSET calls might overflow
1443 port_open_helper(nc
, rtype
);
1449 * This is the authentication agent socket listening for connections from
1454 channel_post_auth_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1458 struct sockaddr_storage addr
;
1461 if (FD_ISSET(c
->sock
, readset
)) {
1462 addrlen
= sizeof(addr
);
1463 newsock
= accept(c
->sock
, (struct sockaddr
*)&addr
, &addrlen
);
1465 error("accept from auth socket: %.100s", strerror(errno
));
1468 nc
= channel_new("accepted auth socket",
1469 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1470 c
->local_window_max
, c
->local_maxpacket
,
1471 0, "accepted auth socket", 1);
1473 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1474 packet_put_cstring("auth-agent@openssh.com");
1475 packet_put_int(nc
->self
);
1476 packet_put_int(c
->local_window_max
);
1477 packet_put_int(c
->local_maxpacket
);
1479 packet_start(SSH_SMSG_AGENT_OPEN
);
1480 packet_put_int(nc
->self
);
1488 channel_post_connecting(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1491 socklen_t sz
= sizeof(err
);
1493 if (FD_ISSET(c
->sock
, writeset
)) {
1494 if (getsockopt(c
->sock
, SOL_SOCKET
, SO_ERROR
, &err
, &sz
) < 0) {
1496 error("getsockopt SO_ERROR failed");
1499 debug("channel %d: connected to %s port %d",
1500 c
->self
, c
->connect_ctx
.host
, c
->connect_ctx
.port
);
1501 channel_connect_ctx_free(&c
->connect_ctx
);
1502 c
->type
= SSH_CHANNEL_OPEN
;
1504 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
1505 packet_put_int(c
->remote_id
);
1506 packet_put_int(c
->self
);
1507 packet_put_int(c
->local_window
);
1508 packet_put_int(c
->local_maxpacket
);
1510 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
1511 packet_put_int(c
->remote_id
);
1512 packet_put_int(c
->self
);
1515 debug("channel %d: connection failed: %s",
1516 c
->self
, strerror(err
));
1517 /* Try next address, if any */
1518 if ((sock
= connect_next(&c
->connect_ctx
)) > 0) {
1520 c
->sock
= c
->rfd
= c
->wfd
= sock
;
1521 channel_max_fd
= channel_find_maxfd();
1524 /* Exhausted all addresses */
1525 error("connect_to %.100s port %d: failed.",
1526 c
->connect_ctx
.host
, c
->connect_ctx
.port
);
1527 channel_connect_ctx_free(&c
->connect_ctx
);
1529 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
1530 packet_put_int(c
->remote_id
);
1531 packet_put_int(SSH2_OPEN_CONNECT_FAILED
);
1532 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
1533 packet_put_cstring(strerror(err
));
1534 packet_put_cstring("");
1537 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
1538 packet_put_int(c
->remote_id
);
1548 channel_handle_rfd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1550 char buf
[CHAN_RBUF
];
1553 force
= c
->isatty
&& c
->detach_close
&& c
->istate
!= CHAN_INPUT_CLOSED
;
1554 if (c
->rfd
!= -1 && (force
|| FD_ISSET(c
->rfd
, readset
))) {
1556 len
= read(c
->rfd
, buf
, sizeof(buf
));
1557 if (len
< 0 && (errno
== EINTR
||
1558 ((errno
== EAGAIN
|| errno
== EWOULDBLOCK
) && !force
)))
1560 #ifndef PTY_ZEROREAD
1563 if ((!c
->isatty
&& len
<= 0) ||
1564 (c
->isatty
&& (len
< 0 || (len
== 0 && errno
!= 0)))) {
1566 debug2("channel %d: read<=0 rfd %d len %d",
1567 c
->self
, c
->rfd
, len
);
1568 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1569 debug2("channel %d: not open", c
->self
);
1572 } else if (compat13
) {
1573 buffer_clear(&c
->output
);
1574 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1575 debug2("channel %d: input draining.", c
->self
);
1577 chan_read_failed(c
);
1581 if (c
->input_filter
!= NULL
) {
1582 if (c
->input_filter(c
, buf
, len
) == -1) {
1583 debug2("channel %d: filter stops", c
->self
);
1584 chan_read_failed(c
);
1586 } else if (c
->datagram
) {
1587 buffer_put_string(&c
->input
, buf
, len
);
1589 buffer_append(&c
->input
, buf
, len
);
1597 channel_handle_wfd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1600 u_char
*data
= NULL
, *buf
;
1604 /* Send buffered output data to the socket. */
1606 FD_ISSET(c
->wfd
, writeset
) &&
1607 buffer_len(&c
->output
) > 0) {
1608 if (c
->output_filter
!= NULL
) {
1609 if ((buf
= c
->output_filter(c
, &data
, &dlen
)) == NULL
) {
1610 debug2("channel %d: filter stops", c
->self
);
1611 if (c
->type
!= SSH_CHANNEL_OPEN
)
1614 chan_write_failed(c
);
1617 } else if (c
->datagram
) {
1618 buf
= data
= buffer_get_string(&c
->output
, &dlen
);
1620 buf
= data
= buffer_ptr(&c
->output
);
1621 dlen
= buffer_len(&c
->output
);
1625 /* ignore truncated writes, datagrams might get lost */
1626 c
->local_consumed
+= dlen
+ 4;
1627 len
= write(c
->wfd
, buf
, dlen
);
1629 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
||
1630 errno
== EWOULDBLOCK
))
1633 if (c
->type
!= SSH_CHANNEL_OPEN
)
1636 chan_write_failed(c
);
1642 /* XXX: Later AIX versions can't push as much data to tty */
1643 if (compat20
&& c
->wfd_isatty
)
1644 dlen
= MIN(dlen
, 8*1024);
1647 len
= write(c
->wfd
, buf
, dlen
);
1649 (errno
== EINTR
|| errno
== EAGAIN
|| errno
== EWOULDBLOCK
))
1652 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1653 debug2("channel %d: not open", c
->self
);
1656 } else if (compat13
) {
1657 buffer_clear(&c
->output
);
1658 debug2("channel %d: input draining.", c
->self
);
1659 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1661 chan_write_failed(c
);
1665 #ifndef BROKEN_TCGETATTR_ICANON
1666 if (compat20
&& c
->isatty
&& dlen
>= 1 && buf
[0] != '\r') {
1667 if (tcgetattr(c
->wfd
, &tio
) == 0 &&
1668 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
1670 * Simulate echo to reduce the impact of
1671 * traffic analysis. We need to match the
1672 * size of a SSH2_MSG_CHANNEL_DATA message
1673 * (4 byte channel id + buf)
1675 packet_send_ignore(4 + len
);
1680 buffer_consume(&c
->output
, len
);
1681 if (compat20
&& len
> 0) {
1682 c
->local_consumed
+= len
;
1689 channel_handle_efd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1691 char buf
[CHAN_RBUF
];
1694 /** XXX handle drain efd, too */
1696 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
1697 FD_ISSET(c
->efd
, writeset
) &&
1698 buffer_len(&c
->extended
) > 0) {
1699 len
= write(c
->efd
, buffer_ptr(&c
->extended
),
1700 buffer_len(&c
->extended
));
1701 debug2("channel %d: written %d to efd %d",
1702 c
->self
, len
, c
->efd
);
1703 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
||
1704 errno
== EWOULDBLOCK
))
1707 debug2("channel %d: closing write-efd %d",
1709 channel_close_fd(&c
->efd
);
1711 buffer_consume(&c
->extended
, len
);
1712 c
->local_consumed
+= len
;
1714 } else if (c
->extended_usage
== CHAN_EXTENDED_READ
&&
1715 (c
->detach_close
|| FD_ISSET(c
->efd
, readset
))) {
1716 len
= read(c
->efd
, buf
, sizeof(buf
));
1717 debug2("channel %d: read %d from efd %d",
1718 c
->self
, len
, c
->efd
);
1719 if (len
< 0 && (errno
== EINTR
|| ((errno
== EAGAIN
||
1720 errno
== EWOULDBLOCK
) && !c
->detach_close
)))
1723 debug2("channel %d: closing read-efd %d",
1725 channel_close_fd(&c
->efd
);
1727 buffer_append(&c
->extended
, buf
, len
);
1736 channel_handle_ctl(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1741 /* Monitor control fd to detect if the slave client exits */
1742 if (c
->ctl_fd
!= -1 && FD_ISSET(c
->ctl_fd
, readset
)) {
1743 len
= read(c
->ctl_fd
, buf
, sizeof(buf
));
1745 (errno
== EINTR
|| errno
== EAGAIN
|| errno
== EWOULDBLOCK
))
1748 debug2("channel %d: ctl read<=0", c
->self
);
1749 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1750 debug2("channel %d: not open", c
->self
);
1754 chan_read_failed(c
);
1755 chan_write_failed(c
);
1759 fatal("%s: unexpected data on ctl fd", __func__
);
1765 channel_check_window(Channel
*c
)
1767 if (c
->type
== SSH_CHANNEL_OPEN
&&
1768 !(c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
)) &&
1769 ((c
->local_window_max
- c
->local_window
>
1770 c
->local_maxpacket
*3) ||
1771 c
->local_window
< c
->local_window_max
/2) &&
1772 c
->local_consumed
> 0) {
1773 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
1774 packet_put_int(c
->remote_id
);
1775 packet_put_int(c
->local_consumed
);
1777 debug2("channel %d: window %d sent adjust %d",
1778 c
->self
, c
->local_window
,
1780 c
->local_window
+= c
->local_consumed
;
1781 c
->local_consumed
= 0;
1787 channel_post_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1791 channel_handle_rfd(c
, readset
, writeset
);
1792 channel_handle_wfd(c
, readset
, writeset
);
1795 channel_handle_efd(c
, readset
, writeset
);
1796 channel_handle_ctl(c
, readset
, writeset
);
1797 channel_check_window(c
);
1802 channel_post_output_drain_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1806 /* Send buffered output data to the socket. */
1807 if (FD_ISSET(c
->sock
, writeset
) && buffer_len(&c
->output
) > 0) {
1808 len
= write(c
->sock
, buffer_ptr(&c
->output
),
1809 buffer_len(&c
->output
));
1811 buffer_clear(&c
->output
);
1813 buffer_consume(&c
->output
, len
);
1818 channel_handler_init_20(void)
1820 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1821 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1822 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1823 channel_pre
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_pre_listener
;
1824 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1825 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1826 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1827 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1829 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1830 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1831 channel_post
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_post_port_listener
;
1832 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1833 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1834 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1835 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1839 channel_handler_init_13(void)
1841 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open_13
;
1842 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open_13
;
1843 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1844 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1845 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1846 channel_pre
[SSH_CHANNEL_INPUT_DRAINING
] = &channel_pre_input_draining
;
1847 channel_pre
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_pre_output_draining
;
1848 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1849 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1851 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1852 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1853 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1854 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1855 channel_post
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_post_output_drain_13
;
1856 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1857 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1861 channel_handler_init_15(void)
1863 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1864 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1865 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1866 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1867 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1868 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1869 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1871 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1872 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1873 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1874 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1875 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1876 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1880 channel_handler_init(void)
1884 for (i
= 0; i
< SSH_CHANNEL_MAX_TYPE
; i
++) {
1885 channel_pre
[i
] = NULL
;
1886 channel_post
[i
] = NULL
;
1889 channel_handler_init_20();
1891 channel_handler_init_13();
1893 channel_handler_init_15();
1896 /* gc dead channels */
1898 channel_garbage_collect(Channel
*c
)
1902 if (c
->detach_user
!= NULL
) {
1903 if (!chan_is_dead(c
, c
->detach_close
))
1905 debug2("channel %d: gc: notify user", c
->self
);
1906 c
->detach_user(c
->self
, NULL
);
1907 /* if we still have a callback */
1908 if (c
->detach_user
!= NULL
)
1910 debug2("channel %d: gc: user detached", c
->self
);
1912 if (!chan_is_dead(c
, 1))
1914 debug2("channel %d: garbage collecting", c
->self
);
1919 channel_handler(chan_fn
*ftab
[], fd_set
*readset
, fd_set
*writeset
)
1921 static int did_init
= 0;
1926 channel_handler_init();
1929 for (i
= 0; i
< channels_alloc
; i
++) {
1933 if (ftab
[c
->type
] != NULL
)
1934 (*ftab
[c
->type
])(c
, readset
, writeset
);
1935 channel_garbage_collect(c
);
1940 * Allocate/update select bitmasks and add any bits relevant to channels in
1944 channel_prepare_select(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
1945 u_int
*nallocp
, int rekeying
)
1947 u_int n
, sz
, nfdset
;
1949 n
= MAX(*maxfdp
, channel_max_fd
);
1951 nfdset
= howmany(n
+1, NFDBITS
);
1952 /* Explicitly test here, because xrealloc isn't always called */
1953 if (nfdset
&& SIZE_T_MAX
/ nfdset
< sizeof(fd_mask
))
1954 fatal("channel_prepare_select: max_fd (%d) is too large", n
);
1955 sz
= nfdset
* sizeof(fd_mask
);
1957 /* perhaps check sz < nalloc/2 and shrink? */
1958 if (*readsetp
== NULL
|| sz
> *nallocp
) {
1959 *readsetp
= xrealloc(*readsetp
, nfdset
, sizeof(fd_mask
));
1960 *writesetp
= xrealloc(*writesetp
, nfdset
, sizeof(fd_mask
));
1964 memset(*readsetp
, 0, sz
);
1965 memset(*writesetp
, 0, sz
);
1968 channel_handler(channel_pre
, *readsetp
, *writesetp
);
1972 * After select, perform any appropriate operations for channels which have
1976 channel_after_select(fd_set
*readset
, fd_set
*writeset
)
1978 channel_handler(channel_post
, readset
, writeset
);
1982 /* If there is data to send to the connection, enqueue some of it now. */
1984 channel_output_poll(void)
1989 for (i
= 0; i
< channels_alloc
; i
++) {
1995 * We are only interested in channels that can have buffered
1999 if (c
->type
!= SSH_CHANNEL_OPEN
&&
2000 c
->type
!= SSH_CHANNEL_INPUT_DRAINING
)
2003 if (c
->type
!= SSH_CHANNEL_OPEN
)
2007 (c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
))) {
2008 /* XXX is this true? */
2009 debug3("channel %d: will not send data after close", c
->self
);
2013 /* Get the amount of buffered data for this channel. */
2014 if ((c
->istate
== CHAN_INPUT_OPEN
||
2015 c
->istate
== CHAN_INPUT_WAIT_DRAIN
) &&
2016 (len
= buffer_len(&c
->input
)) > 0) {
2022 data
= buffer_get_string(&c
->input
,
2024 packet_start(SSH2_MSG_CHANNEL_DATA
);
2025 packet_put_int(c
->remote_id
);
2026 packet_put_string(data
, dlen
);
2028 c
->remote_window
-= dlen
+ 4;
2034 * Send some data for the other side over the secure
2038 if (len
> c
->remote_window
)
2039 len
= c
->remote_window
;
2040 if (len
> c
->remote_maxpacket
)
2041 len
= c
->remote_maxpacket
;
2043 if (packet_is_interactive()) {
2047 /* Keep the packets at reasonable size. */
2048 if (len
> packet_get_maxsize()/2)
2049 len
= packet_get_maxsize()/2;
2053 packet_start(compat20
?
2054 SSH2_MSG_CHANNEL_DATA
: SSH_MSG_CHANNEL_DATA
);
2055 packet_put_int(c
->remote_id
);
2056 packet_put_string(buffer_ptr(&c
->input
), len
);
2058 buffer_consume(&c
->input
, len
);
2059 c
->remote_window
-= len
;
2061 } else if (c
->istate
== CHAN_INPUT_WAIT_DRAIN
) {
2063 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
2065 * input-buffer is empty and read-socket shutdown:
2066 * tell peer, that we will not send more data: send IEOF.
2067 * hack for extended data: delay EOF if EFD still in use.
2069 if (CHANNEL_EFD_INPUT_ACTIVE(c
))
2070 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
2071 c
->self
, c
->efd
, buffer_len(&c
->extended
));
2075 /* Send extended data, i.e. stderr */
2077 !(c
->flags
& CHAN_EOF_SENT
) &&
2078 c
->remote_window
> 0 &&
2079 (len
= buffer_len(&c
->extended
)) > 0 &&
2080 c
->extended_usage
== CHAN_EXTENDED_READ
) {
2081 debug2("channel %d: rwin %u elen %u euse %d",
2082 c
->self
, c
->remote_window
, buffer_len(&c
->extended
),
2084 if (len
> c
->remote_window
)
2085 len
= c
->remote_window
;
2086 if (len
> c
->remote_maxpacket
)
2087 len
= c
->remote_maxpacket
;
2088 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA
);
2089 packet_put_int(c
->remote_id
);
2090 packet_put_int(SSH2_EXTENDED_DATA_STDERR
);
2091 packet_put_string(buffer_ptr(&c
->extended
), len
);
2093 buffer_consume(&c
->extended
, len
);
2094 c
->remote_window
-= len
;
2095 debug2("channel %d: sent ext data %d", c
->self
, len
);
2101 /* -- protocol input */
2105 channel_input_data(int type
, u_int32_t seq
, void *ctxt
)
2112 /* Get the channel number and verify it. */
2113 id
= packet_get_int();
2114 c
= channel_lookup(id
);
2116 packet_disconnect("Received data for nonexistent channel %d.", id
);
2118 /* Ignore any data for non-open channels (might happen on close) */
2119 if (c
->type
!= SSH_CHANNEL_OPEN
&&
2120 c
->type
!= SSH_CHANNEL_X11_OPEN
)
2124 data
= packet_get_string_ptr(&data_len
);
2127 * Ignore data for protocol > 1.3 if output end is no longer open.
2128 * For protocol 2 the sending side is reducing its window as it sends
2129 * data, so we must 'fake' consumption of the data in order to ensure
2130 * that window updates are sent back. Otherwise the connection might
2133 if (!compat13
&& c
->ostate
!= CHAN_OUTPUT_OPEN
) {
2135 c
->local_window
-= data_len
;
2136 c
->local_consumed
+= data_len
;
2142 if (data_len
> c
->local_maxpacket
) {
2143 logit("channel %d: rcvd big packet %d, maxpack %d",
2144 c
->self
, data_len
, c
->local_maxpacket
);
2146 if (data_len
> c
->local_window
) {
2147 logit("channel %d: rcvd too much data %d, win %d",
2148 c
->self
, data_len
, c
->local_window
);
2151 c
->local_window
-= data_len
;
2154 buffer_put_string(&c
->output
, data
, data_len
);
2156 buffer_append(&c
->output
, data
, data_len
);
2162 channel_input_extended_data(int type
, u_int32_t seq
, void *ctxt
)
2166 u_int data_len
, tcode
;
2169 /* Get the channel number and verify it. */
2170 id
= packet_get_int();
2171 c
= channel_lookup(id
);
2174 packet_disconnect("Received extended_data for bad channel %d.", id
);
2175 if (c
->type
!= SSH_CHANNEL_OPEN
) {
2176 logit("channel %d: ext data for non open", id
);
2179 if (c
->flags
& CHAN_EOF_RCVD
) {
2180 if (datafellows
& SSH_BUG_EXTEOF
)
2181 debug("channel %d: accepting ext data after eof", id
);
2183 packet_disconnect("Received extended_data after EOF "
2184 "on channel %d.", id
);
2186 tcode
= packet_get_int();
2188 c
->extended_usage
!= CHAN_EXTENDED_WRITE
||
2189 tcode
!= SSH2_EXTENDED_DATA_STDERR
) {
2190 logit("channel %d: bad ext data", c
->self
);
2193 data
= packet_get_string(&data_len
);
2195 if (data_len
> c
->local_window
) {
2196 logit("channel %d: rcvd too much extended_data %d, win %d",
2197 c
->self
, data_len
, c
->local_window
);
2201 debug2("channel %d: rcvd ext data %d", c
->self
, data_len
);
2202 c
->local_window
-= data_len
;
2203 buffer_append(&c
->extended
, data
, data_len
);
2209 channel_input_ieof(int type
, u_int32_t seq
, void *ctxt
)
2214 id
= packet_get_int();
2216 c
= channel_lookup(id
);
2218 packet_disconnect("Received ieof for nonexistent channel %d.", id
);
2221 /* XXX force input close */
2222 if (c
->force_drain
&& c
->istate
== CHAN_INPUT_OPEN
) {
2223 debug("channel %d: FORCE input drain", c
->self
);
2224 c
->istate
= CHAN_INPUT_WAIT_DRAIN
;
2225 if (buffer_len(&c
->input
) == 0)
2233 channel_input_close(int type
, u_int32_t seq
, void *ctxt
)
2238 id
= packet_get_int();
2240 c
= channel_lookup(id
);
2242 packet_disconnect("Received close for nonexistent channel %d.", id
);
2245 * Send a confirmation that we have closed the channel and no more
2246 * data is coming for it.
2248 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
);
2249 packet_put_int(c
->remote_id
);
2253 * If the channel is in closed state, we have sent a close request,
2254 * and the other side will eventually respond with a confirmation.
2255 * Thus, we cannot free the channel here, because then there would be
2256 * no-one to receive the confirmation. The channel gets freed when
2257 * the confirmation arrives.
2259 if (c
->type
!= SSH_CHANNEL_CLOSED
) {
2261 * Not a closed channel - mark it as draining, which will
2262 * cause it to be freed later.
2264 buffer_clear(&c
->input
);
2265 c
->type
= SSH_CHANNEL_OUTPUT_DRAINING
;
2269 /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
2272 channel_input_oclose(int type
, u_int32_t seq
, void *ctxt
)
2274 int id
= packet_get_int();
2275 Channel
*c
= channel_lookup(id
);
2279 packet_disconnect("Received oclose for nonexistent channel %d.", id
);
2280 chan_rcvd_oclose(c
);
2285 channel_input_close_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2287 int id
= packet_get_int();
2288 Channel
*c
= channel_lookup(id
);
2292 packet_disconnect("Received close confirmation for "
2293 "out-of-range channel %d.", id
);
2294 if (c
->type
!= SSH_CHANNEL_CLOSED
)
2295 packet_disconnect("Received close confirmation for "
2296 "non-closed channel %d (type %d).", id
, c
->type
);
2302 channel_input_open_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2307 id
= packet_get_int();
2308 c
= channel_lookup(id
);
2310 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2311 packet_disconnect("Received open confirmation for "
2312 "non-opening channel %d.", id
);
2313 remote_id
= packet_get_int();
2314 /* Record the remote channel number and mark that the channel is now open. */
2315 c
->remote_id
= remote_id
;
2316 c
->type
= SSH_CHANNEL_OPEN
;
2319 c
->remote_window
= packet_get_int();
2320 c
->remote_maxpacket
= packet_get_int();
2321 if (c
->open_confirm
) {
2322 debug2("callback start");
2323 c
->open_confirm(c
->self
, c
->open_confirm_ctx
);
2324 debug2("callback done");
2326 debug2("channel %d: open confirm rwindow %u rmax %u", c
->self
,
2327 c
->remote_window
, c
->remote_maxpacket
);
2333 reason2txt(int reason
)
2336 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
:
2337 return "administratively prohibited";
2338 case SSH2_OPEN_CONNECT_FAILED
:
2339 return "connect failed";
2340 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE
:
2341 return "unknown channel type";
2342 case SSH2_OPEN_RESOURCE_SHORTAGE
:
2343 return "resource shortage";
2345 return "unknown reason";
2350 channel_input_open_failure(int type
, u_int32_t seq
, void *ctxt
)
2353 char *msg
= NULL
, *lang
= NULL
;
2356 id
= packet_get_int();
2357 c
= channel_lookup(id
);
2359 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2360 packet_disconnect("Received open failure for "
2361 "non-opening channel %d.", id
);
2363 reason
= packet_get_int();
2364 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
2365 msg
= packet_get_string(NULL
);
2366 lang
= packet_get_string(NULL
);
2368 logit("channel %d: open failed: %s%s%s", id
,
2369 reason2txt(reason
), msg
? ": ": "", msg
? msg
: "");
2376 /* Schedule the channel for cleanup/deletion. */
2382 channel_input_window_adjust(int type
, u_int32_t seq
, void *ctxt
)
2391 /* Get the channel number and verify it. */
2392 id
= packet_get_int();
2393 c
= channel_lookup(id
);
2396 logit("Received window adjust for non-open channel %d.", id
);
2399 adjust
= packet_get_int();
2401 debug2("channel %d: rcvd adjust %u", id
, adjust
);
2402 c
->remote_window
+= adjust
;
2407 channel_input_port_open(int type
, u_int32_t seq
, void *ctxt
)
2411 char *host
, *originator_string
;
2414 remote_id
= packet_get_int();
2415 host
= packet_get_string(NULL
);
2416 host_port
= packet_get_int();
2418 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
2419 originator_string
= packet_get_string(NULL
);
2421 originator_string
= xstrdup("unknown (remote did not supply name)");
2424 c
= channel_connect_to(host
, host_port
,
2425 "connected socket", originator_string
);
2426 xfree(originator_string
);
2429 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
2430 packet_put_int(remote_id
);
2433 c
->remote_id
= remote_id
;
2438 channel_input_status_confirm(int type
, u_int32_t seq
, void *ctxt
)
2441 struct channel_confirm
*cc
;
2444 /* Reset keepalive timeout */
2445 packet_set_alive_timeouts(0);
2447 id
= packet_get_int();
2450 debug2("channel_input_status_confirm: type %d id %d", type
, id
);
2452 if ((c
= channel_lookup(id
)) == NULL
) {
2453 logit("channel_input_status_confirm: %d: unknown", id
);
2457 if ((cc
= TAILQ_FIRST(&c
->status_confirms
)) == NULL
)
2459 cc
->cb(type
, c
, cc
->ctx
);
2460 TAILQ_REMOVE(&c
->status_confirms
, cc
, entry
);
2461 bzero(cc
, sizeof(*cc
));
2465 /* -- tcp forwarding */
2468 channel_set_af(int af
)
2474 channel_set_rdomain(int rdomain
)
2476 channel_rdomain
= rdomain
;
2480 channel_setup_fwd_listener(int type
, const char *listen_addr
,
2481 u_short listen_port
, int *allocated_listen_port
,
2482 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2485 int sock
, r
, success
= 0, wildcard
= 0, is_client
;
2486 struct addrinfo hints
, *ai
, *aitop
;
2487 const char *host
, *addr
;
2488 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2491 host
= (type
== SSH_CHANNEL_RPORT_LISTENER
) ?
2492 listen_addr
: host_to_connect
;
2493 is_client
= (type
== SSH_CHANNEL_PORT_LISTENER
);
2496 error("No forward host name.");
2499 if (strlen(host
) >= NI_MAXHOST
) {
2500 error("Forward host name too long.");
2505 * Determine whether or not a port forward listens to loopback,
2506 * specified address or wildcard. On the client, a specified bind
2507 * address will always override gateway_ports. On the server, a
2508 * gateway_ports of 1 (``yes'') will override the client's
2509 * specification and force a wildcard bind, whereas a value of 2
2510 * (``clientspecified'') will bind to whatever address the client
2513 * Special-case listen_addrs are:
2515 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2516 * "" (empty string), "*" -> wildcard v4/v6
2517 * "localhost" -> loopback v4/v6
2520 if (listen_addr
== NULL
) {
2521 /* No address specified: default to gateway_ports setting */
2524 } else if (gateway_ports
|| is_client
) {
2525 if (((datafellows
& SSH_OLD_FORWARD_ADDR
) &&
2526 strcmp(listen_addr
, "0.0.0.0") == 0 && is_client
== 0) ||
2527 *listen_addr
== '\0' || strcmp(listen_addr
, "*") == 0 ||
2528 (!is_client
&& gateway_ports
== 1))
2530 else if (strcmp(listen_addr
, "localhost") != 0)
2534 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2535 type
, wildcard
, (addr
== NULL
) ? "NULL" : addr
);
2538 * getaddrinfo returns a loopback address if the hostname is
2539 * set to NULL and hints.ai_flags is not AI_PASSIVE
2541 memset(&hints
, 0, sizeof(hints
));
2542 hints
.ai_family
= IPv4or6
;
2543 hints
.ai_flags
= wildcard
? AI_PASSIVE
: 0;
2544 hints
.ai_socktype
= SOCK_STREAM
;
2545 snprintf(strport
, sizeof strport
, "%d", listen_port
);
2546 if ((r
= getaddrinfo(addr
, strport
, &hints
, &aitop
)) != 0) {
2548 /* This really shouldn't happen */
2549 packet_disconnect("getaddrinfo: fatal error: %s",
2550 ssh_gai_strerror(r
));
2552 error("channel_setup_fwd_listener: "
2553 "getaddrinfo(%.64s): %s", addr
,
2554 ssh_gai_strerror(r
));
2558 if (allocated_listen_port
!= NULL
)
2559 *allocated_listen_port
= 0;
2560 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2561 switch (ai
->ai_family
) {
2563 lport_p
= &((struct sockaddr_in
*)ai
->ai_addr
)->
2567 lport_p
= &((struct sockaddr_in6
*)ai
->ai_addr
)->
2574 * If allocating a port for -R forwards, then use the
2575 * same port for all address families.
2577 if (type
== SSH_CHANNEL_RPORT_LISTENER
&& listen_port
== 0 &&
2578 allocated_listen_port
!= NULL
&& *allocated_listen_port
> 0)
2579 *lport_p
= htons(*allocated_listen_port
);
2581 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop
, sizeof(ntop
),
2582 strport
, sizeof(strport
), NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2583 error("channel_setup_fwd_listener: getnameinfo failed");
2586 /* Create a port to listen for the host. */
2587 sock
= socket_rdomain(ai
->ai_family
, ai
->ai_socktype
,
2588 ai
->ai_protocol
, channel_rdomain
);
2590 /* this is no error since kernel may not support ipv6 */
2591 verbose("socket: %.100s", strerror(errno
));
2595 channel_set_reuseaddr(sock
);
2596 if (ai
->ai_family
== AF_INET6
)
2597 sock_set_v6only(sock
);
2599 debug("Local forwarding listening on %s port %s.",
2602 /* Bind the socket to the address. */
2603 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2604 /* address can be in use ipv6 address is already bound */
2606 error("bind: %.100s", strerror(errno
));
2608 verbose("bind: %.100s", strerror(errno
));
2613 /* Start listening for connections on the socket. */
2614 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
2615 error("listen: %.100s", strerror(errno
));
2621 * listen_port == 0 requests a dynamically allocated port -
2622 * record what we got.
2624 if (type
== SSH_CHANNEL_RPORT_LISTENER
&& listen_port
== 0 &&
2625 allocated_listen_port
!= NULL
&&
2626 *allocated_listen_port
== 0) {
2627 *allocated_listen_port
= get_sock_port(sock
, 1);
2628 debug("Allocated listen port %d",
2629 *allocated_listen_port
);
2632 /* Allocate a channel number for the socket. */
2633 c
= channel_new("port listener", type
, sock
, sock
, -1,
2634 CHAN_TCP_WINDOW_DEFAULT
, CHAN_TCP_PACKET_DEFAULT
,
2635 0, "port listener", 1);
2636 c
->path
= xstrdup(host
);
2637 c
->host_port
= port_to_connect
;
2638 c
->listening_port
= listen_port
;
2642 error("channel_setup_fwd_listener: cannot listen to port: %d",
2644 freeaddrinfo(aitop
);
2649 channel_cancel_rport_listener(const char *host
, u_short port
)
2654 for (i
= 0; i
< channels_alloc
; i
++) {
2655 Channel
*c
= channels
[i
];
2657 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_RPORT_LISTENER
&&
2658 strcmp(c
->path
, host
) == 0 && c
->listening_port
== port
) {
2659 debug2("%s: close channel %d", __func__
, i
);
2668 /* protocol local port fwd, used by ssh (and sshd in v1) */
2670 channel_setup_local_fwd_listener(const char *listen_host
, u_short listen_port
,
2671 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2673 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER
,
2674 listen_host
, listen_port
, NULL
, host_to_connect
, port_to_connect
,
2678 /* protocol v2 remote port fwd, used by sshd */
2680 channel_setup_remote_fwd_listener(const char *listen_address
,
2681 u_short listen_port
, int *allocated_listen_port
, int gateway_ports
)
2683 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER
,
2684 listen_address
, listen_port
, allocated_listen_port
,
2685 NULL
, 0, gateway_ports
);
2689 * Initiate forwarding of connections to port "port" on remote host through
2690 * the secure channel to host:port from local side.
2694 channel_request_remote_forwarding(const char *listen_host
, u_short listen_port
,
2695 const char *host_to_connect
, u_short port_to_connect
)
2697 int type
, success
= 0;
2699 /* Record locally that connection to this host/port is permitted. */
2700 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2701 fatal("channel_request_remote_forwarding: too many forwards");
2703 /* Send the forward request to the remote side. */
2705 const char *address_to_bind
;
2706 if (listen_host
== NULL
) {
2707 if (datafellows
& SSH_BUG_RFWD_ADDR
)
2708 address_to_bind
= "127.0.0.1";
2710 address_to_bind
= "localhost";
2711 } else if (*listen_host
== '\0' ||
2712 strcmp(listen_host
, "*") == 0) {
2713 if (datafellows
& SSH_BUG_RFWD_ADDR
)
2714 address_to_bind
= "0.0.0.0";
2716 address_to_bind
= "";
2718 address_to_bind
= listen_host
;
2720 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2721 packet_put_cstring("tcpip-forward");
2722 packet_put_char(1); /* boolean: want reply */
2723 packet_put_cstring(address_to_bind
);
2724 packet_put_int(listen_port
);
2726 packet_write_wait();
2727 /* Assume that server accepts the request */
2730 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST
);
2731 packet_put_int(listen_port
);
2732 packet_put_cstring(host_to_connect
);
2733 packet_put_int(port_to_connect
);
2735 packet_write_wait();
2737 /* Wait for response from the remote side. */
2738 type
= packet_read();
2740 case SSH_SMSG_SUCCESS
:
2743 case SSH_SMSG_FAILURE
:
2746 /* Unknown packet */
2747 packet_disconnect("Protocol error for port forward request:"
2748 "received packet type %d.", type
);
2752 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host_to_connect
);
2753 permitted_opens
[num_permitted_opens
].port_to_connect
= port_to_connect
;
2754 permitted_opens
[num_permitted_opens
].listen_port
= listen_port
;
2755 num_permitted_opens
++;
2757 return (success
? 0 : -1);
2761 * Request cancellation of remote forwarding of connection host:port from
2765 channel_request_rforward_cancel(const char *host
, u_short port
)
2772 for (i
= 0; i
< num_permitted_opens
; i
++) {
2773 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2774 permitted_opens
[i
].listen_port
== port
)
2777 if (i
>= num_permitted_opens
) {
2778 debug("%s: requested forward not found", __func__
);
2781 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2782 packet_put_cstring("cancel-tcpip-forward");
2784 packet_put_cstring(host
== NULL
? "" : host
);
2785 packet_put_int(port
);
2788 permitted_opens
[i
].listen_port
= 0;
2789 permitted_opens
[i
].port_to_connect
= 0;
2790 xfree(permitted_opens
[i
].host_to_connect
);
2791 permitted_opens
[i
].host_to_connect
= NULL
;
2795 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2796 * listening for the port, and sends back a success reply (or disconnect
2797 * message if there was an error).
2800 channel_input_port_forward_request(int is_root
, int gateway_ports
)
2802 u_short port
, host_port
;
2806 /* Get arguments from the packet. */
2807 port
= packet_get_int();
2808 hostname
= packet_get_string(NULL
);
2809 host_port
= packet_get_int();
2813 * Check that an unprivileged user is not trying to forward a
2816 if (port
< IPPORT_RESERVED
&& !is_root
)
2818 "Requested forwarding of port %d but user is not root.",
2821 packet_disconnect("Dynamic forwarding denied.");
2824 /* Initiate forwarding */
2825 success
= channel_setup_local_fwd_listener(NULL
, port
, hostname
,
2826 host_port
, gateway_ports
);
2828 /* Free the argument string. */
2831 return (success
? 0 : -1);
2835 * Permits opening to any host/port if permitted_opens[] is empty. This is
2836 * usually called by the server, because the user could connect to any port
2837 * anyway, and the server has no way to know but to trust the client anyway.
2840 channel_permit_all_opens(void)
2842 if (num_permitted_opens
== 0)
2843 all_opens_permitted
= 1;
2847 channel_add_permitted_opens(char *host
, int port
)
2849 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2850 fatal("channel_add_permitted_opens: too many forwards");
2851 debug("allow port forwarding to host %s port %d", host
, port
);
2853 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host
);
2854 permitted_opens
[num_permitted_opens
].port_to_connect
= port
;
2855 num_permitted_opens
++;
2857 all_opens_permitted
= 0;
2861 channel_add_adm_permitted_opens(char *host
, int port
)
2863 if (num_adm_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2864 fatal("channel_add_adm_permitted_opens: too many forwards");
2865 debug("config allows port forwarding to host %s port %d", host
, port
);
2867 permitted_adm_opens
[num_adm_permitted_opens
].host_to_connect
2869 permitted_adm_opens
[num_adm_permitted_opens
].port_to_connect
= port
;
2870 return ++num_adm_permitted_opens
;
2874 channel_clear_permitted_opens(void)
2878 for (i
= 0; i
< num_permitted_opens
; i
++)
2879 if (permitted_opens
[i
].host_to_connect
!= NULL
)
2880 xfree(permitted_opens
[i
].host_to_connect
);
2881 num_permitted_opens
= 0;
2885 channel_clear_adm_permitted_opens(void)
2889 for (i
= 0; i
< num_adm_permitted_opens
; i
++)
2890 if (permitted_adm_opens
[i
].host_to_connect
!= NULL
)
2891 xfree(permitted_adm_opens
[i
].host_to_connect
);
2892 num_adm_permitted_opens
= 0;
2896 channel_print_adm_permitted_opens(void)
2900 printf("permitopen");
2901 if (num_adm_permitted_opens
== 0) {
2905 for (i
= 0; i
< num_adm_permitted_opens
; i
++)
2906 if (permitted_adm_opens
[i
].host_to_connect
!= NULL
)
2907 printf(" %s:%d", permitted_adm_opens
[i
].host_to_connect
,
2908 permitted_adm_opens
[i
].port_to_connect
);
2912 /* Try to start non-blocking connect to next host in cctx list */
2914 connect_next(struct channel_connect
*cctx
)
2916 int sock
, saved_errno
;
2917 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2919 for (; cctx
->ai
; cctx
->ai
= cctx
->ai
->ai_next
) {
2920 if (cctx
->ai
->ai_family
!= AF_INET
&&
2921 cctx
->ai
->ai_family
!= AF_INET6
)
2923 if (getnameinfo(cctx
->ai
->ai_addr
, cctx
->ai
->ai_addrlen
,
2924 ntop
, sizeof(ntop
), strport
, sizeof(strport
),
2925 NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2926 error("connect_next: getnameinfo failed");
2929 if ((sock
= socket_rdomain(cctx
->ai
->ai_family
,
2930 cctx
->ai
->ai_socktype
, cctx
->ai
->ai_protocol
,
2931 channel_rdomain
)) == -1) {
2932 if (cctx
->ai
->ai_next
== NULL
)
2933 error("socket: %.100s", strerror(errno
));
2935 verbose("socket: %.100s", strerror(errno
));
2938 if (set_nonblock(sock
) == -1)
2939 fatal("%s: set_nonblock(%d)", __func__
, sock
);
2940 if (connect(sock
, cctx
->ai
->ai_addr
,
2941 cctx
->ai
->ai_addrlen
) == -1 && errno
!= EINPROGRESS
) {
2942 debug("connect_next: host %.100s ([%.100s]:%s): "
2943 "%.100s", cctx
->host
, ntop
, strport
,
2945 saved_errno
= errno
;
2947 errno
= saved_errno
;
2948 continue; /* fail -- try next */
2950 debug("connect_next: host %.100s ([%.100s]:%s) "
2951 "in progress, fd=%d", cctx
->host
, ntop
, strport
, sock
);
2952 cctx
->ai
= cctx
->ai
->ai_next
;
2960 channel_connect_ctx_free(struct channel_connect
*cctx
)
2964 freeaddrinfo(cctx
->aitop
);
2965 bzero(cctx
, sizeof(*cctx
));
2967 cctx
->ai
= cctx
->aitop
= NULL
;
2970 /* Return CONNECTING channel to remote host, port */
2972 connect_to(const char *host
, u_short port
, char *ctype
, char *rname
)
2974 struct addrinfo hints
;
2977 char strport
[NI_MAXSERV
];
2978 struct channel_connect cctx
;
2981 memset(&cctx
, 0, sizeof(cctx
));
2982 memset(&hints
, 0, sizeof(hints
));
2983 hints
.ai_family
= IPv4or6
;
2984 hints
.ai_socktype
= SOCK_STREAM
;
2985 snprintf(strport
, sizeof strport
, "%d", port
);
2986 if ((gaierr
= getaddrinfo(host
, strport
, &hints
, &cctx
.aitop
)) != 0) {
2987 error("connect_to %.100s: unknown host (%s)", host
,
2988 ssh_gai_strerror(gaierr
));
2992 cctx
.host
= xstrdup(host
);
2994 cctx
.ai
= cctx
.aitop
;
2996 if ((sock
= connect_next(&cctx
)) == -1) {
2997 error("connect to %.100s port %d failed: %s",
2998 host
, port
, strerror(errno
));
2999 channel_connect_ctx_free(&cctx
);
3002 c
= channel_new(ctype
, SSH_CHANNEL_CONNECTING
, sock
, sock
, -1,
3003 CHAN_TCP_WINDOW_DEFAULT
, CHAN_TCP_PACKET_DEFAULT
, 0, rname
, 1);
3004 c
->connect_ctx
= cctx
;
3009 channel_connect_by_listen_address(u_short listen_port
, char *ctype
, char *rname
)
3013 for (i
= 0; i
< num_permitted_opens
; i
++) {
3014 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
3015 permitted_opens
[i
].listen_port
== listen_port
) {
3017 permitted_opens
[i
].host_to_connect
,
3018 permitted_opens
[i
].port_to_connect
, ctype
, rname
);
3021 error("WARNING: Server requests forwarding for unknown listen_port %d",
3026 /* Check if connecting to that port is permitted and connect. */
3028 channel_connect_to(const char *host
, u_short port
, char *ctype
, char *rname
)
3030 int i
, permit
, permit_adm
= 1;
3032 permit
= all_opens_permitted
;
3034 for (i
= 0; i
< num_permitted_opens
; i
++)
3035 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
3036 permitted_opens
[i
].port_to_connect
== port
&&
3037 strcmp(permitted_opens
[i
].host_to_connect
, host
) == 0)
3041 if (num_adm_permitted_opens
> 0) {
3043 for (i
= 0; i
< num_adm_permitted_opens
; i
++)
3044 if (permitted_adm_opens
[i
].host_to_connect
!= NULL
&&
3045 permitted_adm_opens
[i
].port_to_connect
== port
&&
3046 strcmp(permitted_adm_opens
[i
].host_to_connect
, host
)
3051 if (!permit
|| !permit_adm
) {
3052 logit("Received request to connect to host %.100s port %d, "
3053 "but the request was denied.", host
, port
);
3056 return connect_to(host
, port
, ctype
, rname
);
3060 channel_send_window_changes(void)
3065 for (i
= 0; i
< channels_alloc
; i
++) {
3066 if (channels
[i
] == NULL
|| !channels
[i
]->client_tty
||
3067 channels
[i
]->type
!= SSH_CHANNEL_OPEN
)
3069 if (ioctl(channels
[i
]->rfd
, TIOCGWINSZ
, &ws
) < 0)
3071 channel_request_start(i
, "window-change", 0);
3072 packet_put_int((u_int
)ws
.ws_col
);
3073 packet_put_int((u_int
)ws
.ws_row
);
3074 packet_put_int((u_int
)ws
.ws_xpixel
);
3075 packet_put_int((u_int
)ws
.ws_ypixel
);
3080 /* -- X11 forwarding */
3083 * Creates an internet domain socket for listening for X11 connections.
3084 * Returns 0 and a suitable display number for the DISPLAY variable
3085 * stored in display_numberp , or -1 if an error occurs.
3088 x11_create_display_inet(int x11_display_offset
, int x11_use_localhost
,
3089 int single_connection
, u_int
*display_numberp
, int **chanids
)
3092 int display_number
, sock
;
3094 struct addrinfo hints
, *ai
, *aitop
;
3095 char strport
[NI_MAXSERV
];
3096 int gaierr
, n
, num_socks
= 0, socks
[NUM_SOCKS
];
3098 if (chanids
== NULL
)
3101 for (display_number
= x11_display_offset
;
3102 display_number
< MAX_DISPLAYS
;
3104 port
= 6000 + display_number
;
3105 memset(&hints
, 0, sizeof(hints
));
3106 hints
.ai_family
= IPv4or6
;
3107 hints
.ai_flags
= x11_use_localhost
? 0: AI_PASSIVE
;
3108 hints
.ai_socktype
= SOCK_STREAM
;
3109 snprintf(strport
, sizeof strport
, "%d", port
);
3110 if ((gaierr
= getaddrinfo(NULL
, strport
, &hints
, &aitop
)) != 0) {
3111 error("getaddrinfo: %.100s", ssh_gai_strerror(gaierr
));
3114 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
3115 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
3117 sock
= socket_rdomain(ai
->ai_family
, ai
->ai_socktype
,
3118 ai
->ai_protocol
, channel_rdomain
);
3120 if ((errno
!= EINVAL
) && (errno
!= EAFNOSUPPORT
)) {
3121 error("socket: %.100s", strerror(errno
));
3122 freeaddrinfo(aitop
);
3125 debug("x11_create_display_inet: Socket family %d not supported",
3130 if (ai
->ai_family
== AF_INET6
)
3131 sock_set_v6only(sock
);
3132 if (x11_use_localhost
)
3133 channel_set_reuseaddr(sock
);
3134 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
3135 debug2("bind port %d: %.100s", port
, strerror(errno
));
3138 for (n
= 0; n
< num_socks
; n
++) {
3144 socks
[num_socks
++] = sock
;
3145 if (num_socks
== NUM_SOCKS
)
3148 freeaddrinfo(aitop
);
3152 if (display_number
>= MAX_DISPLAYS
) {
3153 error("Failed to allocate internet-domain X11 display socket.");
3156 /* Start listening for connections on the socket. */
3157 for (n
= 0; n
< num_socks
; n
++) {
3159 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
3160 error("listen: %.100s", strerror(errno
));
3166 /* Allocate a channel for each socket. */
3167 *chanids
= xcalloc(num_socks
+ 1, sizeof(**chanids
));
3168 for (n
= 0; n
< num_socks
; n
++) {
3170 nc
= channel_new("x11 listener",
3171 SSH_CHANNEL_X11_LISTENER
, sock
, sock
, -1,
3172 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
3173 0, "X11 inet listener", 1);
3174 nc
->single_connection
= single_connection
;
3175 (*chanids
)[n
] = nc
->self
;
3179 /* Return the display number for the DISPLAY environment variable. */
3180 *display_numberp
= display_number
;
3185 connect_local_xsocket_path(const char *pathname
)
3188 struct sockaddr_un addr
;
3190 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
3192 error("socket: %.100s", strerror(errno
));
3193 memset(&addr
, 0, sizeof(addr
));
3194 addr
.sun_family
= AF_UNIX
;
3195 strlcpy(addr
.sun_path
, pathname
, sizeof addr
.sun_path
);
3196 if (connect(sock
, (struct sockaddr
*)&addr
, sizeof(addr
)) == 0)
3199 error("connect %.100s: %.100s", addr
.sun_path
, strerror(errno
));
3204 connect_local_xsocket(u_int dnr
)
3207 snprintf(buf
, sizeof buf
, _PATH_UNIX_X
, dnr
);
3208 return connect_local_xsocket_path(buf
);
3212 x11_connect_display(void)
3214 u_int display_number
;
3215 const char *display
;
3216 char buf
[1024], *cp
;
3217 struct addrinfo hints
, *ai
, *aitop
;
3218 char strport
[NI_MAXSERV
];
3219 int gaierr
, sock
= 0;
3221 /* Try to open a socket for the local X server. */
3222 display
= getenv("DISPLAY");
3224 error("DISPLAY not set.");
3228 * Now we decode the value of the DISPLAY variable and make a
3229 * connection to the real X server.
3232 /* Check if the display is from launchd. */
3234 if (strncmp(display
, "/tmp/launch", 11) == 0) {
3235 sock
= connect_local_xsocket_path(display
);
3239 /* OK, we now have a connection to the display. */
3244 * Check if it is a unix domain socket. Unix domain displays are in
3245 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3247 if (strncmp(display
, "unix:", 5) == 0 ||
3248 display
[0] == ':') {
3249 /* Connect to the unix domain socket. */
3250 if (sscanf(strrchr(display
, ':') + 1, "%u", &display_number
) != 1) {
3251 error("Could not parse display number from DISPLAY: %.100s",
3255 /* Create a socket. */
3256 sock
= connect_local_xsocket(display_number
);
3260 /* OK, we now have a connection to the display. */
3264 * Connect to an inet socket. The DISPLAY value is supposedly
3265 * hostname:d[.s], where hostname may also be numeric IP address.
3267 strlcpy(buf
, display
, sizeof(buf
));
3268 cp
= strchr(buf
, ':');
3270 error("Could not find ':' in DISPLAY: %.100s", display
);
3274 /* buf now contains the host name. But first we parse the display number. */
3275 if (sscanf(cp
+ 1, "%u", &display_number
) != 1) {
3276 error("Could not parse display number from DISPLAY: %.100s",
3281 /* Look up the host address */
3282 memset(&hints
, 0, sizeof(hints
));
3283 hints
.ai_family
= IPv4or6
;
3284 hints
.ai_socktype
= SOCK_STREAM
;
3285 snprintf(strport
, sizeof strport
, "%u", 6000 + display_number
);
3286 if ((gaierr
= getaddrinfo(buf
, strport
, &hints
, &aitop
)) != 0) {
3287 error("%.100s: unknown host. (%s)", buf
,
3288 ssh_gai_strerror(gaierr
));
3291 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
3292 /* Create a socket. */
3293 sock
= socket_rdomain(ai
->ai_family
, ai
->ai_socktype
,
3294 ai
->ai_protocol
, channel_rdomain
);
3296 debug2("socket: %.100s", strerror(errno
));
3299 /* Connect it to the display. */
3300 if (connect(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
3301 debug2("connect %.100s port %u: %.100s", buf
,
3302 6000 + display_number
, strerror(errno
));
3309 freeaddrinfo(aitop
);
3311 error("connect %.100s port %u: %.100s", buf
, 6000 + display_number
,
3320 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3321 * the remote channel number. We should do whatever we want, and respond
3322 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3327 x11_input_open(int type
, u_int32_t seq
, void *ctxt
)
3330 int remote_id
, sock
= 0;
3333 debug("Received X11 open request.");
3335 remote_id
= packet_get_int();
3337 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
3338 remote_host
= packet_get_string(NULL
);
3340 remote_host
= xstrdup("unknown (remote did not supply name)");
3344 /* Obtain a connection to the real X display. */
3345 sock
= x11_connect_display();
3347 /* Allocate a channel for this connection. */
3348 c
= channel_new("connected x11 socket",
3349 SSH_CHANNEL_X11_OPEN
, sock
, sock
, -1, 0, 0, 0,
3351 c
->remote_id
= remote_id
;
3356 /* Send refusal to the remote host. */
3357 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
3358 packet_put_int(remote_id
);
3360 /* Send a confirmation to the remote host. */
3361 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
3362 packet_put_int(remote_id
);
3363 packet_put_int(c
->self
);
3368 /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3371 deny_input_open(int type
, u_int32_t seq
, void *ctxt
)
3373 int rchan
= packet_get_int();
3376 case SSH_SMSG_AGENT_OPEN
:
3377 error("Warning: ssh server tried agent forwarding.");
3379 case SSH_SMSG_X11_OPEN
:
3380 error("Warning: ssh server tried X11 forwarding.");
3383 error("deny_input_open: type %d", type
);
3386 error("Warning: this is probably a break-in attempt by a malicious server.");
3387 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
3388 packet_put_int(rchan
);
3393 * Requests forwarding of X11 connections, generates fake authentication
3394 * data, and enables authentication spoofing.
3395 * This should be called in the client only.
3398 x11_request_forwarding_with_spoofing(int client_session_id
, const char *disp
,
3399 const char *proto
, const char *data
)
3401 u_int data_len
= (u_int
) strlen(data
) / 2;
3408 if (x11_saved_display
== NULL
)
3409 x11_saved_display
= xstrdup(disp
);
3410 else if (strcmp(disp
, x11_saved_display
) != 0) {
3411 error("x11_request_forwarding_with_spoofing: different "
3412 "$DISPLAY already forwarded");
3416 cp
= strchr(disp
, ':');
3418 cp
= strchr(cp
, '.');
3420 screen_number
= (u_int
)strtonum(cp
+ 1, 0, 400, NULL
);
3424 if (x11_saved_proto
== NULL
) {
3425 /* Save protocol name. */
3426 x11_saved_proto
= xstrdup(proto
);
3428 * Extract real authentication data and generate fake data
3429 * of the same length.
3431 x11_saved_data
= xmalloc(data_len
);
3432 x11_fake_data
= xmalloc(data_len
);
3433 for (i
= 0; i
< data_len
; i
++) {
3434 if (sscanf(data
+ 2 * i
, "%2x", &value
) != 1)
3435 fatal("x11_request_forwarding: bad "
3436 "authentication data: %.100s", data
);
3439 x11_saved_data
[i
] = value
;
3440 x11_fake_data
[i
] = rnd
& 0xff;
3443 x11_saved_data_len
= data_len
;
3444 x11_fake_data_len
= data_len
;
3447 /* Convert the fake data into hex. */
3448 new_data
= tohex(x11_fake_data
, data_len
);
3450 /* Send the request packet. */
3452 channel_request_start(client_session_id
, "x11-req", 0);
3453 packet_put_char(0); /* XXX bool single connection */
3455 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING
);
3457 packet_put_cstring(proto
);
3458 packet_put_cstring(new_data
);
3459 packet_put_int(screen_number
);
3461 packet_write_wait();
3466 /* -- agent forwarding */
3468 /* Sends a message to the server to request authentication fd forwarding. */
3471 auth_request_forwarding(void)
3473 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING
);
3475 packet_write_wait();