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