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