1 /* $OpenBSD: packet.c,v 1.297 2020/10/18 11:32:01 djm Exp $ */ 2 /* 3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 5 * All rights reserved 6 * This file contains code implementing the packet protocol and communication 7 * with the other side. This same code is used both on client and server side. 8 * 9 * As far as I am concerned, the code I have written for this software 10 * can be used freely for any purpose. Any derived versions of this 11 * software must be clearly marked as such, and if the derived work is 12 * incompatible with the protocol description in the RFC file, it must be 13 * called by a name other than "ssh" or "Secure Shell". 14 * 15 * 16 * SSH2 packet format added by Markus Friedl. 17 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 18 * 19 * Redistribution and use in source and binary forms, with or without 20 * modification, are permitted provided that the following conditions 21 * are met: 22 * 1. Redistributions of source code must retain the above copyright 23 * notice, this list of conditions and the following disclaimer. 24 * 2. Redistributions in binary form must reproduce the above copyright 25 * notice, this list of conditions and the following disclaimer in the 26 * documentation and/or other materials provided with the distribution. 27 * 28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 38 */ 39 40 #include <sys/types.h> 41 #include <sys/queue.h> 42 #include <sys/socket.h> 43 #include <sys/time.h> 44 #include <netinet/in.h> 45 #include <netinet/ip.h> 46 47 #include <errno.h> 48 #include <netdb.h> 49 #include <stdarg.h> 50 #include <stdio.h> 51 #include <stdlib.h> 52 #include <string.h> 53 #include <unistd.h> 54 #include <limits.h> 55 #include <poll.h> 56 #include <signal.h> 57 #include <time.h> 58 59 #ifdef WITH_ZLIB 60 #include <zlib.h> 61 #endif 62 63 #include "xmalloc.h" 64 #include "compat.h" 65 #include "ssh2.h" 66 #include "cipher.h" 67 #include "sshkey.h" 68 #include "kex.h" 69 #include "digest.h" 70 #include "mac.h" 71 #include "log.h" 72 #include "canohost.h" 73 #include "misc.h" 74 #include "channels.h" 75 #include "ssh.h" 76 #include "packet.h" 77 #include "ssherr.h" 78 #include "sshbuf.h" 79 80 #ifdef PACKET_DEBUG 81 #define DBG(x) x 82 #else 83 #define DBG(x) 84 #endif 85 86 #define PACKET_MAX_SIZE (256 * 1024) 87 88 struct packet_state { 89 u_int32_t seqnr; 90 u_int32_t packets; 91 u_int64_t blocks; 92 u_int64_t bytes; 93 }; 94 95 struct packet { 96 TAILQ_ENTRY(packet) next; 97 u_char type; 98 struct sshbuf *payload; 99 }; 100 101 struct session_state { 102 /* 103 * This variable contains the file descriptors used for 104 * communicating with the other side. connection_in is used for 105 * reading; connection_out for writing. These can be the same 106 * descriptor, in which case it is assumed to be a socket. 107 */ 108 int connection_in; 109 int connection_out; 110 111 /* Protocol flags for the remote side. */ 112 u_int remote_protocol_flags; 113 114 /* Encryption context for receiving data. Only used for decryption. */ 115 struct sshcipher_ctx *receive_context; 116 117 /* Encryption context for sending data. Only used for encryption. */ 118 struct sshcipher_ctx *send_context; 119 120 /* Buffer for raw input data from the socket. */ 121 struct sshbuf *input; 122 123 /* Buffer for raw output data going to the socket. */ 124 struct sshbuf *output; 125 126 /* Buffer for the partial outgoing packet being constructed. */ 127 struct sshbuf *outgoing_packet; 128 129 /* Buffer for the incoming packet currently being processed. */ 130 struct sshbuf *incoming_packet; 131 132 /* Scratch buffer for packet compression/decompression. */ 133 struct sshbuf *compression_buffer; 134 135 #ifdef WITH_ZLIB 136 /* Incoming/outgoing compression dictionaries */ 137 z_stream compression_in_stream; 138 z_stream compression_out_stream; 139 #endif 140 int compression_in_started; 141 int compression_out_started; 142 int compression_in_failures; 143 int compression_out_failures; 144 145 /* default maximum packet size */ 146 u_int max_packet_size; 147 148 /* Flag indicating whether this module has been initialized. */ 149 int initialized; 150 151 /* Set to true if the connection is interactive. */ 152 int interactive_mode; 153 154 /* Set to true if we are the server side. */ 155 int server_side; 156 157 /* Set to true if we are authenticated. */ 158 int after_authentication; 159 160 int keep_alive_timeouts; 161 162 /* The maximum time that we will wait to send or receive a packet */ 163 int packet_timeout_ms; 164 165 /* Session key information for Encryption and MAC */ 166 struct newkeys *newkeys[MODE_MAX]; 167 struct packet_state p_read, p_send; 168 169 /* Volume-based rekeying */ 170 u_int64_t max_blocks_in, max_blocks_out, rekey_limit; 171 172 /* Time-based rekeying */ 173 u_int32_t rekey_interval; /* how often in seconds */ 174 time_t rekey_time; /* time of last rekeying */ 175 176 /* roundup current message to extra_pad bytes */ 177 u_char extra_pad; 178 179 /* XXX discard incoming data after MAC error */ 180 u_int packet_discard; 181 size_t packet_discard_mac_already; 182 struct sshmac *packet_discard_mac; 183 184 /* Used in packet_read_poll2() */ 185 u_int packlen; 186 187 /* Used in packet_send2 */ 188 int rekeying; 189 190 /* Used in ssh_packet_send_mux() */ 191 int mux; 192 193 /* Used in packet_set_interactive */ 194 int set_interactive_called; 195 196 /* Used in packet_set_maxsize */ 197 int set_maxsize_called; 198 199 /* One-off warning about weak ciphers */ 200 int cipher_warning_done; 201 202 /* Hook for fuzzing inbound packets */ 203 ssh_packet_hook_fn *hook_in; 204 void *hook_in_ctx; 205 206 TAILQ_HEAD(, packet) outgoing; 207 }; 208 209 struct ssh * 210 ssh_alloc_session_state(void) 211 { 212 struct ssh *ssh = NULL; 213 struct session_state *state = NULL; 214 215 if ((ssh = calloc(1, sizeof(*ssh))) == NULL || 216 (state = calloc(1, sizeof(*state))) == NULL || 217 (ssh->kex = kex_new()) == NULL || 218 (state->input = sshbuf_new()) == NULL || 219 (state->output = sshbuf_new()) == NULL || 220 (state->outgoing_packet = sshbuf_new()) == NULL || 221 (state->incoming_packet = sshbuf_new()) == NULL) 222 goto fail; 223 TAILQ_INIT(&state->outgoing); 224 TAILQ_INIT(&ssh->private_keys); 225 TAILQ_INIT(&ssh->public_keys); 226 state->connection_in = -1; 227 state->connection_out = -1; 228 state->max_packet_size = 32768; 229 state->packet_timeout_ms = -1; 230 state->p_send.packets = state->p_read.packets = 0; 231 state->initialized = 1; 232 /* 233 * ssh_packet_send2() needs to queue packets until 234 * we've done the initial key exchange. 235 */ 236 state->rekeying = 1; 237 ssh->state = state; 238 return ssh; 239 fail: 240 if (ssh) { 241 kex_free(ssh->kex); 242 free(ssh); 243 } 244 if (state) { 245 sshbuf_free(state->input); 246 sshbuf_free(state->output); 247 sshbuf_free(state->incoming_packet); 248 sshbuf_free(state->outgoing_packet); 249 free(state); 250 } 251 return NULL; 252 } 253 254 void 255 ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx) 256 { 257 ssh->state->hook_in = hook; 258 ssh->state->hook_in_ctx = ctx; 259 } 260 261 /* Returns nonzero if rekeying is in progress */ 262 int 263 ssh_packet_is_rekeying(struct ssh *ssh) 264 { 265 return ssh->state->rekeying || 266 (ssh->kex != NULL && ssh->kex->done == 0); 267 } 268 269 /* 270 * Sets the descriptors used for communication. 271 */ 272 struct ssh * 273 ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out) 274 { 275 struct session_state *state; 276 const struct sshcipher *none = cipher_by_name("none"); 277 int r; 278 279 if (none == NULL) { 280 error_f("cannot load cipher 'none'"); 281 return NULL; 282 } 283 if (ssh == NULL) 284 ssh = ssh_alloc_session_state(); 285 if (ssh == NULL) { 286 error_f("could not allocate state"); 287 return NULL; 288 } 289 state = ssh->state; 290 state->connection_in = fd_in; 291 state->connection_out = fd_out; 292 if ((r = cipher_init(&state->send_context, none, 293 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 || 294 (r = cipher_init(&state->receive_context, none, 295 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) { 296 error_fr(r, "cipher_init failed"); 297 free(ssh); /* XXX need ssh_free_session_state? */ 298 return NULL; 299 } 300 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL; 301 /* 302 * Cache the IP address of the remote connection for use in error 303 * messages that might be generated after the connection has closed. 304 */ 305 (void)ssh_remote_ipaddr(ssh); 306 return ssh; 307 } 308 309 void 310 ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count) 311 { 312 struct session_state *state = ssh->state; 313 314 if (timeout <= 0 || count <= 0) { 315 state->packet_timeout_ms = -1; 316 return; 317 } 318 if ((INT_MAX / 1000) / count < timeout) 319 state->packet_timeout_ms = INT_MAX; 320 else 321 state->packet_timeout_ms = timeout * count * 1000; 322 } 323 324 void 325 ssh_packet_set_mux(struct ssh *ssh) 326 { 327 ssh->state->mux = 1; 328 ssh->state->rekeying = 0; 329 kex_free(ssh->kex); 330 ssh->kex = NULL; 331 } 332 333 int 334 ssh_packet_get_mux(struct ssh *ssh) 335 { 336 return ssh->state->mux; 337 } 338 339 int 340 ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...) 341 { 342 va_list args; 343 int r; 344 345 free(ssh->log_preamble); 346 if (fmt == NULL) 347 ssh->log_preamble = NULL; 348 else { 349 va_start(args, fmt); 350 r = vasprintf(&ssh->log_preamble, fmt, args); 351 va_end(args); 352 if (r < 0 || ssh->log_preamble == NULL) 353 return SSH_ERR_ALLOC_FAIL; 354 } 355 return 0; 356 } 357 358 int 359 ssh_packet_stop_discard(struct ssh *ssh) 360 { 361 struct session_state *state = ssh->state; 362 int r; 363 364 if (state->packet_discard_mac) { 365 char buf[1024]; 366 size_t dlen = PACKET_MAX_SIZE; 367 368 if (dlen > state->packet_discard_mac_already) 369 dlen -= state->packet_discard_mac_already; 370 memset(buf, 'a', sizeof(buf)); 371 while (sshbuf_len(state->incoming_packet) < dlen) 372 if ((r = sshbuf_put(state->incoming_packet, buf, 373 sizeof(buf))) != 0) 374 return r; 375 (void) mac_compute(state->packet_discard_mac, 376 state->p_read.seqnr, 377 sshbuf_ptr(state->incoming_packet), dlen, 378 NULL, 0); 379 } 380 logit("Finished discarding for %.200s port %d", 381 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh)); 382 return SSH_ERR_MAC_INVALID; 383 } 384 385 static int 386 ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc, 387 struct sshmac *mac, size_t mac_already, u_int discard) 388 { 389 struct session_state *state = ssh->state; 390 int r; 391 392 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) { 393 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0) 394 return r; 395 return SSH_ERR_MAC_INVALID; 396 } 397 /* 398 * Record number of bytes over which the mac has already 399 * been computed in order to minimize timing attacks. 400 */ 401 if (mac && mac->enabled) { 402 state->packet_discard_mac = mac; 403 state->packet_discard_mac_already = mac_already; 404 } 405 if (sshbuf_len(state->input) >= discard) 406 return ssh_packet_stop_discard(ssh); 407 state->packet_discard = discard - sshbuf_len(state->input); 408 return 0; 409 } 410 411 /* Returns 1 if remote host is connected via socket, 0 if not. */ 412 413 int 414 ssh_packet_connection_is_on_socket(struct ssh *ssh) 415 { 416 struct session_state *state; 417 struct sockaddr_storage from, to; 418 socklen_t fromlen, tolen; 419 420 if (ssh == NULL || ssh->state == NULL) 421 return 0; 422 423 state = ssh->state; 424 if (state->connection_in == -1 || state->connection_out == -1) 425 return 0; 426 /* filedescriptors in and out are the same, so it's a socket */ 427 if (state->connection_in == state->connection_out) 428 return 1; 429 fromlen = sizeof(from); 430 memset(&from, 0, sizeof(from)); 431 if (getpeername(state->connection_in, (struct sockaddr *)&from, 432 &fromlen) == -1) 433 return 0; 434 tolen = sizeof(to); 435 memset(&to, 0, sizeof(to)); 436 if (getpeername(state->connection_out, (struct sockaddr *)&to, 437 &tolen) == -1) 438 return 0; 439 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0) 440 return 0; 441 if (from.ss_family != AF_INET && from.ss_family != AF_INET6) 442 return 0; 443 return 1; 444 } 445 446 void 447 ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes) 448 { 449 if (ibytes) 450 *ibytes = ssh->state->p_read.bytes; 451 if (obytes) 452 *obytes = ssh->state->p_send.bytes; 453 } 454 455 int 456 ssh_packet_connection_af(struct ssh *ssh) 457 { 458 struct sockaddr_storage to; 459 socklen_t tolen = sizeof(to); 460 461 memset(&to, 0, sizeof(to)); 462 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to, 463 &tolen) == -1) 464 return 0; 465 return to.ss_family; 466 } 467 468 /* Sets the connection into non-blocking mode. */ 469 470 void 471 ssh_packet_set_nonblocking(struct ssh *ssh) 472 { 473 /* Set the socket into non-blocking mode. */ 474 set_nonblock(ssh->state->connection_in); 475 476 if (ssh->state->connection_out != ssh->state->connection_in) 477 set_nonblock(ssh->state->connection_out); 478 } 479 480 /* Returns the socket used for reading. */ 481 482 int 483 ssh_packet_get_connection_in(struct ssh *ssh) 484 { 485 return ssh->state->connection_in; 486 } 487 488 /* Returns the descriptor used for writing. */ 489 490 int 491 ssh_packet_get_connection_out(struct ssh *ssh) 492 { 493 return ssh->state->connection_out; 494 } 495 496 /* 497 * Returns the IP-address of the remote host as a string. The returned 498 * string must not be freed. 499 */ 500 501 const char * 502 ssh_remote_ipaddr(struct ssh *ssh) 503 { 504 int sock; 505 506 /* Check whether we have cached the ipaddr. */ 507 if (ssh->remote_ipaddr == NULL) { 508 if (ssh_packet_connection_is_on_socket(ssh)) { 509 sock = ssh->state->connection_in; 510 ssh->remote_ipaddr = get_peer_ipaddr(sock); 511 ssh->remote_port = get_peer_port(sock); 512 ssh->local_ipaddr = get_local_ipaddr(sock); 513 ssh->local_port = get_local_port(sock); 514 } else { 515 ssh->remote_ipaddr = xstrdup("UNKNOWN"); 516 ssh->remote_port = 65535; 517 ssh->local_ipaddr = xstrdup("UNKNOWN"); 518 ssh->local_port = 65535; 519 } 520 } 521 return ssh->remote_ipaddr; 522 } 523 524 /* Returns the port number of the remote host. */ 525 526 int 527 ssh_remote_port(struct ssh *ssh) 528 { 529 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */ 530 return ssh->remote_port; 531 } 532 533 /* 534 * Returns the IP-address of the local host as a string. The returned 535 * string must not be freed. 536 */ 537 538 const char * 539 ssh_local_ipaddr(struct ssh *ssh) 540 { 541 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */ 542 return ssh->local_ipaddr; 543 } 544 545 /* Returns the port number of the local host. */ 546 547 int 548 ssh_local_port(struct ssh *ssh) 549 { 550 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */ 551 return ssh->local_port; 552 } 553 554 /* Returns the routing domain of the input socket, or NULL if unavailable */ 555 const char * 556 ssh_packet_rdomain_in(struct ssh *ssh) 557 { 558 if (ssh->rdomain_in != NULL) 559 return ssh->rdomain_in; 560 if (!ssh_packet_connection_is_on_socket(ssh)) 561 return NULL; 562 ssh->rdomain_in = get_rdomain(ssh->state->connection_in); 563 return ssh->rdomain_in; 564 } 565 566 /* Closes the connection and clears and frees internal data structures. */ 567 568 static void 569 ssh_packet_close_internal(struct ssh *ssh, int do_close) 570 { 571 struct session_state *state = ssh->state; 572 u_int mode; 573 574 if (!state->initialized) 575 return; 576 state->initialized = 0; 577 if (do_close) { 578 if (state->connection_in == state->connection_out) { 579 close(state->connection_out); 580 } else { 581 close(state->connection_in); 582 close(state->connection_out); 583 } 584 } 585 sshbuf_free(state->input); 586 sshbuf_free(state->output); 587 sshbuf_free(state->outgoing_packet); 588 sshbuf_free(state->incoming_packet); 589 for (mode = 0; mode < MODE_MAX; mode++) { 590 kex_free_newkeys(state->newkeys[mode]); /* current keys */ 591 state->newkeys[mode] = NULL; 592 ssh_clear_newkeys(ssh, mode); /* next keys */ 593 } 594 #ifdef WITH_ZLIB 595 /* compression state is in shared mem, so we can only release it once */ 596 if (do_close && state->compression_buffer) { 597 sshbuf_free(state->compression_buffer); 598 if (state->compression_out_started) { 599 z_streamp stream = &state->compression_out_stream; 600 debug("compress outgoing: " 601 "raw data %llu, compressed %llu, factor %.2f", 602 (unsigned long long)stream->total_in, 603 (unsigned long long)stream->total_out, 604 stream->total_in == 0 ? 0.0 : 605 (double) stream->total_out / stream->total_in); 606 if (state->compression_out_failures == 0) 607 deflateEnd(stream); 608 } 609 if (state->compression_in_started) { 610 z_streamp stream = &state->compression_in_stream; 611 debug("compress incoming: " 612 "raw data %llu, compressed %llu, factor %.2f", 613 (unsigned long long)stream->total_out, 614 (unsigned long long)stream->total_in, 615 stream->total_out == 0 ? 0.0 : 616 (double) stream->total_in / stream->total_out); 617 if (state->compression_in_failures == 0) 618 inflateEnd(stream); 619 } 620 } 621 #endif /* WITH_ZLIB */ 622 cipher_free(state->send_context); 623 cipher_free(state->receive_context); 624 state->send_context = state->receive_context = NULL; 625 if (do_close) { 626 free(ssh->local_ipaddr); 627 ssh->local_ipaddr = NULL; 628 free(ssh->remote_ipaddr); 629 ssh->remote_ipaddr = NULL; 630 free(ssh->state); 631 ssh->state = NULL; 632 kex_free(ssh->kex); 633 ssh->kex = NULL; 634 } 635 } 636 637 void 638 ssh_packet_close(struct ssh *ssh) 639 { 640 ssh_packet_close_internal(ssh, 1); 641 } 642 643 void 644 ssh_packet_clear_keys(struct ssh *ssh) 645 { 646 ssh_packet_close_internal(ssh, 0); 647 } 648 649 /* Sets remote side protocol flags. */ 650 651 void 652 ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags) 653 { 654 ssh->state->remote_protocol_flags = protocol_flags; 655 } 656 657 /* Returns the remote protocol flags set earlier by the above function. */ 658 659 u_int 660 ssh_packet_get_protocol_flags(struct ssh *ssh) 661 { 662 return ssh->state->remote_protocol_flags; 663 } 664 665 /* 666 * Starts packet compression from the next packet on in both directions. 667 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip. 668 */ 669 670 static int 671 ssh_packet_init_compression(struct ssh *ssh) 672 { 673 if (!ssh->state->compression_buffer && 674 ((ssh->state->compression_buffer = sshbuf_new()) == NULL)) 675 return SSH_ERR_ALLOC_FAIL; 676 return 0; 677 } 678 679 #ifdef WITH_ZLIB 680 static int 681 start_compression_out(struct ssh *ssh, int level) 682 { 683 if (level < 1 || level > 9) 684 return SSH_ERR_INVALID_ARGUMENT; 685 debug("Enabling compression at level %d.", level); 686 if (ssh->state->compression_out_started == 1) 687 deflateEnd(&ssh->state->compression_out_stream); 688 switch (deflateInit(&ssh->state->compression_out_stream, level)) { 689 case Z_OK: 690 ssh->state->compression_out_started = 1; 691 break; 692 case Z_MEM_ERROR: 693 return SSH_ERR_ALLOC_FAIL; 694 default: 695 return SSH_ERR_INTERNAL_ERROR; 696 } 697 return 0; 698 } 699 700 static int 701 start_compression_in(struct ssh *ssh) 702 { 703 if (ssh->state->compression_in_started == 1) 704 inflateEnd(&ssh->state->compression_in_stream); 705 switch (inflateInit(&ssh->state->compression_in_stream)) { 706 case Z_OK: 707 ssh->state->compression_in_started = 1; 708 break; 709 case Z_MEM_ERROR: 710 return SSH_ERR_ALLOC_FAIL; 711 default: 712 return SSH_ERR_INTERNAL_ERROR; 713 } 714 return 0; 715 } 716 717 /* XXX remove need for separate compression buffer */ 718 static int 719 compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out) 720 { 721 u_char buf[4096]; 722 int r, status; 723 724 if (ssh->state->compression_out_started != 1) 725 return SSH_ERR_INTERNAL_ERROR; 726 727 /* This case is not handled below. */ 728 if (sshbuf_len(in) == 0) 729 return 0; 730 731 /* Input is the contents of the input buffer. */ 732 if ((ssh->state->compression_out_stream.next_in = 733 sshbuf_mutable_ptr(in)) == NULL) 734 return SSH_ERR_INTERNAL_ERROR; 735 ssh->state->compression_out_stream.avail_in = sshbuf_len(in); 736 737 /* Loop compressing until deflate() returns with avail_out != 0. */ 738 do { 739 /* Set up fixed-size output buffer. */ 740 ssh->state->compression_out_stream.next_out = buf; 741 ssh->state->compression_out_stream.avail_out = sizeof(buf); 742 743 /* Compress as much data into the buffer as possible. */ 744 status = deflate(&ssh->state->compression_out_stream, 745 Z_PARTIAL_FLUSH); 746 switch (status) { 747 case Z_MEM_ERROR: 748 return SSH_ERR_ALLOC_FAIL; 749 case Z_OK: 750 /* Append compressed data to output_buffer. */ 751 if ((r = sshbuf_put(out, buf, sizeof(buf) - 752 ssh->state->compression_out_stream.avail_out)) != 0) 753 return r; 754 break; 755 case Z_STREAM_ERROR: 756 default: 757 ssh->state->compression_out_failures++; 758 return SSH_ERR_INVALID_FORMAT; 759 } 760 } while (ssh->state->compression_out_stream.avail_out == 0); 761 return 0; 762 } 763 764 static int 765 uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out) 766 { 767 u_char buf[4096]; 768 int r, status; 769 770 if (ssh->state->compression_in_started != 1) 771 return SSH_ERR_INTERNAL_ERROR; 772 773 if ((ssh->state->compression_in_stream.next_in = 774 sshbuf_mutable_ptr(in)) == NULL) 775 return SSH_ERR_INTERNAL_ERROR; 776 ssh->state->compression_in_stream.avail_in = sshbuf_len(in); 777 778 for (;;) { 779 /* Set up fixed-size output buffer. */ 780 ssh->state->compression_in_stream.next_out = buf; 781 ssh->state->compression_in_stream.avail_out = sizeof(buf); 782 783 status = inflate(&ssh->state->compression_in_stream, 784 Z_PARTIAL_FLUSH); 785 switch (status) { 786 case Z_OK: 787 if ((r = sshbuf_put(out, buf, sizeof(buf) - 788 ssh->state->compression_in_stream.avail_out)) != 0) 789 return r; 790 break; 791 case Z_BUF_ERROR: 792 /* 793 * Comments in zlib.h say that we should keep calling 794 * inflate() until we get an error. This appears to 795 * be the error that we get. 796 */ 797 return 0; 798 case Z_DATA_ERROR: 799 return SSH_ERR_INVALID_FORMAT; 800 case Z_MEM_ERROR: 801 return SSH_ERR_ALLOC_FAIL; 802 case Z_STREAM_ERROR: 803 default: 804 ssh->state->compression_in_failures++; 805 return SSH_ERR_INTERNAL_ERROR; 806 } 807 } 808 /* NOTREACHED */ 809 } 810 811 #else /* WITH_ZLIB */ 812 813 static int 814 start_compression_out(struct ssh *ssh, int level) 815 { 816 return SSH_ERR_INTERNAL_ERROR; 817 } 818 819 static int 820 start_compression_in(struct ssh *ssh) 821 { 822 return SSH_ERR_INTERNAL_ERROR; 823 } 824 825 static int 826 compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out) 827 { 828 return SSH_ERR_INTERNAL_ERROR; 829 } 830 831 static int 832 uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out) 833 { 834 return SSH_ERR_INTERNAL_ERROR; 835 } 836 #endif /* WITH_ZLIB */ 837 838 void 839 ssh_clear_newkeys(struct ssh *ssh, int mode) 840 { 841 if (ssh->kex && ssh->kex->newkeys[mode]) { 842 kex_free_newkeys(ssh->kex->newkeys[mode]); 843 ssh->kex->newkeys[mode] = NULL; 844 } 845 } 846 847 int 848 ssh_set_newkeys(struct ssh *ssh, int mode) 849 { 850 struct session_state *state = ssh->state; 851 struct sshenc *enc; 852 struct sshmac *mac; 853 struct sshcomp *comp; 854 struct sshcipher_ctx **ccp; 855 struct packet_state *ps; 856 u_int64_t *max_blocks; 857 const char *wmsg; 858 int r, crypt_type; 859 const char *dir = mode == MODE_OUT ? "out" : "in"; 860 861 debug2("set_newkeys: mode %d", mode); 862 863 if (mode == MODE_OUT) { 864 ccp = &state->send_context; 865 crypt_type = CIPHER_ENCRYPT; 866 ps = &state->p_send; 867 max_blocks = &state->max_blocks_out; 868 } else { 869 ccp = &state->receive_context; 870 crypt_type = CIPHER_DECRYPT; 871 ps = &state->p_read; 872 max_blocks = &state->max_blocks_in; 873 } 874 if (state->newkeys[mode] != NULL) { 875 debug_f("rekeying %s, input %llu bytes %llu blocks, " 876 "output %llu bytes %llu blocks", dir, 877 (unsigned long long)state->p_read.bytes, 878 (unsigned long long)state->p_read.blocks, 879 (unsigned long long)state->p_send.bytes, 880 (unsigned long long)state->p_send.blocks); 881 kex_free_newkeys(state->newkeys[mode]); 882 state->newkeys[mode] = NULL; 883 } 884 /* note that both bytes and the seqnr are not reset */ 885 ps->packets = ps->blocks = 0; 886 /* move newkeys from kex to state */ 887 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL) 888 return SSH_ERR_INTERNAL_ERROR; 889 ssh->kex->newkeys[mode] = NULL; 890 enc = &state->newkeys[mode]->enc; 891 mac = &state->newkeys[mode]->mac; 892 comp = &state->newkeys[mode]->comp; 893 if (cipher_authlen(enc->cipher) == 0) { 894 if ((r = mac_init(mac)) != 0) 895 return r; 896 } 897 mac->enabled = 1; 898 DBG(debug_f("cipher_init_context: %s", dir)); 899 cipher_free(*ccp); 900 *ccp = NULL; 901 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len, 902 enc->iv, enc->iv_len, crypt_type)) != 0) 903 return r; 904 if (!state->cipher_warning_done && 905 (wmsg = cipher_warning_message(*ccp)) != NULL) { 906 error("Warning: %s", wmsg); 907 state->cipher_warning_done = 1; 908 } 909 /* Deleting the keys does not gain extra security */ 910 /* explicit_bzero(enc->iv, enc->block_size); 911 explicit_bzero(enc->key, enc->key_len); 912 explicit_bzero(mac->key, mac->key_len); */ 913 if ((comp->type == COMP_ZLIB || 914 (comp->type == COMP_DELAYED && 915 state->after_authentication)) && comp->enabled == 0) { 916 if ((r = ssh_packet_init_compression(ssh)) < 0) 917 return r; 918 if (mode == MODE_OUT) { 919 if ((r = start_compression_out(ssh, 6)) != 0) 920 return r; 921 } else { 922 if ((r = start_compression_in(ssh)) != 0) 923 return r; 924 } 925 comp->enabled = 1; 926 } 927 /* 928 * The 2^(blocksize*2) limit is too expensive for 3DES, 929 * so enforce a 1GB limit for small blocksizes. 930 * See RFC4344 section 3.2. 931 */ 932 if (enc->block_size >= 16) 933 *max_blocks = (u_int64_t)1 << (enc->block_size*2); 934 else 935 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size; 936 if (state->rekey_limit) 937 *max_blocks = MINIMUM(*max_blocks, 938 state->rekey_limit / enc->block_size); 939 debug("rekey %s after %llu blocks", dir, 940 (unsigned long long)*max_blocks); 941 return 0; 942 } 943 944 #define MAX_PACKETS (1U<<31) 945 static int 946 ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len) 947 { 948 struct session_state *state = ssh->state; 949 u_int32_t out_blocks; 950 951 /* XXX client can't cope with rekeying pre-auth */ 952 if (!state->after_authentication) 953 return 0; 954 955 /* Haven't keyed yet or KEX in progress. */ 956 if (ssh_packet_is_rekeying(ssh)) 957 return 0; 958 959 /* Peer can't rekey */ 960 if (ssh->compat & SSH_BUG_NOREKEY) 961 return 0; 962 963 /* 964 * Permit one packet in or out per rekey - this allows us to 965 * make progress when rekey limits are very small. 966 */ 967 if (state->p_send.packets == 0 && state->p_read.packets == 0) 968 return 0; 969 970 /* Time-based rekeying */ 971 if (state->rekey_interval != 0 && 972 (int64_t)state->rekey_time + state->rekey_interval <= monotime()) 973 return 1; 974 975 /* 976 * Always rekey when MAX_PACKETS sent in either direction 977 * As per RFC4344 section 3.1 we do this after 2^31 packets. 978 */ 979 if (state->p_send.packets > MAX_PACKETS || 980 state->p_read.packets > MAX_PACKETS) 981 return 1; 982 983 /* Rekey after (cipher-specific) maxiumum blocks */ 984 out_blocks = ROUNDUP(outbound_packet_len, 985 state->newkeys[MODE_OUT]->enc.block_size); 986 return (state->max_blocks_out && 987 (state->p_send.blocks + out_blocks > state->max_blocks_out)) || 988 (state->max_blocks_in && 989 (state->p_read.blocks > state->max_blocks_in)); 990 } 991 992 /* 993 * Delayed compression for SSH2 is enabled after authentication: 994 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent, 995 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received. 996 */ 997 static int 998 ssh_packet_enable_delayed_compress(struct ssh *ssh) 999 { 1000 struct session_state *state = ssh->state; 1001 struct sshcomp *comp = NULL; 1002 int r, mode; 1003 1004 /* 1005 * Remember that we are past the authentication step, so rekeying 1006 * with COMP_DELAYED will turn on compression immediately. 1007 */ 1008 state->after_authentication = 1; 1009 for (mode = 0; mode < MODE_MAX; mode++) { 1010 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */ 1011 if (state->newkeys[mode] == NULL) 1012 continue; 1013 comp = &state->newkeys[mode]->comp; 1014 if (comp && !comp->enabled && comp->type == COMP_DELAYED) { 1015 if ((r = ssh_packet_init_compression(ssh)) != 0) 1016 return r; 1017 if (mode == MODE_OUT) { 1018 if ((r = start_compression_out(ssh, 6)) != 0) 1019 return r; 1020 } else { 1021 if ((r = start_compression_in(ssh)) != 0) 1022 return r; 1023 } 1024 comp->enabled = 1; 1025 } 1026 } 1027 return 0; 1028 } 1029 1030 /* Used to mute debug logging for noisy packet types */ 1031 int 1032 ssh_packet_log_type(u_char type) 1033 { 1034 switch (type) { 1035 case SSH2_MSG_CHANNEL_DATA: 1036 case SSH2_MSG_CHANNEL_EXTENDED_DATA: 1037 case SSH2_MSG_CHANNEL_WINDOW_ADJUST: 1038 return 0; 1039 default: 1040 return 1; 1041 } 1042 } 1043 1044 /* 1045 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue) 1046 */ 1047 int 1048 ssh_packet_send2_wrapped(struct ssh *ssh) 1049 { 1050 struct session_state *state = ssh->state; 1051 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH]; 1052 u_char tmp, padlen, pad = 0; 1053 u_int authlen = 0, aadlen = 0; 1054 u_int len; 1055 struct sshenc *enc = NULL; 1056 struct sshmac *mac = NULL; 1057 struct sshcomp *comp = NULL; 1058 int r, block_size; 1059 1060 if (state->newkeys[MODE_OUT] != NULL) { 1061 enc = &state->newkeys[MODE_OUT]->enc; 1062 mac = &state->newkeys[MODE_OUT]->mac; 1063 comp = &state->newkeys[MODE_OUT]->comp; 1064 /* disable mac for authenticated encryption */ 1065 if ((authlen = cipher_authlen(enc->cipher)) != 0) 1066 mac = NULL; 1067 } 1068 block_size = enc ? enc->block_size : 8; 1069 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0; 1070 1071 type = (sshbuf_ptr(state->outgoing_packet))[5]; 1072 if (ssh_packet_log_type(type)) 1073 debug3("send packet: type %u", type); 1074 #ifdef PACKET_DEBUG 1075 fprintf(stderr, "plain: "); 1076 sshbuf_dump(state->outgoing_packet, stderr); 1077 #endif 1078 1079 if (comp && comp->enabled) { 1080 len = sshbuf_len(state->outgoing_packet); 1081 /* skip header, compress only payload */ 1082 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0) 1083 goto out; 1084 sshbuf_reset(state->compression_buffer); 1085 if ((r = compress_buffer(ssh, state->outgoing_packet, 1086 state->compression_buffer)) != 0) 1087 goto out; 1088 sshbuf_reset(state->outgoing_packet); 1089 if ((r = sshbuf_put(state->outgoing_packet, 1090 "\0\0\0\0\0", 5)) != 0 || 1091 (r = sshbuf_putb(state->outgoing_packet, 1092 state->compression_buffer)) != 0) 1093 goto out; 1094 DBG(debug("compression: raw %d compressed %zd", len, 1095 sshbuf_len(state->outgoing_packet))); 1096 } 1097 1098 /* sizeof (packet_len + pad_len + payload) */ 1099 len = sshbuf_len(state->outgoing_packet); 1100 1101 /* 1102 * calc size of padding, alloc space, get random data, 1103 * minimum padding is 4 bytes 1104 */ 1105 len -= aadlen; /* packet length is not encrypted for EtM modes */ 1106 padlen = block_size - (len % block_size); 1107 if (padlen < 4) 1108 padlen += block_size; 1109 if (state->extra_pad) { 1110 tmp = state->extra_pad; 1111 state->extra_pad = 1112 ROUNDUP(state->extra_pad, block_size); 1113 /* check if roundup overflowed */ 1114 if (state->extra_pad < tmp) 1115 return SSH_ERR_INVALID_ARGUMENT; 1116 tmp = (len + padlen) % state->extra_pad; 1117 /* Check whether pad calculation below will underflow */ 1118 if (tmp > state->extra_pad) 1119 return SSH_ERR_INVALID_ARGUMENT; 1120 pad = state->extra_pad - tmp; 1121 DBG(debug3_f("adding %d (len %d padlen %d extra_pad %d)", 1122 pad, len, padlen, state->extra_pad)); 1123 tmp = padlen; 1124 padlen += pad; 1125 /* Check whether padlen calculation overflowed */ 1126 if (padlen < tmp) 1127 return SSH_ERR_INVALID_ARGUMENT; /* overflow */ 1128 state->extra_pad = 0; 1129 } 1130 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0) 1131 goto out; 1132 if (enc && !cipher_ctx_is_plaintext(state->send_context)) { 1133 /* random padding */ 1134 arc4random_buf(cp, padlen); 1135 } else { 1136 /* clear padding */ 1137 explicit_bzero(cp, padlen); 1138 } 1139 /* sizeof (packet_len + pad_len + payload + padding) */ 1140 len = sshbuf_len(state->outgoing_packet); 1141 cp = sshbuf_mutable_ptr(state->outgoing_packet); 1142 if (cp == NULL) { 1143 r = SSH_ERR_INTERNAL_ERROR; 1144 goto out; 1145 } 1146 /* packet_length includes payload, padding and padding length field */ 1147 POKE_U32(cp, len - 4); 1148 cp[4] = padlen; 1149 DBG(debug("send: len %d (includes padlen %d, aadlen %d)", 1150 len, padlen, aadlen)); 1151 1152 /* compute MAC over seqnr and packet(length fields, payload, padding) */ 1153 if (mac && mac->enabled && !mac->etm) { 1154 if ((r = mac_compute(mac, state->p_send.seqnr, 1155 sshbuf_ptr(state->outgoing_packet), len, 1156 macbuf, sizeof(macbuf))) != 0) 1157 goto out; 1158 DBG(debug("done calc MAC out #%d", state->p_send.seqnr)); 1159 } 1160 /* encrypt packet and append to output buffer. */ 1161 if ((r = sshbuf_reserve(state->output, 1162 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0) 1163 goto out; 1164 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp, 1165 sshbuf_ptr(state->outgoing_packet), 1166 len - aadlen, aadlen, authlen)) != 0) 1167 goto out; 1168 /* append unencrypted MAC */ 1169 if (mac && mac->enabled) { 1170 if (mac->etm) { 1171 /* EtM: compute mac over aadlen + cipher text */ 1172 if ((r = mac_compute(mac, state->p_send.seqnr, 1173 cp, len, macbuf, sizeof(macbuf))) != 0) 1174 goto out; 1175 DBG(debug("done calc MAC(EtM) out #%d", 1176 state->p_send.seqnr)); 1177 } 1178 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0) 1179 goto out; 1180 } 1181 #ifdef PACKET_DEBUG 1182 fprintf(stderr, "encrypted: "); 1183 sshbuf_dump(state->output, stderr); 1184 #endif 1185 /* increment sequence number for outgoing packets */ 1186 if (++state->p_send.seqnr == 0) 1187 logit("outgoing seqnr wraps around"); 1188 if (++state->p_send.packets == 0) 1189 if (!(ssh->compat & SSH_BUG_NOREKEY)) 1190 return SSH_ERR_NEED_REKEY; 1191 state->p_send.blocks += len / block_size; 1192 state->p_send.bytes += len; 1193 sshbuf_reset(state->outgoing_packet); 1194 1195 if (type == SSH2_MSG_NEWKEYS) 1196 r = ssh_set_newkeys(ssh, MODE_OUT); 1197 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side) 1198 r = ssh_packet_enable_delayed_compress(ssh); 1199 else 1200 r = 0; 1201 out: 1202 return r; 1203 } 1204 1205 /* returns non-zero if the specified packet type is usec by KEX */ 1206 static int 1207 ssh_packet_type_is_kex(u_char type) 1208 { 1209 return 1210 type >= SSH2_MSG_TRANSPORT_MIN && 1211 type <= SSH2_MSG_TRANSPORT_MAX && 1212 type != SSH2_MSG_SERVICE_REQUEST && 1213 type != SSH2_MSG_SERVICE_ACCEPT && 1214 type != SSH2_MSG_EXT_INFO; 1215 } 1216 1217 int 1218 ssh_packet_send2(struct ssh *ssh) 1219 { 1220 struct session_state *state = ssh->state; 1221 struct packet *p; 1222 u_char type; 1223 int r, need_rekey; 1224 1225 if (sshbuf_len(state->outgoing_packet) < 6) 1226 return SSH_ERR_INTERNAL_ERROR; 1227 type = sshbuf_ptr(state->outgoing_packet)[5]; 1228 need_rekey = !ssh_packet_type_is_kex(type) && 1229 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet)); 1230 1231 /* 1232 * During rekeying we can only send key exchange messages. 1233 * Queue everything else. 1234 */ 1235 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) { 1236 if (need_rekey) 1237 debug3_f("rekex triggered"); 1238 debug("enqueue packet: %u", type); 1239 p = calloc(1, sizeof(*p)); 1240 if (p == NULL) 1241 return SSH_ERR_ALLOC_FAIL; 1242 p->type = type; 1243 p->payload = state->outgoing_packet; 1244 TAILQ_INSERT_TAIL(&state->outgoing, p, next); 1245 state->outgoing_packet = sshbuf_new(); 1246 if (state->outgoing_packet == NULL) 1247 return SSH_ERR_ALLOC_FAIL; 1248 if (need_rekey) { 1249 /* 1250 * This packet triggered a rekey, so send the 1251 * KEXINIT now. 1252 * NB. reenters this function via kex_start_rekex(). 1253 */ 1254 return kex_start_rekex(ssh); 1255 } 1256 return 0; 1257 } 1258 1259 /* rekeying starts with sending KEXINIT */ 1260 if (type == SSH2_MSG_KEXINIT) 1261 state->rekeying = 1; 1262 1263 if ((r = ssh_packet_send2_wrapped(ssh)) != 0) 1264 return r; 1265 1266 /* after a NEWKEYS message we can send the complete queue */ 1267 if (type == SSH2_MSG_NEWKEYS) { 1268 state->rekeying = 0; 1269 state->rekey_time = monotime(); 1270 while ((p = TAILQ_FIRST(&state->outgoing))) { 1271 type = p->type; 1272 /* 1273 * If this packet triggers a rekex, then skip the 1274 * remaining packets in the queue for now. 1275 * NB. re-enters this function via kex_start_rekex. 1276 */ 1277 if (ssh_packet_need_rekeying(ssh, 1278 sshbuf_len(p->payload))) { 1279 debug3_f("queued packet triggered rekex"); 1280 return kex_start_rekex(ssh); 1281 } 1282 debug("dequeue packet: %u", type); 1283 sshbuf_free(state->outgoing_packet); 1284 state->outgoing_packet = p->payload; 1285 TAILQ_REMOVE(&state->outgoing, p, next); 1286 memset(p, 0, sizeof(*p)); 1287 free(p); 1288 if ((r = ssh_packet_send2_wrapped(ssh)) != 0) 1289 return r; 1290 } 1291 } 1292 return 0; 1293 } 1294 1295 /* 1296 * Waits until a packet has been received, and returns its type. Note that 1297 * no other data is processed until this returns, so this function should not 1298 * be used during the interactive session. 1299 */ 1300 1301 int 1302 ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) 1303 { 1304 struct session_state *state = ssh->state; 1305 int len, r, ms_remain; 1306 fd_set *setp; 1307 char buf[8192]; 1308 struct timeval timeout, start, *timeoutp = NULL; 1309 1310 DBG(debug("packet_read()")); 1311 1312 setp = calloc(howmany(state->connection_in + 1, 1313 NFDBITS), sizeof(fd_mask)); 1314 if (setp == NULL) 1315 return SSH_ERR_ALLOC_FAIL; 1316 1317 /* 1318 * Since we are blocking, ensure that all written packets have 1319 * been sent. 1320 */ 1321 if ((r = ssh_packet_write_wait(ssh)) != 0) 1322 goto out; 1323 1324 /* Stay in the loop until we have received a complete packet. */ 1325 for (;;) { 1326 /* Try to read a packet from the buffer. */ 1327 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p); 1328 if (r != 0) 1329 break; 1330 /* If we got a packet, return it. */ 1331 if (*typep != SSH_MSG_NONE) 1332 break; 1333 /* 1334 * Otherwise, wait for some data to arrive, add it to the 1335 * buffer, and try again. 1336 */ 1337 memset(setp, 0, howmany(state->connection_in + 1, 1338 NFDBITS) * sizeof(fd_mask)); 1339 FD_SET(state->connection_in, setp); 1340 1341 if (state->packet_timeout_ms > 0) { 1342 ms_remain = state->packet_timeout_ms; 1343 timeoutp = &timeout; 1344 } 1345 /* Wait for some data to arrive. */ 1346 for (;;) { 1347 if (state->packet_timeout_ms > 0) { 1348 ms_to_timeval(&timeout, ms_remain); 1349 monotime_tv(&start); 1350 } 1351 if ((r = select(state->connection_in + 1, setp, 1352 NULL, NULL, timeoutp)) >= 0) 1353 break; 1354 if (errno != EAGAIN && errno != EINTR) { 1355 r = SSH_ERR_SYSTEM_ERROR; 1356 goto out; 1357 } 1358 if (state->packet_timeout_ms <= 0) 1359 continue; 1360 ms_subtract_diff(&start, &ms_remain); 1361 if (ms_remain <= 0) { 1362 r = 0; 1363 break; 1364 } 1365 } 1366 if (r == 0) { 1367 r = SSH_ERR_CONN_TIMEOUT; 1368 goto out; 1369 } 1370 /* Read data from the socket. */ 1371 len = read(state->connection_in, buf, sizeof(buf)); 1372 if (len == 0) { 1373 r = SSH_ERR_CONN_CLOSED; 1374 goto out; 1375 } 1376 if (len == -1) { 1377 r = SSH_ERR_SYSTEM_ERROR; 1378 goto out; 1379 } 1380 1381 /* Append it to the buffer. */ 1382 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0) 1383 goto out; 1384 } 1385 out: 1386 free(setp); 1387 return r; 1388 } 1389 1390 int 1391 ssh_packet_read(struct ssh *ssh) 1392 { 1393 u_char type; 1394 int r; 1395 1396 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0) 1397 fatal_fr(r, "read"); 1398 return type; 1399 } 1400 1401 /* 1402 * Waits until a packet has been received, verifies that its type matches 1403 * that given, and gives a fatal error and exits if there is a mismatch. 1404 */ 1405 1406 int 1407 ssh_packet_read_expect(struct ssh *ssh, u_int expected_type) 1408 { 1409 int r; 1410 u_char type; 1411 1412 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0) 1413 return r; 1414 if (type != expected_type) { 1415 if ((r = sshpkt_disconnect(ssh, 1416 "Protocol error: expected packet type %d, got %d", 1417 expected_type, type)) != 0) 1418 return r; 1419 return SSH_ERR_PROTOCOL_ERROR; 1420 } 1421 return 0; 1422 } 1423 1424 static int 1425 ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) 1426 { 1427 struct session_state *state = ssh->state; 1428 const u_char *cp; 1429 size_t need; 1430 int r; 1431 1432 if (ssh->kex) 1433 return SSH_ERR_INTERNAL_ERROR; 1434 *typep = SSH_MSG_NONE; 1435 cp = sshbuf_ptr(state->input); 1436 if (state->packlen == 0) { 1437 if (sshbuf_len(state->input) < 4 + 1) 1438 return 0; /* packet is incomplete */ 1439 state->packlen = PEEK_U32(cp); 1440 if (state->packlen < 4 + 1 || 1441 state->packlen > PACKET_MAX_SIZE) 1442 return SSH_ERR_MESSAGE_INCOMPLETE; 1443 } 1444 need = state->packlen + 4; 1445 if (sshbuf_len(state->input) < need) 1446 return 0; /* packet is incomplete */ 1447 sshbuf_reset(state->incoming_packet); 1448 if ((r = sshbuf_put(state->incoming_packet, cp + 4, 1449 state->packlen)) != 0 || 1450 (r = sshbuf_consume(state->input, need)) != 0 || 1451 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 || 1452 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0) 1453 return r; 1454 if (ssh_packet_log_type(*typep)) 1455 debug3_f("type %u", *typep); 1456 /* sshbuf_dump(state->incoming_packet, stderr); */ 1457 /* reset for next packet */ 1458 state->packlen = 0; 1459 return r; 1460 } 1461 1462 int 1463 ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) 1464 { 1465 struct session_state *state = ssh->state; 1466 u_int padlen, need; 1467 u_char *cp; 1468 u_int maclen, aadlen = 0, authlen = 0, block_size; 1469 struct sshenc *enc = NULL; 1470 struct sshmac *mac = NULL; 1471 struct sshcomp *comp = NULL; 1472 int r; 1473 1474 if (state->mux) 1475 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p); 1476 1477 *typep = SSH_MSG_NONE; 1478 1479 if (state->packet_discard) 1480 return 0; 1481 1482 if (state->newkeys[MODE_IN] != NULL) { 1483 enc = &state->newkeys[MODE_IN]->enc; 1484 mac = &state->newkeys[MODE_IN]->mac; 1485 comp = &state->newkeys[MODE_IN]->comp; 1486 /* disable mac for authenticated encryption */ 1487 if ((authlen = cipher_authlen(enc->cipher)) != 0) 1488 mac = NULL; 1489 } 1490 maclen = mac && mac->enabled ? mac->mac_len : 0; 1491 block_size = enc ? enc->block_size : 8; 1492 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0; 1493 1494 if (aadlen && state->packlen == 0) { 1495 if (cipher_get_length(state->receive_context, 1496 &state->packlen, state->p_read.seqnr, 1497 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0) 1498 return 0; 1499 if (state->packlen < 1 + 4 || 1500 state->packlen > PACKET_MAX_SIZE) { 1501 #ifdef PACKET_DEBUG 1502 sshbuf_dump(state->input, stderr); 1503 #endif 1504 logit("Bad packet length %u.", state->packlen); 1505 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0) 1506 return r; 1507 return SSH_ERR_CONN_CORRUPT; 1508 } 1509 sshbuf_reset(state->incoming_packet); 1510 } else if (state->packlen == 0) { 1511 /* 1512 * check if input size is less than the cipher block size, 1513 * decrypt first block and extract length of incoming packet 1514 */ 1515 if (sshbuf_len(state->input) < block_size) 1516 return 0; 1517 sshbuf_reset(state->incoming_packet); 1518 if ((r = sshbuf_reserve(state->incoming_packet, block_size, 1519 &cp)) != 0) 1520 goto out; 1521 if ((r = cipher_crypt(state->receive_context, 1522 state->p_send.seqnr, cp, sshbuf_ptr(state->input), 1523 block_size, 0, 0)) != 0) 1524 goto out; 1525 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet)); 1526 if (state->packlen < 1 + 4 || 1527 state->packlen > PACKET_MAX_SIZE) { 1528 #ifdef PACKET_DEBUG 1529 fprintf(stderr, "input: \n"); 1530 sshbuf_dump(state->input, stderr); 1531 fprintf(stderr, "incoming_packet: \n"); 1532 sshbuf_dump(state->incoming_packet, stderr); 1533 #endif 1534 logit("Bad packet length %u.", state->packlen); 1535 return ssh_packet_start_discard(ssh, enc, mac, 0, 1536 PACKET_MAX_SIZE); 1537 } 1538 if ((r = sshbuf_consume(state->input, block_size)) != 0) 1539 goto out; 1540 } 1541 DBG(debug("input: packet len %u", state->packlen+4)); 1542 1543 if (aadlen) { 1544 /* only the payload is encrypted */ 1545 need = state->packlen; 1546 } else { 1547 /* 1548 * the payload size and the payload are encrypted, but we 1549 * have a partial packet of block_size bytes 1550 */ 1551 need = 4 + state->packlen - block_size; 1552 } 1553 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d," 1554 " aadlen %d", block_size, need, maclen, authlen, aadlen)); 1555 if (need % block_size != 0) { 1556 logit("padding error: need %d block %d mod %d", 1557 need, block_size, need % block_size); 1558 return ssh_packet_start_discard(ssh, enc, mac, 0, 1559 PACKET_MAX_SIZE - block_size); 1560 } 1561 /* 1562 * check if the entire packet has been received and 1563 * decrypt into incoming_packet: 1564 * 'aadlen' bytes are unencrypted, but authenticated. 1565 * 'need' bytes are encrypted, followed by either 1566 * 'authlen' bytes of authentication tag or 1567 * 'maclen' bytes of message authentication code. 1568 */ 1569 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen) 1570 return 0; /* packet is incomplete */ 1571 #ifdef PACKET_DEBUG 1572 fprintf(stderr, "read_poll enc/full: "); 1573 sshbuf_dump(state->input, stderr); 1574 #endif 1575 /* EtM: check mac over encrypted input */ 1576 if (mac && mac->enabled && mac->etm) { 1577 if ((r = mac_check(mac, state->p_read.seqnr, 1578 sshbuf_ptr(state->input), aadlen + need, 1579 sshbuf_ptr(state->input) + aadlen + need + authlen, 1580 maclen)) != 0) { 1581 if (r == SSH_ERR_MAC_INVALID) 1582 logit("Corrupted MAC on input."); 1583 goto out; 1584 } 1585 } 1586 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need, 1587 &cp)) != 0) 1588 goto out; 1589 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp, 1590 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0) 1591 goto out; 1592 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0) 1593 goto out; 1594 if (mac && mac->enabled) { 1595 /* Not EtM: check MAC over cleartext */ 1596 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr, 1597 sshbuf_ptr(state->incoming_packet), 1598 sshbuf_len(state->incoming_packet), 1599 sshbuf_ptr(state->input), maclen)) != 0) { 1600 if (r != SSH_ERR_MAC_INVALID) 1601 goto out; 1602 logit("Corrupted MAC on input."); 1603 if (need + block_size > PACKET_MAX_SIZE) 1604 return SSH_ERR_INTERNAL_ERROR; 1605 return ssh_packet_start_discard(ssh, enc, mac, 1606 sshbuf_len(state->incoming_packet), 1607 PACKET_MAX_SIZE - need - block_size); 1608 } 1609 /* Remove MAC from input buffer */ 1610 DBG(debug("MAC #%d ok", state->p_read.seqnr)); 1611 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0) 1612 goto out; 1613 } 1614 if (seqnr_p != NULL) 1615 *seqnr_p = state->p_read.seqnr; 1616 if (++state->p_read.seqnr == 0) 1617 logit("incoming seqnr wraps around"); 1618 if (++state->p_read.packets == 0) 1619 if (!(ssh->compat & SSH_BUG_NOREKEY)) 1620 return SSH_ERR_NEED_REKEY; 1621 state->p_read.blocks += (state->packlen + 4) / block_size; 1622 state->p_read.bytes += state->packlen + 4; 1623 1624 /* get padlen */ 1625 padlen = sshbuf_ptr(state->incoming_packet)[4]; 1626 DBG(debug("input: padlen %d", padlen)); 1627 if (padlen < 4) { 1628 if ((r = sshpkt_disconnect(ssh, 1629 "Corrupted padlen %d on input.", padlen)) != 0 || 1630 (r = ssh_packet_write_wait(ssh)) != 0) 1631 return r; 1632 return SSH_ERR_CONN_CORRUPT; 1633 } 1634 1635 /* skip packet size + padlen, discard padding */ 1636 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 || 1637 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0)) 1638 goto out; 1639 1640 DBG(debug("input: len before de-compress %zd", 1641 sshbuf_len(state->incoming_packet))); 1642 if (comp && comp->enabled) { 1643 sshbuf_reset(state->compression_buffer); 1644 if ((r = uncompress_buffer(ssh, state->incoming_packet, 1645 state->compression_buffer)) != 0) 1646 goto out; 1647 sshbuf_reset(state->incoming_packet); 1648 if ((r = sshbuf_putb(state->incoming_packet, 1649 state->compression_buffer)) != 0) 1650 goto out; 1651 DBG(debug("input: len after de-compress %zd", 1652 sshbuf_len(state->incoming_packet))); 1653 } 1654 /* 1655 * get packet type, implies consume. 1656 * return length of payload (without type field) 1657 */ 1658 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0) 1659 goto out; 1660 if (ssh_packet_log_type(*typep)) 1661 debug3("receive packet: type %u", *typep); 1662 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) { 1663 if ((r = sshpkt_disconnect(ssh, 1664 "Invalid ssh2 packet type: %d", *typep)) != 0 || 1665 (r = ssh_packet_write_wait(ssh)) != 0) 1666 return r; 1667 return SSH_ERR_PROTOCOL_ERROR; 1668 } 1669 if (state->hook_in != NULL && 1670 (r = state->hook_in(ssh, state->incoming_packet, typep, 1671 state->hook_in_ctx)) != 0) 1672 return r; 1673 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side) 1674 r = ssh_packet_enable_delayed_compress(ssh); 1675 else 1676 r = 0; 1677 #ifdef PACKET_DEBUG 1678 fprintf(stderr, "read/plain[%d]:\r\n", *typep); 1679 sshbuf_dump(state->incoming_packet, stderr); 1680 #endif 1681 /* reset for next packet */ 1682 state->packlen = 0; 1683 1684 /* do we need to rekey? */ 1685 if (ssh_packet_need_rekeying(ssh, 0)) { 1686 debug3_f("rekex triggered"); 1687 if ((r = kex_start_rekex(ssh)) != 0) 1688 return r; 1689 } 1690 out: 1691 return r; 1692 } 1693 1694 int 1695 ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p) 1696 { 1697 struct session_state *state = ssh->state; 1698 u_int reason, seqnr; 1699 int r; 1700 u_char *msg; 1701 1702 for (;;) { 1703 msg = NULL; 1704 r = ssh_packet_read_poll2(ssh, typep, seqnr_p); 1705 if (r != 0) 1706 return r; 1707 if (*typep) { 1708 state->keep_alive_timeouts = 0; 1709 DBG(debug("received packet type %d", *typep)); 1710 } 1711 switch (*typep) { 1712 case SSH2_MSG_IGNORE: 1713 debug3("Received SSH2_MSG_IGNORE"); 1714 break; 1715 case SSH2_MSG_DEBUG: 1716 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 || 1717 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 || 1718 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) { 1719 free(msg); 1720 return r; 1721 } 1722 debug("Remote: %.900s", msg); 1723 free(msg); 1724 break; 1725 case SSH2_MSG_DISCONNECT: 1726 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 || 1727 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0) 1728 return r; 1729 /* Ignore normal client exit notifications */ 1730 do_log2(ssh->state->server_side && 1731 reason == SSH2_DISCONNECT_BY_APPLICATION ? 1732 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR, 1733 "Received disconnect from %s port %d:" 1734 "%u: %.400s", ssh_remote_ipaddr(ssh), 1735 ssh_remote_port(ssh), reason, msg); 1736 free(msg); 1737 return SSH_ERR_DISCONNECTED; 1738 case SSH2_MSG_UNIMPLEMENTED: 1739 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0) 1740 return r; 1741 debug("Received SSH2_MSG_UNIMPLEMENTED for %u", 1742 seqnr); 1743 break; 1744 default: 1745 return 0; 1746 } 1747 } 1748 } 1749 1750 /* 1751 * Buffers the given amount of input characters. This is intended to be used 1752 * together with packet_read_poll. 1753 */ 1754 1755 int 1756 ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len) 1757 { 1758 struct session_state *state = ssh->state; 1759 int r; 1760 1761 if (state->packet_discard) { 1762 state->keep_alive_timeouts = 0; /* ?? */ 1763 if (len >= state->packet_discard) { 1764 if ((r = ssh_packet_stop_discard(ssh)) != 0) 1765 return r; 1766 } 1767 state->packet_discard -= len; 1768 return 0; 1769 } 1770 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0) 1771 return r; 1772 1773 return 0; 1774 } 1775 1776 int 1777 ssh_packet_remaining(struct ssh *ssh) 1778 { 1779 return sshbuf_len(ssh->state->incoming_packet); 1780 } 1781 1782 /* 1783 * Sends a diagnostic message from the server to the client. This message 1784 * can be sent at any time (but not while constructing another message). The 1785 * message is printed immediately, but only if the client is being executed 1786 * in verbose mode. These messages are primarily intended to ease debugging 1787 * authentication problems. The length of the formatted message must not 1788 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait. 1789 */ 1790 void 1791 ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...) 1792 { 1793 char buf[1024]; 1794 va_list args; 1795 int r; 1796 1797 if ((ssh->compat & SSH_BUG_DEBUG)) 1798 return; 1799 1800 va_start(args, fmt); 1801 vsnprintf(buf, sizeof(buf), fmt, args); 1802 va_end(args); 1803 1804 debug3("sending debug message: %s", buf); 1805 1806 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 || 1807 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */ 1808 (r = sshpkt_put_cstring(ssh, buf)) != 0 || 1809 (r = sshpkt_put_cstring(ssh, "")) != 0 || 1810 (r = sshpkt_send(ssh)) != 0 || 1811 (r = ssh_packet_write_wait(ssh)) != 0) 1812 fatal_fr(r, "send DEBUG"); 1813 } 1814 1815 void 1816 sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l) 1817 { 1818 snprintf(s, l, "%.200s%s%s port %d", 1819 ssh->log_preamble ? ssh->log_preamble : "", 1820 ssh->log_preamble ? " " : "", 1821 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh)); 1822 } 1823 1824 /* 1825 * Pretty-print connection-terminating errors and exit. 1826 */ 1827 static void 1828 sshpkt_vfatal(struct ssh *ssh, int r, const char *fmt, va_list ap) 1829 { 1830 char *tag = NULL, remote_id[512]; 1831 int oerrno = errno; 1832 1833 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id)); 1834 1835 switch (r) { 1836 case SSH_ERR_CONN_CLOSED: 1837 ssh_packet_clear_keys(ssh); 1838 logdie("Connection closed by %s", remote_id); 1839 case SSH_ERR_CONN_TIMEOUT: 1840 ssh_packet_clear_keys(ssh); 1841 logdie("Connection %s %s timed out", 1842 ssh->state->server_side ? "from" : "to", remote_id); 1843 case SSH_ERR_DISCONNECTED: 1844 ssh_packet_clear_keys(ssh); 1845 logdie("Disconnected from %s", remote_id); 1846 case SSH_ERR_SYSTEM_ERROR: 1847 if (errno == ECONNRESET) { 1848 ssh_packet_clear_keys(ssh); 1849 logdie("Connection reset by %s", remote_id); 1850 } 1851 /* FALLTHROUGH */ 1852 case SSH_ERR_NO_CIPHER_ALG_MATCH: 1853 case SSH_ERR_NO_MAC_ALG_MATCH: 1854 case SSH_ERR_NO_COMPRESS_ALG_MATCH: 1855 case SSH_ERR_NO_KEX_ALG_MATCH: 1856 case SSH_ERR_NO_HOSTKEY_ALG_MATCH: 1857 if (ssh && ssh->kex && ssh->kex->failed_choice) { 1858 ssh_packet_clear_keys(ssh); 1859 errno = oerrno; 1860 logdie("Unable to negotiate with %s: %s. " 1861 "Their offer: %s", remote_id, ssh_err(r), 1862 ssh->kex->failed_choice); 1863 } 1864 /* FALLTHROUGH */ 1865 default: 1866 if (vasprintf(&tag, fmt, ap) == -1) { 1867 ssh_packet_clear_keys(ssh); 1868 logdie_f("could not allocate failure message"); 1869 } 1870 ssh_packet_clear_keys(ssh); 1871 errno = oerrno; 1872 logdie_r(r, "%s%sConnection %s %s", 1873 tag != NULL ? tag : "", tag != NULL ? ": " : "", 1874 ssh->state->server_side ? "from" : "to", remote_id); 1875 } 1876 } 1877 1878 void 1879 sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...) 1880 { 1881 va_list ap; 1882 1883 va_start(ap, fmt); 1884 sshpkt_vfatal(ssh, r, fmt, ap); 1885 /* NOTREACHED */ 1886 va_end(ap); 1887 logdie_f("should have exited"); 1888 } 1889 1890 /* 1891 * Logs the error plus constructs and sends a disconnect packet, closes the 1892 * connection, and exits. This function never returns. The error message 1893 * should not contain a newline. The length of the formatted message must 1894 * not exceed 1024 bytes. 1895 */ 1896 void 1897 ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...) 1898 { 1899 char buf[1024], remote_id[512]; 1900 va_list args; 1901 static int disconnecting = 0; 1902 int r; 1903 1904 if (disconnecting) /* Guard against recursive invocations. */ 1905 fatal("packet_disconnect called recursively."); 1906 disconnecting = 1; 1907 1908 /* 1909 * Format the message. Note that the caller must make sure the 1910 * message is of limited size. 1911 */ 1912 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id)); 1913 va_start(args, fmt); 1914 vsnprintf(buf, sizeof(buf), fmt, args); 1915 va_end(args); 1916 1917 /* Display the error locally */ 1918 logit("Disconnecting %s: %.100s", remote_id, buf); 1919 1920 /* 1921 * Send the disconnect message to the other side, and wait 1922 * for it to get sent. 1923 */ 1924 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0) 1925 sshpkt_fatal(ssh, r, "%s", __func__); 1926 1927 if ((r = ssh_packet_write_wait(ssh)) != 0) 1928 sshpkt_fatal(ssh, r, "%s", __func__); 1929 1930 /* Close the connection. */ 1931 ssh_packet_close(ssh); 1932 cleanup_exit(255); 1933 } 1934 1935 /* 1936 * Checks if there is any buffered output, and tries to write some of 1937 * the output. 1938 */ 1939 int 1940 ssh_packet_write_poll(struct ssh *ssh) 1941 { 1942 struct session_state *state = ssh->state; 1943 int len = sshbuf_len(state->output); 1944 int r; 1945 1946 if (len > 0) { 1947 len = write(state->connection_out, 1948 sshbuf_ptr(state->output), len); 1949 if (len == -1) { 1950 if (errno == EINTR || errno == EAGAIN) 1951 return 0; 1952 return SSH_ERR_SYSTEM_ERROR; 1953 } 1954 if (len == 0) 1955 return SSH_ERR_CONN_CLOSED; 1956 if ((r = sshbuf_consume(state->output, len)) != 0) 1957 return r; 1958 } 1959 return 0; 1960 } 1961 1962 /* 1963 * Calls packet_write_poll repeatedly until all pending output data has been 1964 * written. 1965 */ 1966 int 1967 ssh_packet_write_wait(struct ssh *ssh) 1968 { 1969 fd_set *setp; 1970 int ret, r, ms_remain = 0; 1971 struct timeval start, timeout, *timeoutp = NULL; 1972 struct session_state *state = ssh->state; 1973 1974 setp = calloc(howmany(state->connection_out + 1, 1975 NFDBITS), sizeof(fd_mask)); 1976 if (setp == NULL) 1977 return SSH_ERR_ALLOC_FAIL; 1978 if ((r = ssh_packet_write_poll(ssh)) != 0) { 1979 free(setp); 1980 return r; 1981 } 1982 while (ssh_packet_have_data_to_write(ssh)) { 1983 memset(setp, 0, howmany(state->connection_out + 1, 1984 NFDBITS) * sizeof(fd_mask)); 1985 FD_SET(state->connection_out, setp); 1986 1987 if (state->packet_timeout_ms > 0) { 1988 ms_remain = state->packet_timeout_ms; 1989 timeoutp = &timeout; 1990 } 1991 for (;;) { 1992 if (state->packet_timeout_ms > 0) { 1993 ms_to_timeval(&timeout, ms_remain); 1994 monotime_tv(&start); 1995 } 1996 if ((ret = select(state->connection_out + 1, 1997 NULL, setp, NULL, timeoutp)) >= 0) 1998 break; 1999 if (errno != EAGAIN && errno != EINTR) 2000 break; 2001 if (state->packet_timeout_ms <= 0) 2002 continue; 2003 ms_subtract_diff(&start, &ms_remain); 2004 if (ms_remain <= 0) { 2005 ret = 0; 2006 break; 2007 } 2008 } 2009 if (ret == 0) { 2010 free(setp); 2011 return SSH_ERR_CONN_TIMEOUT; 2012 } 2013 if ((r = ssh_packet_write_poll(ssh)) != 0) { 2014 free(setp); 2015 return r; 2016 } 2017 } 2018 free(setp); 2019 return 0; 2020 } 2021 2022 /* Returns true if there is buffered data to write to the connection. */ 2023 2024 int 2025 ssh_packet_have_data_to_write(struct ssh *ssh) 2026 { 2027 return sshbuf_len(ssh->state->output) != 0; 2028 } 2029 2030 /* Returns true if there is not too much data to write to the connection. */ 2031 2032 int 2033 ssh_packet_not_very_much_data_to_write(struct ssh *ssh) 2034 { 2035 if (ssh->state->interactive_mode) 2036 return sshbuf_len(ssh->state->output) < 16384; 2037 else 2038 return sshbuf_len(ssh->state->output) < 128 * 1024; 2039 } 2040 2041 void 2042 ssh_packet_set_tos(struct ssh *ssh, int tos) 2043 { 2044 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX) 2045 return; 2046 switch (ssh_packet_connection_af(ssh)) { 2047 case AF_INET: 2048 debug3_f("set IP_TOS 0x%02x", tos); 2049 if (setsockopt(ssh->state->connection_in, 2050 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) == -1) 2051 error("setsockopt IP_TOS %d: %.100s:", 2052 tos, strerror(errno)); 2053 break; 2054 case AF_INET6: 2055 debug3_f("set IPV6_TCLASS 0x%02x", tos); 2056 if (setsockopt(ssh->state->connection_in, 2057 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) == -1) 2058 error("setsockopt IPV6_TCLASS %d: %.100s:", 2059 tos, strerror(errno)); 2060 break; 2061 } 2062 } 2063 2064 /* Informs that the current session is interactive. Sets IP flags for that. */ 2065 2066 void 2067 ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk) 2068 { 2069 struct session_state *state = ssh->state; 2070 2071 if (state->set_interactive_called) 2072 return; 2073 state->set_interactive_called = 1; 2074 2075 /* Record that we are in interactive mode. */ 2076 state->interactive_mode = interactive; 2077 2078 /* Only set socket options if using a socket. */ 2079 if (!ssh_packet_connection_is_on_socket(ssh)) 2080 return; 2081 set_nodelay(state->connection_in); 2082 ssh_packet_set_tos(ssh, interactive ? qos_interactive : 2083 qos_bulk); 2084 } 2085 2086 /* Returns true if the current connection is interactive. */ 2087 2088 int 2089 ssh_packet_is_interactive(struct ssh *ssh) 2090 { 2091 return ssh->state->interactive_mode; 2092 } 2093 2094 int 2095 ssh_packet_set_maxsize(struct ssh *ssh, u_int s) 2096 { 2097 struct session_state *state = ssh->state; 2098 2099 if (state->set_maxsize_called) { 2100 logit("packet_set_maxsize: called twice: old %d new %d", 2101 state->max_packet_size, s); 2102 return -1; 2103 } 2104 if (s < 4 * 1024 || s > 1024 * 1024) { 2105 logit("packet_set_maxsize: bad size %d", s); 2106 return -1; 2107 } 2108 state->set_maxsize_called = 1; 2109 debug("packet_set_maxsize: setting to %d", s); 2110 state->max_packet_size = s; 2111 return s; 2112 } 2113 2114 int 2115 ssh_packet_inc_alive_timeouts(struct ssh *ssh) 2116 { 2117 return ++ssh->state->keep_alive_timeouts; 2118 } 2119 2120 void 2121 ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka) 2122 { 2123 ssh->state->keep_alive_timeouts = ka; 2124 } 2125 2126 u_int 2127 ssh_packet_get_maxsize(struct ssh *ssh) 2128 { 2129 return ssh->state->max_packet_size; 2130 } 2131 2132 void 2133 ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds) 2134 { 2135 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes, 2136 (unsigned int)seconds); 2137 ssh->state->rekey_limit = bytes; 2138 ssh->state->rekey_interval = seconds; 2139 } 2140 2141 time_t 2142 ssh_packet_get_rekey_timeout(struct ssh *ssh) 2143 { 2144 time_t seconds; 2145 2146 seconds = ssh->state->rekey_time + ssh->state->rekey_interval - 2147 monotime(); 2148 return (seconds <= 0 ? 1 : seconds); 2149 } 2150 2151 void 2152 ssh_packet_set_server(struct ssh *ssh) 2153 { 2154 ssh->state->server_side = 1; 2155 ssh->kex->server = 1; /* XXX unify? */ 2156 } 2157 2158 void 2159 ssh_packet_set_authenticated(struct ssh *ssh) 2160 { 2161 ssh->state->after_authentication = 1; 2162 } 2163 2164 void * 2165 ssh_packet_get_input(struct ssh *ssh) 2166 { 2167 return (void *)ssh->state->input; 2168 } 2169 2170 void * 2171 ssh_packet_get_output(struct ssh *ssh) 2172 { 2173 return (void *)ssh->state->output; 2174 } 2175 2176 /* Reset after_authentication and reset compression in post-auth privsep */ 2177 static int 2178 ssh_packet_set_postauth(struct ssh *ssh) 2179 { 2180 int r; 2181 2182 debug_f("called"); 2183 /* This was set in net child, but is not visible in user child */ 2184 ssh->state->after_authentication = 1; 2185 ssh->state->rekeying = 0; 2186 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0) 2187 return r; 2188 return 0; 2189 } 2190 2191 /* Packet state (de-)serialization for privsep */ 2192 2193 /* turn kex into a blob for packet state serialization */ 2194 static int 2195 kex_to_blob(struct sshbuf *m, struct kex *kex) 2196 { 2197 int r; 2198 2199 if ((r = sshbuf_put_string(m, kex->session_id, 2200 kex->session_id_len)) != 0 || 2201 (r = sshbuf_put_u32(m, kex->we_need)) != 0 || 2202 (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 || 2203 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 || 2204 (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 || 2205 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 || 2206 (r = sshbuf_put_stringb(m, kex->my)) != 0 || 2207 (r = sshbuf_put_stringb(m, kex->peer)) != 0 || 2208 (r = sshbuf_put_stringb(m, kex->client_version)) != 0 || 2209 (r = sshbuf_put_stringb(m, kex->server_version)) != 0 || 2210 (r = sshbuf_put_u32(m, kex->flags)) != 0) 2211 return r; 2212 return 0; 2213 } 2214 2215 /* turn key exchange results into a blob for packet state serialization */ 2216 static int 2217 newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode) 2218 { 2219 struct sshbuf *b; 2220 struct sshcipher_ctx *cc; 2221 struct sshcomp *comp; 2222 struct sshenc *enc; 2223 struct sshmac *mac; 2224 struct newkeys *newkey; 2225 int r; 2226 2227 if ((newkey = ssh->state->newkeys[mode]) == NULL) 2228 return SSH_ERR_INTERNAL_ERROR; 2229 enc = &newkey->enc; 2230 mac = &newkey->mac; 2231 comp = &newkey->comp; 2232 cc = (mode == MODE_OUT) ? ssh->state->send_context : 2233 ssh->state->receive_context; 2234 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0) 2235 return r; 2236 if ((b = sshbuf_new()) == NULL) 2237 return SSH_ERR_ALLOC_FAIL; 2238 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 || 2239 (r = sshbuf_put_u32(b, enc->enabled)) != 0 || 2240 (r = sshbuf_put_u32(b, enc->block_size)) != 0 || 2241 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 || 2242 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0) 2243 goto out; 2244 if (cipher_authlen(enc->cipher) == 0) { 2245 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 || 2246 (r = sshbuf_put_u32(b, mac->enabled)) != 0 || 2247 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0) 2248 goto out; 2249 } 2250 if ((r = sshbuf_put_u32(b, comp->type)) != 0 || 2251 (r = sshbuf_put_cstring(b, comp->name)) != 0) 2252 goto out; 2253 r = sshbuf_put_stringb(m, b); 2254 out: 2255 sshbuf_free(b); 2256 return r; 2257 } 2258 2259 /* serialize packet state into a blob */ 2260 int 2261 ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m) 2262 { 2263 struct session_state *state = ssh->state; 2264 int r; 2265 2266 if ((r = kex_to_blob(m, ssh->kex)) != 0 || 2267 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 || 2268 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 || 2269 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 || 2270 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 || 2271 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 || 2272 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 || 2273 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 || 2274 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 || 2275 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 || 2276 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 || 2277 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 || 2278 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 || 2279 (r = sshbuf_put_stringb(m, state->input)) != 0 || 2280 (r = sshbuf_put_stringb(m, state->output)) != 0) 2281 return r; 2282 2283 return 0; 2284 } 2285 2286 /* restore key exchange results from blob for packet state de-serialization */ 2287 static int 2288 newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode) 2289 { 2290 struct sshbuf *b = NULL; 2291 struct sshcomp *comp; 2292 struct sshenc *enc; 2293 struct sshmac *mac; 2294 struct newkeys *newkey = NULL; 2295 size_t keylen, ivlen, maclen; 2296 int r; 2297 2298 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) { 2299 r = SSH_ERR_ALLOC_FAIL; 2300 goto out; 2301 } 2302 if ((r = sshbuf_froms(m, &b)) != 0) 2303 goto out; 2304 #ifdef DEBUG_PK 2305 sshbuf_dump(b, stderr); 2306 #endif 2307 enc = &newkey->enc; 2308 mac = &newkey->mac; 2309 comp = &newkey->comp; 2310 2311 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 || 2312 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 || 2313 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 || 2314 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 || 2315 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0) 2316 goto out; 2317 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) { 2318 r = SSH_ERR_INVALID_FORMAT; 2319 goto out; 2320 } 2321 if (cipher_authlen(enc->cipher) == 0) { 2322 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0) 2323 goto out; 2324 if ((r = mac_setup(mac, mac->name)) != 0) 2325 goto out; 2326 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 || 2327 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0) 2328 goto out; 2329 if (maclen > mac->key_len) { 2330 r = SSH_ERR_INVALID_FORMAT; 2331 goto out; 2332 } 2333 mac->key_len = maclen; 2334 } 2335 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 || 2336 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0) 2337 goto out; 2338 if (sshbuf_len(b) != 0) { 2339 r = SSH_ERR_INVALID_FORMAT; 2340 goto out; 2341 } 2342 enc->key_len = keylen; 2343 enc->iv_len = ivlen; 2344 ssh->kex->newkeys[mode] = newkey; 2345 newkey = NULL; 2346 r = 0; 2347 out: 2348 free(newkey); 2349 sshbuf_free(b); 2350 return r; 2351 } 2352 2353 /* restore kex from blob for packet state de-serialization */ 2354 static int 2355 kex_from_blob(struct sshbuf *m, struct kex **kexp) 2356 { 2357 struct kex *kex; 2358 int r; 2359 2360 if ((kex = kex_new()) == NULL) 2361 return SSH_ERR_ALLOC_FAIL; 2362 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 || 2363 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 || 2364 (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 || 2365 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 || 2366 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 || 2367 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 || 2368 (r = sshbuf_get_stringb(m, kex->my)) != 0 || 2369 (r = sshbuf_get_stringb(m, kex->peer)) != 0 || 2370 (r = sshbuf_get_stringb(m, kex->client_version)) != 0 || 2371 (r = sshbuf_get_stringb(m, kex->server_version)) != 0 || 2372 (r = sshbuf_get_u32(m, &kex->flags)) != 0) 2373 goto out; 2374 kex->server = 1; 2375 kex->done = 1; 2376 r = 0; 2377 out: 2378 if (r != 0 || kexp == NULL) { 2379 kex_free(kex); 2380 if (kexp != NULL) 2381 *kexp = NULL; 2382 } else { 2383 kex_free(*kexp); 2384 *kexp = kex; 2385 } 2386 return r; 2387 } 2388 2389 /* 2390 * Restore packet state from content of blob 'm' (de-serialization). 2391 * Note that 'm' will be partially consumed on parsing or any other errors. 2392 */ 2393 int 2394 ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m) 2395 { 2396 struct session_state *state = ssh->state; 2397 const u_char *input, *output; 2398 size_t ilen, olen; 2399 int r; 2400 2401 if ((r = kex_from_blob(m, &ssh->kex)) != 0 || 2402 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 || 2403 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 || 2404 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 || 2405 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 || 2406 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 || 2407 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 || 2408 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 || 2409 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 || 2410 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 || 2411 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 || 2412 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 || 2413 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0) 2414 return r; 2415 /* 2416 * We set the time here so that in post-auth privsep child we 2417 * count from the completion of the authentication. 2418 */ 2419 state->rekey_time = monotime(); 2420 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */ 2421 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 || 2422 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0) 2423 return r; 2424 2425 if ((r = ssh_packet_set_postauth(ssh)) != 0) 2426 return r; 2427 2428 sshbuf_reset(state->input); 2429 sshbuf_reset(state->output); 2430 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 || 2431 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 || 2432 (r = sshbuf_put(state->input, input, ilen)) != 0 || 2433 (r = sshbuf_put(state->output, output, olen)) != 0) 2434 return r; 2435 2436 if (sshbuf_len(m)) 2437 return SSH_ERR_INVALID_FORMAT; 2438 debug3_f("done"); 2439 return 0; 2440 } 2441 2442 /* NEW API */ 2443 2444 /* put data to the outgoing packet */ 2445 2446 int 2447 sshpkt_put(struct ssh *ssh, const void *v, size_t len) 2448 { 2449 return sshbuf_put(ssh->state->outgoing_packet, v, len); 2450 } 2451 2452 int 2453 sshpkt_putb(struct ssh *ssh, const struct sshbuf *b) 2454 { 2455 return sshbuf_putb(ssh->state->outgoing_packet, b); 2456 } 2457 2458 int 2459 sshpkt_put_u8(struct ssh *ssh, u_char val) 2460 { 2461 return sshbuf_put_u8(ssh->state->outgoing_packet, val); 2462 } 2463 2464 int 2465 sshpkt_put_u32(struct ssh *ssh, u_int32_t val) 2466 { 2467 return sshbuf_put_u32(ssh->state->outgoing_packet, val); 2468 } 2469 2470 int 2471 sshpkt_put_u64(struct ssh *ssh, u_int64_t val) 2472 { 2473 return sshbuf_put_u64(ssh->state->outgoing_packet, val); 2474 } 2475 2476 int 2477 sshpkt_put_string(struct ssh *ssh, const void *v, size_t len) 2478 { 2479 return sshbuf_put_string(ssh->state->outgoing_packet, v, len); 2480 } 2481 2482 int 2483 sshpkt_put_cstring(struct ssh *ssh, const void *v) 2484 { 2485 return sshbuf_put_cstring(ssh->state->outgoing_packet, v); 2486 } 2487 2488 int 2489 sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v) 2490 { 2491 return sshbuf_put_stringb(ssh->state->outgoing_packet, v); 2492 } 2493 2494 #ifdef WITH_OPENSSL 2495 int 2496 sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g) 2497 { 2498 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g); 2499 } 2500 2501 2502 int 2503 sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v) 2504 { 2505 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v); 2506 } 2507 #endif /* WITH_OPENSSL */ 2508 2509 /* fetch data from the incoming packet */ 2510 2511 int 2512 sshpkt_get(struct ssh *ssh, void *valp, size_t len) 2513 { 2514 return sshbuf_get(ssh->state->incoming_packet, valp, len); 2515 } 2516 2517 int 2518 sshpkt_get_u8(struct ssh *ssh, u_char *valp) 2519 { 2520 return sshbuf_get_u8(ssh->state->incoming_packet, valp); 2521 } 2522 2523 int 2524 sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp) 2525 { 2526 return sshbuf_get_u32(ssh->state->incoming_packet, valp); 2527 } 2528 2529 int 2530 sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp) 2531 { 2532 return sshbuf_get_u64(ssh->state->incoming_packet, valp); 2533 } 2534 2535 int 2536 sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp) 2537 { 2538 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp); 2539 } 2540 2541 int 2542 sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp) 2543 { 2544 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp); 2545 } 2546 2547 int 2548 sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp) 2549 { 2550 return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp); 2551 } 2552 2553 int 2554 sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp) 2555 { 2556 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp); 2557 } 2558 2559 int 2560 sshpkt_getb_froms(struct ssh *ssh, struct sshbuf **valp) 2561 { 2562 return sshbuf_froms(ssh->state->incoming_packet, valp); 2563 } 2564 2565 #ifdef WITH_OPENSSL 2566 int 2567 sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g) 2568 { 2569 return sshbuf_get_ec(ssh->state->incoming_packet, v, g); 2570 } 2571 2572 int 2573 sshpkt_get_bignum2(struct ssh *ssh, BIGNUM **valp) 2574 { 2575 return sshbuf_get_bignum2(ssh->state->incoming_packet, valp); 2576 } 2577 #endif /* WITH_OPENSSL */ 2578 2579 int 2580 sshpkt_get_end(struct ssh *ssh) 2581 { 2582 if (sshbuf_len(ssh->state->incoming_packet) > 0) 2583 return SSH_ERR_UNEXPECTED_TRAILING_DATA; 2584 return 0; 2585 } 2586 2587 const u_char * 2588 sshpkt_ptr(struct ssh *ssh, size_t *lenp) 2589 { 2590 if (lenp != NULL) 2591 *lenp = sshbuf_len(ssh->state->incoming_packet); 2592 return sshbuf_ptr(ssh->state->incoming_packet); 2593 } 2594 2595 /* start a new packet */ 2596 2597 int 2598 sshpkt_start(struct ssh *ssh, u_char type) 2599 { 2600 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */ 2601 2602 DBG(debug("packet_start[%d]", type)); 2603 memset(buf, 0, sizeof(buf)); 2604 buf[sizeof(buf) - 1] = type; 2605 sshbuf_reset(ssh->state->outgoing_packet); 2606 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf)); 2607 } 2608 2609 static int 2610 ssh_packet_send_mux(struct ssh *ssh) 2611 { 2612 struct session_state *state = ssh->state; 2613 u_char type, *cp; 2614 size_t len; 2615 int r; 2616 2617 if (ssh->kex) 2618 return SSH_ERR_INTERNAL_ERROR; 2619 len = sshbuf_len(state->outgoing_packet); 2620 if (len < 6) 2621 return SSH_ERR_INTERNAL_ERROR; 2622 cp = sshbuf_mutable_ptr(state->outgoing_packet); 2623 type = cp[5]; 2624 if (ssh_packet_log_type(type)) 2625 debug3_f("type %u", type); 2626 /* drop everything, but the connection protocol */ 2627 if (type >= SSH2_MSG_CONNECTION_MIN && 2628 type <= SSH2_MSG_CONNECTION_MAX) { 2629 POKE_U32(cp, len - 4); 2630 if ((r = sshbuf_putb(state->output, 2631 state->outgoing_packet)) != 0) 2632 return r; 2633 /* sshbuf_dump(state->output, stderr); */ 2634 } 2635 sshbuf_reset(state->outgoing_packet); 2636 return 0; 2637 } 2638 2639 /* 2640 * 9.2. Ignored Data Message 2641 * 2642 * byte SSH_MSG_IGNORE 2643 * string data 2644 * 2645 * All implementations MUST understand (and ignore) this message at any 2646 * time (after receiving the protocol version). No implementation is 2647 * required to send them. This message can be used as an additional 2648 * protection measure against advanced traffic analysis techniques. 2649 */ 2650 int 2651 sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes) 2652 { 2653 u_int32_t rnd = 0; 2654 int r; 2655 u_int i; 2656 2657 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 || 2658 (r = sshpkt_put_u32(ssh, nbytes)) != 0) 2659 return r; 2660 for (i = 0; i < nbytes; i++) { 2661 if (i % 4 == 0) 2662 rnd = arc4random(); 2663 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0) 2664 return r; 2665 rnd >>= 8; 2666 } 2667 return 0; 2668 } 2669 2670 /* send it */ 2671 2672 int 2673 sshpkt_send(struct ssh *ssh) 2674 { 2675 if (ssh->state && ssh->state->mux) 2676 return ssh_packet_send_mux(ssh); 2677 return ssh_packet_send2(ssh); 2678 } 2679 2680 int 2681 sshpkt_disconnect(struct ssh *ssh, const char *fmt,...) 2682 { 2683 char buf[1024]; 2684 va_list args; 2685 int r; 2686 2687 va_start(args, fmt); 2688 vsnprintf(buf, sizeof(buf), fmt, args); 2689 va_end(args); 2690 2691 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 || 2692 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 || 2693 (r = sshpkt_put_cstring(ssh, buf)) != 0 || 2694 (r = sshpkt_put_cstring(ssh, "")) != 0 || 2695 (r = sshpkt_send(ssh)) != 0) 2696 return r; 2697 return 0; 2698 } 2699 2700 /* roundup current message to pad bytes */ 2701 int 2702 sshpkt_add_padding(struct ssh *ssh, u_char pad) 2703 { 2704 ssh->state->extra_pad = pad; 2705 return 0; 2706 } 2707