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