]> andersk Git - openssh.git/blame - packet.c
- markus@cvs.openbsd.org 2001/04/04 22:04:35
[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.
bcbf86ec 16 * Copyright (c) 2000 Markus Friedl. All rights reserved.
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"
d8ee838b 40RCSID("$OpenBSD: packet.c,v 1.58 2001/04/04 09:48:34 markus Exp $");
8efc0c15 41
42#include "xmalloc.h"
43#include "buffer.h"
44#include "packet.h"
45#include "bufaux.h"
8efc0c15 46#include "crc32.h"
8efc0c15 47#include "getput.h"
48
49#include "compress.h"
50#include "deattack.h"
7368a6c8 51#include "channels.h"
8efc0c15 52
7e7327a1 53#include "compat.h"
42f11eb2 54#include "ssh1.h"
7e7327a1 55#include "ssh2.h"
56
94ec8c6b 57#include "cipher.h"
7e7327a1 58#include "kex.h"
b2552997 59#include "mac.h"
42f11eb2 60#include "log.h"
61#include "canohost.h"
7e7327a1 62
63#ifdef PACKET_DEBUG
64#define DBG(x) x
65#else
66#define DBG(x)
67#endif
68
aa3378df 69/*
70 * This variable contains the file descriptors used for communicating with
71 * the other side. connection_in is used for reading; connection_out for
72 * writing. These can be the same descriptor, in which case it is assumed to
73 * be a socket.
74 */
8efc0c15 75static int connection_in = -1;
76static int connection_out = -1;
77
aa3378df 78/*
79 * Cipher type. This value is only used to determine whether to pad the
80 * packets with zeroes or random data.
81 */
8efc0c15 82static int cipher_type = SSH_CIPHER_NONE;
83
84/* Protocol flags for the remote side. */
1e3b8b07 85static u_int remote_protocol_flags = 0;
8efc0c15 86
87/* Encryption context for receiving data. This is only used for decryption. */
88static CipherContext receive_context;
5260325f 89
90/* Encryption context for sending data. This is only used for encryption. */
8efc0c15 91static CipherContext send_context;
92
93/* Buffer for raw input data from the socket. */
94static Buffer input;
95
96/* Buffer for raw output data going to the socket. */
97static Buffer output;
98
99/* Buffer for the partial outgoing packet being constructed. */
100static Buffer outgoing_packet;
101
102/* Buffer for the incoming packet currently being processed. */
103static Buffer incoming_packet;
104
105/* Scratch buffer for packet compression/decompression. */
106static Buffer compression_buffer;
107
108/* Flag indicating whether packet compression/decompression is enabled. */
109static int packet_compression = 0;
110
9d6b7add 111/* default maximum packet size */
112int max_packet_size = 32768;
113
8efc0c15 114/* Flag indicating whether this module has been initialized. */
115static int initialized = 0;
116
117/* Set to true if the connection is interactive. */
118static int interactive_mode = 0;
119
7e7327a1 120/* True if SSH2 packet format is used */
121int use_ssh2_packet_format = 0;
122
123/* Session key information for Encryption and MAC */
d1ac6175 124Newkeys *newkeys[MODE_MAX];
7e7327a1 125
7e7327a1 126void
127clear_enc_keys(Enc *enc, int len)
128{
129 memset(enc->iv, 0, len);
130 memset(enc->key, 0, len);
131 xfree(enc->iv);
132 xfree(enc->key);
133 enc->iv = NULL;
134 enc->key = NULL;
135}
136void
137packet_set_ssh2_format(void)
138{
3189621b 139 DBG(debug("use_ssh2_packet_format"));
7e7327a1 140 use_ssh2_packet_format = 1;
d1ac6175 141 newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
7e7327a1 142}
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");
152 if (none == NULL)
153 fatal("packet_set_connection: cannot load cipher 'none'");
5260325f 154 connection_in = fd_in;
155 connection_out = fd_out;
156 cipher_type = SSH_CIPHER_NONE;
1e3b8b07 157 cipher_init(&send_context, none, (u_char *) "", 0, NULL, 0);
158 cipher_init(&receive_context, none, (u_char *) "", 0, NULL, 0);
5260325f 159 if (!initialized) {
160 initialized = 1;
161 buffer_init(&input);
162 buffer_init(&output);
163 buffer_init(&outgoing_packet);
164 buffer_init(&incoming_packet);
165 }
166 /* Kludge: arrange the close function to be called from fatal(). */
167 fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
8efc0c15 168}
169
48e671d5 170/* Returns 1 if remote host is connected via socket, 0 if not. */
171
172int
173packet_connection_is_on_socket()
174{
175 struct sockaddr_storage from, to;
176 socklen_t fromlen, tolen;
177
178 /* filedescriptors in and out are the same, so it's a socket */
179 if (connection_in == connection_out)
180 return 1;
181 fromlen = sizeof(from);
182 memset(&from, 0, sizeof(from));
9bc5ddfe 183 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
48e671d5 184 return 0;
185 tolen = sizeof(to);
186 memset(&to, 0, sizeof(to));
9bc5ddfe 187 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
48e671d5 188 return 0;
189 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
190 return 0;
191 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
192 return 0;
193 return 1;
194}
195
196/* returns 1 if connection is via ipv4 */
197
198int
199packet_connection_is_ipv4()
200{
201 struct sockaddr_storage to;
d45317d8 202 socklen_t tolen = sizeof(to);
48e671d5 203
204 memset(&to, 0, sizeof(to));
205 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
206 return 0;
207 if (to.ss_family != AF_INET)
208 return 0;
209 return 1;
210}
211
8efc0c15 212/* Sets the connection into non-blocking mode. */
213
214void
215packet_set_nonblocking()
216{
5260325f 217 /* Set the socket into non-blocking mode. */
218 if (fcntl(connection_in, F_SETFL, O_NONBLOCK) < 0)
219 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
8efc0c15 220
5260325f 221 if (connection_out != connection_in) {
222 if (fcntl(connection_out, F_SETFL, O_NONBLOCK) < 0)
223 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
224 }
8efc0c15 225}
226
227/* Returns the socket used for reading. */
228
229int
230packet_get_connection_in()
231{
5260325f 232 return connection_in;
8efc0c15 233}
234
235/* Returns the descriptor used for writing. */
236
237int
238packet_get_connection_out()
239{
5260325f 240 return connection_out;
8efc0c15 241}
242
243/* Closes the connection and clears and frees internal data structures. */
244
245void
246packet_close()
247{
5260325f 248 if (!initialized)
249 return;
250 initialized = 0;
251 if (connection_in == connection_out) {
252 shutdown(connection_out, SHUT_RDWR);
253 close(connection_out);
254 } else {
255 close(connection_in);
256 close(connection_out);
257 }
258 buffer_free(&input);
259 buffer_free(&output);
260 buffer_free(&outgoing_packet);
261 buffer_free(&incoming_packet);
262 if (packet_compression) {
263 buffer_free(&compression_buffer);
264 buffer_compress_uninit();
265 }
8efc0c15 266}
267
268/* Sets remote side protocol flags. */
269
270void
1e3b8b07 271packet_set_protocol_flags(u_int protocol_flags)
8efc0c15 272{
5260325f 273 remote_protocol_flags = protocol_flags;
274 channel_set_options((protocol_flags & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) != 0);
8efc0c15 275}
276
277/* Returns the remote protocol flags set earlier by the above function. */
278
1e3b8b07 279u_int
8efc0c15 280packet_get_protocol_flags()
281{
5260325f 282 return remote_protocol_flags;
8efc0c15 283}
284
aa3378df 285/*
286 * Starts packet compression from the next packet on in both directions.
287 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
288 */
8efc0c15 289
7e7327a1 290/*** XXXXX todo: kex means re-init */
8efc0c15 291void
292packet_start_compression(int level)
293{
5260325f 294 if (packet_compression)
295 fatal("Compression already enabled.");
296 packet_compression = 1;
297 buffer_init(&compression_buffer);
298 buffer_compress_init(level);
8efc0c15 299}
300
aa3378df 301/*
302 * Encrypts the given number of bytes, copying from src to dest. bytes is
303 * known to be a multiple of 8.
304 */
8efc0c15 305
306void
5260325f 307packet_encrypt(CipherContext * cc, void *dest, void *src,
1e3b8b07 308 u_int bytes)
8efc0c15 309{
5260325f 310 cipher_encrypt(cc, dest, src, bytes);
8efc0c15 311}
312
aa3378df 313/*
314 * Decrypts the given number of bytes, copying from src to dest. bytes is
315 * known to be a multiple of 8.
316 */
8efc0c15 317
318void
1e3b8b07 319packet_decrypt(CipherContext *context, void *dest, void *src, u_int bytes)
8efc0c15 320{
aa3378df 321 /*
322 * Cryptographic attack detector for ssh - Modifications for packet.c
323 * (C)1998 CORE-SDI, Buenos Aires Argentina Ariel Futoransky(futo@core-sdi.com)
324 */
94ec8c6b 325 if (!compat20 &&
326 context->cipher->number != SSH_CIPHER_NONE &&
327 detect_attack(src, bytes, NULL) == DEATTACK_DETECTED)
5260325f 328 packet_disconnect("crc32 compensation attack: network attack detected");
329
94ec8c6b 330 cipher_decrypt(context, dest, src, bytes);
8efc0c15 331}
332
aa3378df 333/*
334 * Causes any further packets to be encrypted using the given key. The same
335 * key is used for both sending and reception. However, both directions are
336 * encrypted independently of each other.
337 */
8efc0c15 338
339void
1e3b8b07 340packet_set_encryption_key(const u_char *key, u_int keylen,
94ec8c6b 341 int number)
8efc0c15 342{
94ec8c6b 343 Cipher *cipher = cipher_by_number(number);
344 if (cipher == NULL)
345 fatal("packet_set_encryption_key: unknown cipher number %d", number);
7e7327a1 346 if (keylen < 20)
94ec8c6b 347 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
348 cipher_init(&receive_context, cipher, key, keylen, NULL, 0);
349 cipher_init(&send_context, cipher, key, keylen, NULL, 0);
8efc0c15 350}
351
352/* Starts constructing a packet to send. */
353
354void
7e7327a1 355packet_start1(int type)
8efc0c15 356{
5260325f 357 char buf[9];
8efc0c15 358
5260325f 359 buffer_clear(&outgoing_packet);
360 memset(buf, 0, 8);
361 buf[8] = type;
362 buffer_append(&outgoing_packet, buf, 9);
8efc0c15 363}
364
7e7327a1 365void
366packet_start2(int type)
367{
368 char buf[4+1+1];
369
370 buffer_clear(&outgoing_packet);
371 memset(buf, 0, sizeof buf);
372 /* buf[0..3] = payload_len; */
373 /* buf[4] = pad_len; */
374 buf[5] = type & 0xff;
375 buffer_append(&outgoing_packet, buf, sizeof buf);
376}
377
378void
379packet_start(int type)
380{
12bf85ed 381 DBG(debug("packet_start[%d]", type));
7e7327a1 382 if (use_ssh2_packet_format)
383 packet_start2(type);
384 else
385 packet_start1(type);
386}
387
8efc0c15 388/* Appends a character to the packet data. */
389
390void
391packet_put_char(int value)
392{
5260325f 393 char ch = value;
394 buffer_append(&outgoing_packet, &ch, 1);
8efc0c15 395}
396
397/* Appends an integer to the packet data. */
398
399void
1e3b8b07 400packet_put_int(u_int value)
8efc0c15 401{
5260325f 402 buffer_put_int(&outgoing_packet, value);
8efc0c15 403}
404
405/* Appends a string to packet data. */
406
407void
1e3b8b07 408packet_put_string(const char *buf, u_int len)
8efc0c15 409{
5260325f 410 buffer_put_string(&outgoing_packet, buf, len);
8efc0c15 411}
7e7327a1 412void
413packet_put_cstring(const char *str)
414{
415 buffer_put_string(&outgoing_packet, str, strlen(str));
416}
417
418void
1e3b8b07 419packet_put_raw(const char *buf, u_int len)
7e7327a1 420{
421 buffer_append(&outgoing_packet, buf, len);
422}
423
8efc0c15 424
425/* Appends an arbitrary precision integer to packet data. */
426
427void
5260325f 428packet_put_bignum(BIGNUM * value)
8efc0c15 429{
5260325f 430 buffer_put_bignum(&outgoing_packet, value);
8efc0c15 431}
7e7327a1 432void
433packet_put_bignum2(BIGNUM * value)
434{
435 buffer_put_bignum2(&outgoing_packet, value);
436}
8efc0c15 437
aa3378df 438/*
439 * Finalizes and sends the packet. If the encryption key has been set,
440 * encrypts the packet before sending.
441 */
5260325f 442
8efc0c15 443void
5ca51e19 444packet_send1(void)
8efc0c15 445{
5260325f 446 char buf[8], *cp;
447 int i, padding, len;
1e3b8b07 448 u_int checksum;
5260325f 449 u_int32_t rand = 0;
450
aa3378df 451 /*
452 * If using packet compression, compress the payload of the outgoing
453 * packet.
454 */
5260325f 455 if (packet_compression) {
456 buffer_clear(&compression_buffer);
457 /* Skip padding. */
458 buffer_consume(&outgoing_packet, 8);
459 /* padding */
460 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
461 buffer_compress(&outgoing_packet, &compression_buffer);
462 buffer_clear(&outgoing_packet);
463 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
464 buffer_len(&compression_buffer));
465 }
466 /* Compute packet length without padding (add checksum, remove padding). */
467 len = buffer_len(&outgoing_packet) + 4 - 8;
468
1d1ffb87 469 /* Insert padding. Initialized to zero in packet_start1() */
5260325f 470 padding = 8 - len % 8;
471 if (cipher_type != SSH_CIPHER_NONE) {
472 cp = buffer_ptr(&outgoing_packet);
473 for (i = 0; i < padding; i++) {
474 if (i % 4 == 0)
475 rand = arc4random();
476 cp[7 - i] = rand & 0xff;
477 rand >>= 8;
478 }
479 }
480 buffer_consume(&outgoing_packet, 8 - padding);
481
482 /* Add check bytes. */
1e3b8b07 483 checksum = ssh_crc32((u_char *) buffer_ptr(&outgoing_packet),
2e73a022 484 buffer_len(&outgoing_packet));
5260325f 485 PUT_32BIT(buf, checksum);
486 buffer_append(&outgoing_packet, buf, 4);
8efc0c15 487
488#ifdef PACKET_DEBUG
5260325f 489 fprintf(stderr, "packet_send plain: ");
490 buffer_dump(&outgoing_packet);
8efc0c15 491#endif
492
5260325f 493 /* Append to output. */
494 PUT_32BIT(buf, len);
495 buffer_append(&output, buf, 4);
496 buffer_append_space(&output, &cp, buffer_len(&outgoing_packet));
497 packet_encrypt(&send_context, cp, buffer_ptr(&outgoing_packet),
498 buffer_len(&outgoing_packet));
499
8efc0c15 500#ifdef PACKET_DEBUG
5260325f 501 fprintf(stderr, "encrypted: ");
502 buffer_dump(&output);
8efc0c15 503#endif
504
5260325f 505 buffer_clear(&outgoing_packet);
8efc0c15 506
aa3378df 507 /*
508 * Note that the packet is now only buffered in output. It won\'t be
509 * actually sent until packet_write_wait or packet_write_poll is
510 * called.
511 */
8efc0c15 512}
513
d1ac6175 514void
515set_newkeys(int mode)
516{
517 Enc *enc;
518 Mac *mac;
519 Comp *comp;
520 CipherContext *cc;
521
522 debug("newkeys: mode %d", mode);
523
524 cc = (mode == MODE_OUT) ? &send_context : &receive_context;
525 if (newkeys[mode] != NULL) {
526 debug("newkeys: rekeying");
527 memset(cc, 0, sizeof(*cc));
d8ee838b 528 /* todo: free old keys, reset compression/cipher-ctxt; */
529 xfree(newkeys[mode]);
d1ac6175 530 }
531 newkeys[mode] = kex_get_newkeys(mode);
532 if (newkeys[mode] == NULL)
533 fatal("newkeys: no keys for mode %d", mode);
534 enc = &newkeys[mode]->enc;
535 mac = &newkeys[mode]->mac;
536 comp = &newkeys[mode]->comp;
537 if (mac->md != NULL)
538 mac->enabled = 1;
539 DBG(debug("cipher_init_context: %d", mode));
540 cipher_init(cc, enc->cipher, enc->key, enc->cipher->key_len,
541 enc->iv, enc->cipher->block_size);
542 clear_enc_keys(enc, enc->cipher->key_len);
543 if (comp->type != 0 && comp->enabled == 0) {
544 comp->enabled = 1;
545 if (! packet_compression)
546 packet_start_compression(6);
547 }
548}
549
7e7327a1 550/*
551 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
552 */
553void
5ca51e19 554packet_send2(void)
7e7327a1 555{
b2552997 556 static u_int32_t seqnr = 0;
1e3b8b07 557 u_char *macbuf = NULL;
7e7327a1 558 char *cp;
1e3b8b07 559 u_int packet_length = 0;
560 u_int i, padlen, len;
7e7327a1 561 u_int32_t rand = 0;
7e7327a1 562 int type;
563 Enc *enc = NULL;
564 Mac *mac = NULL;
565 Comp *comp = NULL;
566 int block_size;
567
d1ac6175 568 if (newkeys[MODE_OUT] != NULL) {
569 enc = &newkeys[MODE_OUT]->enc;
570 mac = &newkeys[MODE_OUT]->mac;
571 comp = &newkeys[MODE_OUT]->comp;
7e7327a1 572 }
94ec8c6b 573 block_size = enc ? enc->cipher->block_size : 8;
7e7327a1 574
575 cp = buffer_ptr(&outgoing_packet);
576 type = cp[5] & 0xff;
577
578#ifdef PACKET_DEBUG
579 fprintf(stderr, "plain: ");
580 buffer_dump(&outgoing_packet);
581#endif
582
583 if (comp && comp->enabled) {
584 len = buffer_len(&outgoing_packet);
585 /* skip header, compress only payload */
586 buffer_consume(&outgoing_packet, 5);
587 buffer_clear(&compression_buffer);
588 buffer_compress(&outgoing_packet, &compression_buffer);
589 buffer_clear(&outgoing_packet);
590 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
591 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
592 buffer_len(&compression_buffer));
593 DBG(debug("compression: raw %d compressed %d", len,
594 buffer_len(&outgoing_packet)));
595 }
596
597 /* sizeof (packet_len + pad_len + payload) */
598 len = buffer_len(&outgoing_packet);
599
600 /*
601 * calc size of padding, alloc space, get random data,
602 * minimum padding is 4 bytes
603 */
604 padlen = block_size - (len % block_size);
605 if (padlen < 4)
606 padlen += block_size;
607 buffer_append_space(&outgoing_packet, &cp, padlen);
94ec8c6b 608 if (enc && enc->cipher->number != SSH_CIPHER_NONE) {
1d1ffb87 609 /* random padding */
7e7327a1 610 for (i = 0; i < padlen; i++) {
611 if (i % 4 == 0)
612 rand = arc4random();
613 cp[i] = rand & 0xff;
6e18cb71 614 rand >>= 8;
7e7327a1 615 }
1d1ffb87 616 } else {
617 /* clear padding */
618 memset(cp, 0, padlen);
7e7327a1 619 }
620 /* packet_length includes payload, padding and padding length field */
621 packet_length = buffer_len(&outgoing_packet) - 4;
622 cp = buffer_ptr(&outgoing_packet);
623 PUT_32BIT(cp, packet_length);
624 cp[4] = padlen & 0xff;
625 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
626
627 /* compute MAC over seqnr and packet(length fields, payload, padding) */
628 if (mac && mac->enabled) {
b2552997 629 macbuf = mac_compute(mac, seqnr,
1e3b8b07 630 (u_char *) buffer_ptr(&outgoing_packet),
b2552997 631 buffer_len(&outgoing_packet));
94ec8c6b 632 DBG(debug("done calc MAC out #%d", seqnr));
7e7327a1 633 }
634 /* encrypt packet and append to output buffer. */
635 buffer_append_space(&output, &cp, buffer_len(&outgoing_packet));
636 packet_encrypt(&send_context, cp, buffer_ptr(&outgoing_packet),
637 buffer_len(&outgoing_packet));
638 /* append unencrypted MAC */
639 if (mac && mac->enabled)
640 buffer_append(&output, (char *)macbuf, mac->mac_len);
641#ifdef PACKET_DEBUG
642 fprintf(stderr, "encrypted: ");
643 buffer_dump(&output);
644#endif
6ae2364d 645 /* increment sequence number for outgoing packets */
646 if (++seqnr == 0)
647 log("outgoing seqnr wraps around");
7e7327a1 648 buffer_clear(&outgoing_packet);
649
d1ac6175 650 if (type == SSH2_MSG_NEWKEYS)
651 set_newkeys(MODE_OUT);
7e7327a1 652}
653
654void
655packet_send()
656{
657 if (use_ssh2_packet_format)
658 packet_send2();
659 else
660 packet_send1();
661 DBG(debug("packet_send done"));
662}
663
aa3378df 664/*
665 * Waits until a packet has been received, and returns its type. Note that
666 * no other data is processed until this returns, so this function should not
667 * be used during the interactive session.
668 */
8efc0c15 669
670int
671packet_read(int *payload_len_ptr)
672{
5260325f 673 int type, len;
20e04e90 674 fd_set *setp;
5260325f 675 char buf[8192];
7e7327a1 676 DBG(debug("packet_read()"));
5260325f 677
20e04e90 678 setp = (fd_set *)xmalloc(howmany(connection_in+1, NFDBITS) *
679 sizeof(fd_mask));
680
5260325f 681 /* Since we are blocking, ensure that all written packets have been sent. */
682 packet_write_wait();
683
684 /* Stay in the loop until we have received a complete packet. */
685 for (;;) {
686 /* Try to read a packet from the buffer. */
687 type = packet_read_poll(payload_len_ptr);
1d1ffb87 688 if (!use_ssh2_packet_format && (
689 type == SSH_SMSG_SUCCESS
5260325f 690 || type == SSH_SMSG_FAILURE
691 || type == SSH_CMSG_EOF
1d1ffb87 692 || type == SSH_CMSG_EXIT_CONFIRMATION))
5260325f 693 packet_integrity_check(*payload_len_ptr, 0, type);
694 /* If we got a packet, return it. */
20e04e90 695 if (type != SSH_MSG_NONE) {
696 xfree(setp);
5260325f 697 return type;
20e04e90 698 }
aa3378df 699 /*
700 * Otherwise, wait for some data to arrive, add it to the
701 * buffer, and try again.
702 */
20e04e90 703 memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
704 sizeof(fd_mask));
705 FD_SET(connection_in, setp);
aa3378df 706
5260325f 707 /* Wait for some data to arrive. */
20e04e90 708 while (select(connection_in + 1, setp, NULL, NULL, NULL) == -1 &&
fd193ca4 709 (errno == EAGAIN || errno == EINTR))
710 ;
aa3378df 711
5260325f 712 /* Read data from the socket. */
713 len = read(connection_in, buf, sizeof(buf));
89cafde6 714 if (len == 0) {
715 log("Connection closed by %.200s", get_remote_ipaddr());
716 fatal_cleanup();
717 }
5260325f 718 if (len < 0)
719 fatal("Read from socket failed: %.100s", strerror(errno));
720 /* Append it to the buffer. */
721 packet_process_incoming(buf, len);
722 }
723 /* NOTREACHED */
8efc0c15 724}
725
aa3378df 726/*
727 * Waits until a packet has been received, verifies that its type matches
728 * that given, and gives a fatal error and exits if there is a mismatch.
729 */
8efc0c15 730
731void
732packet_read_expect(int *payload_len_ptr, int expected_type)
733{
5260325f 734 int type;
8efc0c15 735
5260325f 736 type = packet_read(payload_len_ptr);
737 if (type != expected_type)
738 packet_disconnect("Protocol error: expected packet type %d, got %d",
7e7327a1 739 expected_type, type);
8efc0c15 740}
741
742/* Checks if a full packet is available in the data received so far via
5260325f 743 * packet_process_incoming. If so, reads the packet; otherwise returns
744 * SSH_MSG_NONE. This does not wait for data from the connection.
745 *
746 * SSH_MSG_DISCONNECT is handled specially here. Also,
747 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
748 * to higher levels.
749 *
750 * The returned payload_len does include space consumed by:
751 * Packet length
752 * Padding
753 * Packet type
754 * Check bytes
755 */
8efc0c15 756
757int
7e7327a1 758packet_read_poll1(int *payload_len_ptr)
8efc0c15 759{
1e3b8b07 760 u_int len, padded_len;
761 u_char *ucp;
7e7327a1 762 char buf[8], *cp;
1e3b8b07 763 u_int checksum, stored_checksum;
5260325f 764
5260325f 765 /* Check if input size is less than minimum packet size. */
766 if (buffer_len(&input) < 4 + 8)
767 return SSH_MSG_NONE;
768 /* Get length of incoming packet. */
1e3b8b07 769 ucp = (u_char *) buffer_ptr(&input);
5260325f 770 len = GET_32BIT(ucp);
771 if (len < 1 + 2 + 2 || len > 256 * 1024)
772 packet_disconnect("Bad packet length %d.", len);
773 padded_len = (len + 8) & ~7;
774
775 /* Check if the packet has been entirely received. */
776 if (buffer_len(&input) < 4 + padded_len)
777 return SSH_MSG_NONE;
778
779 /* The entire packet is in buffer. */
780
781 /* Consume packet length. */
782 buffer_consume(&input, 4);
783
784 /* Copy data to incoming_packet. */
785 buffer_clear(&incoming_packet);
786 buffer_append_space(&incoming_packet, &cp, padded_len);
787 packet_decrypt(&receive_context, cp, buffer_ptr(&input), padded_len);
788 buffer_consume(&input, padded_len);
8efc0c15 789
790#ifdef PACKET_DEBUG
5260325f 791 fprintf(stderr, "read_poll plain: ");
792 buffer_dump(&incoming_packet);
8efc0c15 793#endif
5260325f 794
795 /* Compute packet checksum. */
1e3b8b07 796 checksum = ssh_crc32((u_char *) buffer_ptr(&incoming_packet),
7e7327a1 797 buffer_len(&incoming_packet) - 4);
5260325f 798
799 /* Skip padding. */
800 buffer_consume(&incoming_packet, 8 - len % 8);
801
802 /* Test check bytes. */
803
804 if (len != buffer_len(&incoming_packet))
805 packet_disconnect("packet_read_poll: len %d != buffer_len %d.",
7e7327a1 806 len, buffer_len(&incoming_packet));
5260325f 807
1e3b8b07 808 ucp = (u_char *) buffer_ptr(&incoming_packet) + len - 4;
5260325f 809 stored_checksum = GET_32BIT(ucp);
810 if (checksum != stored_checksum)
811 packet_disconnect("Corrupted check bytes on input.");
812 buffer_consume_end(&incoming_packet, 4);
813
814 /* If using packet compression, decompress the packet. */
815 if (packet_compression) {
816 buffer_clear(&compression_buffer);
817 buffer_uncompress(&incoming_packet, &compression_buffer);
818 buffer_clear(&incoming_packet);
819 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
7e7327a1 820 buffer_len(&compression_buffer));
5260325f 821 }
822 /* Get packet type. */
823 buffer_get(&incoming_packet, &buf[0], 1);
824
825 /* Return length of payload (without type field). */
826 *payload_len_ptr = buffer_len(&incoming_packet);
827
5260325f 828 /* Return type. */
1e3b8b07 829 return (u_char) buf[0];
5260325f 830}
831
7e7327a1 832int
833packet_read_poll2(int *payload_len_ptr)
834{
b2552997 835 static u_int32_t seqnr = 0;
836 static u_int packet_length = 0;
1e3b8b07 837 u_int padlen, need;
838 u_char buf[8], *macbuf;
839 u_char *ucp;
7e7327a1 840 char *cp;
7e7327a1 841 int type;
842 int maclen, block_size;
843 Enc *enc = NULL;
844 Mac *mac = NULL;
845 Comp *comp = NULL;
846
d1ac6175 847 if (newkeys[MODE_IN] != NULL) {
848 enc = &newkeys[MODE_IN]->enc;
849 mac = &newkeys[MODE_IN]->mac;
850 comp = &newkeys[MODE_IN]->comp;
7e7327a1 851 }
852 maclen = mac && mac->enabled ? mac->mac_len : 0;
94ec8c6b 853 block_size = enc ? enc->cipher->block_size : 8;
7e7327a1 854
855 if (packet_length == 0) {
856 /*
857 * check if input size is less than the cipher block size,
858 * decrypt first block and extract length of incoming packet
859 */
860 if (buffer_len(&input) < block_size)
861 return SSH_MSG_NONE;
862 buffer_clear(&incoming_packet);
863 buffer_append_space(&incoming_packet, &cp, block_size);
864 packet_decrypt(&receive_context, cp, buffer_ptr(&input),
865 block_size);
1e3b8b07 866 ucp = (u_char *) buffer_ptr(&incoming_packet);
7e7327a1 867 packet_length = GET_32BIT(ucp);
868 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
869 buffer_dump(&incoming_packet);
870 packet_disconnect("Bad packet length %d.", packet_length);
871 }
872 DBG(debug("input: packet len %d", packet_length+4));
873 buffer_consume(&input, block_size);
874 }
875 /* we have a partial packet of block_size bytes */
876 need = 4 + packet_length - block_size;
877 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
878 need, maclen));
879 if (need % block_size != 0)
880 fatal("padding error: need %d block %d mod %d",
881 need, block_size, need % block_size);
882 /*
883 * check if the entire packet has been received and
884 * decrypt into incoming_packet
885 */
886 if (buffer_len(&input) < need + maclen)
887 return SSH_MSG_NONE;
888#ifdef PACKET_DEBUG
889 fprintf(stderr, "read_poll enc/full: ");
890 buffer_dump(&input);
891#endif
892 buffer_append_space(&incoming_packet, &cp, need);
893 packet_decrypt(&receive_context, cp, buffer_ptr(&input), need);
894 buffer_consume(&input, need);
895 /*
896 * compute MAC over seqnr and packet,
897 * increment sequence number for incoming packet
898 */
6ae2364d 899 if (mac && mac->enabled) {
b2552997 900 macbuf = mac_compute(mac, seqnr,
1e3b8b07 901 (u_char *) buffer_ptr(&incoming_packet),
b2552997 902 buffer_len(&incoming_packet));
7e7327a1 903 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
94ec8c6b 904 packet_disconnect("Corrupted MAC on input.");
905 DBG(debug("MAC #%d ok", seqnr));
7e7327a1 906 buffer_consume(&input, mac->mac_len);
907 }
6ae2364d 908 if (++seqnr == 0)
909 log("incoming seqnr wraps around");
7e7327a1 910
911 /* get padlen */
912 cp = buffer_ptr(&incoming_packet) + 4;
913 padlen = *cp & 0xff;
914 DBG(debug("input: padlen %d", padlen));
915 if (padlen < 4)
916 packet_disconnect("Corrupted padlen %d on input.", padlen);
917
918 /* skip packet size + padlen, discard padding */
919 buffer_consume(&incoming_packet, 4 + 1);
920 buffer_consume_end(&incoming_packet, padlen);
921
922 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
923 if (comp && comp->enabled) {
924 buffer_clear(&compression_buffer);
925 buffer_uncompress(&incoming_packet, &compression_buffer);
926 buffer_clear(&incoming_packet);
927 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
928 buffer_len(&compression_buffer));
929 DBG(debug("input: len after de-compress %d", buffer_len(&incoming_packet)));
930 }
931 /*
932 * get packet type, implies consume.
933 * return length of payload (without type field)
934 */
935 buffer_get(&incoming_packet, (char *)&buf[0], 1);
936 *payload_len_ptr = buffer_len(&incoming_packet);
937
938 /* reset for next packet */
939 packet_length = 0;
940
941 /* extract packet type */
1e3b8b07 942 type = (u_char)buf[0];
7e7327a1 943
d1ac6175 944 if (type == SSH2_MSG_NEWKEYS)
945 set_newkeys(MODE_IN);
7e7327a1 946
947#ifdef PACKET_DEBUG
12bf85ed 948 fprintf(stderr, "read/plain[%d]:\r\n", type);
7e7327a1 949 buffer_dump(&incoming_packet);
950#endif
1e3b8b07 951 return (u_char)type;
7e7327a1 952}
953
954int
955packet_read_poll(int *payload_len_ptr)
956{
957 char *msg;
958 for (;;) {
959 int type = use_ssh2_packet_format ?
960 packet_read_poll2(payload_len_ptr):
961 packet_read_poll1(payload_len_ptr);
962
963 if(compat20) {
964 int reason;
965 if (type != 0)
966 DBG(debug("received packet type %d", type));
967 switch(type) {
968 case SSH2_MSG_IGNORE:
969 break;
970 case SSH2_MSG_DEBUG:
971 packet_get_char();
972 msg = packet_get_string(NULL);
973 debug("Remote: %.900s", msg);
974 xfree(msg);
975 msg = packet_get_string(NULL);
976 xfree(msg);
977 break;
978 case SSH2_MSG_DISCONNECT:
979 reason = packet_get_int();
980 msg = packet_get_string(NULL);
7c49df64 981 log("Received disconnect from %s: %d: %.400s", get_remote_ipaddr(),
982 reason, msg);
7e7327a1 983 xfree(msg);
984 fatal_cleanup();
985 break;
986 default:
987 return type;
988 break;
2b87da3b 989 }
7e7327a1 990 } else {
991 switch(type) {
992 case SSH_MSG_IGNORE:
993 break;
994 case SSH_MSG_DEBUG:
995 msg = packet_get_string(NULL);
996 debug("Remote: %.900s", msg);
997 xfree(msg);
998 break;
999 case SSH_MSG_DISCONNECT:
1000 msg = packet_get_string(NULL);
7c49df64 1001 log("Received disconnect from %s: %.400s", get_remote_ipaddr(),
1002 msg);
7e7327a1 1003 fatal_cleanup();
1004 xfree(msg);
1005 break;
1006 default:
1007 if (type != 0)
1008 DBG(debug("received packet type %d", type));
1009 return type;
1010 break;
2b87da3b 1011 }
7e7327a1 1012 }
1013 }
1014}
1015
aa3378df 1016/*
1017 * Buffers the given amount of input characters. This is intended to be used
1018 * together with packet_read_poll.
1019 */
8efc0c15 1020
1021void
1e3b8b07 1022packet_process_incoming(const char *buf, u_int len)
8efc0c15 1023{
5260325f 1024 buffer_append(&input, buf, len);
8efc0c15 1025}
1026
1027/* Returns a character from the packet. */
1028
1e3b8b07 1029u_int
8efc0c15 1030packet_get_char()
1031{
5260325f 1032 char ch;
1033 buffer_get(&incoming_packet, &ch, 1);
1e3b8b07 1034 return (u_char) ch;
8efc0c15 1035}
1036
1037/* Returns an integer from the packet data. */
1038
1e3b8b07 1039u_int
8efc0c15 1040packet_get_int()
1041{
5260325f 1042 return buffer_get_int(&incoming_packet);
8efc0c15 1043}
1044
aa3378df 1045/*
1046 * Returns an arbitrary precision integer from the packet data. The integer
1047 * must have been initialized before this call.
1048 */
8efc0c15 1049
1050void
5260325f 1051packet_get_bignum(BIGNUM * value, int *length_ptr)
8efc0c15 1052{
5260325f 1053 *length_ptr = buffer_get_bignum(&incoming_packet, value);
8efc0c15 1054}
1055
7e7327a1 1056void
1057packet_get_bignum2(BIGNUM * value, int *length_ptr)
1058{
1059 *length_ptr = buffer_get_bignum2(&incoming_packet, value);
1060}
1061
1062char *
1063packet_get_raw(int *length_ptr)
1064{
1065 int bytes = buffer_len(&incoming_packet);
1066 if (length_ptr != NULL)
1067 *length_ptr = bytes;
1068 return buffer_ptr(&incoming_packet);
1069}
1070
6ae2364d 1071int
1072packet_remaining(void)
1073{
1074 return buffer_len(&incoming_packet);
1075}
1076
aa3378df 1077/*
1078 * Returns a string from the packet data. The string is allocated using
1079 * xmalloc; it is the responsibility of the calling program to free it when
1080 * no longer needed. The length_ptr argument may be NULL, or point to an
1081 * integer into which the length of the string is stored.
1082 */
8efc0c15 1083
aa3378df 1084char *
1e3b8b07 1085packet_get_string(u_int *length_ptr)
8efc0c15 1086{
5260325f 1087 return buffer_get_string(&incoming_packet, length_ptr);
8efc0c15 1088}
1089
aa3378df 1090/*
1091 * Sends a diagnostic message from the server to the client. This message
1092 * can be sent at any time (but not while constructing another message). The
1093 * message is printed immediately, but only if the client is being executed
1094 * in verbose mode. These messages are primarily intended to ease debugging
1095 * authentication problems. The length of the formatted message must not
1096 * exceed 1024 bytes. This will automatically call packet_write_wait.
1097 */
8efc0c15 1098
1099void
5260325f 1100packet_send_debug(const char *fmt,...)
8efc0c15 1101{
5260325f 1102 char buf[1024];
1103 va_list args;
1104
f72fc97f 1105 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1106 return;
1107
5260325f 1108 va_start(args, fmt);
1109 vsnprintf(buf, sizeof(buf), fmt, args);
1110 va_end(args);
1111
c4bc58eb 1112 if (compat20) {
1113 packet_start(SSH2_MSG_DEBUG);
1114 packet_put_char(0); /* bool: always display */
1115 packet_put_cstring(buf);
1116 packet_put_cstring("");
1117 } else {
1118 packet_start(SSH_MSG_DEBUG);
1119 packet_put_cstring(buf);
1120 }
5260325f 1121 packet_send();
1122 packet_write_wait();
8efc0c15 1123}
1124
aa3378df 1125/*
1126 * Logs the error plus constructs and sends a disconnect packet, closes the
1127 * connection, and exits. This function never returns. The error message
1128 * should not contain a newline. The length of the formatted message must
1129 * not exceed 1024 bytes.
1130 */
8efc0c15 1131
1132void
5260325f 1133packet_disconnect(const char *fmt,...)
1134{
1135 char buf[1024];
1136 va_list args;
1137 static int disconnecting = 0;
1138 if (disconnecting) /* Guard against recursive invocations. */
1139 fatal("packet_disconnect called recursively.");
1140 disconnecting = 1;
1141
aa3378df 1142 /*
1143 * Format the message. Note that the caller must make sure the
1144 * message is of limited size.
1145 */
5260325f 1146 va_start(args, fmt);
1147 vsnprintf(buf, sizeof(buf), fmt, args);
1148 va_end(args);
1149
1150 /* Send the disconnect message to the other side, and wait for it to get sent. */
7e7327a1 1151 if (compat20) {
1152 packet_start(SSH2_MSG_DISCONNECT);
1153 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1154 packet_put_cstring(buf);
1155 packet_put_cstring("");
1156 } else {
1157 packet_start(SSH_MSG_DISCONNECT);
1158 packet_put_string(buf, strlen(buf));
1159 }
5260325f 1160 packet_send();
1161 packet_write_wait();
1162
1163 /* Stop listening for connections. */
1164 channel_stop_listening();
1165
1166 /* Close the connection. */
1167 packet_close();
1168
1169 /* Display the error locally and exit. */
57112b5a 1170 log("Disconnecting: %.100s", buf);
1171 fatal_cleanup();
8efc0c15 1172}
1173
aa3378df 1174/* Checks if there is any buffered output, and tries to write some of the output. */
8efc0c15 1175
1176void
1177packet_write_poll()
1178{
5260325f 1179 int len = buffer_len(&output);
1180 if (len > 0) {
1181 len = write(connection_out, buffer_ptr(&output), len);
1182 if (len <= 0) {
1183 if (errno == EAGAIN)
1184 return;
1185 else
1186 fatal("Write failed: %.100s", strerror(errno));
1187 }
1188 buffer_consume(&output, len);
1189 }
8efc0c15 1190}
1191
aa3378df 1192/*
1193 * Calls packet_write_poll repeatedly until all pending output data has been
1194 * written.
1195 */
8efc0c15 1196
1197void
1198packet_write_wait()
1199{
20e04e90 1200 fd_set *setp;
1201
1202 setp = (fd_set *)xmalloc(howmany(connection_out + 1, NFDBITS) *
1203 sizeof(fd_mask));
5260325f 1204 packet_write_poll();
1205 while (packet_have_data_to_write()) {
20e04e90 1206 memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
1207 sizeof(fd_mask));
1208 FD_SET(connection_out, setp);
1209 while (select(connection_out + 1, NULL, setp, NULL, NULL) == -1 &&
fd193ca4 1210 (errno == EAGAIN || errno == EINTR))
1211 ;
5260325f 1212 packet_write_poll();
1213 }
20e04e90 1214 xfree(setp);
8efc0c15 1215}
1216
1217/* Returns true if there is buffered data to write to the connection. */
1218
1219int
1220packet_have_data_to_write()
1221{
5260325f 1222 return buffer_len(&output) != 0;
8efc0c15 1223}
1224
1225/* Returns true if there is not too much data to write to the connection. */
1226
1227int
1228packet_not_very_much_data_to_write()
1229{
5260325f 1230 if (interactive_mode)
1231 return buffer_len(&output) < 16384;
1232 else
1233 return buffer_len(&output) < 128 * 1024;
8efc0c15 1234}
1235
1236/* Informs that the current session is interactive. Sets IP flags for that. */
1237
1238void
b5c334cc 1239packet_set_interactive(int interactive)
8efc0c15 1240{
b5c334cc 1241 static int called = 0;
64e0e67e 1242#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
b5c334cc 1243 int lowdelay = IPTOS_LOWDELAY;
1244 int throughput = IPTOS_THROUGHPUT;
64e0e67e 1245#endif
5260325f 1246 int on = 1;
1247
b5c334cc 1248 if (called)
1249 return;
1250 called = 1;
1251
5260325f 1252 /* Record that we are in interactive mode. */
1253 interactive_mode = interactive;
1254
48e671d5 1255 /* Only set socket options if using a socket. */
1256 if (!packet_connection_is_on_socket())
5260325f 1257 return;
48e671d5 1258 /*
f546c780 1259 * IPTOS_LOWDELAY and IPTOS_THROUGHPUT are IPv4 only
48e671d5 1260 */
5260325f 1261 if (interactive) {
aa3378df 1262 /*
1263 * Set IP options for an interactive connection. Use
1264 * IPTOS_LOWDELAY and TCP_NODELAY.
1265 */
132dd316 1266#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
f546c780 1267 if (packet_connection_is_ipv4()) {
0e3c1f95 1268 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS,
f546c780 1269 (void *) &lowdelay, sizeof(lowdelay)) < 0)
0e3c1f95 1270 error("setsockopt IPTOS_LOWDELAY: %.100s",
f546c780 1271 strerror(errno));
1272 }
c04f75f1 1273#endif
5260325f 1274 if (setsockopt(connection_in, IPPROTO_TCP, TCP_NODELAY, (void *) &on,
48e671d5 1275 sizeof(on)) < 0)
5260325f 1276 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
f546c780 1277 } else if (packet_connection_is_ipv4()) {
aa3378df 1278 /*
1279 * Set IP options for a non-interactive connection. Use
1280 * IPTOS_THROUGHPUT.
1281 */
132dd316 1282#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
5260325f 1283 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, (void *) &throughput,
48e671d5 1284 sizeof(throughput)) < 0)
5260325f 1285 error("setsockopt IPTOS_THROUGHPUT: %.100s", strerror(errno));
c04f75f1 1286#endif
5260325f 1287 }
8efc0c15 1288}
1289
1290/* Returns true if the current connection is interactive. */
1291
1292int
1293packet_is_interactive()
1294{
5260325f 1295 return interactive_mode;
8efc0c15 1296}
9d6b7add 1297
1298int
1299packet_set_maxsize(int s)
1300{
5260325f 1301 static int called = 0;
1302 if (called) {
7e7327a1 1303 log("packet_set_maxsize: called twice: old %d new %d",
1304 max_packet_size, s);
5260325f 1305 return -1;
1306 }
1307 if (s < 4 * 1024 || s > 1024 * 1024) {
1308 log("packet_set_maxsize: bad size %d", s);
1309 return -1;
1310 }
1311 log("packet_set_maxsize: setting to %d", s);
1312 max_packet_size = s;
1313 return s;
9d6b7add 1314}
a6215e53 1315
1316/*
1317 * 9.2. Ignored Data Message
1318 *
1319 * byte SSH_MSG_IGNORE
1320 * string data
1321 *
1322 * All implementations MUST understand (and ignore) this message at any
1323 * time (after receiving the protocol version). No implementation is
1324 * required to send them. This message can be used as an additional
1325 * protection measure against advanced traffic analysis techniques.
1326 */
1327/* size of current + ignore message should be n*sumlen bytes (w/o mac) */
1328void
1329packet_inject_ignore(int sumlen)
1330{
95ce5599 1331 int blocksize, padlen, have, need, nb, mini, nbytes;
a6215e53 1332 Enc *enc = NULL;
1333
1334 if (use_ssh2_packet_format == 0)
1335 return;
1336
1337 have = buffer_len(&outgoing_packet);
1338 debug2("packet_inject_ignore: current %d", have);
d1ac6175 1339 if (newkeys[MODE_OUT] != NULL)
1340 enc = &newkeys[MODE_OUT]->enc;
a6215e53 1341 blocksize = enc ? enc->cipher->block_size : 8;
1342 padlen = blocksize - (have % blocksize);
1343 if (padlen < 4)
1344 padlen += blocksize;
1345 have += padlen;
1346 have /= blocksize; /* # of blocks for current message */
1347
1348 nb = roundup(sumlen, blocksize) / blocksize; /* blocks for both */
1349 mini = roundup(5+1+4+4, blocksize) / blocksize; /* minsize ignore msg */
1350 need = nb - (have % nb); /* blocks for ignore */
1351 if (need <= mini)
1352 need += nb;
1353 nbytes = (need - mini) * blocksize; /* size of ignore payload */
1354 debug2("packet_inject_ignore: block %d have %d nb %d mini %d need %d",
1355 blocksize, have, nb, mini, need);
1356
1357 /* enqueue current message and append a ignore message */
1358 packet_send();
95ce5599 1359 packet_send_ignore(nbytes);
1360}
1361
1362void
1363packet_send_ignore(int nbytes)
1364{
1365 u_int32_t rand = 0;
1366 int i;
1367
1368 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
a6215e53 1369 packet_put_int(nbytes);
1370 for(i = 0; i < nbytes; i++) {
1371 if (i % 4 == 0)
1372 rand = arc4random();
1373 packet_put_char(rand & 0xff);
1374 rand >>= 8;
1375 }
1376}
This page took 0.318135 seconds and 5 git commands to generate.