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