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