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