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