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