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