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