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