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