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