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