]> andersk Git - openssh.git/blame - packet.c
- jmc@cvs.openbsd.org 2003/06/10 09:12:11
[openssh.git] / packet.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * This file contains code implementing the packet protocol and communication
6 * with the other side. This same code is used both on client and server side.
7e7327a1 7 *
bcbf86ec 8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
7e7327a1 15 * SSH2 packet format added by Markus Friedl.
a96070d4 16 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
7e7327a1 26 *
bcbf86ec 27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 37 */
8efc0c15 38
39#include "includes.h"
0608f8a7 40RCSID("$OpenBSD: packet.c,v 1.106 2003/04/08 20:21:29 itojun Exp $");
ffd7b36b 41
2f5b2528 42#include "openbsd-compat/sys-queue.h"
8efc0c15 43
44#include "xmalloc.h"
45#include "buffer.h"
46#include "packet.h"
47#include "bufaux.h"
8efc0c15 48#include "crc32.h"
8efc0c15 49#include "getput.h"
50
51#include "compress.h"
52#include "deattack.h"
a5efa1bb 53#include "channels.h"
8efc0c15 54
7e7327a1 55#include "compat.h"
42f11eb2 56#include "ssh1.h"
7e7327a1 57#include "ssh2.h"
58
94ec8c6b 59#include "cipher.h"
7e7327a1 60#include "kex.h"
b2552997 61#include "mac.h"
42f11eb2 62#include "log.h"
63#include "canohost.h"
2ac91be1 64#include "misc.h"
9459414c 65#include "ssh.h"
7e7327a1 66
67#ifdef PACKET_DEBUG
68#define DBG(x) x
69#else
70#define DBG(x)
71#endif
72
aa3378df 73/*
74 * This variable contains the file descriptors used for communicating with
75 * the other side. connection_in is used for reading; connection_out for
76 * writing. These can be the same descriptor, in which case it is assumed to
77 * be a socket.
78 */
8efc0c15 79static int connection_in = -1;
80static int connection_out = -1;
81
8efc0c15 82/* Protocol flags for the remote side. */
1e3b8b07 83static u_int remote_protocol_flags = 0;
8efc0c15 84
85/* Encryption context for receiving data. This is only used for decryption. */
86static CipherContext receive_context;
5260325f 87
88/* Encryption context for sending data. This is only used for encryption. */
8efc0c15 89static CipherContext send_context;
90
91/* Buffer for raw input data from the socket. */
e050d348 92Buffer input;
8efc0c15 93
94/* Buffer for raw output data going to the socket. */
e050d348 95Buffer output;
8efc0c15 96
97/* Buffer for the partial outgoing packet being constructed. */
98static Buffer outgoing_packet;
99
100/* Buffer for the incoming packet currently being processed. */
101static Buffer incoming_packet;
102
103/* Scratch buffer for packet compression/decompression. */
104static Buffer compression_buffer;
6ba22c93 105static int compression_buffer_ready = 0;
8efc0c15 106
107/* Flag indicating whether packet compression/decompression is enabled. */
108static int packet_compression = 0;
109
9d6b7add 110/* default maximum packet size */
111int max_packet_size = 32768;
112
8efc0c15 113/* Flag indicating whether this module has been initialized. */
114static int initialized = 0;
115
116/* Set to true if the connection is interactive. */
117static int interactive_mode = 0;
118
7e7327a1 119/* Session key information for Encryption and MAC */
d1ac6175 120Newkeys *newkeys[MODE_MAX];
ffd7b36b 121static struct packet_state {
122 u_int32_t seqnr;
123 u_int32_t packets;
124 u_int64_t blocks;
125} p_read, p_send;
126
127static u_int64_t max_blocks_in, max_blocks_out;
128static u_int32_t rekey_limit;
7e7327a1 129
9459414c 130/* Session key for protocol v1 */
131static u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
132static u_int ssh1_keylen;
133
b4b701be 134/* roundup current message to extra_pad bytes */
135static u_char extra_pad = 0;
136
ffd7b36b 137struct packet {
138 TAILQ_ENTRY(packet) next;
139 u_char type;
140 Buffer payload;
141};
142TAILQ_HEAD(, packet) outgoing;
143
aa3378df 144/*
145 * Sets the descriptors used for communication. Disables encryption until
146 * packet_set_encryption_key is called.
147 */
8efc0c15 148void
149packet_set_connection(int fd_in, int fd_out)
150{
94ec8c6b 151 Cipher *none = cipher_by_name("none");
e1feb9bf 152
94ec8c6b 153 if (none == NULL)
154 fatal("packet_set_connection: cannot load cipher 'none'");
5260325f 155 connection_in = fd_in;
156 connection_out = fd_out;
3ee832e5 157 cipher_init(&send_context, none, "", 0, NULL, 0, CIPHER_ENCRYPT);
158 cipher_init(&receive_context, none, "", 0, NULL, 0, CIPHER_DECRYPT);
08dcb5d7 159 newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
5260325f 160 if (!initialized) {
161 initialized = 1;
162 buffer_init(&input);
163 buffer_init(&output);
164 buffer_init(&outgoing_packet);
165 buffer_init(&incoming_packet);
ffd7b36b 166 TAILQ_INIT(&outgoing);
5260325f 167 }
168 /* Kludge: arrange the close function to be called from fatal(). */
169 fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
8efc0c15 170}
171
48e671d5 172/* Returns 1 if remote host is connected via socket, 0 if not. */
173
174int
d5bb9418 175packet_connection_is_on_socket(void)
48e671d5 176{
177 struct sockaddr_storage from, to;
178 socklen_t fromlen, tolen;
179
180 /* filedescriptors in and out are the same, so it's a socket */
181 if (connection_in == connection_out)
182 return 1;
183 fromlen = sizeof(from);
184 memset(&from, 0, sizeof(from));
9bc5ddfe 185 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
48e671d5 186 return 0;
187 tolen = sizeof(to);
188 memset(&to, 0, sizeof(to));
9bc5ddfe 189 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
48e671d5 190 return 0;
191 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
192 return 0;
193 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
194 return 0;
195 return 1;
196}
197
762715ce 198/*
e050d348 199 * Exports an IV from the CipherContext required to export the key
200 * state back from the unprivileged child to the privileged parent
201 * process.
202 */
203
204void
205packet_get_keyiv(int mode, u_char *iv, u_int len)
206{
207 CipherContext *cc;
208
209 if (mode == MODE_OUT)
210 cc = &send_context;
211 else
212 cc = &receive_context;
213
214 cipher_get_keyiv(cc, iv, len);
215}
216
217int
218packet_get_keycontext(int mode, u_char *dat)
219{
220 CipherContext *cc;
762715ce 221
e050d348 222 if (mode == MODE_OUT)
223 cc = &send_context;
224 else
225 cc = &receive_context;
226
227 return (cipher_get_keycontext(cc, dat));
228}
229
230void
231packet_set_keycontext(int mode, u_char *dat)
232{
233 CipherContext *cc;
762715ce 234
e050d348 235 if (mode == MODE_OUT)
236 cc = &send_context;
237 else
238 cc = &receive_context;
239
240 cipher_set_keycontext(cc, dat);
241}
242
243int
244packet_get_keyiv_len(int mode)
245{
246 CipherContext *cc;
247
248 if (mode == MODE_OUT)
249 cc = &send_context;
250 else
251 cc = &receive_context;
252
253 return (cipher_get_keyiv_len(cc));
254}
255void
256packet_set_iv(int mode, u_char *dat)
257{
258 CipherContext *cc;
259
260 if (mode == MODE_OUT)
261 cc = &send_context;
262 else
263 cc = &receive_context;
264
265 cipher_set_keyiv(cc, dat);
266}
267int
268packet_get_ssh1_cipher()
269{
270 return (cipher_get_number(receive_context.cipher));
271}
272
ffd7b36b 273void
274packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets)
e050d348 275{
ffd7b36b 276 struct packet_state *state;
277
278 state = (mode == MODE_IN) ? &p_read : &p_send;
279 *seqnr = state->seqnr;
280 *blocks = state->blocks;
281 *packets = state->packets;
e050d348 282}
283
284void
ffd7b36b 285packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets)
e050d348 286{
ffd7b36b 287 struct packet_state *state;
288
289 state = (mode == MODE_IN) ? &p_read : &p_send;
290 state->seqnr = seqnr;
291 state->blocks = blocks;
292 state->packets = packets;
e050d348 293}
294
48e671d5 295/* returns 1 if connection is via ipv4 */
296
297int
d5bb9418 298packet_connection_is_ipv4(void)
48e671d5 299{
300 struct sockaddr_storage to;
d45317d8 301 socklen_t tolen = sizeof(to);
48e671d5 302
303 memset(&to, 0, sizeof(to));
304 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
305 return 0;
782e2103 306 if (to.ss_family == AF_INET)
307 return 1;
308#ifdef IPV4_IN_IPV6
309 if (to.ss_family == AF_INET6 &&
310 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
311 return 1;
312#endif
313 return 0;
48e671d5 314}
315
8efc0c15 316/* Sets the connection into non-blocking mode. */
317
318void
d5bb9418 319packet_set_nonblocking(void)
8efc0c15 320{
5260325f 321 /* Set the socket into non-blocking mode. */
322 if (fcntl(connection_in, F_SETFL, O_NONBLOCK) < 0)
323 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
8efc0c15 324
5260325f 325 if (connection_out != connection_in) {
326 if (fcntl(connection_out, F_SETFL, O_NONBLOCK) < 0)
327 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
328 }
8efc0c15 329}
330
331/* Returns the socket used for reading. */
332
333int
d5bb9418 334packet_get_connection_in(void)
8efc0c15 335{
5260325f 336 return connection_in;
8efc0c15 337}
338
339/* Returns the descriptor used for writing. */
340
341int
d5bb9418 342packet_get_connection_out(void)
8efc0c15 343{
5260325f 344 return connection_out;
8efc0c15 345}
346
347/* Closes the connection and clears and frees internal data structures. */
348
349void
d5bb9418 350packet_close(void)
8efc0c15 351{
5260325f 352 if (!initialized)
353 return;
354 initialized = 0;
355 if (connection_in == connection_out) {
356 shutdown(connection_out, SHUT_RDWR);
357 close(connection_out);
358 } else {
359 close(connection_in);
360 close(connection_out);
361 }
362 buffer_free(&input);
363 buffer_free(&output);
364 buffer_free(&outgoing_packet);
365 buffer_free(&incoming_packet);
6ba22c93 366 if (compression_buffer_ready) {
5260325f 367 buffer_free(&compression_buffer);
368 buffer_compress_uninit();
369 }
3ee832e5 370 cipher_cleanup(&send_context);
371 cipher_cleanup(&receive_context);
8efc0c15 372}
373
374/* Sets remote side protocol flags. */
375
376void
1e3b8b07 377packet_set_protocol_flags(u_int protocol_flags)
8efc0c15 378{
5260325f 379 remote_protocol_flags = protocol_flags;
8efc0c15 380}
381
382/* Returns the remote protocol flags set earlier by the above function. */
383
1e3b8b07 384u_int
d5bb9418 385packet_get_protocol_flags(void)
8efc0c15 386{
5260325f 387 return remote_protocol_flags;
8efc0c15 388}
389
aa3378df 390/*
391 * Starts packet compression from the next packet on in both directions.
392 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
393 */
8efc0c15 394
396c147e 395static void
396packet_init_compression(void)
6ba22c93 397{
398 if (compression_buffer_ready == 1)
399 return;
400 compression_buffer_ready = 1;
401 buffer_init(&compression_buffer);
402}
403
8efc0c15 404void
405packet_start_compression(int level)
406{
08dcb5d7 407 if (packet_compression && !compat20)
5260325f 408 fatal("Compression already enabled.");
409 packet_compression = 1;
6ba22c93 410 packet_init_compression();
411 buffer_compress_init_send(level);
412 buffer_compress_init_recv();
8efc0c15 413}
414
aa3378df 415/*
416 * Causes any further packets to be encrypted using the given key. The same
417 * key is used for both sending and reception. However, both directions are
418 * encrypted independently of each other.
419 */
9459414c 420
8efc0c15 421void
1e3b8b07 422packet_set_encryption_key(const u_char *key, u_int keylen,
94ec8c6b 423 int number)
8efc0c15 424{
94ec8c6b 425 Cipher *cipher = cipher_by_number(number);
e1feb9bf 426
94ec8c6b 427 if (cipher == NULL)
428 fatal("packet_set_encryption_key: unknown cipher number %d", number);
7e7327a1 429 if (keylen < 20)
94ec8c6b 430 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
9459414c 431 if (keylen > SSH_SESSION_KEY_LENGTH)
432 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
433 memcpy(ssh1_key, key, keylen);
434 ssh1_keylen = keylen;
3ee832e5 435 cipher_init(&send_context, cipher, key, keylen, NULL, 0, CIPHER_ENCRYPT);
436 cipher_init(&receive_context, cipher, key, keylen, NULL, 0, CIPHER_DECRYPT);
8efc0c15 437}
438
9459414c 439u_int
440packet_get_encryption_key(u_char *key)
441{
442 if (key == NULL)
443 return (ssh1_keylen);
444 memcpy(key, ssh1_key, ssh1_keylen);
445 return (ssh1_keylen);
446}
447
08dcb5d7 448/* Start constructing a packet to send. */
8efc0c15 449void
08dcb5d7 450packet_start(u_char type)
8efc0c15 451{
08dcb5d7 452 u_char buf[9];
453 int len;
7e7327a1 454
12bf85ed 455 DBG(debug("packet_start[%d]", type));
08dcb5d7 456 len = compat20 ? 6 : 9;
457 memset(buf, 0, len - 1);
458 buf[len - 1] = type;
459 buffer_clear(&outgoing_packet);
460 buffer_append(&outgoing_packet, buf, len);
7e7327a1 461}
462
08dcb5d7 463/* Append payload. */
8efc0c15 464void
465packet_put_char(int value)
466{
5260325f 467 char ch = value;
e1feb9bf 468
5260325f 469 buffer_append(&outgoing_packet, &ch, 1);
8efc0c15 470}
8efc0c15 471void
1e3b8b07 472packet_put_int(u_int value)
8efc0c15 473{
5260325f 474 buffer_put_int(&outgoing_packet, value);
8efc0c15 475}
8efc0c15 476void
6c0fa2b1 477packet_put_string(const void *buf, u_int len)
8efc0c15 478{
5260325f 479 buffer_put_string(&outgoing_packet, buf, len);
8efc0c15 480}
7e7327a1 481void
482packet_put_cstring(const char *str)
483{
449c5ba5 484 buffer_put_cstring(&outgoing_packet, str);
7e7327a1 485}
7e7327a1 486void
6c0fa2b1 487packet_put_raw(const void *buf, u_int len)
7e7327a1 488{
489 buffer_append(&outgoing_packet, buf, len);
490}
8efc0c15 491void
5260325f 492packet_put_bignum(BIGNUM * value)
8efc0c15 493{
5260325f 494 buffer_put_bignum(&outgoing_packet, value);
8efc0c15 495}
7e7327a1 496void
497packet_put_bignum2(BIGNUM * value)
498{
499 buffer_put_bignum2(&outgoing_packet, value);
500}
8efc0c15 501
aa3378df 502/*
503 * Finalizes and sends the packet. If the encryption key has been set,
504 * encrypts the packet before sending.
505 */
5260325f 506
396c147e 507static void
5ca51e19 508packet_send1(void)
8efc0c15 509{
a318bbf4 510 u_char buf[8], *cp;
5260325f 511 int i, padding, len;
1e3b8b07 512 u_int checksum;
5260325f 513 u_int32_t rand = 0;
514
aa3378df 515 /*
516 * If using packet compression, compress the payload of the outgoing
517 * packet.
518 */
5260325f 519 if (packet_compression) {
520 buffer_clear(&compression_buffer);
521 /* Skip padding. */
522 buffer_consume(&outgoing_packet, 8);
523 /* padding */
524 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
525 buffer_compress(&outgoing_packet, &compression_buffer);
526 buffer_clear(&outgoing_packet);
527 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
184eed6a 528 buffer_len(&compression_buffer));
5260325f 529 }
530 /* Compute packet length without padding (add checksum, remove padding). */
531 len = buffer_len(&outgoing_packet) + 4 - 8;
532
1d1ffb87 533 /* Insert padding. Initialized to zero in packet_start1() */
5260325f 534 padding = 8 - len % 8;
3ee832e5 535 if (!send_context.plaintext) {
5260325f 536 cp = buffer_ptr(&outgoing_packet);
537 for (i = 0; i < padding; i++) {
538 if (i % 4 == 0)
539 rand = arc4random();
540 cp[7 - i] = rand & 0xff;
541 rand >>= 8;
542 }
543 }
544 buffer_consume(&outgoing_packet, 8 - padding);
545
546 /* Add check bytes. */
20905a8e 547 checksum = ssh_crc32(buffer_ptr(&outgoing_packet),
2e73a022 548 buffer_len(&outgoing_packet));
5260325f 549 PUT_32BIT(buf, checksum);
550 buffer_append(&outgoing_packet, buf, 4);
8efc0c15 551
552#ifdef PACKET_DEBUG
5260325f 553 fprintf(stderr, "packet_send plain: ");
554 buffer_dump(&outgoing_packet);
8efc0c15 555#endif
556
5260325f 557 /* Append to output. */
558 PUT_32BIT(buf, len);
559 buffer_append(&output, buf, 4);
6c0fa2b1 560 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
3ee832e5 561 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
184eed6a 562 buffer_len(&outgoing_packet));
5260325f 563
8efc0c15 564#ifdef PACKET_DEBUG
5260325f 565 fprintf(stderr, "encrypted: ");
566 buffer_dump(&output);
8efc0c15 567#endif
568
5260325f 569 buffer_clear(&outgoing_packet);
8efc0c15 570
aa3378df 571 /*
572 * Note that the packet is now only buffered in output. It won\'t be
573 * actually sent until packet_write_wait or packet_write_poll is
574 * called.
575 */
8efc0c15 576}
577
e050d348 578void
d1ac6175 579set_newkeys(int mode)
580{
581 Enc *enc;
582 Mac *mac;
583 Comp *comp;
584 CipherContext *cc;
ffd7b36b 585 u_int64_t *max_blocks;
3ee832e5 586 int encrypt;
d1ac6175 587
a77673cc 588 debug2("set_newkeys: mode %d", mode);
d1ac6175 589
3ee832e5 590 if (mode == MODE_OUT) {
591 cc = &send_context;
592 encrypt = CIPHER_ENCRYPT;
ffd7b36b 593 p_send.packets = p_send.blocks = 0;
594 max_blocks = &max_blocks_out;
3ee832e5 595 } else {
596 cc = &receive_context;
597 encrypt = CIPHER_DECRYPT;
ffd7b36b 598 p_read.packets = p_read.blocks = 0;
599 max_blocks = &max_blocks_in;
3ee832e5 600 }
d1ac6175 601 if (newkeys[mode] != NULL) {
a77673cc 602 debug("set_newkeys: rekeying");
3ee832e5 603 cipher_cleanup(cc);
a7ca6275 604 enc = &newkeys[mode]->enc;
605 mac = &newkeys[mode]->mac;
606 comp = &newkeys[mode]->comp;
cd332296 607 memset(mac->key, 0, mac->key_len);
a7ca6275 608 xfree(enc->name);
609 xfree(enc->iv);
610 xfree(enc->key);
611 xfree(mac->name);
612 xfree(mac->key);
613 xfree(comp->name);
d8ee838b 614 xfree(newkeys[mode]);
d1ac6175 615 }
616 newkeys[mode] = kex_get_newkeys(mode);
617 if (newkeys[mode] == NULL)
618 fatal("newkeys: no keys for mode %d", mode);
619 enc = &newkeys[mode]->enc;
620 mac = &newkeys[mode]->mac;
621 comp = &newkeys[mode]->comp;
622 if (mac->md != NULL)
623 mac->enabled = 1;
624 DBG(debug("cipher_init_context: %d", mode));
3ee832e5 625 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
626 enc->iv, enc->block_size, encrypt);
e050d348 627 /* Deleting the keys does not gain extra security */
628 /* memset(enc->iv, 0, enc->block_size);
629 memset(enc->key, 0, enc->key_len); */
d1ac6175 630 if (comp->type != 0 && comp->enabled == 0) {
6ba22c93 631 packet_init_compression();
632 if (mode == MODE_OUT)
633 buffer_compress_init_send(6);
634 else
635 buffer_compress_init_recv();
d1ac6175 636 comp->enabled = 1;
d1ac6175 637 }
ffd7b36b 638 *max_blocks = ((u_int64_t)1 << (enc->block_size*2));
639 if (rekey_limit)
640 *max_blocks = MIN(*max_blocks, rekey_limit / enc->block_size);
d1ac6175 641}
642
7e7327a1 643/*
644 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
645 */
396c147e 646static void
ffd7b36b 647packet_send2_wrapped(void)
7e7327a1 648{
a318bbf4 649 u_char type, *cp, *macbuf = NULL;
b4b701be 650 u_char padlen, pad;
1e3b8b07 651 u_int packet_length = 0;
b4b701be 652 u_int i, len;
7e7327a1 653 u_int32_t rand = 0;
7e7327a1 654 Enc *enc = NULL;
655 Mac *mac = NULL;
656 Comp *comp = NULL;
657 int block_size;
658
d1ac6175 659 if (newkeys[MODE_OUT] != NULL) {
660 enc = &newkeys[MODE_OUT]->enc;
661 mac = &newkeys[MODE_OUT]->mac;
662 comp = &newkeys[MODE_OUT]->comp;
7e7327a1 663 }
3ee832e5 664 block_size = enc ? enc->block_size : 8;
7e7327a1 665
a318bbf4 666 cp = buffer_ptr(&outgoing_packet);
667 type = cp[5];
7e7327a1 668
669#ifdef PACKET_DEBUG
670 fprintf(stderr, "plain: ");
671 buffer_dump(&outgoing_packet);
672#endif
673
674 if (comp && comp->enabled) {
675 len = buffer_len(&outgoing_packet);
676 /* skip header, compress only payload */
677 buffer_consume(&outgoing_packet, 5);
678 buffer_clear(&compression_buffer);
679 buffer_compress(&outgoing_packet, &compression_buffer);
680 buffer_clear(&outgoing_packet);
681 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
682 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
683 buffer_len(&compression_buffer));
684 DBG(debug("compression: raw %d compressed %d", len,
685 buffer_len(&outgoing_packet)));
686 }
687
688 /* sizeof (packet_len + pad_len + payload) */
689 len = buffer_len(&outgoing_packet);
690
691 /*
692 * calc size of padding, alloc space, get random data,
693 * minimum padding is 4 bytes
694 */
695 padlen = block_size - (len % block_size);
696 if (padlen < 4)
697 padlen += block_size;
b4b701be 698 if (extra_pad) {
699 /* will wrap if extra_pad+padlen > 255 */
700 extra_pad = roundup(extra_pad, block_size);
701 pad = extra_pad - ((len + padlen) % extra_pad);
a49dfdec 702 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
b4b701be 703 pad, len, padlen, extra_pad);
704 padlen += pad;
705 extra_pad = 0;
706 }
6c0fa2b1 707 cp = buffer_append_space(&outgoing_packet, padlen);
3ee832e5 708 if (enc && !send_context.plaintext) {
1d1ffb87 709 /* random padding */
7e7327a1 710 for (i = 0; i < padlen; i++) {
711 if (i % 4 == 0)
712 rand = arc4random();
713 cp[i] = rand & 0xff;
6e18cb71 714 rand >>= 8;
7e7327a1 715 }
1d1ffb87 716 } else {
717 /* clear padding */
718 memset(cp, 0, padlen);
7e7327a1 719 }
720 /* packet_length includes payload, padding and padding length field */
721 packet_length = buffer_len(&outgoing_packet) - 4;
a318bbf4 722 cp = buffer_ptr(&outgoing_packet);
723 PUT_32BIT(cp, packet_length);
724 cp[4] = padlen;
7e7327a1 725 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
726
727 /* compute MAC over seqnr and packet(length fields, payload, padding) */
728 if (mac && mac->enabled) {
ffd7b36b 729 macbuf = mac_compute(mac, p_send.seqnr,
20905a8e 730 buffer_ptr(&outgoing_packet),
b2552997 731 buffer_len(&outgoing_packet));
ffd7b36b 732 DBG(debug("done calc MAC out #%d", p_send.seqnr));
7e7327a1 733 }
734 /* encrypt packet and append to output buffer. */
6c0fa2b1 735 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
3ee832e5 736 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
7e7327a1 737 buffer_len(&outgoing_packet));
738 /* append unencrypted MAC */
739 if (mac && mac->enabled)
740 buffer_append(&output, (char *)macbuf, mac->mac_len);
741#ifdef PACKET_DEBUG
742 fprintf(stderr, "encrypted: ");
743 buffer_dump(&output);
744#endif
6ae2364d 745 /* increment sequence number for outgoing packets */
ffd7b36b 746 if (++p_send.seqnr == 0)
bbe88b6d 747 logit("outgoing seqnr wraps around");
ffd7b36b 748 if (++p_send.packets == 0)
749 if (!(datafellows & SSH_BUG_NOREKEY))
750 fatal("XXX too many packets with same key");
751 p_send.blocks += (packet_length + 4) / block_size;
7e7327a1 752 buffer_clear(&outgoing_packet);
753
d1ac6175 754 if (type == SSH2_MSG_NEWKEYS)
755 set_newkeys(MODE_OUT);
7e7327a1 756}
757
ffd7b36b 758static void
759packet_send2(void)
760{
761 static int rekeying = 0;
762 struct packet *p;
763 u_char type, *cp;
764
765 cp = buffer_ptr(&outgoing_packet);
766 type = cp[5];
767
768 /* during rekeying we can only send key exchange messages */
769 if (rekeying) {
770 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
771 (type <= SSH2_MSG_TRANSPORT_MAX))) {
772 debug("enqueue packet: %u", type);
773 p = xmalloc(sizeof(*p));
774 p->type = type;
775 memcpy(&p->payload, &outgoing_packet, sizeof(Buffer));
776 buffer_init(&outgoing_packet);
777 TAILQ_INSERT_TAIL(&outgoing, p, next);
778 return;
779 }
780 }
781
782 /* rekeying starts with sending KEXINIT */
783 if (type == SSH2_MSG_KEXINIT)
784 rekeying = 1;
785
786 packet_send2_wrapped();
787
788 /* after a NEWKEYS message we can send the complete queue */
789 if (type == SSH2_MSG_NEWKEYS) {
790 rekeying = 0;
791 while ((p = TAILQ_FIRST(&outgoing))) {
792 type = p->type;
793 debug("dequeue packet: %u", type);
794 buffer_free(&outgoing_packet);
795 memcpy(&outgoing_packet, &p->payload,
796 sizeof(Buffer));
797 TAILQ_REMOVE(&outgoing, p, next);
798 xfree(p);
799 packet_send2_wrapped();
800 }
801 }
802}
803
7e7327a1 804void
d5bb9418 805packet_send(void)
7e7327a1 806{
08dcb5d7 807 if (compat20)
7e7327a1 808 packet_send2();
809 else
810 packet_send1();
811 DBG(debug("packet_send done"));
812}
813
aa3378df 814/*
815 * Waits until a packet has been received, and returns its type. Note that
816 * no other data is processed until this returns, so this function should not
817 * be used during the interactive session.
818 */
8efc0c15 819
820int
54a5250f 821packet_read_seqnr(u_int32_t *seqnr_p)
8efc0c15 822{
5260325f 823 int type, len;
20e04e90 824 fd_set *setp;
5260325f 825 char buf[8192];
7e7327a1 826 DBG(debug("packet_read()"));
5260325f 827
20e04e90 828 setp = (fd_set *)xmalloc(howmany(connection_in+1, NFDBITS) *
829 sizeof(fd_mask));
830
5260325f 831 /* Since we are blocking, ensure that all written packets have been sent. */
832 packet_write_wait();
833
834 /* Stay in the loop until we have received a complete packet. */
835 for (;;) {
836 /* Try to read a packet from the buffer. */
54a5250f 837 type = packet_read_poll_seqnr(seqnr_p);
08dcb5d7 838 if (!compat20 && (
1d1ffb87 839 type == SSH_SMSG_SUCCESS
5260325f 840 || type == SSH_SMSG_FAILURE
841 || type == SSH_CMSG_EOF
1d1ffb87 842 || type == SSH_CMSG_EXIT_CONFIRMATION))
95500969 843 packet_check_eom();
5260325f 844 /* If we got a packet, return it. */
20e04e90 845 if (type != SSH_MSG_NONE) {
846 xfree(setp);
5260325f 847 return type;
20e04e90 848 }
aa3378df 849 /*
850 * Otherwise, wait for some data to arrive, add it to the
851 * buffer, and try again.
852 */
20e04e90 853 memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
854 sizeof(fd_mask));
855 FD_SET(connection_in, setp);
aa3378df 856
5260325f 857 /* Wait for some data to arrive. */
20e04e90 858 while (select(connection_in + 1, setp, NULL, NULL, NULL) == -1 &&
fd193ca4 859 (errno == EAGAIN || errno == EINTR))
860 ;
aa3378df 861
5260325f 862 /* Read data from the socket. */
863 len = read(connection_in, buf, sizeof(buf));
89cafde6 864 if (len == 0) {
bbe88b6d 865 logit("Connection closed by %.200s", get_remote_ipaddr());
89cafde6 866 fatal_cleanup();
867 }
5260325f 868 if (len < 0)
869 fatal("Read from socket failed: %.100s", strerror(errno));
870 /* Append it to the buffer. */
871 packet_process_incoming(buf, len);
872 }
873 /* NOTREACHED */
8efc0c15 874}
875
24ca6821 876int
54a5250f 877packet_read(void)
24ca6821 878{
54a5250f 879 return packet_read_seqnr(NULL);
24ca6821 880}
881
aa3378df 882/*
883 * Waits until a packet has been received, verifies that its type matches
884 * that given, and gives a fatal error and exits if there is a mismatch.
885 */
8efc0c15 886
887void
54a5250f 888packet_read_expect(int expected_type)
8efc0c15 889{
5260325f 890 int type;
8efc0c15 891
54a5250f 892 type = packet_read();
5260325f 893 if (type != expected_type)
894 packet_disconnect("Protocol error: expected packet type %d, got %d",
7e7327a1 895 expected_type, type);
8efc0c15 896}
897
898/* Checks if a full packet is available in the data received so far via
5260325f 899 * packet_process_incoming. If so, reads the packet; otherwise returns
900 * SSH_MSG_NONE. This does not wait for data from the connection.
901 *
902 * SSH_MSG_DISCONNECT is handled specially here. Also,
903 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
904 * to higher levels.
5260325f 905 */
8efc0c15 906
396c147e 907static int
54a5250f 908packet_read_poll1(void)
8efc0c15 909{
1e3b8b07 910 u_int len, padded_len;
a318bbf4 911 u_char *cp, type;
1e3b8b07 912 u_int checksum, stored_checksum;
5260325f 913
5260325f 914 /* Check if input size is less than minimum packet size. */
915 if (buffer_len(&input) < 4 + 8)
916 return SSH_MSG_NONE;
917 /* Get length of incoming packet. */
a318bbf4 918 cp = buffer_ptr(&input);
919 len = GET_32BIT(cp);
5260325f 920 if (len < 1 + 2 + 2 || len > 256 * 1024)
2fe3c2db 921 packet_disconnect("Bad packet length %u.", len);
5260325f 922 padded_len = (len + 8) & ~7;
923
924 /* Check if the packet has been entirely received. */
925 if (buffer_len(&input) < 4 + padded_len)
926 return SSH_MSG_NONE;
927
928 /* The entire packet is in buffer. */
929
930 /* Consume packet length. */
931 buffer_consume(&input, 4);
932
08dcb5d7 933 /*
934 * Cryptographic attack detector for ssh
935 * (C)1998 CORE-SDI, Buenos Aires Argentina
936 * Ariel Futoransky(futo@core-sdi.com)
937 */
3ee832e5 938 if (!receive_context.plaintext &&
08dcb5d7 939 detect_attack(buffer_ptr(&input), padded_len, NULL) == DEATTACK_DETECTED)
940 packet_disconnect("crc32 compensation attack: network attack detected");
941
942 /* Decrypt data to incoming_packet. */
5260325f 943 buffer_clear(&incoming_packet);
6c0fa2b1 944 cp = buffer_append_space(&incoming_packet, padded_len);
3ee832e5 945 cipher_crypt(&receive_context, cp, buffer_ptr(&input), padded_len);
08dcb5d7 946
5260325f 947 buffer_consume(&input, padded_len);
8efc0c15 948
949#ifdef PACKET_DEBUG
5260325f 950 fprintf(stderr, "read_poll plain: ");
951 buffer_dump(&incoming_packet);
8efc0c15 952#endif
5260325f 953
954 /* Compute packet checksum. */
20905a8e 955 checksum = ssh_crc32(buffer_ptr(&incoming_packet),
7e7327a1 956 buffer_len(&incoming_packet) - 4);
5260325f 957
958 /* Skip padding. */
959 buffer_consume(&incoming_packet, 8 - len % 8);
960
961 /* Test check bytes. */
5260325f 962 if (len != buffer_len(&incoming_packet))
24ca6821 963 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
7e7327a1 964 len, buffer_len(&incoming_packet));
5260325f 965
a318bbf4 966 cp = (u_char *)buffer_ptr(&incoming_packet) + len - 4;
967 stored_checksum = GET_32BIT(cp);
5260325f 968 if (checksum != stored_checksum)
969 packet_disconnect("Corrupted check bytes on input.");
970 buffer_consume_end(&incoming_packet, 4);
971
5260325f 972 if (packet_compression) {
973 buffer_clear(&compression_buffer);
974 buffer_uncompress(&incoming_packet, &compression_buffer);
975 buffer_clear(&incoming_packet);
976 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
7e7327a1 977 buffer_len(&compression_buffer));
5260325f 978 }
08dcb5d7 979 type = buffer_get_char(&incoming_packet);
08dcb5d7 980 return type;
5260325f 981}
982
396c147e 983static int
54a5250f 984packet_read_poll2(u_int32_t *seqnr_p)
7e7327a1 985{
b2552997 986 static u_int packet_length = 0;
1e3b8b07 987 u_int padlen, need;
a318bbf4 988 u_char *macbuf, *cp, type;
7e7327a1 989 int maclen, block_size;
990 Enc *enc = NULL;
991 Mac *mac = NULL;
992 Comp *comp = NULL;
993
d1ac6175 994 if (newkeys[MODE_IN] != NULL) {
995 enc = &newkeys[MODE_IN]->enc;
996 mac = &newkeys[MODE_IN]->mac;
997 comp = &newkeys[MODE_IN]->comp;
7e7327a1 998 }
999 maclen = mac && mac->enabled ? mac->mac_len : 0;
3ee832e5 1000 block_size = enc ? enc->block_size : 8;
7e7327a1 1001
1002 if (packet_length == 0) {
1003 /*
1004 * check if input size is less than the cipher block size,
1005 * decrypt first block and extract length of incoming packet
1006 */
1007 if (buffer_len(&input) < block_size)
1008 return SSH_MSG_NONE;
1009 buffer_clear(&incoming_packet);
6c0fa2b1 1010 cp = buffer_append_space(&incoming_packet, block_size);
3ee832e5 1011 cipher_crypt(&receive_context, cp, buffer_ptr(&input),
7e7327a1 1012 block_size);
a318bbf4 1013 cp = buffer_ptr(&incoming_packet);
1014 packet_length = GET_32BIT(cp);
7e7327a1 1015 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
1016 buffer_dump(&incoming_packet);
2fe3c2db 1017 packet_disconnect("Bad packet length %u.", packet_length);
7e7327a1 1018 }
2fe3c2db 1019 DBG(debug("input: packet len %u", packet_length+4));
7e7327a1 1020 buffer_consume(&input, block_size);
1021 }
1022 /* we have a partial packet of block_size bytes */
1023 need = 4 + packet_length - block_size;
1024 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1025 need, maclen));
1026 if (need % block_size != 0)
1027 fatal("padding error: need %d block %d mod %d",
1028 need, block_size, need % block_size);
1029 /*
1030 * check if the entire packet has been received and
1031 * decrypt into incoming_packet
1032 */
1033 if (buffer_len(&input) < need + maclen)
1034 return SSH_MSG_NONE;
1035#ifdef PACKET_DEBUG
1036 fprintf(stderr, "read_poll enc/full: ");
1037 buffer_dump(&input);
1038#endif
6c0fa2b1 1039 cp = buffer_append_space(&incoming_packet, need);
3ee832e5 1040 cipher_crypt(&receive_context, cp, buffer_ptr(&input), need);
7e7327a1 1041 buffer_consume(&input, need);
1042 /*
1043 * compute MAC over seqnr and packet,
1044 * increment sequence number for incoming packet
1045 */
6ae2364d 1046 if (mac && mac->enabled) {
ffd7b36b 1047 macbuf = mac_compute(mac, p_read.seqnr,
20905a8e 1048 buffer_ptr(&incoming_packet),
b2552997 1049 buffer_len(&incoming_packet));
7e7327a1 1050 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
94ec8c6b 1051 packet_disconnect("Corrupted MAC on input.");
ffd7b36b 1052 DBG(debug("MAC #%d ok", p_read.seqnr));
7e7327a1 1053 buffer_consume(&input, mac->mac_len);
1054 }
24ca6821 1055 if (seqnr_p != NULL)
ffd7b36b 1056 *seqnr_p = p_read.seqnr;
1057 if (++p_read.seqnr == 0)
bbe88b6d 1058 logit("incoming seqnr wraps around");
ffd7b36b 1059 if (++p_read.packets == 0)
1060 if (!(datafellows & SSH_BUG_NOREKEY))
1061 fatal("XXX too many packets with same key");
1062 p_read.blocks += (packet_length + 4) / block_size;
7e7327a1 1063
1064 /* get padlen */
6c0fa2b1 1065 cp = buffer_ptr(&incoming_packet);
a318bbf4 1066 padlen = cp[4];
7e7327a1 1067 DBG(debug("input: padlen %d", padlen));
1068 if (padlen < 4)
1069 packet_disconnect("Corrupted padlen %d on input.", padlen);
1070
1071 /* skip packet size + padlen, discard padding */
1072 buffer_consume(&incoming_packet, 4 + 1);
1073 buffer_consume_end(&incoming_packet, padlen);
1074
1075 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
1076 if (comp && comp->enabled) {
1077 buffer_clear(&compression_buffer);
1078 buffer_uncompress(&incoming_packet, &compression_buffer);
1079 buffer_clear(&incoming_packet);
1080 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
1081 buffer_len(&compression_buffer));
e1feb9bf 1082 DBG(debug("input: len after de-compress %d",
1083 buffer_len(&incoming_packet)));
7e7327a1 1084 }
1085 /*
1086 * get packet type, implies consume.
1087 * return length of payload (without type field)
1088 */
08dcb5d7 1089 type = buffer_get_char(&incoming_packet);
d1ac6175 1090 if (type == SSH2_MSG_NEWKEYS)
1091 set_newkeys(MODE_IN);
7e7327a1 1092#ifdef PACKET_DEBUG
12bf85ed 1093 fprintf(stderr, "read/plain[%d]:\r\n", type);
7e7327a1 1094 buffer_dump(&incoming_packet);
1095#endif
08dcb5d7 1096 /* reset for next packet */
1097 packet_length = 0;
1098 return type;
7e7327a1 1099}
1100
1101int
54a5250f 1102packet_read_poll_seqnr(u_int32_t *seqnr_p)
7e7327a1 1103{
0bc50167 1104 u_int reason, seqnr;
08dcb5d7 1105 u_char type;
7e7327a1 1106 char *msg;
7e7327a1 1107
08dcb5d7 1108 for (;;) {
1109 if (compat20) {
54a5250f 1110 type = packet_read_poll2(seqnr_p);
08dcb5d7 1111 if (type)
7e7327a1 1112 DBG(debug("received packet type %d", type));
6aacefa7 1113 switch (type) {
7e7327a1 1114 case SSH2_MSG_IGNORE:
1115 break;
1116 case SSH2_MSG_DEBUG:
1117 packet_get_char();
1118 msg = packet_get_string(NULL);
1119 debug("Remote: %.900s", msg);
1120 xfree(msg);
1121 msg = packet_get_string(NULL);
1122 xfree(msg);
1123 break;
1124 case SSH2_MSG_DISCONNECT:
1125 reason = packet_get_int();
1126 msg = packet_get_string(NULL);
bbe88b6d 1127 logit("Received disconnect from %s: %u: %.400s",
0bc50167 1128 get_remote_ipaddr(), reason, msg);
7e7327a1 1129 xfree(msg);
1130 fatal_cleanup();
1131 break;
5a5f4c37 1132 case SSH2_MSG_UNIMPLEMENTED:
1133 seqnr = packet_get_int();
0bc50167 1134 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1135 seqnr);
5a5f4c37 1136 break;
7e7327a1 1137 default:
1138 return type;
1139 break;
2b87da3b 1140 }
7e7327a1 1141 } else {
54a5250f 1142 type = packet_read_poll1();
6aacefa7 1143 switch (type) {
7e7327a1 1144 case SSH_MSG_IGNORE:
1145 break;
1146 case SSH_MSG_DEBUG:
1147 msg = packet_get_string(NULL);
1148 debug("Remote: %.900s", msg);
1149 xfree(msg);
1150 break;
1151 case SSH_MSG_DISCONNECT:
1152 msg = packet_get_string(NULL);
bbe88b6d 1153 logit("Received disconnect from %s: %.400s",
0bc50167 1154 get_remote_ipaddr(), msg);
7e7327a1 1155 fatal_cleanup();
1156 xfree(msg);
1157 break;
1158 default:
08dcb5d7 1159 if (type)
7e7327a1 1160 DBG(debug("received packet type %d", type));
1161 return type;
1162 break;
2b87da3b 1163 }
7e7327a1 1164 }
1165 }
1166}
1167
24ca6821 1168int
54a5250f 1169packet_read_poll(void)
24ca6821 1170{
54a5250f 1171 return packet_read_poll_seqnr(NULL);
24ca6821 1172}
1173
aa3378df 1174/*
1175 * Buffers the given amount of input characters. This is intended to be used
1176 * together with packet_read_poll.
1177 */
8efc0c15 1178
1179void
1e3b8b07 1180packet_process_incoming(const char *buf, u_int len)
8efc0c15 1181{
5260325f 1182 buffer_append(&input, buf, len);
8efc0c15 1183}
1184
1185/* Returns a character from the packet. */
1186
1e3b8b07 1187u_int
d5bb9418 1188packet_get_char(void)
8efc0c15 1189{
5260325f 1190 char ch;
e1feb9bf 1191
5260325f 1192 buffer_get(&incoming_packet, &ch, 1);
1e3b8b07 1193 return (u_char) ch;
8efc0c15 1194}
1195
1196/* Returns an integer from the packet data. */
1197
1e3b8b07 1198u_int
d5bb9418 1199packet_get_int(void)
8efc0c15 1200{
5260325f 1201 return buffer_get_int(&incoming_packet);
8efc0c15 1202}
1203
aa3378df 1204/*
1205 * Returns an arbitrary precision integer from the packet data. The integer
1206 * must have been initialized before this call.
1207 */
8efc0c15 1208
1209void
20b279e6 1210packet_get_bignum(BIGNUM * value)
8efc0c15 1211{
4ef6f649 1212 buffer_get_bignum(&incoming_packet, value);
8efc0c15 1213}
1214
7e7327a1 1215void
20b279e6 1216packet_get_bignum2(BIGNUM * value)
7e7327a1 1217{
4ef6f649 1218 buffer_get_bignum2(&incoming_packet, value);
7e7327a1 1219}
1220
6c0fa2b1 1221void *
7e7327a1 1222packet_get_raw(int *length_ptr)
1223{
1224 int bytes = buffer_len(&incoming_packet);
e1feb9bf 1225
7e7327a1 1226 if (length_ptr != NULL)
1227 *length_ptr = bytes;
1228 return buffer_ptr(&incoming_packet);
1229}
1230
6ae2364d 1231int
1232packet_remaining(void)
1233{
1234 return buffer_len(&incoming_packet);
1235}
1236
aa3378df 1237/*
1238 * Returns a string from the packet data. The string is allocated using
1239 * xmalloc; it is the responsibility of the calling program to free it when
1240 * no longer needed. The length_ptr argument may be NULL, or point to an
1241 * integer into which the length of the string is stored.
1242 */
8efc0c15 1243
6c0fa2b1 1244void *
1e3b8b07 1245packet_get_string(u_int *length_ptr)
8efc0c15 1246{
5260325f 1247 return buffer_get_string(&incoming_packet, length_ptr);
8efc0c15 1248}
1249
aa3378df 1250/*
1251 * Sends a diagnostic message from the server to the client. This message
1252 * can be sent at any time (but not while constructing another message). The
1253 * message is printed immediately, but only if the client is being executed
1254 * in verbose mode. These messages are primarily intended to ease debugging
1255 * authentication problems. The length of the formatted message must not
1256 * exceed 1024 bytes. This will automatically call packet_write_wait.
1257 */
8efc0c15 1258
1259void
5260325f 1260packet_send_debug(const char *fmt,...)
8efc0c15 1261{
5260325f 1262 char buf[1024];
1263 va_list args;
1264
f72fc97f 1265 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1266 return;
1267
5260325f 1268 va_start(args, fmt);
1269 vsnprintf(buf, sizeof(buf), fmt, args);
1270 va_end(args);
1271
c4bc58eb 1272 if (compat20) {
1273 packet_start(SSH2_MSG_DEBUG);
1274 packet_put_char(0); /* bool: always display */
1275 packet_put_cstring(buf);
1276 packet_put_cstring("");
1277 } else {
1278 packet_start(SSH_MSG_DEBUG);
1279 packet_put_cstring(buf);
1280 }
5260325f 1281 packet_send();
1282 packet_write_wait();
8efc0c15 1283}
1284
aa3378df 1285/*
1286 * Logs the error plus constructs and sends a disconnect packet, closes the
1287 * connection, and exits. This function never returns. The error message
1288 * should not contain a newline. The length of the formatted message must
1289 * not exceed 1024 bytes.
1290 */
8efc0c15 1291
1292void
5260325f 1293packet_disconnect(const char *fmt,...)
1294{
1295 char buf[1024];
1296 va_list args;
1297 static int disconnecting = 0;
e1feb9bf 1298
5260325f 1299 if (disconnecting) /* Guard against recursive invocations. */
1300 fatal("packet_disconnect called recursively.");
1301 disconnecting = 1;
1302
aa3378df 1303 /*
1304 * Format the message. Note that the caller must make sure the
1305 * message is of limited size.
1306 */
5260325f 1307 va_start(args, fmt);
1308 vsnprintf(buf, sizeof(buf), fmt, args);
1309 va_end(args);
1310
2ccb7bde 1311 /* Display the error locally */
bbe88b6d 1312 logit("Disconnecting: %.100s", buf);
2ccb7bde 1313
5260325f 1314 /* Send the disconnect message to the other side, and wait for it to get sent. */
7e7327a1 1315 if (compat20) {
1316 packet_start(SSH2_MSG_DISCONNECT);
1317 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1318 packet_put_cstring(buf);
1319 packet_put_cstring("");
1320 } else {
1321 packet_start(SSH_MSG_DISCONNECT);
449c5ba5 1322 packet_put_cstring(buf);
7e7327a1 1323 }
5260325f 1324 packet_send();
1325 packet_write_wait();
1326
1327 /* Stop listening for connections. */
d6746a0b 1328 channel_close_all();
5260325f 1329
1330 /* Close the connection. */
1331 packet_close();
1332
57112b5a 1333 fatal_cleanup();
8efc0c15 1334}
1335
aa3378df 1336/* Checks if there is any buffered output, and tries to write some of the output. */
8efc0c15 1337
1338void
d5bb9418 1339packet_write_poll(void)
8efc0c15 1340{
5260325f 1341 int len = buffer_len(&output);
e1feb9bf 1342
5260325f 1343 if (len > 0) {
1344 len = write(connection_out, buffer_ptr(&output), len);
1345 if (len <= 0) {
1346 if (errno == EAGAIN)
1347 return;
1348 else
1349 fatal("Write failed: %.100s", strerror(errno));
1350 }
1351 buffer_consume(&output, len);
1352 }
8efc0c15 1353}
1354
aa3378df 1355/*
1356 * Calls packet_write_poll repeatedly until all pending output data has been
1357 * written.
1358 */
8efc0c15 1359
1360void
d5bb9418 1361packet_write_wait(void)
8efc0c15 1362{
20e04e90 1363 fd_set *setp;
1364
1365 setp = (fd_set *)xmalloc(howmany(connection_out + 1, NFDBITS) *
1366 sizeof(fd_mask));
5260325f 1367 packet_write_poll();
1368 while (packet_have_data_to_write()) {
20e04e90 1369 memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
1370 sizeof(fd_mask));
1371 FD_SET(connection_out, setp);
1372 while (select(connection_out + 1, NULL, setp, NULL, NULL) == -1 &&
fd193ca4 1373 (errno == EAGAIN || errno == EINTR))
1374 ;
5260325f 1375 packet_write_poll();
1376 }
20e04e90 1377 xfree(setp);
8efc0c15 1378}
1379
1380/* Returns true if there is buffered data to write to the connection. */
1381
1382int
d5bb9418 1383packet_have_data_to_write(void)
8efc0c15 1384{
5260325f 1385 return buffer_len(&output) != 0;
8efc0c15 1386}
1387
1388/* Returns true if there is not too much data to write to the connection. */
1389
1390int
d5bb9418 1391packet_not_very_much_data_to_write(void)
8efc0c15 1392{
5260325f 1393 if (interactive_mode)
1394 return buffer_len(&output) < 16384;
1395 else
1396 return buffer_len(&output) < 128 * 1024;
8efc0c15 1397}
1398
4d0cb2e5 1399
1400#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
9e637910 1401static void
48f636b2 1402packet_set_tos(int interactive)
1403{
1404 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1405
1406 if (!packet_connection_is_on_socket() ||
1407 !packet_connection_is_ipv4())
1408 return;
1409 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, &tos,
1410 sizeof(tos)) < 0)
1411 error("setsockopt IP_TOS %d: %.100s:",
1412 tos, strerror(errno));
1413}
4d0cb2e5 1414#endif
48f636b2 1415
8efc0c15 1416/* Informs that the current session is interactive. Sets IP flags for that. */
1417
1418void
b5c334cc 1419packet_set_interactive(int interactive)
8efc0c15 1420{
b5c334cc 1421 static int called = 0;
5260325f 1422
b5c334cc 1423 if (called)
1424 return;
1425 called = 1;
1426
5260325f 1427 /* Record that we are in interactive mode. */
1428 interactive_mode = interactive;
1429
48e671d5 1430 /* Only set socket options if using a socket. */
1431 if (!packet_connection_is_on_socket())
aceb0423 1432 return;
48f636b2 1433 if (interactive)
bcc0381e 1434 set_nodelay(connection_in);
132dd316 1435#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
48f636b2 1436 packet_set_tos(interactive);
c04f75f1 1437#endif
48f636b2 1438
8efc0c15 1439}
1440
1441/* Returns true if the current connection is interactive. */
1442
1443int
d5bb9418 1444packet_is_interactive(void)
8efc0c15 1445{
5260325f 1446 return interactive_mode;
8efc0c15 1447}
9d6b7add 1448
1449int
1450packet_set_maxsize(int s)
1451{
5260325f 1452 static int called = 0;
e1feb9bf 1453
5260325f 1454 if (called) {
bbe88b6d 1455 logit("packet_set_maxsize: called twice: old %d new %d",
7e7327a1 1456 max_packet_size, s);
5260325f 1457 return -1;
1458 }
1459 if (s < 4 * 1024 || s > 1024 * 1024) {
bbe88b6d 1460 logit("packet_set_maxsize: bad size %d", s);
5260325f 1461 return -1;
1462 }
b6350327 1463 called = 1;
76735fe3 1464 debug("packet_set_maxsize: setting to %d", s);
5260325f 1465 max_packet_size = s;
1466 return s;
9d6b7add 1467}
a6215e53 1468
b4b701be 1469/* roundup current message to pad bytes */
1470void
1471packet_add_padding(u_char pad)
1472{
1473 extra_pad = pad;
1474}
1475
a6215e53 1476/*
1477 * 9.2. Ignored Data Message
cd332296 1478 *
a6215e53 1479 * byte SSH_MSG_IGNORE
1480 * string data
cd332296 1481 *
a6215e53 1482 * All implementations MUST understand (and ignore) this message at any
1483 * time (after receiving the protocol version). No implementation is
1484 * required to send them. This message can be used as an additional
1485 * protection measure against advanced traffic analysis techniques.
1486 */
95ce5599 1487void
1488packet_send_ignore(int nbytes)
1489{
1490 u_int32_t rand = 0;
1491 int i;
1492
1493 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
a6215e53 1494 packet_put_int(nbytes);
184eed6a 1495 for (i = 0; i < nbytes; i++) {
a6215e53 1496 if (i % 4 == 0)
1497 rand = arc4random();
1498 packet_put_char(rand & 0xff);
1499 rand >>= 8;
1500 }
1501}
ffd7b36b 1502
1503#define MAX_PACKETS (1<<31)
1504int
1505packet_need_rekeying(void)
1506{
1507 if (datafellows & SSH_BUG_NOREKEY)
1508 return 0;
1509 return
1510 (p_send.packets > MAX_PACKETS) ||
1511 (p_read.packets > MAX_PACKETS) ||
1512 (max_blocks_out && (p_send.blocks > max_blocks_out)) ||
1513 (max_blocks_in && (p_read.blocks > max_blocks_in));
1514}
1515
1516void
1517packet_set_rekey_limit(u_int32_t bytes)
1518{
1519 rekey_limit = bytes;
1520}
This page took 0.44102 seconds and 5 git commands to generate.