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