1 /* $OpenBSD: packet.c,v 1.198 2014/07/15 15:54:14 millert Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
16 * SSH2 packet format added by Markus Friedl.
17 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 #include <sys/types.h>
43 #include "openbsd-compat/sys-queue.h"
44 #include <sys/param.h>
45 #include <sys/socket.h>
46 #ifdef HAVE_SYS_TIME_H
47 # include <sys/time.h>
50 #include <netinet/in.h>
51 #include <netinet/ip.h>
52 #include <arpa/inet.h>
90 #define PACKET_MAX_SIZE (256 * 1024)
100 TAILQ_ENTRY(packet
) next
;
105 struct session_state
{
107 * This variable contains the file descriptors used for
108 * communicating with the other side. connection_in is used for
109 * reading; connection_out for writing. These can be the same
110 * descriptor, in which case it is assumed to be a socket.
115 /* Protocol flags for the remote side. */
116 u_int remote_protocol_flags
;
118 /* Encryption context for receiving data. Only used for decryption. */
119 CipherContext receive_context
;
121 /* Encryption context for sending data. Only used for encryption. */
122 CipherContext send_context
;
124 /* Buffer for raw input data from the socket. */
127 /* Buffer for raw output data going to the socket. */
130 /* Buffer for the partial outgoing packet being constructed. */
131 Buffer outgoing_packet
;
133 /* Buffer for the incoming packet currently being processed. */
134 Buffer incoming_packet
;
136 /* Scratch buffer for packet compression/decompression. */
137 Buffer compression_buffer
;
138 int compression_buffer_ready
;
141 * Flag indicating whether packet compression/decompression is
144 int packet_compression
;
146 /* default maximum packet size */
147 u_int max_packet_size
;
149 /* Flag indicating whether this module has been initialized. */
152 /* Set to true if the connection is interactive. */
153 int interactive_mode
;
155 /* Set to true if we are the server side. */
158 /* Set to true if we are authenticated. */
159 int after_authentication
;
161 int keep_alive_timeouts
;
163 /* The maximum time that we will wait to send or receive a packet */
164 int packet_timeout_ms
;
166 /* Session key information for Encryption and MAC */
167 Newkeys
*newkeys
[MODE_MAX
];
168 struct packet_state p_read
, p_send
;
170 /* Volume-based rekeying */
171 u_int64_t max_blocks_in
, max_blocks_out
;
172 u_int32_t rekey_limit
;
174 /* Time-based rekeying */
175 time_t rekey_interval
; /* how often in seconds */
176 time_t rekey_time
; /* time of last rekeying */
178 /* Session key for protocol v1 */
179 u_char ssh1_key
[SSH_SESSION_KEY_LENGTH
];
182 /* roundup current message to extra_pad bytes */
185 /* XXX discard incoming data after MAC error */
186 u_int packet_discard
;
187 Mac
*packet_discard_mac
;
189 /* Used in packet_read_poll2() */
192 /* Used in packet_send2 */
195 /* Used in packet_set_interactive */
196 int set_interactive_called
;
198 /* Used in packet_set_maxsize */
199 int set_maxsize_called
;
201 TAILQ_HEAD(, packet
) outgoing
;
204 static struct session_state
*active_state
, *backup_state
;
206 static struct session_state
*
207 alloc_session_state(void)
209 struct session_state
*s
= xcalloc(1, sizeof(*s
));
211 s
->connection_in
= -1;
212 s
->connection_out
= -1;
213 s
->max_packet_size
= 32768;
214 s
->packet_timeout_ms
= -1;
219 * Sets the descriptors used for communication. Disables encryption until
220 * packet_set_encryption_key is called.
223 packet_set_connection(int fd_in
, int fd_out
)
225 const Cipher
*none
= cipher_by_name("none");
229 fatal("packet_set_connection: cannot load cipher 'none'");
230 if (active_state
== NULL
)
231 active_state
= alloc_session_state();
232 active_state
->connection_in
= fd_in
;
233 active_state
->connection_out
= fd_out
;
234 if ((r
= cipher_init(&active_state
->send_context
, none
,
235 (const u_char
*)"", 0, NULL
, 0, CIPHER_ENCRYPT
)) != 0 ||
236 (r
= cipher_init(&active_state
->receive_context
, none
,
237 (const u_char
*)"", 0, NULL
, 0, CIPHER_DECRYPT
)) != 0)
238 fatal("%s: cipher_init: %s", __func__
, ssh_err(r
));
239 active_state
->newkeys
[MODE_IN
] = active_state
->newkeys
[MODE_OUT
] = NULL
;
240 if (!active_state
->initialized
) {
241 active_state
->initialized
= 1;
242 buffer_init(&active_state
->input
);
243 buffer_init(&active_state
->output
);
244 buffer_init(&active_state
->outgoing_packet
);
245 buffer_init(&active_state
->incoming_packet
);
246 TAILQ_INIT(&active_state
->outgoing
);
247 active_state
->p_send
.packets
= active_state
->p_read
.packets
= 0;
252 packet_set_timeout(int timeout
, int count
)
254 if (timeout
<= 0 || count
<= 0) {
255 active_state
->packet_timeout_ms
= -1;
258 if ((INT_MAX
/ 1000) / count
< timeout
)
259 active_state
->packet_timeout_ms
= INT_MAX
;
261 active_state
->packet_timeout_ms
= timeout
* count
* 1000;
265 packet_stop_discard(void)
267 if (active_state
->packet_discard_mac
) {
270 memset(buf
, 'a', sizeof(buf
));
271 while (buffer_len(&active_state
->incoming_packet
) <
273 buffer_append(&active_state
->incoming_packet
, buf
,
275 (void) mac_compute(active_state
->packet_discard_mac
,
276 active_state
->p_read
.seqnr
,
277 buffer_ptr(&active_state
->incoming_packet
),
280 logit("Finished discarding for %.200s", get_remote_ipaddr());
285 packet_start_discard(Enc
*enc
, Mac
*mac
, u_int packet_length
, u_int discard
)
287 if (enc
== NULL
|| !cipher_is_cbc(enc
->cipher
) || (mac
&& mac
->etm
))
288 packet_disconnect("Packet corrupt");
289 if (packet_length
!= PACKET_MAX_SIZE
&& mac
&& mac
->enabled
)
290 active_state
->packet_discard_mac
= mac
;
291 if (buffer_len(&active_state
->input
) >= discard
)
292 packet_stop_discard();
293 active_state
->packet_discard
= discard
-
294 buffer_len(&active_state
->input
);
297 /* Returns 1 if remote host is connected via socket, 0 if not. */
300 packet_connection_is_on_socket(void)
302 struct sockaddr_storage from
, to
;
303 socklen_t fromlen
, tolen
;
305 /* filedescriptors in and out are the same, so it's a socket */
306 if (active_state
->connection_in
== active_state
->connection_out
)
308 fromlen
= sizeof(from
);
309 memset(&from
, 0, sizeof(from
));
310 if (getpeername(active_state
->connection_in
, (struct sockaddr
*)&from
,
314 memset(&to
, 0, sizeof(to
));
315 if (getpeername(active_state
->connection_out
, (struct sockaddr
*)&to
,
318 if (fromlen
!= tolen
|| memcmp(&from
, &to
, fromlen
) != 0)
320 if (from
.ss_family
!= AF_INET
&& from
.ss_family
!= AF_INET6
)
326 * Exports an IV from the CipherContext required to export the key
327 * state back from the unprivileged child to the privileged parent
332 packet_get_keyiv(int mode
, u_char
*iv
, u_int len
)
337 if (mode
== MODE_OUT
)
338 cc
= &active_state
->send_context
;
340 cc
= &active_state
->receive_context
;
342 if ((r
= cipher_get_keyiv(cc
, iv
, len
)) != 0)
343 fatal("%s: cipher_get_keyiv: %s", __func__
, ssh_err(r
));
347 packet_get_keycontext(int mode
, u_char
*dat
)
351 if (mode
== MODE_OUT
)
352 cc
= &active_state
->send_context
;
354 cc
= &active_state
->receive_context
;
356 return (cipher_get_keycontext(cc
, dat
));
360 packet_set_keycontext(int mode
, u_char
*dat
)
364 if (mode
== MODE_OUT
)
365 cc
= &active_state
->send_context
;
367 cc
= &active_state
->receive_context
;
369 cipher_set_keycontext(cc
, dat
);
373 packet_get_keyiv_len(int mode
)
377 if (mode
== MODE_OUT
)
378 cc
= &active_state
->send_context
;
380 cc
= &active_state
->receive_context
;
382 return (cipher_get_keyiv_len(cc
));
386 packet_set_iv(int mode
, u_char
*dat
)
391 if (mode
== MODE_OUT
)
392 cc
= &active_state
->send_context
;
394 cc
= &active_state
->receive_context
;
396 if ((r
= cipher_set_keyiv(cc
, dat
)) != 0)
397 fatal("%s: cipher_set_keyiv: %s", __func__
, ssh_err(r
));
401 packet_get_ssh1_cipher(void)
403 return (cipher_get_number(active_state
->receive_context
.cipher
));
407 packet_get_state(int mode
, u_int32_t
*seqnr
, u_int64_t
*blocks
,
408 u_int32_t
*packets
, u_int64_t
*bytes
)
410 struct packet_state
*state
;
412 state
= (mode
== MODE_IN
) ?
413 &active_state
->p_read
: &active_state
->p_send
;
415 *seqnr
= state
->seqnr
;
417 *blocks
= state
->blocks
;
419 *packets
= state
->packets
;
421 *bytes
= state
->bytes
;
425 packet_set_state(int mode
, u_int32_t seqnr
, u_int64_t blocks
, u_int32_t packets
,
428 struct packet_state
*state
;
430 state
= (mode
== MODE_IN
) ?
431 &active_state
->p_read
: &active_state
->p_send
;
432 state
->seqnr
= seqnr
;
433 state
->blocks
= blocks
;
434 state
->packets
= packets
;
435 state
->bytes
= bytes
;
439 packet_connection_af(void)
441 struct sockaddr_storage to
;
442 socklen_t tolen
= sizeof(to
);
444 memset(&to
, 0, sizeof(to
));
445 if (getsockname(active_state
->connection_out
, (struct sockaddr
*)&to
,
449 if (to
.ss_family
== AF_INET6
&&
450 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6
*)&to
)->sin6_addr
))
456 /* Sets the connection into non-blocking mode. */
459 packet_set_nonblocking(void)
461 /* Set the socket into non-blocking mode. */
462 set_nonblock(active_state
->connection_in
);
464 if (active_state
->connection_out
!= active_state
->connection_in
)
465 set_nonblock(active_state
->connection_out
);
468 /* Returns the socket used for reading. */
471 packet_get_connection_in(void)
473 return active_state
->connection_in
;
476 /* Returns the descriptor used for writing. */
479 packet_get_connection_out(void)
481 return active_state
->connection_out
;
484 /* Closes the connection and clears and frees internal data structures. */
489 if (!active_state
->initialized
)
491 active_state
->initialized
= 0;
492 if (active_state
->connection_in
== active_state
->connection_out
) {
493 shutdown(active_state
->connection_out
, SHUT_RDWR
);
494 close(active_state
->connection_out
);
496 close(active_state
->connection_in
);
497 close(active_state
->connection_out
);
499 buffer_free(&active_state
->input
);
500 buffer_free(&active_state
->output
);
501 buffer_free(&active_state
->outgoing_packet
);
502 buffer_free(&active_state
->incoming_packet
);
503 if (active_state
->compression_buffer_ready
) {
504 buffer_free(&active_state
->compression_buffer
);
505 buffer_compress_uninit();
507 cipher_cleanup(&active_state
->send_context
);
508 cipher_cleanup(&active_state
->receive_context
);
511 /* Sets remote side protocol flags. */
514 packet_set_protocol_flags(u_int protocol_flags
)
516 active_state
->remote_protocol_flags
= protocol_flags
;
519 /* Returns the remote protocol flags set earlier by the above function. */
522 packet_get_protocol_flags(void)
524 return active_state
->remote_protocol_flags
;
528 * Starts packet compression from the next packet on in both directions.
529 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
533 packet_init_compression(void)
535 if (active_state
->compression_buffer_ready
== 1)
537 active_state
->compression_buffer_ready
= 1;
538 buffer_init(&active_state
->compression_buffer
);
542 packet_start_compression(int level
)
544 if (active_state
->packet_compression
&& !compat20
)
545 fatal("Compression already enabled.");
546 active_state
->packet_compression
= 1;
547 packet_init_compression();
548 buffer_compress_init_send(level
);
549 buffer_compress_init_recv();
553 * Causes any further packets to be encrypted using the given key. The same
554 * key is used for both sending and reception. However, both directions are
555 * encrypted independently of each other.
559 packet_set_encryption_key(const u_char
*key
, u_int keylen
, int number
)
561 const Cipher
*cipher
= cipher_by_number(number
);
565 fatal("packet_set_encryption_key: unknown cipher number %d", number
);
567 fatal("packet_set_encryption_key: keylen too small: %d", keylen
);
568 if (keylen
> SSH_SESSION_KEY_LENGTH
)
569 fatal("packet_set_encryption_key: keylen too big: %d", keylen
);
570 memcpy(active_state
->ssh1_key
, key
, keylen
);
571 active_state
->ssh1_keylen
= keylen
;
572 if ((r
= cipher_init(&active_state
->send_context
, cipher
,
573 key
, keylen
, NULL
, 0, CIPHER_ENCRYPT
)) != 0 ||
574 (r
= cipher_init(&active_state
->receive_context
, cipher
,
575 key
, keylen
, NULL
, 0, CIPHER_DECRYPT
)) != 0)
576 fatal("%s: cipher_init: %s", __func__
, ssh_err(r
));
580 packet_get_encryption_key(u_char
*key
)
583 return (active_state
->ssh1_keylen
);
584 memcpy(key
, active_state
->ssh1_key
, active_state
->ssh1_keylen
);
585 return (active_state
->ssh1_keylen
);
588 /* Start constructing a packet to send. */
590 packet_start(u_char type
)
595 DBG(debug("packet_start[%d]", type
));
596 len
= compat20
? 6 : 9;
597 memset(buf
, 0, len
- 1);
599 buffer_clear(&active_state
->outgoing_packet
);
600 buffer_append(&active_state
->outgoing_packet
, buf
, len
);
603 /* Append payload. */
605 packet_put_char(int value
)
609 buffer_append(&active_state
->outgoing_packet
, &ch
, 1);
613 packet_put_int(u_int value
)
615 buffer_put_int(&active_state
->outgoing_packet
, value
);
619 packet_put_int64(u_int64_t value
)
621 buffer_put_int64(&active_state
->outgoing_packet
, value
);
625 packet_put_string(const void *buf
, u_int len
)
627 buffer_put_string(&active_state
->outgoing_packet
, buf
, len
);
631 packet_put_cstring(const char *str
)
633 buffer_put_cstring(&active_state
->outgoing_packet
, str
);
637 packet_put_raw(const void *buf
, u_int len
)
639 buffer_append(&active_state
->outgoing_packet
, buf
, len
);
644 packet_put_bignum(BIGNUM
* value
)
646 buffer_put_bignum(&active_state
->outgoing_packet
, value
);
650 packet_put_bignum2(BIGNUM
* value
)
652 buffer_put_bignum2(&active_state
->outgoing_packet
, value
);
656 #ifdef OPENSSL_HAS_ECC
658 packet_put_ecpoint(const EC_GROUP
*curve
, const EC_POINT
*point
)
660 buffer_put_ecpoint(&active_state
->outgoing_packet
, curve
, point
);
665 * Finalizes and sends the packet. If the encryption key has been set,
666 * encrypts the packet before sending.
678 * If using packet compression, compress the payload of the outgoing
681 if (active_state
->packet_compression
) {
682 buffer_clear(&active_state
->compression_buffer
);
684 buffer_consume(&active_state
->outgoing_packet
, 8);
686 buffer_append(&active_state
->compression_buffer
,
687 "\0\0\0\0\0\0\0\0", 8);
688 buffer_compress(&active_state
->outgoing_packet
,
689 &active_state
->compression_buffer
);
690 buffer_clear(&active_state
->outgoing_packet
);
691 buffer_append(&active_state
->outgoing_packet
,
692 buffer_ptr(&active_state
->compression_buffer
),
693 buffer_len(&active_state
->compression_buffer
));
695 /* Compute packet length without padding (add checksum, remove padding). */
696 len
= buffer_len(&active_state
->outgoing_packet
) + 4 - 8;
698 /* Insert padding. Initialized to zero in packet_start1() */
699 padding
= 8 - len
% 8;
700 if (!active_state
->send_context
.plaintext
) {
701 cp
= buffer_ptr(&active_state
->outgoing_packet
);
702 for (i
= 0; i
< padding
; i
++) {
705 cp
[7 - i
] = rnd
& 0xff;
709 buffer_consume(&active_state
->outgoing_packet
, 8 - padding
);
711 /* Add check bytes. */
712 checksum
= ssh_crc32(buffer_ptr(&active_state
->outgoing_packet
),
713 buffer_len(&active_state
->outgoing_packet
));
714 put_u32(buf
, checksum
);
715 buffer_append(&active_state
->outgoing_packet
, buf
, 4);
718 fprintf(stderr
, "packet_send plain: ");
719 buffer_dump(&active_state
->outgoing_packet
);
722 /* Append to output. */
724 buffer_append(&active_state
->output
, buf
, 4);
725 cp
= buffer_append_space(&active_state
->output
,
726 buffer_len(&active_state
->outgoing_packet
));
727 if (cipher_crypt(&active_state
->send_context
, 0, cp
,
728 buffer_ptr(&active_state
->outgoing_packet
),
729 buffer_len(&active_state
->outgoing_packet
), 0, 0) != 0)
730 fatal("%s: cipher_crypt failed", __func__
);
733 fprintf(stderr
, "encrypted: ");
734 buffer_dump(&active_state
->output
);
736 active_state
->p_send
.packets
++;
737 active_state
->p_send
.bytes
+= len
+
738 buffer_len(&active_state
->outgoing_packet
);
739 buffer_clear(&active_state
->outgoing_packet
);
742 * Note that the packet is now only buffered in output. It won't be
743 * actually sent until packet_write_wait or packet_write_poll is
749 set_newkeys(int mode
)
755 u_int64_t
*max_blocks
;
758 debug2("set_newkeys: mode %d", mode
);
760 if (mode
== MODE_OUT
) {
761 cc
= &active_state
->send_context
;
762 crypt_type
= CIPHER_ENCRYPT
;
763 active_state
->p_send
.packets
= active_state
->p_send
.blocks
= 0;
764 max_blocks
= &active_state
->max_blocks_out
;
766 cc
= &active_state
->receive_context
;
767 crypt_type
= CIPHER_DECRYPT
;
768 active_state
->p_read
.packets
= active_state
->p_read
.blocks
= 0;
769 max_blocks
= &active_state
->max_blocks_in
;
771 if (active_state
->newkeys
[mode
] != NULL
) {
772 debug("set_newkeys: rekeying");
774 enc
= &active_state
->newkeys
[mode
]->enc
;
775 mac
= &active_state
->newkeys
[mode
]->mac
;
776 comp
= &active_state
->newkeys
[mode
]->comp
;
778 explicit_bzero(enc
->iv
, enc
->iv_len
);
779 explicit_bzero(enc
->key
, enc
->key_len
);
780 explicit_bzero(mac
->key
, mac
->key_len
);
787 free(active_state
->newkeys
[mode
]);
789 active_state
->newkeys
[mode
] = kex_get_newkeys(mode
);
790 if (active_state
->newkeys
[mode
] == NULL
)
791 fatal("newkeys: no keys for mode %d", mode
);
792 enc
= &active_state
->newkeys
[mode
]->enc
;
793 mac
= &active_state
->newkeys
[mode
]->mac
;
794 comp
= &active_state
->newkeys
[mode
]->comp
;
795 if (cipher_authlen(enc
->cipher
) == 0 && mac_init(mac
) == 0)
797 DBG(debug("cipher_init_context: %d", mode
));
798 if ((r
= cipher_init(cc
, enc
->cipher
, enc
->key
, enc
->key_len
,
799 enc
->iv
, enc
->iv_len
, crypt_type
)) != 0)
800 fatal("%s: cipher_init: %s", __func__
, ssh_err(r
));
801 /* Deleting the keys does not gain extra security */
802 /* explicit_bzero(enc->iv, enc->block_size);
803 explicit_bzero(enc->key, enc->key_len);
804 explicit_bzero(mac->key, mac->key_len); */
805 if ((comp
->type
== COMP_ZLIB
||
806 (comp
->type
== COMP_DELAYED
&&
807 active_state
->after_authentication
)) && comp
->enabled
== 0) {
808 packet_init_compression();
809 if (mode
== MODE_OUT
)
810 buffer_compress_init_send(6);
812 buffer_compress_init_recv();
816 * The 2^(blocksize*2) limit is too expensive for 3DES,
817 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
819 if (enc
->block_size
>= 16)
820 *max_blocks
= (u_int64_t
)1 << (enc
->block_size
*2);
822 *max_blocks
= ((u_int64_t
)1 << 30) / enc
->block_size
;
823 if (active_state
->rekey_limit
)
824 *max_blocks
= MIN(*max_blocks
,
825 active_state
->rekey_limit
/ enc
->block_size
);
829 * Delayed compression for SSH2 is enabled after authentication:
830 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
831 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
834 packet_enable_delayed_compress(void)
840 * Remember that we are past the authentication step, so rekeying
841 * with COMP_DELAYED will turn on compression immediately.
843 active_state
->after_authentication
= 1;
844 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
845 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
846 if (active_state
->newkeys
[mode
] == NULL
)
848 comp
= &active_state
->newkeys
[mode
]->comp
;
849 if (comp
&& !comp
->enabled
&& comp
->type
== COMP_DELAYED
) {
850 packet_init_compression();
851 if (mode
== MODE_OUT
)
852 buffer_compress_init_send(6);
854 buffer_compress_init_recv();
861 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
864 packet_send2_wrapped(void)
866 u_char type
, *cp
, *macbuf
= NULL
;
867 u_char padlen
, pad
= 0;
868 u_int i
, len
, authlen
= 0, aadlen
= 0;
875 if (active_state
->newkeys
[MODE_OUT
] != NULL
) {
876 enc
= &active_state
->newkeys
[MODE_OUT
]->enc
;
877 mac
= &active_state
->newkeys
[MODE_OUT
]->mac
;
878 comp
= &active_state
->newkeys
[MODE_OUT
]->comp
;
879 /* disable mac for authenticated encryption */
880 if ((authlen
= cipher_authlen(enc
->cipher
)) != 0)
883 block_size
= enc
? enc
->block_size
: 8;
884 aadlen
= (mac
&& mac
->enabled
&& mac
->etm
) || authlen
? 4 : 0;
886 cp
= buffer_ptr(&active_state
->outgoing_packet
);
890 fprintf(stderr
, "plain: ");
891 buffer_dump(&active_state
->outgoing_packet
);
894 if (comp
&& comp
->enabled
) {
895 len
= buffer_len(&active_state
->outgoing_packet
);
896 /* skip header, compress only payload */
897 buffer_consume(&active_state
->outgoing_packet
, 5);
898 buffer_clear(&active_state
->compression_buffer
);
899 buffer_compress(&active_state
->outgoing_packet
,
900 &active_state
->compression_buffer
);
901 buffer_clear(&active_state
->outgoing_packet
);
902 buffer_append(&active_state
->outgoing_packet
, "\0\0\0\0\0", 5);
903 buffer_append(&active_state
->outgoing_packet
,
904 buffer_ptr(&active_state
->compression_buffer
),
905 buffer_len(&active_state
->compression_buffer
));
906 DBG(debug("compression: raw %d compressed %d", len
,
907 buffer_len(&active_state
->outgoing_packet
)));
910 /* sizeof (packet_len + pad_len + payload) */
911 len
= buffer_len(&active_state
->outgoing_packet
);
914 * calc size of padding, alloc space, get random data,
915 * minimum padding is 4 bytes
917 len
-= aadlen
; /* packet length is not encrypted for EtM modes */
918 padlen
= block_size
- (len
% block_size
);
920 padlen
+= block_size
;
921 if (active_state
->extra_pad
) {
922 /* will wrap if extra_pad+padlen > 255 */
923 active_state
->extra_pad
=
924 roundup(active_state
->extra_pad
, block_size
);
925 pad
= active_state
->extra_pad
-
926 ((len
+ padlen
) % active_state
->extra_pad
);
927 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
928 __func__
, pad
, len
, padlen
, active_state
->extra_pad
));
930 active_state
->extra_pad
= 0;
932 cp
= buffer_append_space(&active_state
->outgoing_packet
, padlen
);
933 if (enc
&& !active_state
->send_context
.plaintext
) {
935 for (i
= 0; i
< padlen
; i
++) {
943 explicit_bzero(cp
, padlen
);
945 /* sizeof (packet_len + pad_len + payload + padding) */
946 len
= buffer_len(&active_state
->outgoing_packet
);
947 cp
= buffer_ptr(&active_state
->outgoing_packet
);
948 /* packet_length includes payload, padding and padding length field */
949 put_u32(cp
, len
- 4);
951 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
952 len
, padlen
, aadlen
));
954 /* compute MAC over seqnr and packet(length fields, payload, padding) */
955 if (mac
&& mac
->enabled
&& !mac
->etm
) {
956 macbuf
= mac_compute(mac
, active_state
->p_send
.seqnr
,
957 buffer_ptr(&active_state
->outgoing_packet
), len
);
958 DBG(debug("done calc MAC out #%d", active_state
->p_send
.seqnr
));
960 /* encrypt packet and append to output buffer. */
961 cp
= buffer_append_space(&active_state
->output
, len
+ authlen
);
962 if (cipher_crypt(&active_state
->send_context
, active_state
->p_send
.seqnr
,
963 cp
, buffer_ptr(&active_state
->outgoing_packet
),
964 len
- aadlen
, aadlen
, authlen
) != 0)
965 fatal("%s: cipher_crypt failed", __func__
);
966 /* append unencrypted MAC */
967 if (mac
&& mac
->enabled
) {
969 /* EtM: compute mac over aadlen + cipher text */
970 macbuf
= mac_compute(mac
,
971 active_state
->p_send
.seqnr
, cp
, len
);
972 DBG(debug("done calc MAC(EtM) out #%d",
973 active_state
->p_send
.seqnr
));
975 buffer_append(&active_state
->output
, macbuf
, mac
->mac_len
);
978 fprintf(stderr
, "encrypted: ");
979 buffer_dump(&active_state
->output
);
981 /* increment sequence number for outgoing packets */
982 if (++active_state
->p_send
.seqnr
== 0)
983 logit("outgoing seqnr wraps around");
984 if (++active_state
->p_send
.packets
== 0)
985 if (!(datafellows
& SSH_BUG_NOREKEY
))
986 fatal("XXX too many packets with same key");
987 active_state
->p_send
.blocks
+= len
/ block_size
;
988 active_state
->p_send
.bytes
+= len
;
989 buffer_clear(&active_state
->outgoing_packet
);
991 if (type
== SSH2_MSG_NEWKEYS
)
992 set_newkeys(MODE_OUT
);
993 else if (type
== SSH2_MSG_USERAUTH_SUCCESS
&& active_state
->server_side
)
994 packet_enable_delayed_compress();
1001 static int packet_length
= 0;
1005 cp
= buffer_ptr(&active_state
->outgoing_packet
);
1008 /* during rekeying we can only send key exchange messages */
1009 if (active_state
->rekeying
) {
1010 if ((type
< SSH2_MSG_TRANSPORT_MIN
) ||
1011 (type
> SSH2_MSG_TRANSPORT_MAX
) ||
1012 (type
== SSH2_MSG_SERVICE_REQUEST
) ||
1013 (type
== SSH2_MSG_SERVICE_ACCEPT
)) {
1014 debug("enqueue packet: %u", type
);
1015 p
= xcalloc(1, sizeof(*p
));
1017 memcpy(&p
->payload
, &active_state
->outgoing_packet
,
1019 buffer_init(&active_state
->outgoing_packet
);
1020 TAILQ_INSERT_TAIL(&active_state
->outgoing
, p
, next
);
1021 return(sizeof(Buffer
));
1025 /* rekeying starts with sending KEXINIT */
1026 if (type
== SSH2_MSG_KEXINIT
)
1027 active_state
->rekeying
= 1;
1029 packet_length
= packet_send2_wrapped();
1031 /* after a NEWKEYS message we can send the complete queue */
1032 if (type
== SSH2_MSG_NEWKEYS
) {
1033 active_state
->rekeying
= 0;
1034 active_state
->rekey_time
= monotime();
1035 while ((p
= TAILQ_FIRST(&active_state
->outgoing
))) {
1037 debug("dequeue packet: %u", type
);
1038 buffer_free(&active_state
->outgoing_packet
);
1039 memcpy(&active_state
->outgoing_packet
, &p
->payload
,
1041 TAILQ_REMOVE(&active_state
->outgoing
, p
, next
);
1043 packet_length
+= packet_send2_wrapped();
1046 return(packet_length
);
1054 packet_len
= packet_send2();
1057 DBG(debug("packet_send done"));
1062 * Waits until a packet has been received, and returns its type. Note that
1063 * no other data is processed until this returns, so this function should not
1064 * be used during the interactive session.
1068 packet_read_seqnr(u_int32_t
*seqnr_p
)
1070 int type
, len
, ret
, cont
, ms_remain
= 0;
1073 struct timeval timeout
, start
, *timeoutp
= NULL
;
1075 DBG(debug("packet_read()"));
1077 setp
= (fd_set
*)xcalloc(howmany(active_state
->connection_in
+ 1,
1078 NFDBITS
), sizeof(fd_mask
));
1080 /* Since we are blocking, ensure that all written packets have been sent. */
1081 packet_write_wait();
1083 /* Stay in the loop until we have received a complete packet. */
1085 /* Try to read a packet from the buffer. */
1086 type
= packet_read_poll_seqnr(seqnr_p
);
1088 type
== SSH_SMSG_SUCCESS
1089 || type
== SSH_SMSG_FAILURE
1090 || type
== SSH_CMSG_EOF
1091 || type
== SSH_CMSG_EXIT_CONFIRMATION
))
1093 /* If we got a packet, return it. */
1094 if (type
!= SSH_MSG_NONE
) {
1099 * Otherwise, wait for some data to arrive, add it to the
1100 * buffer, and try again.
1102 memset(setp
, 0, howmany(active_state
->connection_in
+ 1,
1103 NFDBITS
) * sizeof(fd_mask
));
1104 FD_SET(active_state
->connection_in
, setp
);
1106 if (active_state
->packet_timeout_ms
> 0) {
1107 ms_remain
= active_state
->packet_timeout_ms
;
1108 timeoutp
= &timeout
;
1110 /* Wait for some data to arrive. */
1112 if (active_state
->packet_timeout_ms
!= -1) {
1113 ms_to_timeval(&timeout
, ms_remain
);
1114 gettimeofday(&start
, NULL
);
1116 if ((ret
= select(active_state
->connection_in
+ 1, setp
,
1117 NULL
, NULL
, timeoutp
)) >= 0)
1119 if (errno
!= EAGAIN
&& errno
!= EINTR
&&
1120 errno
!= EWOULDBLOCK
)
1122 if (active_state
->packet_timeout_ms
== -1)
1124 ms_subtract_diff(&start
, &ms_remain
);
1125 if (ms_remain
<= 0) {
1131 logit("Connection to %.200s timed out while "
1132 "waiting to read", get_remote_ipaddr());
1135 /* Read data from the socket. */
1138 len
= roaming_read(active_state
->connection_in
, buf
,
1139 sizeof(buf
), &cont
);
1140 } while (len
== 0 && cont
);
1142 logit("Connection closed by %.200s", get_remote_ipaddr());
1146 fatal("Read from socket failed: %.100s", strerror(errno
));
1147 /* Append it to the buffer. */
1148 packet_process_incoming(buf
, len
);
1156 return packet_read_seqnr(NULL
);
1160 * Waits until a packet has been received, verifies that its type matches
1161 * that given, and gives a fatal error and exits if there is a mismatch.
1165 packet_read_expect(int expected_type
)
1169 type
= packet_read();
1170 if (type
!= expected_type
)
1171 packet_disconnect("Protocol error: expected packet type %d, got %d",
1172 expected_type
, type
);
1175 /* Checks if a full packet is available in the data received so far via
1176 * packet_process_incoming. If so, reads the packet; otherwise returns
1177 * SSH_MSG_NONE. This does not wait for data from the connection.
1179 * SSH_MSG_DISCONNECT is handled specially here. Also,
1180 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1185 packet_read_poll1(void)
1187 u_int len
, padded_len
;
1189 u_int checksum
, stored_checksum
;
1191 /* Check if input size is less than minimum packet size. */
1192 if (buffer_len(&active_state
->input
) < 4 + 8)
1193 return SSH_MSG_NONE
;
1194 /* Get length of incoming packet. */
1195 cp
= buffer_ptr(&active_state
->input
);
1197 if (len
< 1 + 2 + 2 || len
> 256 * 1024)
1198 packet_disconnect("Bad packet length %u.", len
);
1199 padded_len
= (len
+ 8) & ~7;
1201 /* Check if the packet has been entirely received. */
1202 if (buffer_len(&active_state
->input
) < 4 + padded_len
)
1203 return SSH_MSG_NONE
;
1205 /* The entire packet is in buffer. */
1207 /* Consume packet length. */
1208 buffer_consume(&active_state
->input
, 4);
1211 * Cryptographic attack detector for ssh
1212 * (C)1998 CORE-SDI, Buenos Aires Argentina
1213 * Ariel Futoransky(futo@core-sdi.com)
1215 if (!active_state
->receive_context
.plaintext
) {
1216 switch (detect_attack(buffer_ptr(&active_state
->input
),
1218 case DEATTACK_DETECTED
:
1219 packet_disconnect("crc32 compensation attack: "
1220 "network attack detected");
1221 case DEATTACK_DOS_DETECTED
:
1222 packet_disconnect("deattack denial of "
1223 "service detected");
1227 /* Decrypt data to incoming_packet. */
1228 buffer_clear(&active_state
->incoming_packet
);
1229 cp
= buffer_append_space(&active_state
->incoming_packet
, padded_len
);
1230 if (cipher_crypt(&active_state
->receive_context
, 0, cp
,
1231 buffer_ptr(&active_state
->input
), padded_len
, 0, 0) != 0)
1232 fatal("%s: cipher_crypt failed", __func__
);
1234 buffer_consume(&active_state
->input
, padded_len
);
1237 fprintf(stderr
, "read_poll plain: ");
1238 buffer_dump(&active_state
->incoming_packet
);
1241 /* Compute packet checksum. */
1242 checksum
= ssh_crc32(buffer_ptr(&active_state
->incoming_packet
),
1243 buffer_len(&active_state
->incoming_packet
) - 4);
1246 buffer_consume(&active_state
->incoming_packet
, 8 - len
% 8);
1248 /* Test check bytes. */
1249 if (len
!= buffer_len(&active_state
->incoming_packet
))
1250 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
1251 len
, buffer_len(&active_state
->incoming_packet
));
1253 cp
= (u_char
*)buffer_ptr(&active_state
->incoming_packet
) + len
- 4;
1254 stored_checksum
= get_u32(cp
);
1255 if (checksum
!= stored_checksum
)
1256 packet_disconnect("Corrupted check bytes on input.");
1257 buffer_consume_end(&active_state
->incoming_packet
, 4);
1259 if (active_state
->packet_compression
) {
1260 buffer_clear(&active_state
->compression_buffer
);
1261 buffer_uncompress(&active_state
->incoming_packet
,
1262 &active_state
->compression_buffer
);
1263 buffer_clear(&active_state
->incoming_packet
);
1264 buffer_append(&active_state
->incoming_packet
,
1265 buffer_ptr(&active_state
->compression_buffer
),
1266 buffer_len(&active_state
->compression_buffer
));
1268 active_state
->p_read
.packets
++;
1269 active_state
->p_read
.bytes
+= padded_len
+ 4;
1270 type
= buffer_get_char(&active_state
->incoming_packet
);
1271 if (type
< SSH_MSG_MIN
|| type
> SSH_MSG_MAX
)
1272 packet_disconnect("Invalid ssh1 packet type: %d", type
);
1277 packet_read_poll2(u_int32_t
*seqnr_p
)
1280 u_char
*macbuf
= NULL
, *cp
, type
;
1281 u_int maclen
, authlen
= 0, aadlen
= 0, block_size
;
1286 if (active_state
->packet_discard
)
1287 return SSH_MSG_NONE
;
1289 if (active_state
->newkeys
[MODE_IN
] != NULL
) {
1290 enc
= &active_state
->newkeys
[MODE_IN
]->enc
;
1291 mac
= &active_state
->newkeys
[MODE_IN
]->mac
;
1292 comp
= &active_state
->newkeys
[MODE_IN
]->comp
;
1293 /* disable mac for authenticated encryption */
1294 if ((authlen
= cipher_authlen(enc
->cipher
)) != 0)
1297 maclen
= mac
&& mac
->enabled
? mac
->mac_len
: 0;
1298 block_size
= enc
? enc
->block_size
: 8;
1299 aadlen
= (mac
&& mac
->enabled
&& mac
->etm
) || authlen
? 4 : 0;
1301 if (aadlen
&& active_state
->packlen
== 0) {
1302 if (cipher_get_length(&active_state
->receive_context
,
1303 &active_state
->packlen
,
1304 active_state
->p_read
.seqnr
,
1305 buffer_ptr(&active_state
->input
),
1306 buffer_len(&active_state
->input
)) != 0)
1307 return SSH_MSG_NONE
;
1308 if (active_state
->packlen
< 1 + 4 ||
1309 active_state
->packlen
> PACKET_MAX_SIZE
) {
1311 buffer_dump(&active_state
->input
);
1313 logit("Bad packet length %u.", active_state
->packlen
);
1314 packet_disconnect("Packet corrupt");
1316 buffer_clear(&active_state
->incoming_packet
);
1317 } else if (active_state
->packlen
== 0) {
1319 * check if input size is less than the cipher block size,
1320 * decrypt first block and extract length of incoming packet
1322 if (buffer_len(&active_state
->input
) < block_size
)
1323 return SSH_MSG_NONE
;
1324 buffer_clear(&active_state
->incoming_packet
);
1325 cp
= buffer_append_space(&active_state
->incoming_packet
,
1327 if (cipher_crypt(&active_state
->receive_context
,
1328 active_state
->p_read
.seqnr
, cp
,
1329 buffer_ptr(&active_state
->input
), block_size
, 0, 0) != 0)
1330 fatal("Decryption integrity check failed");
1331 cp
= buffer_ptr(&active_state
->incoming_packet
);
1332 active_state
->packlen
= get_u32(cp
);
1333 if (active_state
->packlen
< 1 + 4 ||
1334 active_state
->packlen
> PACKET_MAX_SIZE
) {
1336 buffer_dump(&active_state
->incoming_packet
);
1338 logit("Bad packet length %u.", active_state
->packlen
);
1339 packet_start_discard(enc
, mac
, active_state
->packlen
,
1341 return SSH_MSG_NONE
;
1343 buffer_consume(&active_state
->input
, block_size
);
1345 DBG(debug("input: packet len %u", active_state
->packlen
+4));
1347 /* only the payload is encrypted */
1348 need
= active_state
->packlen
;
1351 * the payload size and the payload are encrypted, but we
1352 * have a partial packet of block_size bytes
1354 need
= 4 + active_state
->packlen
- block_size
;
1356 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1357 " aadlen %d", block_size
, need
, maclen
, authlen
, aadlen
));
1358 if (need
% block_size
!= 0) {
1359 logit("padding error: need %d block %d mod %d",
1360 need
, block_size
, need
% block_size
);
1361 packet_start_discard(enc
, mac
, active_state
->packlen
,
1362 PACKET_MAX_SIZE
- block_size
);
1363 return SSH_MSG_NONE
;
1366 * check if the entire packet has been received and
1367 * decrypt into incoming_packet:
1368 * 'aadlen' bytes are unencrypted, but authenticated.
1369 * 'need' bytes are encrypted, followed by either
1370 * 'authlen' bytes of authentication tag or
1371 * 'maclen' bytes of message authentication code.
1373 if (buffer_len(&active_state
->input
) < aadlen
+ need
+ authlen
+ maclen
)
1374 return SSH_MSG_NONE
;
1376 fprintf(stderr
, "read_poll enc/full: ");
1377 buffer_dump(&active_state
->input
);
1379 /* EtM: compute mac over encrypted input */
1380 if (mac
&& mac
->enabled
&& mac
->etm
)
1381 macbuf
= mac_compute(mac
, active_state
->p_read
.seqnr
,
1382 buffer_ptr(&active_state
->input
), aadlen
+ need
);
1383 cp
= buffer_append_space(&active_state
->incoming_packet
, aadlen
+ need
);
1384 if (cipher_crypt(&active_state
->receive_context
,
1385 active_state
->p_read
.seqnr
, cp
,
1386 buffer_ptr(&active_state
->input
), need
, aadlen
, authlen
) != 0)
1387 fatal("Decryption integrity check failed");
1388 buffer_consume(&active_state
->input
, aadlen
+ need
+ authlen
);
1390 * compute MAC over seqnr and packet,
1391 * increment sequence number for incoming packet
1393 if (mac
&& mac
->enabled
) {
1395 macbuf
= mac_compute(mac
, active_state
->p_read
.seqnr
,
1396 buffer_ptr(&active_state
->incoming_packet
),
1397 buffer_len(&active_state
->incoming_packet
));
1398 if (timingsafe_bcmp(macbuf
, buffer_ptr(&active_state
->input
),
1399 mac
->mac_len
) != 0) {
1400 logit("Corrupted MAC on input.");
1401 if (need
> PACKET_MAX_SIZE
)
1402 fatal("internal error need %d", need
);
1403 packet_start_discard(enc
, mac
, active_state
->packlen
,
1404 PACKET_MAX_SIZE
- need
);
1405 return SSH_MSG_NONE
;
1408 DBG(debug("MAC #%d ok", active_state
->p_read
.seqnr
));
1409 buffer_consume(&active_state
->input
, mac
->mac_len
);
1411 /* XXX now it's safe to use fatal/packet_disconnect */
1412 if (seqnr_p
!= NULL
)
1413 *seqnr_p
= active_state
->p_read
.seqnr
;
1414 if (++active_state
->p_read
.seqnr
== 0)
1415 logit("incoming seqnr wraps around");
1416 if (++active_state
->p_read
.packets
== 0)
1417 if (!(datafellows
& SSH_BUG_NOREKEY
))
1418 fatal("XXX too many packets with same key");
1419 active_state
->p_read
.blocks
+= (active_state
->packlen
+ 4) / block_size
;
1420 active_state
->p_read
.bytes
+= active_state
->packlen
+ 4;
1423 cp
= buffer_ptr(&active_state
->incoming_packet
);
1425 DBG(debug("input: padlen %d", padlen
));
1427 packet_disconnect("Corrupted padlen %d on input.", padlen
);
1429 /* skip packet size + padlen, discard padding */
1430 buffer_consume(&active_state
->incoming_packet
, 4 + 1);
1431 buffer_consume_end(&active_state
->incoming_packet
, padlen
);
1433 DBG(debug("input: len before de-compress %d",
1434 buffer_len(&active_state
->incoming_packet
)));
1435 if (comp
&& comp
->enabled
) {
1436 buffer_clear(&active_state
->compression_buffer
);
1437 buffer_uncompress(&active_state
->incoming_packet
,
1438 &active_state
->compression_buffer
);
1439 buffer_clear(&active_state
->incoming_packet
);
1440 buffer_append(&active_state
->incoming_packet
,
1441 buffer_ptr(&active_state
->compression_buffer
),
1442 buffer_len(&active_state
->compression_buffer
));
1443 DBG(debug("input: len after de-compress %d",
1444 buffer_len(&active_state
->incoming_packet
)));
1447 * get packet type, implies consume.
1448 * return length of payload (without type field)
1450 type
= buffer_get_char(&active_state
->incoming_packet
);
1451 if (type
< SSH2_MSG_MIN
|| type
>= SSH2_MSG_LOCAL_MIN
)
1452 packet_disconnect("Invalid ssh2 packet type: %d", type
);
1453 if (type
== SSH2_MSG_NEWKEYS
)
1454 set_newkeys(MODE_IN
);
1455 else if (type
== SSH2_MSG_USERAUTH_SUCCESS
&&
1456 !active_state
->server_side
)
1457 packet_enable_delayed_compress();
1459 fprintf(stderr
, "read/plain[%d]:\r\n", type
);
1460 buffer_dump(&active_state
->incoming_packet
);
1462 /* reset for next packet */
1463 active_state
->packlen
= 0;
1468 packet_read_poll_seqnr(u_int32_t
*seqnr_p
)
1470 u_int reason
, seqnr
;
1476 type
= packet_read_poll2(seqnr_p
);
1478 active_state
->keep_alive_timeouts
= 0;
1479 DBG(debug("received packet type %d", type
));
1482 case SSH2_MSG_IGNORE
:
1483 debug3("Received SSH2_MSG_IGNORE");
1485 case SSH2_MSG_DEBUG
:
1487 msg
= packet_get_string(NULL
);
1488 debug("Remote: %.900s", msg
);
1490 msg
= packet_get_string(NULL
);
1493 case SSH2_MSG_DISCONNECT
:
1494 reason
= packet_get_int();
1495 msg
= packet_get_string(NULL
);
1496 /* Ignore normal client exit notifications */
1497 do_log2(active_state
->server_side
&&
1498 reason
== SSH2_DISCONNECT_BY_APPLICATION
?
1499 SYSLOG_LEVEL_INFO
: SYSLOG_LEVEL_ERROR
,
1500 "Received disconnect from %s: %u: %.400s",
1501 get_remote_ipaddr(), reason
, msg
);
1505 case SSH2_MSG_UNIMPLEMENTED
:
1506 seqnr
= packet_get_int();
1507 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1514 type
= packet_read_poll1();
1517 return SSH_MSG_NONE
;
1518 case SSH_MSG_IGNORE
:
1521 msg
= packet_get_string(NULL
);
1522 debug("Remote: %.900s", msg
);
1525 case SSH_MSG_DISCONNECT
:
1526 msg
= packet_get_string(NULL
);
1527 error("Received disconnect from %s: %.400s",
1528 get_remote_ipaddr(), msg
);
1532 DBG(debug("received packet type %d", type
));
1540 * Buffers the given amount of input characters. This is intended to be used
1541 * together with packet_read_poll.
1545 packet_process_incoming(const char *buf
, u_int len
)
1547 if (active_state
->packet_discard
) {
1548 active_state
->keep_alive_timeouts
= 0; /* ?? */
1549 if (len
>= active_state
->packet_discard
)
1550 packet_stop_discard();
1551 active_state
->packet_discard
-= len
;
1554 buffer_append(&active_state
->input
, buf
, len
);
1557 /* Returns a character from the packet. */
1560 packet_get_char(void)
1564 buffer_get(&active_state
->incoming_packet
, &ch
, 1);
1568 /* Returns an integer from the packet data. */
1571 packet_get_int(void)
1573 return buffer_get_int(&active_state
->incoming_packet
);
1576 /* Returns an 64 bit integer from the packet data. */
1579 packet_get_int64(void)
1581 return buffer_get_int64(&active_state
->incoming_packet
);
1585 * Returns an arbitrary precision integer from the packet data. The integer
1586 * must have been initialized before this call.
1591 packet_get_bignum(BIGNUM
* value
)
1593 buffer_get_bignum(&active_state
->incoming_packet
, value
);
1597 packet_get_bignum2(BIGNUM
* value
)
1599 buffer_get_bignum2(&active_state
->incoming_packet
, value
);
1602 #ifdef OPENSSL_HAS_ECC
1604 packet_get_ecpoint(const EC_GROUP
*curve
, EC_POINT
*point
)
1606 buffer_get_ecpoint(&active_state
->incoming_packet
, curve
, point
);
1611 packet_get_raw(u_int
*length_ptr
)
1613 u_int bytes
= buffer_len(&active_state
->incoming_packet
);
1615 if (length_ptr
!= NULL
)
1616 *length_ptr
= bytes
;
1617 return buffer_ptr(&active_state
->incoming_packet
);
1622 packet_remaining(void)
1624 return buffer_len(&active_state
->incoming_packet
);
1628 * Returns a string from the packet data. The string is allocated using
1629 * xmalloc; it is the responsibility of the calling program to free it when
1630 * no longer needed. The length_ptr argument may be NULL, or point to an
1631 * integer into which the length of the string is stored.
1635 packet_get_string(u_int
*length_ptr
)
1637 return buffer_get_string(&active_state
->incoming_packet
, length_ptr
);
1641 packet_get_string_ptr(u_int
*length_ptr
)
1643 return buffer_get_string_ptr(&active_state
->incoming_packet
, length_ptr
);
1646 /* Ensures the returned string has no embedded \0 characters in it. */
1648 packet_get_cstring(u_int
*length_ptr
)
1650 return buffer_get_cstring(&active_state
->incoming_packet
, length_ptr
);
1654 * Sends a diagnostic message from the server to the client. This message
1655 * can be sent at any time (but not while constructing another message). The
1656 * message is printed immediately, but only if the client is being executed
1657 * in verbose mode. These messages are primarily intended to ease debugging
1658 * authentication problems. The length of the formatted message must not
1659 * exceed 1024 bytes. This will automatically call packet_write_wait.
1663 packet_send_debug(const char *fmt
,...)
1668 if (compat20
&& (datafellows
& SSH_BUG_DEBUG
))
1671 va_start(args
, fmt
);
1672 vsnprintf(buf
, sizeof(buf
), fmt
, args
);
1676 packet_start(SSH2_MSG_DEBUG
);
1677 packet_put_char(0); /* bool: always display */
1678 packet_put_cstring(buf
);
1679 packet_put_cstring("");
1681 packet_start(SSH_MSG_DEBUG
);
1682 packet_put_cstring(buf
);
1685 packet_write_wait();
1689 * Logs the error plus constructs and sends a disconnect packet, closes the
1690 * connection, and exits. This function never returns. The error message
1691 * should not contain a newline. The length of the formatted message must
1692 * not exceed 1024 bytes.
1696 packet_disconnect(const char *fmt
,...)
1700 static int disconnecting
= 0;
1702 if (disconnecting
) /* Guard against recursive invocations. */
1703 fatal("packet_disconnect called recursively.");
1707 * Format the message. Note that the caller must make sure the
1708 * message is of limited size.
1710 va_start(args
, fmt
);
1711 vsnprintf(buf
, sizeof(buf
), fmt
, args
);
1714 /* Display the error locally */
1715 logit("Disconnecting: %.100s", buf
);
1717 /* Send the disconnect message to the other side, and wait for it to get sent. */
1719 packet_start(SSH2_MSG_DISCONNECT
);
1720 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR
);
1721 packet_put_cstring(buf
);
1722 packet_put_cstring("");
1724 packet_start(SSH_MSG_DISCONNECT
);
1725 packet_put_cstring(buf
);
1728 packet_write_wait();
1730 /* Stop listening for connections. */
1731 channel_close_all();
1733 /* Close the connection. */
1738 /* Checks if there is any buffered output, and tries to write some of the output. */
1741 packet_write_poll(void)
1747 len
= buffer_len(&active_state
->output
);
1751 len
= roaming_write(active_state
->connection_out
,
1752 buffer_ptr(&active_state
->output
), len
, &cont
);
1754 if (errno
== EINTR
|| errno
== EAGAIN
||
1755 errno
== EWOULDBLOCK
)
1757 fatal("Write failed: %.100s", strerror(errno
));
1759 if (len
== 0 && !cont
)
1760 fatal("Write connection closed");
1761 buffer_consume(&active_state
->output
, len
);
1767 * Calls packet_write_poll repeatedly until all pending output data has been
1772 packet_write_wait(void)
1775 int ret
, ms_remain
= 0;
1776 struct timeval start
, timeout
, *timeoutp
= NULL
;
1778 setp
= (fd_set
*)xcalloc(howmany(active_state
->connection_out
+ 1,
1779 NFDBITS
), sizeof(fd_mask
));
1780 packet_write_poll();
1781 while (packet_have_data_to_write()) {
1782 memset(setp
, 0, howmany(active_state
->connection_out
+ 1,
1783 NFDBITS
) * sizeof(fd_mask
));
1784 FD_SET(active_state
->connection_out
, setp
);
1786 if (active_state
->packet_timeout_ms
> 0) {
1787 ms_remain
= active_state
->packet_timeout_ms
;
1788 timeoutp
= &timeout
;
1791 if (active_state
->packet_timeout_ms
!= -1) {
1792 ms_to_timeval(&timeout
, ms_remain
);
1793 gettimeofday(&start
, NULL
);
1795 if ((ret
= select(active_state
->connection_out
+ 1,
1796 NULL
, setp
, NULL
, timeoutp
)) >= 0)
1798 if (errno
!= EAGAIN
&& errno
!= EINTR
&&
1799 errno
!= EWOULDBLOCK
)
1801 if (active_state
->packet_timeout_ms
== -1)
1803 ms_subtract_diff(&start
, &ms_remain
);
1804 if (ms_remain
<= 0) {
1810 logit("Connection to %.200s timed out while "
1811 "waiting to write", get_remote_ipaddr());
1814 packet_write_poll();
1819 /* Returns true if there is buffered data to write to the connection. */
1822 packet_have_data_to_write(void)
1824 return buffer_len(&active_state
->output
) != 0;
1827 /* Returns true if there is not too much data to write to the connection. */
1830 packet_not_very_much_data_to_write(void)
1832 if (active_state
->interactive_mode
)
1833 return buffer_len(&active_state
->output
) < 16384;
1835 return buffer_len(&active_state
->output
) < 128 * 1024;
1839 packet_set_tos(int tos
)
1841 #ifndef IP_TOS_IS_BROKEN
1842 if (!packet_connection_is_on_socket())
1844 switch (packet_connection_af()) {
1847 debug3("%s: set IP_TOS 0x%02x", __func__
, tos
);
1848 if (setsockopt(active_state
->connection_in
,
1849 IPPROTO_IP
, IP_TOS
, &tos
, sizeof(tos
)) < 0)
1850 error("setsockopt IP_TOS %d: %.100s:",
1851 tos
, strerror(errno
));
1853 # endif /* IP_TOS */
1856 debug3("%s: set IPV6_TCLASS 0x%02x", __func__
, tos
);
1857 if (setsockopt(active_state
->connection_in
,
1858 IPPROTO_IPV6
, IPV6_TCLASS
, &tos
, sizeof(tos
)) < 0)
1859 error("setsockopt IPV6_TCLASS %d: %.100s:",
1860 tos
, strerror(errno
));
1862 # endif /* IPV6_TCLASS */
1864 #endif /* IP_TOS_IS_BROKEN */
1867 /* Informs that the current session is interactive. Sets IP flags for that. */
1870 packet_set_interactive(int interactive
, int qos_interactive
, int qos_bulk
)
1872 if (active_state
->set_interactive_called
)
1874 active_state
->set_interactive_called
= 1;
1876 /* Record that we are in interactive mode. */
1877 active_state
->interactive_mode
= interactive
;
1879 /* Only set socket options if using a socket. */
1880 if (!packet_connection_is_on_socket())
1882 set_nodelay(active_state
->connection_in
);
1883 packet_set_tos(interactive
? qos_interactive
: qos_bulk
);
1886 /* Returns true if the current connection is interactive. */
1889 packet_is_interactive(void)
1891 return active_state
->interactive_mode
;
1895 packet_set_maxsize(u_int s
)
1897 if (active_state
->set_maxsize_called
) {
1898 logit("packet_set_maxsize: called twice: old %d new %d",
1899 active_state
->max_packet_size
, s
);
1902 if (s
< 4 * 1024 || s
> 1024 * 1024) {
1903 logit("packet_set_maxsize: bad size %d", s
);
1906 active_state
->set_maxsize_called
= 1;
1907 debug("packet_set_maxsize: setting to %d", s
);
1908 active_state
->max_packet_size
= s
;
1913 packet_inc_alive_timeouts(void)
1915 return ++active_state
->keep_alive_timeouts
;
1919 packet_set_alive_timeouts(int ka
)
1921 active_state
->keep_alive_timeouts
= ka
;
1925 packet_get_maxsize(void)
1927 return active_state
->max_packet_size
;
1930 /* roundup current message to pad bytes */
1932 packet_add_padding(u_char pad
)
1934 active_state
->extra_pad
= pad
;
1938 * 9.2. Ignored Data Message
1940 * byte SSH_MSG_IGNORE
1943 * All implementations MUST understand (and ignore) this message at any
1944 * time (after receiving the protocol version). No implementation is
1945 * required to send them. This message can be used as an additional
1946 * protection measure against advanced traffic analysis techniques.
1949 packet_send_ignore(int nbytes
)
1954 packet_start(compat20
? SSH2_MSG_IGNORE
: SSH_MSG_IGNORE
);
1955 packet_put_int(nbytes
);
1956 for (i
= 0; i
< nbytes
; i
++) {
1959 packet_put_char((u_char
)rnd
& 0xff);
1964 /* this supports the forced rekeying required for the NONE cipher */
1965 int rekey_requested
= 0;
1967 packet_request_rekeying(void)
1969 rekey_requested
= 1;
1972 #define MAX_PACKETS (1U<<31)
1974 packet_need_rekeying(void)
1976 if (datafellows
& SSH_BUG_NOREKEY
)
1978 if (rekey_requested
== 1)
1980 rekey_requested
= 0;
1984 (active_state
->p_send
.packets
> MAX_PACKETS
) ||
1985 (active_state
->p_read
.packets
> MAX_PACKETS
) ||
1986 (active_state
->max_blocks_out
&&
1987 (active_state
->p_send
.blocks
> active_state
->max_blocks_out
)) ||
1988 (active_state
->max_blocks_in
&&
1989 (active_state
->p_read
.blocks
> active_state
->max_blocks_in
)) ||
1990 (active_state
->rekey_interval
!= 0 && active_state
->rekey_time
+
1991 active_state
->rekey_interval
<= monotime());
1995 packet_authentication_state(void)
1997 return(active_state
->after_authentication
);
2001 packet_set_rekey_limits(u_int32_t bytes
, time_t seconds
)
2003 debug3("rekey after %lld bytes, %d seconds", (long long)bytes
,
2005 active_state
->rekey_limit
= bytes
;
2006 active_state
->rekey_interval
= seconds
;
2008 * We set the time here so that in post-auth privsep slave we count
2009 * from the completion of the authentication.
2011 active_state
->rekey_time
= monotime();
2015 packet_get_rekey_timeout(void)
2019 seconds
= active_state
->rekey_time
+ active_state
->rekey_interval
-
2021 return (seconds
<= 0 ? 1 : seconds
);
2025 packet_set_server(void)
2027 active_state
->server_side
= 1;
2031 packet_set_authenticated(void)
2033 active_state
->after_authentication
= 1;
2037 packet_get_input(void)
2039 return (void *)&active_state
->input
;
2043 packet_get_output(void)
2045 return (void *)&active_state
->output
;
2049 packet_get_newkeys(int mode
)
2051 return (void *)active_state
->newkeys
[mode
];
2055 packet_get_receive_context(void)
2057 return (void*)&(active_state
->receive_context
);
2061 packet_get_send_context(void)
2063 return (void*)&(active_state
->send_context
);
2067 * Save the state for the real connection, and use a separate state when
2068 * resuming a suspended connection.
2071 packet_backup_state(void)
2073 struct session_state
*tmp
;
2075 close(active_state
->connection_in
);
2076 active_state
->connection_in
= -1;
2077 close(active_state
->connection_out
);
2078 active_state
->connection_out
= -1;
2082 tmp
= alloc_session_state();
2083 backup_state
= active_state
;
2088 * Swap in the old state when resuming a connecion.
2091 packet_restore_state(void)
2093 struct session_state
*tmp
;
2098 backup_state
= active_state
;
2100 active_state
->connection_in
= backup_state
->connection_in
;
2101 backup_state
->connection_in
= -1;
2102 active_state
->connection_out
= backup_state
->connection_out
;
2103 backup_state
->connection_out
= -1;
2104 len
= buffer_len(&backup_state
->input
);
2106 buf
= buffer_ptr(&backup_state
->input
);
2107 buffer_append(&active_state
->input
, buf
, len
);
2108 buffer_clear(&backup_state
->input
);
2109 add_recv_bytes(len
);
2113 /* Reset after_authentication and reset compression in post-auth privsep */
2115 packet_set_postauth(void)
2120 debug("%s: called", __func__
);
2121 /* This was set in net child, but is not visible in user child */
2122 active_state
->after_authentication
= 1;
2123 active_state
->rekeying
= 0;
2124 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
2125 if (active_state
->newkeys
[mode
] == NULL
)
2127 comp
= &active_state
->newkeys
[mode
]->comp
;
2128 if (comp
&& comp
->enabled
)
2129 packet_init_compression();