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