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