1 /* $OpenBSD: channels.c,v 1.265 2006/08/03 03:34:41 deraadt 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>
77 #include "pathnames.h"
82 * Pointer to an array containing all allocated channels. The array is
83 * dynamically extended as needed.
85 static Channel
**channels
= NULL
;
88 * Size of the channel array. All slots of the array must always be
89 * initialized (at least the type field); unused slots set to NULL
91 static u_int channels_alloc
= 0;
94 * Maximum file descriptor value used in any of the channels. This is
95 * updated in channel_new.
97 static int channel_max_fd
= 0;
100 /* -- tcp forwarding */
103 * Data structure for storing which hosts are permitted for forward requests.
104 * The local sides of any remote forwards are stored in this array to prevent
105 * a corrupt remote server from accessing arbitrary TCP/IP ports on our local
106 * network (which might be behind a firewall).
109 char *host_to_connect
; /* Connect to 'host'. */
110 u_short port_to_connect
; /* Connect to 'port'. */
111 u_short listen_port
; /* Remote side should listen port number. */
114 /* List of all permitted host/port pairs to connect by the user. */
115 static ForwardPermission permitted_opens
[SSH_MAX_FORWARDS_PER_DIRECTION
];
117 /* List of all permitted host/port pairs to connect by the admin. */
118 static ForwardPermission permitted_adm_opens
[SSH_MAX_FORWARDS_PER_DIRECTION
];
120 /* Number of permitted host/port pairs in the array permitted by the user. */
121 static int num_permitted_opens
= 0;
123 /* Number of permitted host/port pair in the array permitted by the admin. */
124 static int num_adm_permitted_opens
= 0;
127 * If this is true, all opens are permitted. This is the case on the server
128 * on which we have to trust the client anyway, and the user could do
129 * anything after logging in anyway.
131 static int all_opens_permitted
= 0;
134 /* -- X11 forwarding */
136 /* Maximum number of fake X11 displays to try. */
137 #define MAX_DISPLAYS 1000
139 /* Saved X11 local (client) display. */
140 static char *x11_saved_display
= NULL
;
142 /* Saved X11 authentication protocol name. */
143 static char *x11_saved_proto
= NULL
;
145 /* Saved X11 authentication data. This is the real data. */
146 static char *x11_saved_data
= NULL
;
147 static u_int x11_saved_data_len
= 0;
150 * Fake X11 authentication data. This is what the server will be sending us;
151 * we should replace any occurrences of this by the real data.
153 static u_char
*x11_fake_data
= NULL
;
154 static u_int x11_fake_data_len
;
157 /* -- agent forwarding */
161 /* AF_UNSPEC or AF_INET or AF_INET6 */
162 static int IPv4or6
= AF_UNSPEC
;
165 static void port_open_helper(Channel
*c
, char *rtype
);
167 /* -- channel core */
170 channel_by_id(int id
)
174 if (id
< 0 || (u_int
)id
>= channels_alloc
) {
175 logit("channel_by_id: %d: bad id", id
);
180 logit("channel_by_id: %d: bad id: channel free", id
);
187 * Returns the channel if it is allowed to receive protocol messages.
188 * Private channels, like listening sockets, may not receive messages.
191 channel_lookup(int id
)
195 if ((c
= channel_by_id(id
)) == NULL
)
199 case SSH_CHANNEL_X11_OPEN
:
200 case SSH_CHANNEL_LARVAL
:
201 case SSH_CHANNEL_CONNECTING
:
202 case SSH_CHANNEL_DYNAMIC
:
203 case SSH_CHANNEL_OPENING
:
204 case SSH_CHANNEL_OPEN
:
205 case SSH_CHANNEL_INPUT_DRAINING
:
206 case SSH_CHANNEL_OUTPUT_DRAINING
:
209 logit("Non-public channel %d, type %d.", id
, c
->type
);
214 * Register filedescriptors for a channel, used when allocating a channel or
215 * when the channel consumer/producer is ready, e.g. shell exec'd
218 channel_register_fds(Channel
*c
, int rfd
, int wfd
, int efd
,
219 int extusage
, int nonblock
)
221 /* Update the maximum file descriptor value. */
222 channel_max_fd
= MAX(channel_max_fd
, rfd
);
223 channel_max_fd
= MAX(channel_max_fd
, wfd
);
224 channel_max_fd
= MAX(channel_max_fd
, efd
);
226 /* XXX set close-on-exec -markus */
230 c
->sock
= (rfd
== wfd
) ? rfd
: -1;
231 c
->ctl_fd
= -1; /* XXX: set elsewhere */
233 c
->extended_usage
= extusage
;
235 /* XXX ugly hack: nonblock is only set by the server */
236 if (nonblock
&& isatty(c
->rfd
)) {
237 debug2("channel %d: rfd %d isatty", c
->self
, c
->rfd
);
239 if (!isatty(c
->wfd
)) {
240 error("channel %d: wfd %d is not a tty?",
246 c
->wfd_isatty
= isatty(c
->wfd
);
248 /* enable nonblocking mode */
260 * Allocate a new channel object and set its type and socket. This will cause
261 * remote_name to be freed.
264 channel_new(char *ctype
, int type
, int rfd
, int wfd
, int efd
,
265 u_int window
, u_int maxpack
, int extusage
, char *remote_name
, int nonblock
)
271 /* Do initial allocation if this is the first call. */
272 if (channels_alloc
== 0) {
274 channels
= xcalloc(channels_alloc
, sizeof(Channel
*));
275 for (i
= 0; i
< channels_alloc
; i
++)
278 /* Try to find a free slot where to put the new channel. */
279 for (found
= -1, i
= 0; i
< channels_alloc
; i
++)
280 if (channels
[i
] == NULL
) {
281 /* Found a free slot. */
286 /* There are no free slots. Take last+1 slot and expand the array. */
287 found
= channels_alloc
;
288 if (channels_alloc
> 10000)
289 fatal("channel_new: internal error: channels_alloc %d "
290 "too big.", channels_alloc
);
291 channels
= xrealloc(channels
, channels_alloc
+ 10,
293 channels_alloc
+= 10;
294 debug2("channel: expanding %d", channels_alloc
);
295 for (i
= found
; i
< channels_alloc
; i
++)
298 /* Initialize and return new channel. */
299 c
= channels
[found
] = xcalloc(1, sizeof(Channel
));
300 buffer_init(&c
->input
);
301 buffer_init(&c
->output
);
302 buffer_init(&c
->extended
);
303 c
->ostate
= CHAN_OUTPUT_OPEN
;
304 c
->istate
= CHAN_INPUT_OPEN
;
306 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
);
310 c
->local_window
= window
;
311 c
->local_window_max
= window
;
312 c
->local_consumed
= 0;
313 c
->local_maxpacket
= maxpack
;
315 c
->remote_name
= xstrdup(remote_name
);
316 c
->remote_window
= 0;
317 c
->remote_maxpacket
= 0;
319 c
->single_connection
= 0;
320 c
->detach_user
= NULL
;
323 c
->confirm_ctx
= NULL
;
324 c
->input_filter
= NULL
;
325 c
->output_filter
= NULL
;
326 debug("channel %d: new [%s]", found
, remote_name
);
331 channel_find_maxfd(void)
337 for (i
= 0; i
< channels_alloc
; i
++) {
340 max
= MAX(max
, c
->rfd
);
341 max
= MAX(max
, c
->wfd
);
342 max
= MAX(max
, c
->efd
);
349 channel_close_fd(int *fdp
)
351 int ret
= 0, fd
= *fdp
;
356 if (fd
== channel_max_fd
)
357 channel_max_fd
= channel_find_maxfd();
362 /* Close all channel fd/socket. */
364 channel_close_fds(Channel
*c
)
366 debug3("channel %d: close_fds r %d w %d e %d c %d",
367 c
->self
, c
->rfd
, c
->wfd
, c
->efd
, c
->ctl_fd
);
369 channel_close_fd(&c
->sock
);
370 channel_close_fd(&c
->ctl_fd
);
371 channel_close_fd(&c
->rfd
);
372 channel_close_fd(&c
->wfd
);
373 channel_close_fd(&c
->efd
);
376 /* Free the channel and close its fd/socket. */
378 channel_free(Channel
*c
)
383 for (n
= 0, i
= 0; i
< channels_alloc
; i
++)
386 debug("channel %d: free: %s, nchannels %u", c
->self
,
387 c
->remote_name
? c
->remote_name
: "???", n
);
389 s
= channel_open_message();
390 debug3("channel %d: status: %s", c
->self
, s
);
394 shutdown(c
->sock
, SHUT_RDWR
);
396 shutdown(c
->ctl_fd
, SHUT_RDWR
);
397 channel_close_fds(c
);
398 buffer_free(&c
->input
);
399 buffer_free(&c
->output
);
400 buffer_free(&c
->extended
);
401 if (c
->remote_name
) {
402 xfree(c
->remote_name
);
403 c
->remote_name
= NULL
;
405 channels
[c
->self
] = NULL
;
410 channel_free_all(void)
414 for (i
= 0; i
< channels_alloc
; i
++)
415 if (channels
[i
] != NULL
)
416 channel_free(channels
[i
]);
420 * Closes the sockets/fds of all channels. This is used to close extra file
421 * descriptors after a fork.
424 channel_close_all(void)
428 for (i
= 0; i
< channels_alloc
; i
++)
429 if (channels
[i
] != NULL
)
430 channel_close_fds(channels
[i
]);
434 * Stop listening to channels.
437 channel_stop_listening(void)
442 for (i
= 0; i
< channels_alloc
; i
++) {
446 case SSH_CHANNEL_AUTH_SOCKET
:
447 case SSH_CHANNEL_PORT_LISTENER
:
448 case SSH_CHANNEL_RPORT_LISTENER
:
449 case SSH_CHANNEL_X11_LISTENER
:
450 channel_close_fd(&c
->sock
);
459 * Returns true if no channel has too much buffered data, and false if one or
460 * more channel is overfull.
463 channel_not_very_much_buffered_data(void)
468 for (i
= 0; i
< channels_alloc
; i
++) {
470 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_OPEN
) {
473 buffer_len(&c
->input
) > packet_get_maxsize()) {
474 debug2("channel %d: big input buffer %d",
475 c
->self
, buffer_len(&c
->input
));
479 if (buffer_len(&c
->output
) > packet_get_maxsize()) {
480 debug2("channel %d: big output buffer %u > %u",
481 c
->self
, buffer_len(&c
->output
),
482 packet_get_maxsize());
490 /* Returns true if any channel is still open. */
492 channel_still_open(void)
497 for (i
= 0; i
< channels_alloc
; i
++) {
502 case SSH_CHANNEL_X11_LISTENER
:
503 case SSH_CHANNEL_PORT_LISTENER
:
504 case SSH_CHANNEL_RPORT_LISTENER
:
505 case SSH_CHANNEL_CLOSED
:
506 case SSH_CHANNEL_AUTH_SOCKET
:
507 case SSH_CHANNEL_DYNAMIC
:
508 case SSH_CHANNEL_CONNECTING
:
509 case SSH_CHANNEL_ZOMBIE
:
511 case SSH_CHANNEL_LARVAL
:
513 fatal("cannot happen: SSH_CHANNEL_LARVAL");
515 case SSH_CHANNEL_OPENING
:
516 case SSH_CHANNEL_OPEN
:
517 case SSH_CHANNEL_X11_OPEN
:
519 case SSH_CHANNEL_INPUT_DRAINING
:
520 case SSH_CHANNEL_OUTPUT_DRAINING
:
522 fatal("cannot happen: OUT_DRAIN");
525 fatal("channel_still_open: bad channel type %d", c
->type
);
532 /* Returns the id of an open channel suitable for keepaliving */
534 channel_find_open(void)
539 for (i
= 0; i
< channels_alloc
; i
++) {
541 if (c
== NULL
|| c
->remote_id
< 0)
544 case SSH_CHANNEL_CLOSED
:
545 case SSH_CHANNEL_DYNAMIC
:
546 case SSH_CHANNEL_X11_LISTENER
:
547 case SSH_CHANNEL_PORT_LISTENER
:
548 case SSH_CHANNEL_RPORT_LISTENER
:
549 case SSH_CHANNEL_OPENING
:
550 case SSH_CHANNEL_CONNECTING
:
551 case SSH_CHANNEL_ZOMBIE
:
553 case SSH_CHANNEL_LARVAL
:
554 case SSH_CHANNEL_AUTH_SOCKET
:
555 case SSH_CHANNEL_OPEN
:
556 case SSH_CHANNEL_X11_OPEN
:
558 case SSH_CHANNEL_INPUT_DRAINING
:
559 case SSH_CHANNEL_OUTPUT_DRAINING
:
561 fatal("cannot happen: OUT_DRAIN");
564 fatal("channel_find_open: bad channel type %d", c
->type
);
573 * Returns a message describing the currently open forwarded connections,
574 * suitable for sending to the client. The message contains crlf pairs for
578 channel_open_message(void)
585 buffer_init(&buffer
);
586 snprintf(buf
, sizeof buf
, "The following connections are open:\r\n");
587 buffer_append(&buffer
, buf
, strlen(buf
));
588 for (i
= 0; i
< channels_alloc
; i
++) {
593 case SSH_CHANNEL_X11_LISTENER
:
594 case SSH_CHANNEL_PORT_LISTENER
:
595 case SSH_CHANNEL_RPORT_LISTENER
:
596 case SSH_CHANNEL_CLOSED
:
597 case SSH_CHANNEL_AUTH_SOCKET
:
598 case SSH_CHANNEL_ZOMBIE
:
600 case SSH_CHANNEL_LARVAL
:
601 case SSH_CHANNEL_OPENING
:
602 case SSH_CHANNEL_CONNECTING
:
603 case SSH_CHANNEL_DYNAMIC
:
604 case SSH_CHANNEL_OPEN
:
605 case SSH_CHANNEL_X11_OPEN
:
606 case SSH_CHANNEL_INPUT_DRAINING
:
607 case SSH_CHANNEL_OUTPUT_DRAINING
:
608 snprintf(buf
, sizeof buf
,
609 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)\r\n",
610 c
->self
, c
->remote_name
,
611 c
->type
, c
->remote_id
,
612 c
->istate
, buffer_len(&c
->input
),
613 c
->ostate
, buffer_len(&c
->output
),
614 c
->rfd
, c
->wfd
, c
->ctl_fd
);
615 buffer_append(&buffer
, buf
, strlen(buf
));
618 fatal("channel_open_message: bad channel type %d", c
->type
);
622 buffer_append(&buffer
, "\0", 1);
623 cp
= xstrdup(buffer_ptr(&buffer
));
624 buffer_free(&buffer
);
629 channel_send_open(int id
)
631 Channel
*c
= channel_lookup(id
);
634 logit("channel_send_open: %d: bad id", id
);
637 debug2("channel %d: send open", id
);
638 packet_start(SSH2_MSG_CHANNEL_OPEN
);
639 packet_put_cstring(c
->ctype
);
640 packet_put_int(c
->self
);
641 packet_put_int(c
->local_window
);
642 packet_put_int(c
->local_maxpacket
);
647 channel_request_start(int id
, char *service
, int wantconfirm
)
649 Channel
*c
= channel_lookup(id
);
652 logit("channel_request_start: %d: unknown channel id", id
);
655 debug2("channel %d: request %s confirm %d", id
, service
, wantconfirm
);
656 packet_start(SSH2_MSG_CHANNEL_REQUEST
);
657 packet_put_int(c
->remote_id
);
658 packet_put_cstring(service
);
659 packet_put_char(wantconfirm
);
663 channel_register_confirm(int id
, channel_callback_fn
*fn
, void *ctx
)
665 Channel
*c
= channel_lookup(id
);
668 logit("channel_register_comfirm: %d: bad id", id
);
672 c
->confirm_ctx
= ctx
;
676 channel_register_cleanup(int id
, channel_callback_fn
*fn
, int do_close
)
678 Channel
*c
= channel_by_id(id
);
681 logit("channel_register_cleanup: %d: bad id", id
);
685 c
->detach_close
= do_close
;
689 channel_cancel_cleanup(int id
)
691 Channel
*c
= channel_by_id(id
);
694 logit("channel_cancel_cleanup: %d: bad id", id
);
697 c
->detach_user
= NULL
;
702 channel_register_filter(int id
, channel_infilter_fn
*ifn
,
703 channel_outfilter_fn
*ofn
)
705 Channel
*c
= channel_lookup(id
);
708 logit("channel_register_filter: %d: bad id", id
);
711 c
->input_filter
= ifn
;
712 c
->output_filter
= ofn
;
716 channel_set_fds(int id
, int rfd
, int wfd
, int efd
,
717 int extusage
, int nonblock
, u_int window_max
)
719 Channel
*c
= channel_lookup(id
);
721 if (c
== NULL
|| c
->type
!= SSH_CHANNEL_LARVAL
)
722 fatal("channel_activate for non-larval channel %d.", id
);
723 channel_register_fds(c
, rfd
, wfd
, efd
, extusage
, nonblock
);
724 c
->type
= SSH_CHANNEL_OPEN
;
725 c
->local_window
= c
->local_window_max
= window_max
;
726 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
727 packet_put_int(c
->remote_id
);
728 packet_put_int(c
->local_window
);
733 * 'channel_pre*' are called just before select() to add any bits relevant to
734 * channels in the select bitmasks.
737 * 'channel_post*': perform any appropriate operations for channels which
738 * have events pending.
740 typedef void chan_fn(Channel
*c
, fd_set
*readset
, fd_set
*writeset
);
741 chan_fn
*channel_pre
[SSH_CHANNEL_MAX_TYPE
];
742 chan_fn
*channel_post
[SSH_CHANNEL_MAX_TYPE
];
746 channel_pre_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
748 FD_SET(c
->sock
, readset
);
753 channel_pre_connecting(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
755 debug3("channel %d: waiting for connection", c
->self
);
756 FD_SET(c
->sock
, writeset
);
760 channel_pre_open_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
762 if (buffer_len(&c
->input
) < packet_get_maxsize())
763 FD_SET(c
->sock
, readset
);
764 if (buffer_len(&c
->output
) > 0)
765 FD_SET(c
->sock
, writeset
);
769 channel_pre_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
771 u_int limit
= compat20
? c
->remote_window
: packet_get_maxsize();
773 if (c
->istate
== CHAN_INPUT_OPEN
&&
775 buffer_len(&c
->input
) < limit
&&
776 buffer_check_alloc(&c
->input
, CHAN_RBUF
))
777 FD_SET(c
->rfd
, readset
);
778 if (c
->ostate
== CHAN_OUTPUT_OPEN
||
779 c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
780 if (buffer_len(&c
->output
) > 0) {
781 FD_SET(c
->wfd
, writeset
);
782 } else if (c
->ostate
== CHAN_OUTPUT_WAIT_DRAIN
) {
783 if (CHANNEL_EFD_OUTPUT_ACTIVE(c
))
784 debug2("channel %d: obuf_empty delayed efd %d/(%d)",
785 c
->self
, c
->efd
, buffer_len(&c
->extended
));
790 /** XXX check close conditions, too */
791 if (compat20
&& c
->efd
!= -1) {
792 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
793 buffer_len(&c
->extended
) > 0)
794 FD_SET(c
->efd
, writeset
);
795 else if (!(c
->flags
& CHAN_EOF_SENT
) &&
796 c
->extended_usage
== CHAN_EXTENDED_READ
&&
797 buffer_len(&c
->extended
) < c
->remote_window
)
798 FD_SET(c
->efd
, readset
);
800 /* XXX: What about efd? races? */
801 if (compat20
&& c
->ctl_fd
!= -1 &&
802 c
->istate
== CHAN_INPUT_OPEN
&& c
->ostate
== CHAN_OUTPUT_OPEN
)
803 FD_SET(c
->ctl_fd
, readset
);
808 channel_pre_input_draining(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
810 if (buffer_len(&c
->input
) == 0) {
811 packet_start(SSH_MSG_CHANNEL_CLOSE
);
812 packet_put_int(c
->remote_id
);
814 c
->type
= SSH_CHANNEL_CLOSED
;
815 debug2("channel %d: closing after input drain.", c
->self
);
821 channel_pre_output_draining(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
823 if (buffer_len(&c
->output
) == 0)
826 FD_SET(c
->sock
, writeset
);
830 * This is a special state for X11 authentication spoofing. An opened X11
831 * connection (when authentication spoofing is being done) remains in this
832 * state until the first packet has been completely read. The authentication
833 * data in that packet is then substituted by the real data if it matches the
834 * fake data, and the channel is put into normal mode.
835 * XXX All this happens at the client side.
836 * Returns: 0 = need more data, -1 = wrong cookie, 1 = ok
839 x11_open_helper(Buffer
*b
)
842 u_int proto_len
, data_len
;
844 /* Check if the fixed size part of the packet is in buffer. */
845 if (buffer_len(b
) < 12)
848 /* Parse the lengths of variable-length fields. */
850 if (ucp
[0] == 0x42) { /* Byte order MSB first. */
851 proto_len
= 256 * ucp
[6] + ucp
[7];
852 data_len
= 256 * ucp
[8] + ucp
[9];
853 } else if (ucp
[0] == 0x6c) { /* Byte order LSB first. */
854 proto_len
= ucp
[6] + 256 * ucp
[7];
855 data_len
= ucp
[8] + 256 * ucp
[9];
857 debug2("Initial X11 packet contains bad byte order byte: 0x%x",
862 /* Check if the whole packet is in buffer. */
864 12 + ((proto_len
+ 3) & ~3) + ((data_len
+ 3) & ~3))
867 /* Check if authentication protocol matches. */
868 if (proto_len
!= strlen(x11_saved_proto
) ||
869 memcmp(ucp
+ 12, x11_saved_proto
, proto_len
) != 0) {
870 debug2("X11 connection uses different authentication protocol.");
873 /* Check if authentication data matches our fake data. */
874 if (data_len
!= x11_fake_data_len
||
875 memcmp(ucp
+ 12 + ((proto_len
+ 3) & ~3),
876 x11_fake_data
, x11_fake_data_len
) != 0) {
877 debug2("X11 auth data does not match fake data.");
880 /* Check fake data length */
881 if (x11_fake_data_len
!= x11_saved_data_len
) {
882 error("X11 fake_data_len %d != saved_data_len %d",
883 x11_fake_data_len
, x11_saved_data_len
);
887 * Received authentication protocol and data match
888 * our fake data. Substitute the fake data with real
891 memcpy(ucp
+ 12 + ((proto_len
+ 3) & ~3),
892 x11_saved_data
, x11_saved_data_len
);
897 channel_pre_x11_open_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
899 int ret
= x11_open_helper(&c
->output
);
902 /* Start normal processing for the channel. */
903 c
->type
= SSH_CHANNEL_OPEN
;
904 channel_pre_open_13(c
, readset
, writeset
);
905 } else if (ret
== -1) {
907 * We have received an X11 connection that has bad
908 * authentication information.
910 logit("X11 connection rejected because of wrong authentication.");
911 buffer_clear(&c
->input
);
912 buffer_clear(&c
->output
);
913 channel_close_fd(&c
->sock
);
915 c
->type
= SSH_CHANNEL_CLOSED
;
916 packet_start(SSH_MSG_CHANNEL_CLOSE
);
917 packet_put_int(c
->remote_id
);
923 channel_pre_x11_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
925 int ret
= x11_open_helper(&c
->output
);
927 /* c->force_drain = 1; */
930 c
->type
= SSH_CHANNEL_OPEN
;
931 channel_pre_open(c
, readset
, writeset
);
932 } else if (ret
== -1) {
933 logit("X11 connection rejected because of wrong authentication.");
934 debug2("X11 rejected %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
936 buffer_clear(&c
->input
);
938 buffer_clear(&c
->output
);
939 /* for proto v1, the peer will send an IEOF */
941 chan_write_failed(c
);
943 c
->type
= SSH_CHANNEL_OPEN
;
944 debug2("X11 closed %d i%d/o%d", c
->self
, c
->istate
, c
->ostate
);
948 /* try to decode a socks4 header */
951 channel_decode_socks4(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
954 u_int len
, have
, i
, found
;
960 struct in_addr dest_addr
;
963 debug2("channel %d: decode socks4", c
->self
);
965 have
= buffer_len(&c
->input
);
966 len
= sizeof(s4_req
);
969 p
= buffer_ptr(&c
->input
);
970 for (found
= 0, i
= len
; i
< have
; i
++) {
976 /* the peer is probably sending garbage */
977 debug("channel %d: decode socks4: too long",
984 buffer_get(&c
->input
, (char *)&s4_req
.version
, 1);
985 buffer_get(&c
->input
, (char *)&s4_req
.command
, 1);
986 buffer_get(&c
->input
, (char *)&s4_req
.dest_port
, 2);
987 buffer_get(&c
->input
, (char *)&s4_req
.dest_addr
, 4);
988 have
= buffer_len(&c
->input
);
989 p
= buffer_ptr(&c
->input
);
991 debug2("channel %d: decode socks4: user %s/%d", c
->self
, p
, len
);
993 fatal("channel %d: decode socks4: len %d > have %d",
995 strlcpy(username
, p
, sizeof(username
));
996 buffer_consume(&c
->input
, len
);
997 buffer_consume(&c
->input
, 1); /* trailing '\0' */
999 host
= inet_ntoa(s4_req
.dest_addr
);
1000 strlcpy(c
->path
, host
, sizeof(c
->path
));
1001 c
->host_port
= ntohs(s4_req
.dest_port
);
1003 debug2("channel %d: dynamic request: socks4 host %s port %u command %u",
1004 c
->self
, host
, c
->host_port
, s4_req
.command
);
1006 if (s4_req
.command
!= 1) {
1007 debug("channel %d: cannot handle: socks4 cn %d",
1008 c
->self
, s4_req
.command
);
1011 s4_rsp
.version
= 0; /* vn: 0 for reply */
1012 s4_rsp
.command
= 90; /* cd: req granted */
1013 s4_rsp
.dest_port
= 0; /* ignored */
1014 s4_rsp
.dest_addr
.s_addr
= INADDR_ANY
; /* ignored */
1015 buffer_append(&c
->output
, &s4_rsp
, sizeof(s4_rsp
));
1019 /* try to decode a socks5 header */
1020 #define SSH_SOCKS5_AUTHDONE 0x1000
1021 #define SSH_SOCKS5_NOAUTH 0x00
1022 #define SSH_SOCKS5_IPV4 0x01
1023 #define SSH_SOCKS5_DOMAIN 0x03
1024 #define SSH_SOCKS5_IPV6 0x04
1025 #define SSH_SOCKS5_CONNECT 0x01
1026 #define SSH_SOCKS5_SUCCESS 0x00
1030 channel_decode_socks5(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1038 u_int16_t dest_port
;
1039 u_char
*p
, dest_addr
[255+1];
1040 u_int have
, need
, i
, found
, nmethods
, addrlen
, af
;
1042 debug2("channel %d: decode socks5", c
->self
);
1043 p
= buffer_ptr(&c
->input
);
1046 have
= buffer_len(&c
->input
);
1047 if (!(c
->flags
& SSH_SOCKS5_AUTHDONE
)) {
1048 /* format: ver | nmethods | methods */
1052 if (have
< nmethods
+ 2)
1054 /* look for method: "NO AUTHENTICATION REQUIRED" */
1055 for (found
= 0, i
= 2 ; i
< nmethods
+ 2; i
++) {
1056 if (p
[i
] == SSH_SOCKS5_NOAUTH
) {
1062 debug("channel %d: method SSH_SOCKS5_NOAUTH not found",
1066 buffer_consume(&c
->input
, nmethods
+ 2);
1067 buffer_put_char(&c
->output
, 0x05); /* version */
1068 buffer_put_char(&c
->output
, SSH_SOCKS5_NOAUTH
); /* method */
1069 FD_SET(c
->sock
, writeset
);
1070 c
->flags
|= SSH_SOCKS5_AUTHDONE
;
1071 debug2("channel %d: socks5 auth done", c
->self
);
1072 return 0; /* need more */
1074 debug2("channel %d: socks5 post auth", c
->self
);
1075 if (have
< sizeof(s5_req
)+1)
1076 return 0; /* need more */
1077 memcpy(&s5_req
, p
, sizeof(s5_req
));
1078 if (s5_req
.version
!= 0x05 ||
1079 s5_req
.command
!= SSH_SOCKS5_CONNECT
||
1080 s5_req
.reserved
!= 0x00) {
1081 debug2("channel %d: only socks5 connect supported", c
->self
);
1084 switch (s5_req
.atyp
){
1085 case SSH_SOCKS5_IPV4
:
1089 case SSH_SOCKS5_DOMAIN
:
1090 addrlen
= p
[sizeof(s5_req
)];
1093 case SSH_SOCKS5_IPV6
:
1098 debug2("channel %d: bad socks5 atyp %d", c
->self
, s5_req
.atyp
);
1101 need
= sizeof(s5_req
) + addrlen
+ 2;
1102 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1106 buffer_consume(&c
->input
, sizeof(s5_req
));
1107 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1108 buffer_consume(&c
->input
, 1); /* host string length */
1109 buffer_get(&c
->input
, (char *)&dest_addr
, addrlen
);
1110 buffer_get(&c
->input
, (char *)&dest_port
, 2);
1111 dest_addr
[addrlen
] = '\0';
1112 if (s5_req
.atyp
== SSH_SOCKS5_DOMAIN
)
1113 strlcpy(c
->path
, (char *)dest_addr
, sizeof(c
->path
));
1114 else if (inet_ntop(af
, dest_addr
, c
->path
, sizeof(c
->path
)) == NULL
)
1116 c
->host_port
= ntohs(dest_port
);
1118 debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
1119 c
->self
, c
->path
, c
->host_port
, s5_req
.command
);
1121 s5_rsp
.version
= 0x05;
1122 s5_rsp
.command
= SSH_SOCKS5_SUCCESS
;
1123 s5_rsp
.reserved
= 0; /* ignored */
1124 s5_rsp
.atyp
= SSH_SOCKS5_IPV4
;
1125 ((struct in_addr
*)&dest_addr
)->s_addr
= INADDR_ANY
;
1126 dest_port
= 0; /* ignored */
1128 buffer_append(&c
->output
, &s5_rsp
, sizeof(s5_rsp
));
1129 buffer_append(&c
->output
, &dest_addr
, sizeof(struct in_addr
));
1130 buffer_append(&c
->output
, &dest_port
, sizeof(dest_port
));
1134 /* dynamic port forwarding */
1136 channel_pre_dynamic(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1142 have
= buffer_len(&c
->input
);
1144 debug2("channel %d: pre_dynamic: have %d", c
->self
, have
);
1145 /* buffer_dump(&c->input); */
1146 /* check if the fixed size part of the packet is in buffer. */
1149 FD_SET(c
->sock
, readset
);
1152 /* try to guess the protocol */
1153 p
= buffer_ptr(&c
->input
);
1156 ret
= channel_decode_socks4(c
, readset
, writeset
);
1159 ret
= channel_decode_socks5(c
, readset
, writeset
);
1167 } else if (ret
== 0) {
1168 debug2("channel %d: pre_dynamic: need more", c
->self
);
1170 FD_SET(c
->sock
, readset
);
1172 /* switch to the next state */
1173 c
->type
= SSH_CHANNEL_OPENING
;
1174 port_open_helper(c
, "direct-tcpip");
1178 /* This is our fake X11 server socket. */
1181 channel_post_x11_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1184 struct sockaddr addr
;
1187 char buf
[16384], *remote_ipaddr
;
1190 if (FD_ISSET(c
->sock
, readset
)) {
1191 debug("X11 connection requested.");
1192 addrlen
= sizeof(addr
);
1193 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1194 if (c
->single_connection
) {
1195 debug2("single_connection: closing X11 listener.");
1196 channel_close_fd(&c
->sock
);
1200 error("accept: %.100s", strerror(errno
));
1203 set_nodelay(newsock
);
1204 remote_ipaddr
= get_peer_ipaddr(newsock
);
1205 remote_port
= get_peer_port(newsock
);
1206 snprintf(buf
, sizeof buf
, "X11 connection from %.200s port %d",
1207 remote_ipaddr
, remote_port
);
1209 nc
= channel_new("accepted x11 socket",
1210 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1211 c
->local_window_max
, c
->local_maxpacket
, 0, buf
, 1);
1213 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1214 packet_put_cstring("x11");
1215 packet_put_int(nc
->self
);
1216 packet_put_int(nc
->local_window_max
);
1217 packet_put_int(nc
->local_maxpacket
);
1218 /* originator ipaddr and port */
1219 packet_put_cstring(remote_ipaddr
);
1220 if (datafellows
& SSH_BUG_X11FWD
) {
1221 debug2("ssh2 x11 bug compat mode");
1223 packet_put_int(remote_port
);
1227 packet_start(SSH_SMSG_X11_OPEN
);
1228 packet_put_int(nc
->self
);
1229 if (packet_get_protocol_flags() &
1230 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1231 packet_put_cstring(buf
);
1234 xfree(remote_ipaddr
);
1239 port_open_helper(Channel
*c
, char *rtype
)
1243 char *remote_ipaddr
= get_peer_ipaddr(c
->sock
);
1244 int remote_port
= get_peer_port(c
->sock
);
1246 direct
= (strcmp(rtype
, "direct-tcpip") == 0);
1248 snprintf(buf
, sizeof buf
,
1249 "%s: listening port %d for %.100s port %d, "
1250 "connect from %.200s port %d",
1251 rtype
, c
->listening_port
, c
->path
, c
->host_port
,
1252 remote_ipaddr
, remote_port
);
1254 xfree(c
->remote_name
);
1255 c
->remote_name
= xstrdup(buf
);
1258 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1259 packet_put_cstring(rtype
);
1260 packet_put_int(c
->self
);
1261 packet_put_int(c
->local_window_max
);
1262 packet_put_int(c
->local_maxpacket
);
1264 /* target host, port */
1265 packet_put_cstring(c
->path
);
1266 packet_put_int(c
->host_port
);
1268 /* listen address, port */
1269 packet_put_cstring(c
->path
);
1270 packet_put_int(c
->listening_port
);
1272 /* originator host and port */
1273 packet_put_cstring(remote_ipaddr
);
1274 packet_put_int((u_int
)remote_port
);
1277 packet_start(SSH_MSG_PORT_OPEN
);
1278 packet_put_int(c
->self
);
1279 packet_put_cstring(c
->path
);
1280 packet_put_int(c
->host_port
);
1281 if (packet_get_protocol_flags() &
1282 SSH_PROTOFLAG_HOST_IN_FWD_OPEN
)
1283 packet_put_cstring(c
->remote_name
);
1286 xfree(remote_ipaddr
);
1290 channel_set_reuseaddr(int fd
)
1295 * Set socket options.
1296 * Allow local port reuse in TIME_WAIT.
1298 if (setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, &on
, sizeof(on
)) == -1)
1299 error("setsockopt SO_REUSEADDR fd %d: %s", fd
, strerror(errno
));
1303 * This socket is listening for connections to a forwarded TCP/IP port.
1307 channel_post_port_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1310 struct sockaddr addr
;
1311 int newsock
, nextstate
;
1315 if (FD_ISSET(c
->sock
, readset
)) {
1316 debug("Connection to port %d forwarding "
1317 "to %.100s port %d requested.",
1318 c
->listening_port
, c
->path
, c
->host_port
);
1320 if (c
->type
== SSH_CHANNEL_RPORT_LISTENER
) {
1321 nextstate
= SSH_CHANNEL_OPENING
;
1322 rtype
= "forwarded-tcpip";
1324 if (c
->host_port
== 0) {
1325 nextstate
= SSH_CHANNEL_DYNAMIC
;
1326 rtype
= "dynamic-tcpip";
1328 nextstate
= SSH_CHANNEL_OPENING
;
1329 rtype
= "direct-tcpip";
1333 addrlen
= sizeof(addr
);
1334 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1336 error("accept: %.100s", strerror(errno
));
1339 set_nodelay(newsock
);
1340 nc
= channel_new(rtype
, nextstate
, newsock
, newsock
, -1,
1341 c
->local_window_max
, c
->local_maxpacket
, 0, rtype
, 1);
1342 nc
->listening_port
= c
->listening_port
;
1343 nc
->host_port
= c
->host_port
;
1344 strlcpy(nc
->path
, c
->path
, sizeof(nc
->path
));
1346 if (nextstate
== SSH_CHANNEL_DYNAMIC
) {
1348 * do not call the channel_post handler until
1349 * this flag has been reset by a pre-handler.
1350 * otherwise the FD_ISSET calls might overflow
1354 port_open_helper(nc
, rtype
);
1360 * This is the authentication agent socket listening for connections from
1365 channel_post_auth_listener(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1369 struct sockaddr addr
;
1372 if (FD_ISSET(c
->sock
, readset
)) {
1373 addrlen
= sizeof(addr
);
1374 newsock
= accept(c
->sock
, &addr
, &addrlen
);
1376 error("accept from auth socket: %.100s", strerror(errno
));
1379 nc
= channel_new("accepted auth socket",
1380 SSH_CHANNEL_OPENING
, newsock
, newsock
, -1,
1381 c
->local_window_max
, c
->local_maxpacket
,
1382 0, "accepted auth socket", 1);
1384 packet_start(SSH2_MSG_CHANNEL_OPEN
);
1385 packet_put_cstring("auth-agent@openssh.com");
1386 packet_put_int(nc
->self
);
1387 packet_put_int(c
->local_window_max
);
1388 packet_put_int(c
->local_maxpacket
);
1390 packet_start(SSH_SMSG_AGENT_OPEN
);
1391 packet_put_int(nc
->self
);
1399 channel_post_connecting(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1402 socklen_t sz
= sizeof(err
);
1404 if (FD_ISSET(c
->sock
, writeset
)) {
1405 if (getsockopt(c
->sock
, SOL_SOCKET
, SO_ERROR
, &err
, &sz
) < 0) {
1407 error("getsockopt SO_ERROR failed");
1410 debug("channel %d: connected", c
->self
);
1411 c
->type
= SSH_CHANNEL_OPEN
;
1413 packet_start(SSH2_MSG_CHANNEL_OPEN_CONFIRMATION
);
1414 packet_put_int(c
->remote_id
);
1415 packet_put_int(c
->self
);
1416 packet_put_int(c
->local_window
);
1417 packet_put_int(c
->local_maxpacket
);
1419 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
1420 packet_put_int(c
->remote_id
);
1421 packet_put_int(c
->self
);
1424 debug("channel %d: not connected: %s",
1425 c
->self
, strerror(err
));
1427 packet_start(SSH2_MSG_CHANNEL_OPEN_FAILURE
);
1428 packet_put_int(c
->remote_id
);
1429 packet_put_int(SSH2_OPEN_CONNECT_FAILED
);
1430 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
1431 packet_put_cstring(strerror(err
));
1432 packet_put_cstring("");
1435 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
1436 packet_put_int(c
->remote_id
);
1446 channel_handle_rfd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1448 char buf
[CHAN_RBUF
];
1452 FD_ISSET(c
->rfd
, readset
)) {
1454 len
= read(c
->rfd
, buf
, sizeof(buf
));
1455 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1457 #ifndef PTY_ZEROREAD
1460 if ((!c
->isatty
&& len
<= 0) ||
1461 (c
->isatty
&& (len
< 0 || (len
== 0 && errno
!= 0)))) {
1463 debug2("channel %d: read<=0 rfd %d len %d",
1464 c
->self
, c
->rfd
, len
);
1465 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1466 debug2("channel %d: not open", c
->self
);
1469 } else if (compat13
) {
1470 buffer_clear(&c
->output
);
1471 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1472 debug2("channel %d: input draining.", c
->self
);
1474 chan_read_failed(c
);
1478 if (c
->input_filter
!= NULL
) {
1479 if (c
->input_filter(c
, buf
, len
) == -1) {
1480 debug2("channel %d: filter stops", c
->self
);
1481 chan_read_failed(c
);
1483 } else if (c
->datagram
) {
1484 buffer_put_string(&c
->input
, buf
, len
);
1486 buffer_append(&c
->input
, buf
, len
);
1494 channel_handle_wfd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1497 u_char
*data
= NULL
, *buf
;
1501 /* Send buffered output data to the socket. */
1503 FD_ISSET(c
->wfd
, writeset
) &&
1504 buffer_len(&c
->output
) > 0) {
1505 if (c
->output_filter
!= NULL
) {
1506 if ((buf
= c
->output_filter(c
, &data
, &dlen
)) == NULL
) {
1507 debug2("channel %d: filter stops", c
->self
);
1508 if (c
->type
!= SSH_CHANNEL_OPEN
)
1511 chan_write_failed(c
);
1514 } else if (c
->datagram
) {
1515 buf
= data
= buffer_get_string(&c
->output
, &dlen
);
1517 buf
= data
= buffer_ptr(&c
->output
);
1518 dlen
= buffer_len(&c
->output
);
1522 /* ignore truncated writes, datagrams might get lost */
1523 c
->local_consumed
+= dlen
+ 4;
1524 len
= write(c
->wfd
, buf
, dlen
);
1526 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1529 if (c
->type
!= SSH_CHANNEL_OPEN
)
1532 chan_write_failed(c
);
1538 /* XXX: Later AIX versions can't push as much data to tty */
1539 if (compat20
&& c
->wfd_isatty
)
1540 dlen
= MIN(dlen
, 8*1024);
1543 len
= write(c
->wfd
, buf
, dlen
);
1544 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1547 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1548 debug2("channel %d: not open", c
->self
);
1551 } else if (compat13
) {
1552 buffer_clear(&c
->output
);
1553 debug2("channel %d: input draining.", c
->self
);
1554 c
->type
= SSH_CHANNEL_INPUT_DRAINING
;
1556 chan_write_failed(c
);
1560 if (compat20
&& c
->isatty
&& dlen
>= 1 && buf
[0] != '\r') {
1561 if (tcgetattr(c
->wfd
, &tio
) == 0 &&
1562 !(tio
.c_lflag
& ECHO
) && (tio
.c_lflag
& ICANON
)) {
1564 * Simulate echo to reduce the impact of
1565 * traffic analysis. We need to match the
1566 * size of a SSH2_MSG_CHANNEL_DATA message
1567 * (4 byte channel id + buf)
1569 packet_send_ignore(4 + len
);
1573 buffer_consume(&c
->output
, len
);
1574 if (compat20
&& len
> 0) {
1575 c
->local_consumed
+= len
;
1582 channel_handle_efd(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1584 char buf
[CHAN_RBUF
];
1587 /** XXX handle drain efd, too */
1589 if (c
->extended_usage
== CHAN_EXTENDED_WRITE
&&
1590 FD_ISSET(c
->efd
, writeset
) &&
1591 buffer_len(&c
->extended
) > 0) {
1592 len
= write(c
->efd
, buffer_ptr(&c
->extended
),
1593 buffer_len(&c
->extended
));
1594 debug2("channel %d: written %d to efd %d",
1595 c
->self
, len
, c
->efd
);
1596 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1599 debug2("channel %d: closing write-efd %d",
1601 channel_close_fd(&c
->efd
);
1603 buffer_consume(&c
->extended
, len
);
1604 c
->local_consumed
+= len
;
1606 } else if (c
->extended_usage
== CHAN_EXTENDED_READ
&&
1607 FD_ISSET(c
->efd
, readset
)) {
1608 len
= read(c
->efd
, buf
, sizeof(buf
));
1609 debug2("channel %d: read %d from efd %d",
1610 c
->self
, len
, c
->efd
);
1611 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1614 debug2("channel %d: closing read-efd %d",
1616 channel_close_fd(&c
->efd
);
1618 buffer_append(&c
->extended
, buf
, len
);
1627 channel_handle_ctl(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1632 /* Monitor control fd to detect if the slave client exits */
1633 if (c
->ctl_fd
!= -1 && FD_ISSET(c
->ctl_fd
, readset
)) {
1634 len
= read(c
->ctl_fd
, buf
, sizeof(buf
));
1635 if (len
< 0 && (errno
== EINTR
|| errno
== EAGAIN
))
1638 debug2("channel %d: ctl read<=0", c
->self
);
1639 if (c
->type
!= SSH_CHANNEL_OPEN
) {
1640 debug2("channel %d: not open", c
->self
);
1644 chan_read_failed(c
);
1645 chan_write_failed(c
);
1649 fatal("%s: unexpected data on ctl fd", __func__
);
1655 channel_check_window(Channel
*c
)
1657 if (c
->type
== SSH_CHANNEL_OPEN
&&
1658 !(c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
)) &&
1659 c
->local_window
< c
->local_window_max
/2 &&
1660 c
->local_consumed
> 0) {
1661 packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST
);
1662 packet_put_int(c
->remote_id
);
1663 packet_put_int(c
->local_consumed
);
1665 debug2("channel %d: window %d sent adjust %d",
1666 c
->self
, c
->local_window
,
1668 c
->local_window
+= c
->local_consumed
;
1669 c
->local_consumed
= 0;
1675 channel_post_open(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1679 channel_handle_rfd(c
, readset
, writeset
);
1680 channel_handle_wfd(c
, readset
, writeset
);
1683 channel_handle_efd(c
, readset
, writeset
);
1684 channel_handle_ctl(c
, readset
, writeset
);
1685 channel_check_window(c
);
1690 channel_post_output_drain_13(Channel
*c
, fd_set
*readset
, fd_set
*writeset
)
1694 /* Send buffered output data to the socket. */
1695 if (FD_ISSET(c
->sock
, writeset
) && buffer_len(&c
->output
) > 0) {
1696 len
= write(c
->sock
, buffer_ptr(&c
->output
),
1697 buffer_len(&c
->output
));
1699 buffer_clear(&c
->output
);
1701 buffer_consume(&c
->output
, len
);
1706 channel_handler_init_20(void)
1708 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1709 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1710 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1711 channel_pre
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_pre_listener
;
1712 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1713 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1714 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1715 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1717 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1718 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1719 channel_post
[SSH_CHANNEL_RPORT_LISTENER
] = &channel_post_port_listener
;
1720 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1721 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1722 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1723 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1727 channel_handler_init_13(void)
1729 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open_13
;
1730 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open_13
;
1731 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1732 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1733 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1734 channel_pre
[SSH_CHANNEL_INPUT_DRAINING
] = &channel_pre_input_draining
;
1735 channel_pre
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_pre_output_draining
;
1736 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1737 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1739 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1740 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1741 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1742 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1743 channel_post
[SSH_CHANNEL_OUTPUT_DRAINING
] = &channel_post_output_drain_13
;
1744 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1745 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1749 channel_handler_init_15(void)
1751 channel_pre
[SSH_CHANNEL_OPEN
] = &channel_pre_open
;
1752 channel_pre
[SSH_CHANNEL_X11_OPEN
] = &channel_pre_x11_open
;
1753 channel_pre
[SSH_CHANNEL_X11_LISTENER
] = &channel_pre_listener
;
1754 channel_pre
[SSH_CHANNEL_PORT_LISTENER
] = &channel_pre_listener
;
1755 channel_pre
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_pre_listener
;
1756 channel_pre
[SSH_CHANNEL_CONNECTING
] = &channel_pre_connecting
;
1757 channel_pre
[SSH_CHANNEL_DYNAMIC
] = &channel_pre_dynamic
;
1759 channel_post
[SSH_CHANNEL_X11_LISTENER
] = &channel_post_x11_listener
;
1760 channel_post
[SSH_CHANNEL_PORT_LISTENER
] = &channel_post_port_listener
;
1761 channel_post
[SSH_CHANNEL_AUTH_SOCKET
] = &channel_post_auth_listener
;
1762 channel_post
[SSH_CHANNEL_OPEN
] = &channel_post_open
;
1763 channel_post
[SSH_CHANNEL_CONNECTING
] = &channel_post_connecting
;
1764 channel_post
[SSH_CHANNEL_DYNAMIC
] = &channel_post_open
;
1768 channel_handler_init(void)
1772 for (i
= 0; i
< SSH_CHANNEL_MAX_TYPE
; i
++) {
1773 channel_pre
[i
] = NULL
;
1774 channel_post
[i
] = NULL
;
1777 channel_handler_init_20();
1779 channel_handler_init_13();
1781 channel_handler_init_15();
1784 /* gc dead channels */
1786 channel_garbage_collect(Channel
*c
)
1790 if (c
->detach_user
!= NULL
) {
1791 if (!chan_is_dead(c
, c
->detach_close
))
1793 debug2("channel %d: gc: notify user", c
->self
);
1794 c
->detach_user(c
->self
, NULL
);
1795 /* if we still have a callback */
1796 if (c
->detach_user
!= NULL
)
1798 debug2("channel %d: gc: user detached", c
->self
);
1800 if (!chan_is_dead(c
, 1))
1802 debug2("channel %d: garbage collecting", c
->self
);
1807 channel_handler(chan_fn
*ftab
[], fd_set
*readset
, fd_set
*writeset
)
1809 static int did_init
= 0;
1814 channel_handler_init();
1817 for (i
= 0; i
< channels_alloc
; i
++) {
1821 if (ftab
[c
->type
] != NULL
)
1822 (*ftab
[c
->type
])(c
, readset
, writeset
);
1823 channel_garbage_collect(c
);
1828 * Allocate/update select bitmasks and add any bits relevant to channels in
1832 channel_prepare_select(fd_set
**readsetp
, fd_set
**writesetp
, int *maxfdp
,
1833 u_int
*nallocp
, int rekeying
)
1835 u_int n
, sz
, nfdset
;
1837 n
= MAX(*maxfdp
, channel_max_fd
);
1839 nfdset
= howmany(n
+1, NFDBITS
);
1840 /* Explicitly test here, because xrealloc isn't always called */
1841 if (nfdset
&& SIZE_T_MAX
/ nfdset
< sizeof(fd_mask
))
1842 fatal("channel_prepare_select: max_fd (%d) is too large", n
);
1843 sz
= nfdset
* sizeof(fd_mask
);
1845 /* perhaps check sz < nalloc/2 and shrink? */
1846 if (*readsetp
== NULL
|| sz
> *nallocp
) {
1847 *readsetp
= xrealloc(*readsetp
, nfdset
, sizeof(fd_mask
));
1848 *writesetp
= xrealloc(*writesetp
, nfdset
, sizeof(fd_mask
));
1852 memset(*readsetp
, 0, sz
);
1853 memset(*writesetp
, 0, sz
);
1856 channel_handler(channel_pre
, *readsetp
, *writesetp
);
1860 * After select, perform any appropriate operations for channels which have
1864 channel_after_select(fd_set
*readset
, fd_set
*writeset
)
1866 channel_handler(channel_post
, readset
, writeset
);
1870 /* If there is data to send to the connection, enqueue some of it now. */
1872 channel_output_poll(void)
1877 for (i
= 0; i
< channels_alloc
; i
++) {
1883 * We are only interested in channels that can have buffered
1887 if (c
->type
!= SSH_CHANNEL_OPEN
&&
1888 c
->type
!= SSH_CHANNEL_INPUT_DRAINING
)
1891 if (c
->type
!= SSH_CHANNEL_OPEN
)
1895 (c
->flags
& (CHAN_CLOSE_SENT
|CHAN_CLOSE_RCVD
))) {
1896 /* XXX is this true? */
1897 debug3("channel %d: will not send data after close", c
->self
);
1901 /* Get the amount of buffered data for this channel. */
1902 if ((c
->istate
== CHAN_INPUT_OPEN
||
1903 c
->istate
== CHAN_INPUT_WAIT_DRAIN
) &&
1904 (len
= buffer_len(&c
->input
)) > 0) {
1910 data
= buffer_get_string(&c
->input
,
1912 packet_start(SSH2_MSG_CHANNEL_DATA
);
1913 packet_put_int(c
->remote_id
);
1914 packet_put_string(data
, dlen
);
1916 c
->remote_window
-= dlen
+ 4;
1922 * Send some data for the other side over the secure
1926 if (len
> c
->remote_window
)
1927 len
= c
->remote_window
;
1928 if (len
> c
->remote_maxpacket
)
1929 len
= c
->remote_maxpacket
;
1931 if (packet_is_interactive()) {
1935 /* Keep the packets at reasonable size. */
1936 if (len
> packet_get_maxsize()/2)
1937 len
= packet_get_maxsize()/2;
1941 packet_start(compat20
?
1942 SSH2_MSG_CHANNEL_DATA
: SSH_MSG_CHANNEL_DATA
);
1943 packet_put_int(c
->remote_id
);
1944 packet_put_string(buffer_ptr(&c
->input
), len
);
1946 buffer_consume(&c
->input
, len
);
1947 c
->remote_window
-= len
;
1949 } else if (c
->istate
== CHAN_INPUT_WAIT_DRAIN
) {
1951 fatal("cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3");
1953 * input-buffer is empty and read-socket shutdown:
1954 * tell peer, that we will not send more data: send IEOF.
1955 * hack for extended data: delay EOF if EFD still in use.
1957 if (CHANNEL_EFD_INPUT_ACTIVE(c
))
1958 debug2("channel %d: ibuf_empty delayed efd %d/(%d)",
1959 c
->self
, c
->efd
, buffer_len(&c
->extended
));
1963 /* Send extended data, i.e. stderr */
1965 !(c
->flags
& CHAN_EOF_SENT
) &&
1966 c
->remote_window
> 0 &&
1967 (len
= buffer_len(&c
->extended
)) > 0 &&
1968 c
->extended_usage
== CHAN_EXTENDED_READ
) {
1969 debug2("channel %d: rwin %u elen %u euse %d",
1970 c
->self
, c
->remote_window
, buffer_len(&c
->extended
),
1972 if (len
> c
->remote_window
)
1973 len
= c
->remote_window
;
1974 if (len
> c
->remote_maxpacket
)
1975 len
= c
->remote_maxpacket
;
1976 packet_start(SSH2_MSG_CHANNEL_EXTENDED_DATA
);
1977 packet_put_int(c
->remote_id
);
1978 packet_put_int(SSH2_EXTENDED_DATA_STDERR
);
1979 packet_put_string(buffer_ptr(&c
->extended
), len
);
1981 buffer_consume(&c
->extended
, len
);
1982 c
->remote_window
-= len
;
1983 debug2("channel %d: sent ext data %d", c
->self
, len
);
1989 /* -- protocol input */
1993 channel_input_data(int type
, u_int32_t seq
, void *ctxt
)
2000 /* Get the channel number and verify it. */
2001 id
= packet_get_int();
2002 c
= channel_lookup(id
);
2004 packet_disconnect("Received data for nonexistent channel %d.", id
);
2006 /* Ignore any data for non-open channels (might happen on close) */
2007 if (c
->type
!= SSH_CHANNEL_OPEN
&&
2008 c
->type
!= SSH_CHANNEL_X11_OPEN
)
2012 data
= packet_get_string(&data_len
);
2015 * Ignore data for protocol > 1.3 if output end is no longer open.
2016 * For protocol 2 the sending side is reducing its window as it sends
2017 * data, so we must 'fake' consumption of the data in order to ensure
2018 * that window updates are sent back. Otherwise the connection might
2021 if (!compat13
&& c
->ostate
!= CHAN_OUTPUT_OPEN
) {
2023 c
->local_window
-= data_len
;
2024 c
->local_consumed
+= data_len
;
2031 if (data_len
> c
->local_maxpacket
) {
2032 logit("channel %d: rcvd big packet %d, maxpack %d",
2033 c
->self
, data_len
, c
->local_maxpacket
);
2035 if (data_len
> c
->local_window
) {
2036 logit("channel %d: rcvd too much data %d, win %d",
2037 c
->self
, data_len
, c
->local_window
);
2041 c
->local_window
-= data_len
;
2045 buffer_put_string(&c
->output
, data
, data_len
);
2047 buffer_append(&c
->output
, data
, data_len
);
2053 channel_input_extended_data(int type
, u_int32_t seq
, void *ctxt
)
2057 u_int data_len
, tcode
;
2060 /* Get the channel number and verify it. */
2061 id
= packet_get_int();
2062 c
= channel_lookup(id
);
2065 packet_disconnect("Received extended_data for bad channel %d.", id
);
2066 if (c
->type
!= SSH_CHANNEL_OPEN
) {
2067 logit("channel %d: ext data for non open", id
);
2070 if (c
->flags
& CHAN_EOF_RCVD
) {
2071 if (datafellows
& SSH_BUG_EXTEOF
)
2072 debug("channel %d: accepting ext data after eof", id
);
2074 packet_disconnect("Received extended_data after EOF "
2075 "on channel %d.", id
);
2077 tcode
= packet_get_int();
2079 c
->extended_usage
!= CHAN_EXTENDED_WRITE
||
2080 tcode
!= SSH2_EXTENDED_DATA_STDERR
) {
2081 logit("channel %d: bad ext data", c
->self
);
2084 data
= packet_get_string(&data_len
);
2086 if (data_len
> c
->local_window
) {
2087 logit("channel %d: rcvd too much extended_data %d, win %d",
2088 c
->self
, data_len
, c
->local_window
);
2092 debug2("channel %d: rcvd ext data %d", c
->self
, data_len
);
2093 c
->local_window
-= data_len
;
2094 buffer_append(&c
->extended
, data
, data_len
);
2100 channel_input_ieof(int type
, u_int32_t seq
, void *ctxt
)
2105 id
= packet_get_int();
2107 c
= channel_lookup(id
);
2109 packet_disconnect("Received ieof for nonexistent channel %d.", id
);
2112 /* XXX force input close */
2113 if (c
->force_drain
&& c
->istate
== CHAN_INPUT_OPEN
) {
2114 debug("channel %d: FORCE input drain", c
->self
);
2115 c
->istate
= CHAN_INPUT_WAIT_DRAIN
;
2116 if (buffer_len(&c
->input
) == 0)
2124 channel_input_close(int type
, u_int32_t seq
, void *ctxt
)
2129 id
= packet_get_int();
2131 c
= channel_lookup(id
);
2133 packet_disconnect("Received close for nonexistent channel %d.", id
);
2136 * Send a confirmation that we have closed the channel and no more
2137 * data is coming for it.
2139 packet_start(SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
);
2140 packet_put_int(c
->remote_id
);
2144 * If the channel is in closed state, we have sent a close request,
2145 * and the other side will eventually respond with a confirmation.
2146 * Thus, we cannot free the channel here, because then there would be
2147 * no-one to receive the confirmation. The channel gets freed when
2148 * the confirmation arrives.
2150 if (c
->type
!= SSH_CHANNEL_CLOSED
) {
2152 * Not a closed channel - mark it as draining, which will
2153 * cause it to be freed later.
2155 buffer_clear(&c
->input
);
2156 c
->type
= SSH_CHANNEL_OUTPUT_DRAINING
;
2160 /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
2163 channel_input_oclose(int type
, u_int32_t seq
, void *ctxt
)
2165 int id
= packet_get_int();
2166 Channel
*c
= channel_lookup(id
);
2170 packet_disconnect("Received oclose for nonexistent channel %d.", id
);
2171 chan_rcvd_oclose(c
);
2176 channel_input_close_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2178 int id
= packet_get_int();
2179 Channel
*c
= channel_lookup(id
);
2183 packet_disconnect("Received close confirmation for "
2184 "out-of-range channel %d.", id
);
2185 if (c
->type
!= SSH_CHANNEL_CLOSED
)
2186 packet_disconnect("Received close confirmation for "
2187 "non-closed channel %d (type %d).", id
, c
->type
);
2193 channel_input_open_confirmation(int type
, u_int32_t seq
, void *ctxt
)
2198 id
= packet_get_int();
2199 c
= channel_lookup(id
);
2201 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2202 packet_disconnect("Received open confirmation for "
2203 "non-opening channel %d.", id
);
2204 remote_id
= packet_get_int();
2205 /* Record the remote channel number and mark that the channel is now open. */
2206 c
->remote_id
= remote_id
;
2207 c
->type
= SSH_CHANNEL_OPEN
;
2210 c
->remote_window
= packet_get_int();
2211 c
->remote_maxpacket
= packet_get_int();
2213 debug2("callback start");
2214 c
->confirm(c
->self
, c
->confirm_ctx
);
2215 debug2("callback done");
2217 debug2("channel %d: open confirm rwindow %u rmax %u", c
->self
,
2218 c
->remote_window
, c
->remote_maxpacket
);
2224 reason2txt(int reason
)
2227 case SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED
:
2228 return "administratively prohibited";
2229 case SSH2_OPEN_CONNECT_FAILED
:
2230 return "connect failed";
2231 case SSH2_OPEN_UNKNOWN_CHANNEL_TYPE
:
2232 return "unknown channel type";
2233 case SSH2_OPEN_RESOURCE_SHORTAGE
:
2234 return "resource shortage";
2236 return "unknown reason";
2241 channel_input_open_failure(int type
, u_int32_t seq
, void *ctxt
)
2244 char *msg
= NULL
, *lang
= NULL
;
2247 id
= packet_get_int();
2248 c
= channel_lookup(id
);
2250 if (c
==NULL
|| c
->type
!= SSH_CHANNEL_OPENING
)
2251 packet_disconnect("Received open failure for "
2252 "non-opening channel %d.", id
);
2254 reason
= packet_get_int();
2255 if (!(datafellows
& SSH_BUG_OPENFAILURE
)) {
2256 msg
= packet_get_string(NULL
);
2257 lang
= packet_get_string(NULL
);
2259 logit("channel %d: open failed: %s%s%s", id
,
2260 reason2txt(reason
), msg
? ": ": "", msg
? msg
: "");
2267 /* Free the channel. This will also close the socket. */
2273 channel_input_window_adjust(int type
, u_int32_t seq
, void *ctxt
)
2282 /* Get the channel number and verify it. */
2283 id
= packet_get_int();
2284 c
= channel_lookup(id
);
2287 logit("Received window adjust for non-open channel %d.", id
);
2290 adjust
= packet_get_int();
2292 debug2("channel %d: rcvd adjust %u", id
, adjust
);
2293 c
->remote_window
+= adjust
;
2298 channel_input_port_open(int type
, u_int32_t seq
, void *ctxt
)
2302 char *host
, *originator_string
;
2303 int remote_id
, sock
= -1;
2305 remote_id
= packet_get_int();
2306 host
= packet_get_string(NULL
);
2307 host_port
= packet_get_int();
2309 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
2310 originator_string
= packet_get_string(NULL
);
2312 originator_string
= xstrdup("unknown (remote did not supply name)");
2315 sock
= channel_connect_to(host
, host_port
);
2317 c
= channel_new("connected socket",
2318 SSH_CHANNEL_CONNECTING
, sock
, sock
, -1, 0, 0, 0,
2319 originator_string
, 1);
2320 c
->remote_id
= remote_id
;
2322 xfree(originator_string
);
2324 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
2325 packet_put_int(remote_id
);
2332 /* -- tcp forwarding */
2335 channel_set_af(int af
)
2341 channel_setup_fwd_listener(int type
, const char *listen_addr
, u_short listen_port
,
2342 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2345 int sock
, r
, success
= 0, wildcard
= 0, is_client
;
2346 struct addrinfo hints
, *ai
, *aitop
;
2347 const char *host
, *addr
;
2348 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2350 host
= (type
== SSH_CHANNEL_RPORT_LISTENER
) ?
2351 listen_addr
: host_to_connect
;
2352 is_client
= (type
== SSH_CHANNEL_PORT_LISTENER
);
2355 error("No forward host name.");
2358 if (strlen(host
) > SSH_CHANNEL_PATH_LEN
- 1) {
2359 error("Forward host name too long.");
2364 * Determine whether or not a port forward listens to loopback,
2365 * specified address or wildcard. On the client, a specified bind
2366 * address will always override gateway_ports. On the server, a
2367 * gateway_ports of 1 (``yes'') will override the client's
2368 * specification and force a wildcard bind, whereas a value of 2
2369 * (``clientspecified'') will bind to whatever address the client
2372 * Special-case listen_addrs are:
2374 * "0.0.0.0" -> wildcard v4/v6 if SSH_OLD_FORWARD_ADDR
2375 * "" (empty string), "*" -> wildcard v4/v6
2376 * "localhost" -> loopback v4/v6
2379 if (listen_addr
== NULL
) {
2380 /* No address specified: default to gateway_ports setting */
2383 } else if (gateway_ports
|| is_client
) {
2384 if (((datafellows
& SSH_OLD_FORWARD_ADDR
) &&
2385 strcmp(listen_addr
, "0.0.0.0") == 0) ||
2386 *listen_addr
== '\0' || strcmp(listen_addr
, "*") == 0 ||
2387 (!is_client
&& gateway_ports
== 1))
2389 else if (strcmp(listen_addr
, "localhost") != 0)
2393 debug3("channel_setup_fwd_listener: type %d wildcard %d addr %s",
2394 type
, wildcard
, (addr
== NULL
) ? "NULL" : addr
);
2397 * getaddrinfo returns a loopback address if the hostname is
2398 * set to NULL and hints.ai_flags is not AI_PASSIVE
2400 memset(&hints
, 0, sizeof(hints
));
2401 hints
.ai_family
= IPv4or6
;
2402 hints
.ai_flags
= wildcard
? AI_PASSIVE
: 0;
2403 hints
.ai_socktype
= SOCK_STREAM
;
2404 snprintf(strport
, sizeof strport
, "%d", listen_port
);
2405 if ((r
= getaddrinfo(addr
, strport
, &hints
, &aitop
)) != 0) {
2407 /* This really shouldn't happen */
2408 packet_disconnect("getaddrinfo: fatal error: %s",
2411 error("channel_setup_fwd_listener: "
2412 "getaddrinfo(%.64s): %s", addr
, gai_strerror(r
));
2417 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2418 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2420 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop
, sizeof(ntop
),
2421 strport
, sizeof(strport
), NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2422 error("channel_setup_fwd_listener: getnameinfo failed");
2425 /* Create a port to listen for the host. */
2426 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
2428 /* this is no error since kernel may not support ipv6 */
2429 verbose("socket: %.100s", strerror(errno
));
2433 channel_set_reuseaddr(sock
);
2435 debug("Local forwarding listening on %s port %s.", ntop
, strport
);
2437 /* Bind the socket to the address. */
2438 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2439 /* address can be in use ipv6 address is already bound */
2441 error("bind: %.100s", strerror(errno
));
2443 verbose("bind: %.100s", strerror(errno
));
2448 /* Start listening for connections on the socket. */
2449 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
2450 error("listen: %.100s", strerror(errno
));
2454 /* Allocate a channel number for the socket. */
2455 c
= channel_new("port listener", type
, sock
, sock
, -1,
2456 CHAN_TCP_WINDOW_DEFAULT
, CHAN_TCP_PACKET_DEFAULT
,
2457 0, "port listener", 1);
2458 strlcpy(c
->path
, host
, sizeof(c
->path
));
2459 c
->host_port
= port_to_connect
;
2460 c
->listening_port
= listen_port
;
2464 error("channel_setup_fwd_listener: cannot listen to port: %d",
2466 freeaddrinfo(aitop
);
2471 channel_cancel_rport_listener(const char *host
, u_short port
)
2476 for (i
= 0; i
< channels_alloc
; i
++) {
2477 Channel
*c
= channels
[i
];
2479 if (c
!= NULL
&& c
->type
== SSH_CHANNEL_RPORT_LISTENER
&&
2480 strncmp(c
->path
, host
, sizeof(c
->path
)) == 0 &&
2481 c
->listening_port
== port
) {
2482 debug2("%s: close channel %d", __func__
, i
);
2491 /* protocol local port fwd, used by ssh (and sshd in v1) */
2493 channel_setup_local_fwd_listener(const char *listen_host
, u_short listen_port
,
2494 const char *host_to_connect
, u_short port_to_connect
, int gateway_ports
)
2496 return channel_setup_fwd_listener(SSH_CHANNEL_PORT_LISTENER
,
2497 listen_host
, listen_port
, host_to_connect
, port_to_connect
,
2501 /* protocol v2 remote port fwd, used by sshd */
2503 channel_setup_remote_fwd_listener(const char *listen_address
,
2504 u_short listen_port
, int gateway_ports
)
2506 return channel_setup_fwd_listener(SSH_CHANNEL_RPORT_LISTENER
,
2507 listen_address
, listen_port
, NULL
, 0, gateway_ports
);
2511 * Initiate forwarding of connections to port "port" on remote host through
2512 * the secure channel to host:port from local side.
2516 channel_request_remote_forwarding(const char *listen_host
, u_short listen_port
,
2517 const char *host_to_connect
, u_short port_to_connect
)
2519 int type
, success
= 0;
2521 /* Record locally that connection to this host/port is permitted. */
2522 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2523 fatal("channel_request_remote_forwarding: too many forwards");
2525 /* Send the forward request to the remote side. */
2527 const char *address_to_bind
;
2528 if (listen_host
== NULL
)
2529 address_to_bind
= "localhost";
2530 else if (*listen_host
== '\0' || strcmp(listen_host
, "*") == 0)
2531 address_to_bind
= "";
2533 address_to_bind
= listen_host
;
2535 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2536 packet_put_cstring("tcpip-forward");
2537 packet_put_char(1); /* boolean: want reply */
2538 packet_put_cstring(address_to_bind
);
2539 packet_put_int(listen_port
);
2541 packet_write_wait();
2542 /* Assume that server accepts the request */
2545 packet_start(SSH_CMSG_PORT_FORWARD_REQUEST
);
2546 packet_put_int(listen_port
);
2547 packet_put_cstring(host_to_connect
);
2548 packet_put_int(port_to_connect
);
2550 packet_write_wait();
2552 /* Wait for response from the remote side. */
2553 type
= packet_read();
2555 case SSH_SMSG_SUCCESS
:
2558 case SSH_SMSG_FAILURE
:
2561 /* Unknown packet */
2562 packet_disconnect("Protocol error for port forward request:"
2563 "received packet type %d.", type
);
2567 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host_to_connect
);
2568 permitted_opens
[num_permitted_opens
].port_to_connect
= port_to_connect
;
2569 permitted_opens
[num_permitted_opens
].listen_port
= listen_port
;
2570 num_permitted_opens
++;
2572 return (success
? 0 : -1);
2576 * Request cancellation of remote forwarding of connection host:port from
2580 channel_request_rforward_cancel(const char *host
, u_short port
)
2587 for (i
= 0; i
< num_permitted_opens
; i
++) {
2588 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2589 permitted_opens
[i
].listen_port
== port
)
2592 if (i
>= num_permitted_opens
) {
2593 debug("%s: requested forward not found", __func__
);
2596 packet_start(SSH2_MSG_GLOBAL_REQUEST
);
2597 packet_put_cstring("cancel-tcpip-forward");
2599 packet_put_cstring(host
== NULL
? "" : host
);
2600 packet_put_int(port
);
2603 permitted_opens
[i
].listen_port
= 0;
2604 permitted_opens
[i
].port_to_connect
= 0;
2605 xfree(permitted_opens
[i
].host_to_connect
);
2606 permitted_opens
[i
].host_to_connect
= NULL
;
2610 * This is called after receiving CHANNEL_FORWARDING_REQUEST. This initates
2611 * listening for the port, and sends back a success reply (or disconnect
2612 * message if there was an error).
2615 channel_input_port_forward_request(int is_root
, int gateway_ports
)
2617 u_short port
, host_port
;
2621 /* Get arguments from the packet. */
2622 port
= packet_get_int();
2623 hostname
= packet_get_string(NULL
);
2624 host_port
= packet_get_int();
2628 * Check that an unprivileged user is not trying to forward a
2631 if (port
< IPPORT_RESERVED
&& !is_root
)
2633 "Requested forwarding of port %d but user is not root.",
2636 packet_disconnect("Dynamic forwarding denied.");
2639 /* Initiate forwarding */
2640 success
= channel_setup_local_fwd_listener(NULL
, port
, hostname
,
2641 host_port
, gateway_ports
);
2643 /* Free the argument string. */
2646 return (success
? 0 : -1);
2650 * Permits opening to any host/port if permitted_opens[] is empty. This is
2651 * usually called by the server, because the user could connect to any port
2652 * anyway, and the server has no way to know but to trust the client anyway.
2655 channel_permit_all_opens(void)
2657 if (num_permitted_opens
== 0)
2658 all_opens_permitted
= 1;
2662 channel_add_permitted_opens(char *host
, int port
)
2664 if (num_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2665 fatal("channel_add_permitted_opens: too many forwards");
2666 debug("allow port forwarding to host %s port %d", host
, port
);
2668 permitted_opens
[num_permitted_opens
].host_to_connect
= xstrdup(host
);
2669 permitted_opens
[num_permitted_opens
].port_to_connect
= port
;
2670 num_permitted_opens
++;
2672 all_opens_permitted
= 0;
2676 channel_add_adm_permitted_opens(char *host
, int port
)
2678 if (num_adm_permitted_opens
>= SSH_MAX_FORWARDS_PER_DIRECTION
)
2679 fatal("channel_add_adm_permitted_opens: too many forwards");
2680 debug("config allows port forwarding to host %s port %d", host
, port
);
2682 permitted_adm_opens
[num_adm_permitted_opens
].host_to_connect
2684 permitted_adm_opens
[num_adm_permitted_opens
].port_to_connect
= port
;
2685 return ++num_adm_permitted_opens
;
2689 channel_clear_permitted_opens(void)
2693 for (i
= 0; i
< num_permitted_opens
; i
++)
2694 if (permitted_opens
[i
].host_to_connect
!= NULL
)
2695 xfree(permitted_opens
[i
].host_to_connect
);
2696 num_permitted_opens
= 0;
2700 channel_clear_adm_permitted_opens(void)
2704 for (i
= 0; i
< num_adm_permitted_opens
; i
++)
2705 if (permitted_adm_opens
[i
].host_to_connect
!= NULL
)
2706 xfree(permitted_adm_opens
[i
].host_to_connect
);
2707 num_adm_permitted_opens
= 0;
2710 /* return socket to remote host, port */
2712 connect_to(const char *host
, u_short port
)
2714 struct addrinfo hints
, *ai
, *aitop
;
2715 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
2719 memset(&hints
, 0, sizeof(hints
));
2720 hints
.ai_family
= IPv4or6
;
2721 hints
.ai_socktype
= SOCK_STREAM
;
2722 snprintf(strport
, sizeof strport
, "%d", port
);
2723 if ((gaierr
= getaddrinfo(host
, strport
, &hints
, &aitop
)) != 0) {
2724 error("connect_to %.100s: unknown host (%s)", host
,
2725 gai_strerror(gaierr
));
2728 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2729 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2731 if (getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
, ntop
, sizeof(ntop
),
2732 strport
, sizeof(strport
), NI_NUMERICHOST
|NI_NUMERICSERV
) != 0) {
2733 error("connect_to: getnameinfo failed");
2736 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
2738 if (ai
->ai_next
== NULL
)
2739 error("socket: %.100s", strerror(errno
));
2741 verbose("socket: %.100s", strerror(errno
));
2744 if (set_nonblock(sock
) == -1)
2745 fatal("%s: set_nonblock(%d)", __func__
, sock
);
2746 if (connect(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0 &&
2747 errno
!= EINPROGRESS
) {
2748 error("connect_to %.100s port %s: %.100s", ntop
, strport
,
2751 continue; /* fail -- try next */
2753 break; /* success */
2756 freeaddrinfo(aitop
);
2758 error("connect_to %.100s port %d: failed.", host
, port
);
2767 channel_connect_by_listen_address(u_short listen_port
)
2771 for (i
= 0; i
< num_permitted_opens
; i
++)
2772 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2773 permitted_opens
[i
].listen_port
== listen_port
)
2775 permitted_opens
[i
].host_to_connect
,
2776 permitted_opens
[i
].port_to_connect
);
2777 error("WARNING: Server requests forwarding for unknown listen_port %d",
2782 /* Check if connecting to that port is permitted and connect. */
2784 channel_connect_to(const char *host
, u_short port
)
2786 int i
, permit
, permit_adm
= 1;
2788 permit
= all_opens_permitted
;
2790 for (i
= 0; i
< num_permitted_opens
; i
++)
2791 if (permitted_opens
[i
].host_to_connect
!= NULL
&&
2792 permitted_opens
[i
].port_to_connect
== port
&&
2793 strcmp(permitted_opens
[i
].host_to_connect
, host
) == 0)
2797 if (num_adm_permitted_opens
> 0) {
2799 for (i
= 0; i
< num_adm_permitted_opens
; i
++)
2800 if (permitted_adm_opens
[i
].host_to_connect
!= NULL
&&
2801 permitted_adm_opens
[i
].port_to_connect
== port
&&
2802 strcmp(permitted_adm_opens
[i
].host_to_connect
, host
)
2807 if (!permit
|| !permit_adm
) {
2808 logit("Received request to connect to host %.100s port %d, "
2809 "but the request was denied.", host
, port
);
2812 return connect_to(host
, port
);
2816 channel_send_window_changes(void)
2821 for (i
= 0; i
< channels_alloc
; i
++) {
2822 if (channels
[i
] == NULL
|| !channels
[i
]->client_tty
||
2823 channels
[i
]->type
!= SSH_CHANNEL_OPEN
)
2825 if (ioctl(channels
[i
]->rfd
, TIOCGWINSZ
, &ws
) < 0)
2827 channel_request_start(i
, "window-change", 0);
2828 packet_put_int((u_int
)ws
.ws_col
);
2829 packet_put_int((u_int
)ws
.ws_row
);
2830 packet_put_int((u_int
)ws
.ws_xpixel
);
2831 packet_put_int((u_int
)ws
.ws_ypixel
);
2836 /* -- X11 forwarding */
2839 * Creates an internet domain socket for listening for X11 connections.
2840 * Returns 0 and a suitable display number for the DISPLAY variable
2841 * stored in display_numberp , or -1 if an error occurs.
2844 x11_create_display_inet(int x11_display_offset
, int x11_use_localhost
,
2845 int single_connection
, u_int
*display_numberp
, int **chanids
)
2848 int display_number
, sock
;
2850 struct addrinfo hints
, *ai
, *aitop
;
2851 char strport
[NI_MAXSERV
];
2852 int gaierr
, n
, num_socks
= 0, socks
[NUM_SOCKS
];
2854 if (chanids
== NULL
)
2857 for (display_number
= x11_display_offset
;
2858 display_number
< MAX_DISPLAYS
;
2860 port
= 6000 + display_number
;
2861 memset(&hints
, 0, sizeof(hints
));
2862 hints
.ai_family
= IPv4or6
;
2863 hints
.ai_flags
= x11_use_localhost
? 0: AI_PASSIVE
;
2864 hints
.ai_socktype
= SOCK_STREAM
;
2865 snprintf(strport
, sizeof strport
, "%d", port
);
2866 if ((gaierr
= getaddrinfo(NULL
, strport
, &hints
, &aitop
)) != 0) {
2867 error("getaddrinfo: %.100s", gai_strerror(gaierr
));
2870 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
2871 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
2873 sock
= socket(ai
->ai_family
, ai
->ai_socktype
,
2876 if ((errno
!= EINVAL
) && (errno
!= EAFNOSUPPORT
)) {
2877 error("socket: %.100s", strerror(errno
));
2878 freeaddrinfo(aitop
);
2881 debug("x11_create_display_inet: Socket family %d not supported",
2887 if (ai
->ai_family
== AF_INET6
) {
2889 if (setsockopt(sock
, IPPROTO_IPV6
, IPV6_V6ONLY
, &on
, sizeof(on
)) < 0)
2890 error("setsockopt IPV6_V6ONLY: %.100s", strerror(errno
));
2893 channel_set_reuseaddr(sock
);
2894 if (bind(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
2895 debug2("bind port %d: %.100s", port
, strerror(errno
));
2901 for (n
= 0; n
< num_socks
; n
++) {
2907 socks
[num_socks
++] = sock
;
2908 #ifndef DONT_TRY_OTHER_AF
2909 if (num_socks
== NUM_SOCKS
)
2912 if (x11_use_localhost
) {
2913 if (num_socks
== NUM_SOCKS
)
2920 freeaddrinfo(aitop
);
2924 if (display_number
>= MAX_DISPLAYS
) {
2925 error("Failed to allocate internet-domain X11 display socket.");
2928 /* Start listening for connections on the socket. */
2929 for (n
= 0; n
< num_socks
; n
++) {
2931 if (listen(sock
, SSH_LISTEN_BACKLOG
) < 0) {
2932 error("listen: %.100s", strerror(errno
));
2938 /* Allocate a channel for each socket. */
2939 *chanids
= xcalloc(num_socks
+ 1, sizeof(**chanids
));
2940 for (n
= 0; n
< num_socks
; n
++) {
2942 nc
= channel_new("x11 listener",
2943 SSH_CHANNEL_X11_LISTENER
, sock
, sock
, -1,
2944 CHAN_X11_WINDOW_DEFAULT
, CHAN_X11_PACKET_DEFAULT
,
2945 0, "X11 inet listener", 1);
2946 nc
->single_connection
= single_connection
;
2947 (*chanids
)[n
] = nc
->self
;
2951 /* Return the display number for the DISPLAY environment variable. */
2952 *display_numberp
= display_number
;
2957 connect_local_xsocket(u_int dnr
)
2960 struct sockaddr_un addr
;
2962 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
2964 error("socket: %.100s", strerror(errno
));
2965 memset(&addr
, 0, sizeof(addr
));
2966 addr
.sun_family
= AF_UNIX
;
2967 snprintf(addr
.sun_path
, sizeof addr
.sun_path
, _PATH_UNIX_X
, dnr
);
2968 if (connect(sock
, (struct sockaddr
*)&addr
, sizeof(addr
)) == 0)
2971 error("connect %.100s: %.100s", addr
.sun_path
, strerror(errno
));
2976 x11_connect_display(void)
2978 u_int display_number
;
2979 const char *display
;
2980 char buf
[1024], *cp
;
2981 struct addrinfo hints
, *ai
, *aitop
;
2982 char strport
[NI_MAXSERV
];
2983 int gaierr
, sock
= 0;
2985 /* Try to open a socket for the local X server. */
2986 display
= getenv("DISPLAY");
2988 error("DISPLAY not set.");
2992 * Now we decode the value of the DISPLAY variable and make a
2993 * connection to the real X server.
2997 * Check if it is a unix domain socket. Unix domain displays are in
2998 * one of the following formats: unix:d[.s], :d[.s], ::d[.s]
3000 if (strncmp(display
, "unix:", 5) == 0 ||
3001 display
[0] == ':') {
3002 /* Connect to the unix domain socket. */
3003 if (sscanf(strrchr(display
, ':') + 1, "%u", &display_number
) != 1) {
3004 error("Could not parse display number from DISPLAY: %.100s",
3008 /* Create a socket. */
3009 sock
= connect_local_xsocket(display_number
);
3013 /* OK, we now have a connection to the display. */
3017 * Connect to an inet socket. The DISPLAY value is supposedly
3018 * hostname:d[.s], where hostname may also be numeric IP address.
3020 strlcpy(buf
, display
, sizeof(buf
));
3021 cp
= strchr(buf
, ':');
3023 error("Could not find ':' in DISPLAY: %.100s", display
);
3027 /* buf now contains the host name. But first we parse the display number. */
3028 if (sscanf(cp
+ 1, "%u", &display_number
) != 1) {
3029 error("Could not parse display number from DISPLAY: %.100s",
3034 /* Look up the host address */
3035 memset(&hints
, 0, sizeof(hints
));
3036 hints
.ai_family
= IPv4or6
;
3037 hints
.ai_socktype
= SOCK_STREAM
;
3038 snprintf(strport
, sizeof strport
, "%u", 6000 + display_number
);
3039 if ((gaierr
= getaddrinfo(buf
, strport
, &hints
, &aitop
)) != 0) {
3040 error("%.100s: unknown host. (%s)", buf
, gai_strerror(gaierr
));
3043 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
3044 /* Create a socket. */
3045 sock
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
3047 debug2("socket: %.100s", strerror(errno
));
3050 /* Connect it to the display. */
3051 if (connect(sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
3052 debug2("connect %.100s port %u: %.100s", buf
,
3053 6000 + display_number
, strerror(errno
));
3060 freeaddrinfo(aitop
);
3062 error("connect %.100s port %u: %.100s", buf
, 6000 + display_number
,
3071 * This is called when SSH_SMSG_X11_OPEN is received. The packet contains
3072 * the remote channel number. We should do whatever we want, and respond
3073 * with either SSH_MSG_OPEN_CONFIRMATION or SSH_MSG_OPEN_FAILURE.
3078 x11_input_open(int type
, u_int32_t seq
, void *ctxt
)
3081 int remote_id
, sock
= 0;
3084 debug("Received X11 open request.");
3086 remote_id
= packet_get_int();
3088 if (packet_get_protocol_flags() & SSH_PROTOFLAG_HOST_IN_FWD_OPEN
) {
3089 remote_host
= packet_get_string(NULL
);
3091 remote_host
= xstrdup("unknown (remote did not supply name)");
3095 /* Obtain a connection to the real X display. */
3096 sock
= x11_connect_display();
3098 /* Allocate a channel for this connection. */
3099 c
= channel_new("connected x11 socket",
3100 SSH_CHANNEL_X11_OPEN
, sock
, sock
, -1, 0, 0, 0,
3102 c
->remote_id
= remote_id
;
3107 /* Send refusal to the remote host. */
3108 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
3109 packet_put_int(remote_id
);
3111 /* Send a confirmation to the remote host. */
3112 packet_start(SSH_MSG_CHANNEL_OPEN_CONFIRMATION
);
3113 packet_put_int(remote_id
);
3114 packet_put_int(c
->self
);
3119 /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
3122 deny_input_open(int type
, u_int32_t seq
, void *ctxt
)
3124 int rchan
= packet_get_int();
3127 case SSH_SMSG_AGENT_OPEN
:
3128 error("Warning: ssh server tried agent forwarding.");
3130 case SSH_SMSG_X11_OPEN
:
3131 error("Warning: ssh server tried X11 forwarding.");
3134 error("deny_input_open: type %d", type
);
3137 error("Warning: this is probably a break-in attempt by a malicious server.");
3138 packet_start(SSH_MSG_CHANNEL_OPEN_FAILURE
);
3139 packet_put_int(rchan
);
3144 * Requests forwarding of X11 connections, generates fake authentication
3145 * data, and enables authentication spoofing.
3146 * This should be called in the client only.
3149 x11_request_forwarding_with_spoofing(int client_session_id
, const char *disp
,
3150 const char *proto
, const char *data
)
3152 u_int data_len
= (u_int
) strlen(data
) / 2;
3159 if (x11_saved_display
== NULL
)
3160 x11_saved_display
= xstrdup(disp
);
3161 else if (strcmp(disp
, x11_saved_display
) != 0) {
3162 error("x11_request_forwarding_with_spoofing: different "
3163 "$DISPLAY already forwarded");
3169 cp
= strchr(disp
, ':');
3171 cp
= strchr(cp
, '.');
3173 screen_number
= (u_int
)strtonum(cp
+ 1, 0, 400, NULL
);
3177 if (x11_saved_proto
== NULL
) {
3178 /* Save protocol name. */
3179 x11_saved_proto
= xstrdup(proto
);
3181 * Extract real authentication data and generate fake data
3182 * of the same length.
3184 x11_saved_data
= xmalloc(data_len
);
3185 x11_fake_data
= xmalloc(data_len
);
3186 for (i
= 0; i
< data_len
; i
++) {
3187 if (sscanf(data
+ 2 * i
, "%2x", &value
) != 1)
3188 fatal("x11_request_forwarding: bad "
3189 "authentication data: %.100s", data
);
3192 x11_saved_data
[i
] = value
;
3193 x11_fake_data
[i
] = rnd
& 0xff;
3196 x11_saved_data_len
= data_len
;
3197 x11_fake_data_len
= data_len
;
3200 /* Convert the fake data into hex. */
3201 new_data
= tohex(x11_fake_data
, data_len
);
3203 /* Send the request packet. */
3205 channel_request_start(client_session_id
, "x11-req", 0);
3206 packet_put_char(0); /* XXX bool single connection */
3208 packet_start(SSH_CMSG_X11_REQUEST_FORWARDING
);
3210 packet_put_cstring(proto
);
3211 packet_put_cstring(new_data
);
3212 packet_put_int(screen_number
);
3214 packet_write_wait();
3219 /* -- agent forwarding */
3221 /* Sends a message to the server to request authentication fd forwarding. */
3224 auth_request_forwarding(void)
3226 packet_start(SSH_CMSG_AGENT_REQUEST_FORWARDING
);
3228 packet_write_wait();