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