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