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