24e2b7e528a6df2969f0991fe70db2ac4c17494e
[dragonfly.git] / crypto / openssh / packet.c
1 /* $OpenBSD: packet.c,v 1.198 2014/07/15 15:54:14 millert Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
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.
8  *
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".
14  *
15  *
16  * SSH2 packet format added by Markus Friedl.
17  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions
21  * are met:
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.
27  *
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.
38  */
39
40 #include "includes.h"
41  
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>
48 #endif
49
50 #include <netinet/in.h>
51 #include <netinet/ip.h>
52 #include <arpa/inet.h>
53
54 #include <errno.h>
55 #include <stdarg.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <unistd.h>
60 #include <signal.h>
61 #include <time.h>
62
63 #include "xmalloc.h"
64 #include "buffer.h"
65 #include "packet.h"
66 #include "crc32.h"
67 #include "compress.h"
68 #include "deattack.h"
69 #include "compat.h"
70 #include "ssh1.h"
71 #include "ssh2.h"
72 #include "cipher.h"
73 #include "key.h"
74 #include "kex.h"
75 #include "mac.h"
76 #include "log.h"
77 #include "canohost.h"
78 #include "misc.h"
79 #include "channels.h"
80 #include "ssh.h"
81 #include "ssherr.h"
82 #include "roaming.h"
83
84 #ifdef PACKET_DEBUG
85 #define DBG(x) x
86 #else
87 #define DBG(x)
88 #endif
89
90 #define PACKET_MAX_SIZE (256 * 1024)
91
92 struct packet_state {
93         u_int32_t seqnr;
94         u_int32_t packets;
95         u_int64_t blocks;
96         u_int64_t bytes;
97 };
98
99 struct packet {
100         TAILQ_ENTRY(packet) next;
101         u_char type;
102         Buffer payload;
103 };
104
105 struct session_state {
106         /*
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.
111          */
112         int connection_in;
113         int connection_out;
114
115         /* Protocol flags for the remote side. */
116         u_int remote_protocol_flags;
117
118         /* Encryption context for receiving data.  Only used for decryption. */
119         CipherContext receive_context;
120
121         /* Encryption context for sending data.  Only used for encryption. */
122         CipherContext send_context;
123
124         /* Buffer for raw input data from the socket. */
125         Buffer input;
126
127         /* Buffer for raw output data going to the socket. */
128         Buffer output;
129
130         /* Buffer for the partial outgoing packet being constructed. */
131         Buffer outgoing_packet;
132
133         /* Buffer for the incoming packet currently being processed. */
134         Buffer incoming_packet;
135
136         /* Scratch buffer for packet compression/decompression. */
137         Buffer compression_buffer;
138         int compression_buffer_ready;
139
140         /*
141          * Flag indicating whether packet compression/decompression is
142          * enabled.
143          */
144         int packet_compression;
145
146         /* default maximum packet size */
147         u_int max_packet_size;
148
149         /* Flag indicating whether this module has been initialized. */
150         int initialized;
151
152         /* Set to true if the connection is interactive. */
153         int interactive_mode;
154
155         /* Set to true if we are the server side. */
156         int server_side;
157
158         /* Set to true if we are authenticated. */
159         int after_authentication;
160
161         int keep_alive_timeouts;
162
163         /* The maximum time that we will wait to send or receive a packet */
164         int packet_timeout_ms;
165
166         /* Session key information for Encryption and MAC */
167         Newkeys *newkeys[MODE_MAX];
168         struct packet_state p_read, p_send;
169
170         /* Volume-based rekeying */
171         u_int64_t max_blocks_in, max_blocks_out;
172         u_int32_t rekey_limit;
173
174         /* Time-based rekeying */
175         time_t rekey_interval;  /* how often in seconds */
176         time_t rekey_time;      /* time of last rekeying */
177
178         /* Session key for protocol v1 */
179         u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
180         u_int ssh1_keylen;
181
182         /* roundup current message to extra_pad bytes */
183         u_char extra_pad;
184
185         /* XXX discard incoming data after MAC error */
186         u_int packet_discard;
187         Mac *packet_discard_mac;
188
189         /* Used in packet_read_poll2() */
190         u_int packlen;
191
192         /* Used in packet_send2 */
193         int rekeying;
194
195         /* Used in packet_set_interactive */
196         int set_interactive_called;
197
198         /* Used in packet_set_maxsize */
199         int set_maxsize_called;
200
201         TAILQ_HEAD(, packet) outgoing;
202 };
203
204 static struct session_state *active_state, *backup_state;
205
206 static struct session_state *
207 alloc_session_state(void)
208 {
209         struct session_state *s = xcalloc(1, sizeof(*s));
210
211         s->connection_in = -1;
212         s->connection_out = -1;
213         s->max_packet_size = 32768;
214         s->packet_timeout_ms = -1;
215         return s;
216 }
217
218 /*
219  * Sets the descriptors used for communication.  Disables encryption until
220  * packet_set_encryption_key is called.
221  */
222 void
223 packet_set_connection(int fd_in, int fd_out)
224 {
225         const Cipher *none = cipher_by_name("none");
226         int r;
227
228         if (none == NULL)
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;
248         }
249 }
250
251 void
252 packet_set_timeout(int timeout, int count)
253 {
254         if (timeout <= 0 || count <= 0) {
255                 active_state->packet_timeout_ms = -1;
256                 return;
257         }
258         if ((INT_MAX / 1000) / count < timeout)
259                 active_state->packet_timeout_ms = INT_MAX;
260         else
261                 active_state->packet_timeout_ms = timeout * count * 1000;
262 }
263
264 static void
265 packet_stop_discard(void)
266 {
267         if (active_state->packet_discard_mac) {
268                 char buf[1024];
269                 
270                 memset(buf, 'a', sizeof(buf));
271                 while (buffer_len(&active_state->incoming_packet) <
272                     PACKET_MAX_SIZE)
273                         buffer_append(&active_state->incoming_packet, buf,
274                             sizeof(buf));
275                 (void) mac_compute(active_state->packet_discard_mac,
276                     active_state->p_read.seqnr,
277                     buffer_ptr(&active_state->incoming_packet),
278                     PACKET_MAX_SIZE);
279         }
280         logit("Finished discarding for %.200s", get_remote_ipaddr());
281         cleanup_exit(255);
282 }
283
284 static void
285 packet_start_discard(Enc *enc, Mac *mac, u_int packet_length, u_int discard)
286 {
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);
295 }
296
297 /* Returns 1 if remote host is connected via socket, 0 if not. */
298
299 int
300 packet_connection_is_on_socket(void)
301 {
302         struct sockaddr_storage from, to;
303         socklen_t fromlen, tolen;
304
305         /* filedescriptors in and out are the same, so it's a socket */
306         if (active_state->connection_in == active_state->connection_out)
307                 return 1;
308         fromlen = sizeof(from);
309         memset(&from, 0, sizeof(from));
310         if (getpeername(active_state->connection_in, (struct sockaddr *)&from,
311             &fromlen) < 0)
312                 return 0;
313         tolen = sizeof(to);
314         memset(&to, 0, sizeof(to));
315         if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
316             &tolen) < 0)
317                 return 0;
318         if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
319                 return 0;
320         if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
321                 return 0;
322         return 1;
323 }
324
325 /*
326  * Exports an IV from the CipherContext required to export the key
327  * state back from the unprivileged child to the privileged parent
328  * process.
329  */
330
331 void
332 packet_get_keyiv(int mode, u_char *iv, u_int len)
333 {
334         CipherContext *cc;
335         int r;
336
337         if (mode == MODE_OUT)
338                 cc = &active_state->send_context;
339         else
340                 cc = &active_state->receive_context;
341
342         if ((r = cipher_get_keyiv(cc, iv, len)) != 0)
343                 fatal("%s: cipher_get_keyiv: %s", __func__, ssh_err(r));
344 }
345
346 int
347 packet_get_keycontext(int mode, u_char *dat)
348 {
349         CipherContext *cc;
350
351         if (mode == MODE_OUT)
352                 cc = &active_state->send_context;
353         else
354                 cc = &active_state->receive_context;
355
356         return (cipher_get_keycontext(cc, dat));
357 }
358
359 void
360 packet_set_keycontext(int mode, u_char *dat)
361 {
362         CipherContext *cc;
363
364         if (mode == MODE_OUT)
365                 cc = &active_state->send_context;
366         else
367                 cc = &active_state->receive_context;
368
369         cipher_set_keycontext(cc, dat);
370 }
371
372 int
373 packet_get_keyiv_len(int mode)
374 {
375         CipherContext *cc;
376
377         if (mode == MODE_OUT)
378                 cc = &active_state->send_context;
379         else
380                 cc = &active_state->receive_context;
381
382         return (cipher_get_keyiv_len(cc));
383 }
384
385 void
386 packet_set_iv(int mode, u_char *dat)
387 {
388         CipherContext *cc;
389         int r;
390
391         if (mode == MODE_OUT)
392                 cc = &active_state->send_context;
393         else
394                 cc = &active_state->receive_context;
395
396         if ((r = cipher_set_keyiv(cc, dat)) != 0)
397                 fatal("%s: cipher_set_keyiv: %s", __func__, ssh_err(r));
398 }
399
400 int
401 packet_get_ssh1_cipher(void)
402 {
403         return (cipher_get_number(active_state->receive_context.cipher));
404 }
405
406 void
407 packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks,
408     u_int32_t *packets, u_int64_t *bytes)
409 {
410         struct packet_state *state;
411
412         state = (mode == MODE_IN) ?
413             &active_state->p_read : &active_state->p_send;
414         if (seqnr)
415                 *seqnr = state->seqnr;
416         if (blocks)
417                 *blocks = state->blocks;
418         if (packets)
419                 *packets = state->packets;
420         if (bytes)
421                 *bytes = state->bytes;
422 }
423
424 void
425 packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
426     u_int64_t bytes)
427 {
428         struct packet_state *state;
429
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;
436 }
437
438 static int
439 packet_connection_af(void)
440 {
441         struct sockaddr_storage to;
442         socklen_t tolen = sizeof(to);
443
444         memset(&to, 0, sizeof(to));
445         if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
446             &tolen) < 0)
447                 return 0;
448 #ifdef IPV4_IN_IPV6
449         if (to.ss_family == AF_INET6 &&
450             IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
451                 return AF_INET;
452 #endif
453         return to.ss_family;
454 }
455
456 /* Sets the connection into non-blocking mode. */
457
458 void
459 packet_set_nonblocking(void)
460 {
461         /* Set the socket into non-blocking mode. */
462         set_nonblock(active_state->connection_in);
463
464         if (active_state->connection_out != active_state->connection_in)
465                 set_nonblock(active_state->connection_out);
466 }
467
468 /* Returns the socket used for reading. */
469
470 int
471 packet_get_connection_in(void)
472 {
473         return active_state->connection_in;
474 }
475
476 /* Returns the descriptor used for writing. */
477
478 int
479 packet_get_connection_out(void)
480 {
481         return active_state->connection_out;
482 }
483
484 /* Closes the connection and clears and frees internal data structures. */
485
486 void
487 packet_close(void)
488 {
489         if (!active_state->initialized)
490                 return;
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);
495         } else {
496                 close(active_state->connection_in);
497                 close(active_state->connection_out);
498         }
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();
506         }
507         cipher_cleanup(&active_state->send_context);
508         cipher_cleanup(&active_state->receive_context);
509 }
510
511 /* Sets remote side protocol flags. */
512
513 void
514 packet_set_protocol_flags(u_int protocol_flags)
515 {
516         active_state->remote_protocol_flags = protocol_flags;
517 }
518
519 /* Returns the remote protocol flags set earlier by the above function. */
520
521 u_int
522 packet_get_protocol_flags(void)
523 {
524         return active_state->remote_protocol_flags;
525 }
526
527 /*
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.
530  */
531
532 static void
533 packet_init_compression(void)
534 {
535         if (active_state->compression_buffer_ready == 1)
536                 return;
537         active_state->compression_buffer_ready = 1;
538         buffer_init(&active_state->compression_buffer);
539 }
540
541 void
542 packet_start_compression(int level)
543 {
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();
550 }
551
552 /*
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.
556  */
557
558 void
559 packet_set_encryption_key(const u_char *key, u_int keylen, int number)
560 {
561         const Cipher *cipher = cipher_by_number(number);
562         int r;
563
564         if (cipher == NULL)
565                 fatal("packet_set_encryption_key: unknown cipher number %d", number);
566         if (keylen < 20)
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));
577 }
578
579 u_int
580 packet_get_encryption_key(u_char *key)
581 {
582         if (key == NULL)
583                 return (active_state->ssh1_keylen);
584         memcpy(key, active_state->ssh1_key, active_state->ssh1_keylen);
585         return (active_state->ssh1_keylen);
586 }
587
588 /* Start constructing a packet to send. */
589 void
590 packet_start(u_char type)
591 {
592         u_char buf[9];
593         int len;
594
595         DBG(debug("packet_start[%d]", type));
596         len = compat20 ? 6 : 9;
597         memset(buf, 0, len - 1);
598         buf[len - 1] = type;
599         buffer_clear(&active_state->outgoing_packet);
600         buffer_append(&active_state->outgoing_packet, buf, len);
601 }
602
603 /* Append payload. */
604 void
605 packet_put_char(int value)
606 {
607         char ch = value;
608
609         buffer_append(&active_state->outgoing_packet, &ch, 1);
610 }
611
612 void
613 packet_put_int(u_int value)
614 {
615         buffer_put_int(&active_state->outgoing_packet, value);
616 }
617
618 void
619 packet_put_int64(u_int64_t value)
620 {
621         buffer_put_int64(&active_state->outgoing_packet, value);
622 }
623
624 void
625 packet_put_string(const void *buf, u_int len)
626 {
627         buffer_put_string(&active_state->outgoing_packet, buf, len);
628 }
629
630 void
631 packet_put_cstring(const char *str)
632 {
633         buffer_put_cstring(&active_state->outgoing_packet, str);
634 }
635
636 void
637 packet_put_raw(const void *buf, u_int len)
638 {
639         buffer_append(&active_state->outgoing_packet, buf, len);
640 }
641
642 #ifdef WITH_OPENSSL
643 void
644 packet_put_bignum(BIGNUM * value)
645 {
646         buffer_put_bignum(&active_state->outgoing_packet, value);
647 }
648
649 void
650 packet_put_bignum2(BIGNUM * value)
651 {
652         buffer_put_bignum2(&active_state->outgoing_packet, value);
653 }
654 #endif
655
656 #ifdef OPENSSL_HAS_ECC
657 void
658 packet_put_ecpoint(const EC_GROUP *curve, const EC_POINT *point)
659 {
660         buffer_put_ecpoint(&active_state->outgoing_packet, curve, point);
661 }
662 #endif
663
664 /*
665  * Finalizes and sends the packet.  If the encryption key has been set,
666  * encrypts the packet before sending.
667  */
668
669 static void
670 packet_send1(void)
671 {
672         u_char buf[8], *cp;
673         int i, padding, len;
674         u_int checksum;
675         u_int32_t rnd = 0;
676
677         /*
678          * If using packet compression, compress the payload of the outgoing
679          * packet.
680          */
681         if (active_state->packet_compression) {
682                 buffer_clear(&active_state->compression_buffer);
683                 /* Skip padding. */
684                 buffer_consume(&active_state->outgoing_packet, 8);
685                 /* padding */
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));
694         }
695         /* Compute packet length without padding (add checksum, remove padding). */
696         len = buffer_len(&active_state->outgoing_packet) + 4 - 8;
697
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++) {
703                         if (i % 4 == 0)
704                                 rnd = arc4random();
705                         cp[7 - i] = rnd & 0xff;
706                         rnd >>= 8;
707                 }
708         }
709         buffer_consume(&active_state->outgoing_packet, 8 - padding);
710
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);
716
717 #ifdef PACKET_DEBUG
718         fprintf(stderr, "packet_send plain: ");
719         buffer_dump(&active_state->outgoing_packet);
720 #endif
721
722         /* Append to output. */
723         put_u32(buf, len);
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__);
731
732 #ifdef PACKET_DEBUG
733         fprintf(stderr, "encrypted: ");
734         buffer_dump(&active_state->output);
735 #endif
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);
740
741         /*
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
744          * called.
745          */
746 }
747
748 void
749 set_newkeys(int mode)
750 {
751         Enc *enc;
752         Mac *mac;
753         Comp *comp;
754         CipherContext *cc;
755         u_int64_t *max_blocks;
756         int r, crypt_type;
757
758         debug2("set_newkeys: mode %d", mode);
759
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;
765         } else {
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;
770         }
771         if (active_state->newkeys[mode] != NULL) {
772                 debug("set_newkeys: rekeying");
773                 cipher_cleanup(cc);
774                 enc  = &active_state->newkeys[mode]->enc;
775                 mac  = &active_state->newkeys[mode]->mac;
776                 comp = &active_state->newkeys[mode]->comp;
777                 mac_clear(mac);
778                 explicit_bzero(enc->iv,  enc->iv_len);
779                 explicit_bzero(enc->key, enc->key_len);
780                 explicit_bzero(mac->key, mac->key_len);
781                 free(enc->name);
782                 free(enc->iv);
783                 free(enc->key);
784                 free(mac->name);
785                 free(mac->key);
786                 free(comp->name);
787                 free(active_state->newkeys[mode]);
788         }
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)
796                 mac->enabled = 1;
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);
811                 else
812                         buffer_compress_init_recv();
813                 comp->enabled = 1;
814         }
815         /*
816          * The 2^(blocksize*2) limit is too expensive for 3DES,
817          * blowfish, etc, so enforce a 1GB limit for small blocksizes.
818          */
819         if (enc->block_size >= 16)
820                 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
821         else
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);
826 }
827
828 /*
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.
832  */
833 static void
834 packet_enable_delayed_compress(void)
835 {
836         Comp *comp = NULL;
837         int mode;
838
839         /*
840          * Remember that we are past the authentication step, so rekeying
841          * with COMP_DELAYED will turn on compression immediately.
842          */
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)
847                         continue;
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);
853                         else
854                                 buffer_compress_init_recv();
855                         comp->enabled = 1;
856                 }
857         }
858 }
859
860 /*
861  * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
862  */
863 static int
864 packet_send2_wrapped(void)
865 {
866         u_char type, *cp, *macbuf = NULL;
867         u_char padlen, pad = 0;
868         u_int i, len, authlen = 0, aadlen = 0;
869         u_int32_t rnd = 0;
870         Enc *enc   = NULL;
871         Mac *mac   = NULL;
872         Comp *comp = NULL;
873         int block_size;
874
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)
881                         mac = NULL;
882         }
883         block_size = enc ? enc->block_size : 8;
884         aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
885
886         cp = buffer_ptr(&active_state->outgoing_packet);
887         type = cp[5];
888
889 #ifdef PACKET_DEBUG
890         fprintf(stderr, "plain:     ");
891         buffer_dump(&active_state->outgoing_packet);
892 #endif
893
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)));
908         }
909
910         /* sizeof (packet_len + pad_len + payload) */
911         len = buffer_len(&active_state->outgoing_packet);
912
913         /*
914          * calc size of padding, alloc space, get random data,
915          * minimum padding is 4 bytes
916          */
917         len -= aadlen; /* packet length is not encrypted for EtM modes */
918         padlen = block_size - (len % block_size);
919         if (padlen < 4)
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));
929                 padlen += pad;
930                 active_state->extra_pad = 0;
931         }
932         cp = buffer_append_space(&active_state->outgoing_packet, padlen);
933         if (enc && !active_state->send_context.plaintext) {
934                 /* random padding */
935                 for (i = 0; i < padlen; i++) {
936                         if (i % 4 == 0)
937                                 rnd = arc4random();
938                         cp[i] = rnd & 0xff;
939                         rnd >>= 8;
940                 }
941         } else {
942                 /* clear padding */
943                 explicit_bzero(cp, padlen);
944         }
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);
950         cp[4] = padlen;
951         DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
952             len, padlen, aadlen));
953
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));
959         }
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) {
968                 if (mac->etm) {
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));
974                 }
975                 buffer_append(&active_state->output, macbuf, mac->mac_len);
976         }
977 #ifdef PACKET_DEBUG
978         fprintf(stderr, "encrypted: ");
979         buffer_dump(&active_state->output);
980 #endif
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);
990
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();
995         return(packet_length);
996 }
997
998 static int
999 packet_send2(void)
1000 {
1001         static int packet_length = 0;
1002         struct packet *p;
1003         u_char type, *cp;
1004
1005         cp = buffer_ptr(&active_state->outgoing_packet);
1006         type = cp[5];
1007
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));
1016                         p->type = type;
1017                         memcpy(&p->payload, &active_state->outgoing_packet,
1018                             sizeof(Buffer));
1019                         buffer_init(&active_state->outgoing_packet);
1020                         TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
1021                         return(sizeof(Buffer));
1022                 }
1023         }
1024
1025         /* rekeying starts with sending KEXINIT */
1026         if (type == SSH2_MSG_KEXINIT)
1027                 active_state->rekeying = 1;
1028
1029         packet_length = packet_send2_wrapped();
1030
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))) {
1036                         type = p->type;
1037                         debug("dequeue packet: %u", type);
1038                         buffer_free(&active_state->outgoing_packet);
1039                         memcpy(&active_state->outgoing_packet, &p->payload,
1040                             sizeof(Buffer));
1041                         TAILQ_REMOVE(&active_state->outgoing, p, next);
1042                         free(p);
1043                         packet_length += packet_send2_wrapped();
1044                 }
1045         }
1046         return(packet_length);
1047 }
1048
1049 int
1050 packet_send(void)
1051 {
1052   int packet_len = 0;
1053         if (compat20)
1054                 packet_len = packet_send2();
1055         else
1056                 packet_send1();
1057         DBG(debug("packet_send done"));
1058         return(packet_len);
1059 }
1060
1061 /*
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.
1065  */
1066
1067 int
1068 packet_read_seqnr(u_int32_t *seqnr_p)
1069 {
1070         int type, len, ret, cont, ms_remain = 0;
1071         fd_set *setp;
1072         char buf[8192];
1073         struct timeval timeout, start, *timeoutp = NULL;
1074
1075         DBG(debug("packet_read()"));
1076
1077         setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1,
1078             NFDBITS), sizeof(fd_mask));
1079
1080         /* Since we are blocking, ensure that all written packets have been sent. */
1081         packet_write_wait();
1082
1083         /* Stay in the loop until we have received a complete packet. */
1084         for (;;) {
1085                 /* Try to read a packet from the buffer. */
1086                 type = packet_read_poll_seqnr(seqnr_p);
1087                 if (!compat20 && (
1088                     type == SSH_SMSG_SUCCESS
1089                     || type == SSH_SMSG_FAILURE
1090                     || type == SSH_CMSG_EOF
1091                     || type == SSH_CMSG_EXIT_CONFIRMATION))
1092                         packet_check_eom();
1093                 /* If we got a packet, return it. */
1094                 if (type != SSH_MSG_NONE) {
1095                         free(setp);
1096                         return type;
1097                 }
1098                 /*
1099                  * Otherwise, wait for some data to arrive, add it to the
1100                  * buffer, and try again.
1101                  */
1102                 memset(setp, 0, howmany(active_state->connection_in + 1,
1103                     NFDBITS) * sizeof(fd_mask));
1104                 FD_SET(active_state->connection_in, setp);
1105
1106                 if (active_state->packet_timeout_ms > 0) {
1107                         ms_remain = active_state->packet_timeout_ms;
1108                         timeoutp = &timeout;
1109                 }
1110                 /* Wait for some data to arrive. */
1111                 for (;;) {
1112                         if (active_state->packet_timeout_ms != -1) {
1113                                 ms_to_timeval(&timeout, ms_remain);
1114                                 gettimeofday(&start, NULL);
1115                         }
1116                         if ((ret = select(active_state->connection_in + 1, setp,
1117                             NULL, NULL, timeoutp)) >= 0)
1118                                 break;
1119                         if (errno != EAGAIN && errno != EINTR &&
1120                             errno != EWOULDBLOCK)
1121                                 break;
1122                         if (active_state->packet_timeout_ms == -1)
1123                                 continue;
1124                         ms_subtract_diff(&start, &ms_remain);
1125                         if (ms_remain <= 0) {
1126                                 ret = 0;
1127                                 break;
1128                         }
1129                 }
1130                 if (ret == 0) {
1131                         logit("Connection to %.200s timed out while "
1132                             "waiting to read", get_remote_ipaddr());
1133                         cleanup_exit(255);
1134                 }
1135                 /* Read data from the socket. */
1136                 do {
1137                         cont = 0;
1138                         len = roaming_read(active_state->connection_in, buf,
1139                             sizeof(buf), &cont);
1140                 } while (len == 0 && cont);
1141                 if (len == 0) {
1142                         logit("Connection closed by %.200s", get_remote_ipaddr());
1143                         cleanup_exit(255);
1144                 }
1145                 if (len < 0)
1146                         fatal("Read from socket failed: %.100s", strerror(errno));
1147                 /* Append it to the buffer. */
1148                 packet_process_incoming(buf, len);
1149         }
1150         /* NOTREACHED */
1151 }
1152
1153 int
1154 packet_read(void)
1155 {
1156         return packet_read_seqnr(NULL);
1157 }
1158
1159 /*
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.
1162  */
1163
1164 void
1165 packet_read_expect(int expected_type)
1166 {
1167         int type;
1168
1169         type = packet_read();
1170         if (type != expected_type)
1171                 packet_disconnect("Protocol error: expected packet type %d, got %d",
1172                     expected_type, type);
1173 }
1174
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.
1178  *
1179  * SSH_MSG_DISCONNECT is handled specially here.  Also,
1180  * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1181  * to higher levels.
1182  */
1183
1184 static int
1185 packet_read_poll1(void)
1186 {
1187         u_int len, padded_len;
1188         u_char *cp, type;
1189         u_int checksum, stored_checksum;
1190
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);
1196         len = get_u32(cp);
1197         if (len < 1 + 2 + 2 || len > 256 * 1024)
1198                 packet_disconnect("Bad packet length %u.", len);
1199         padded_len = (len + 8) & ~7;
1200
1201         /* Check if the packet has been entirely received. */
1202         if (buffer_len(&active_state->input) < 4 + padded_len)
1203                 return SSH_MSG_NONE;
1204
1205         /* The entire packet is in buffer. */
1206
1207         /* Consume packet length. */
1208         buffer_consume(&active_state->input, 4);
1209
1210         /*
1211          * Cryptographic attack detector for ssh
1212          * (C)1998 CORE-SDI, Buenos Aires Argentina
1213          * Ariel Futoransky(futo@core-sdi.com)
1214          */
1215         if (!active_state->receive_context.plaintext) {
1216                 switch (detect_attack(buffer_ptr(&active_state->input),
1217                     padded_len)) {
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");
1224                 }
1225         }
1226
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__);
1233
1234         buffer_consume(&active_state->input, padded_len);
1235
1236 #ifdef PACKET_DEBUG
1237         fprintf(stderr, "read_poll plain: ");
1238         buffer_dump(&active_state->incoming_packet);
1239 #endif
1240
1241         /* Compute packet checksum. */
1242         checksum = ssh_crc32(buffer_ptr(&active_state->incoming_packet),
1243             buffer_len(&active_state->incoming_packet) - 4);
1244
1245         /* Skip padding. */
1246         buffer_consume(&active_state->incoming_packet, 8 - len % 8);
1247
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));
1252
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);
1258
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));
1267         }
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);
1273         return type;
1274 }
1275
1276 static int
1277 packet_read_poll2(u_int32_t *seqnr_p)
1278 {
1279         u_int padlen, need;
1280         u_char *macbuf = NULL, *cp, type;
1281         u_int maclen, authlen = 0, aadlen = 0, block_size;
1282         Enc *enc   = NULL;
1283         Mac *mac   = NULL;
1284         Comp *comp = NULL;
1285
1286         if (active_state->packet_discard)
1287                 return SSH_MSG_NONE;
1288
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)
1295                         mac = NULL;
1296         }
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;
1300
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) {
1310 #ifdef PACKET_DEBUG
1311                         buffer_dump(&active_state->input);
1312 #endif
1313                         logit("Bad packet length %u.", active_state->packlen);
1314                         packet_disconnect("Packet corrupt");
1315                 }
1316                 buffer_clear(&active_state->incoming_packet);
1317         } else if (active_state->packlen == 0) {
1318                 /*
1319                  * check if input size is less than the cipher block size,
1320                  * decrypt first block and extract length of incoming packet
1321                  */
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,
1326                     block_size);
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) {
1335 #ifdef PACKET_DEBUG
1336                         buffer_dump(&active_state->incoming_packet);
1337 #endif
1338                         logit("Bad packet length %u.", active_state->packlen);
1339                         packet_start_discard(enc, mac, active_state->packlen,
1340                             PACKET_MAX_SIZE);
1341                         return SSH_MSG_NONE;
1342                 }
1343                 buffer_consume(&active_state->input, block_size);
1344         }
1345         DBG(debug("input: packet len %u", active_state->packlen+4));
1346         if (aadlen) {
1347                 /* only the payload is encrypted */
1348                 need = active_state->packlen;
1349         } else {
1350                 /*
1351                  * the payload size and the payload are encrypted, but we
1352                  * have a partial packet of block_size bytes
1353                  */
1354                 need = 4 + active_state->packlen - block_size;
1355         }
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;
1364         }
1365         /*
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.
1372          */
1373         if (buffer_len(&active_state->input) < aadlen + need + authlen + maclen)
1374                 return SSH_MSG_NONE;
1375 #ifdef PACKET_DEBUG
1376         fprintf(stderr, "read_poll enc/full: ");
1377         buffer_dump(&active_state->input);
1378 #endif
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);
1389         /*
1390          * compute MAC over seqnr and packet,
1391          * increment sequence number for incoming packet
1392          */
1393         if (mac && mac->enabled) {
1394                 if (!mac->etm)
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;
1406                 }
1407                                 
1408                 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1409                 buffer_consume(&active_state->input, mac->mac_len);
1410         }
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;
1421
1422         /* get padlen */
1423         cp = buffer_ptr(&active_state->incoming_packet);
1424         padlen = cp[4];
1425         DBG(debug("input: padlen %d", padlen));
1426         if (padlen < 4)
1427                 packet_disconnect("Corrupted padlen %d on input.", padlen);
1428
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);
1432
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)));
1445         }
1446         /*
1447          * get packet type, implies consume.
1448          * return length of payload (without type field)
1449          */
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();
1458 #ifdef PACKET_DEBUG
1459         fprintf(stderr, "read/plain[%d]:\r\n", type);
1460         buffer_dump(&active_state->incoming_packet);
1461 #endif
1462         /* reset for next packet */
1463         active_state->packlen = 0;
1464         return type;
1465 }
1466
1467 int
1468 packet_read_poll_seqnr(u_int32_t *seqnr_p)
1469 {
1470         u_int reason, seqnr;
1471         u_char type;
1472         char *msg;
1473
1474         for (;;) {
1475                 if (compat20) {
1476                         type = packet_read_poll2(seqnr_p);
1477                         if (type) {
1478                                 active_state->keep_alive_timeouts = 0;
1479                                 DBG(debug("received packet type %d", type));
1480                         }
1481                         switch (type) {
1482                         case SSH2_MSG_IGNORE:
1483                                 debug3("Received SSH2_MSG_IGNORE");
1484                                 break;
1485                         case SSH2_MSG_DEBUG:
1486                                 packet_get_char();
1487                                 msg = packet_get_string(NULL);
1488                                 debug("Remote: %.900s", msg);
1489                                 free(msg);
1490                                 msg = packet_get_string(NULL);
1491                                 free(msg);
1492                                 break;
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);
1502                                 free(msg);
1503                                 cleanup_exit(255);
1504                                 break;
1505                         case SSH2_MSG_UNIMPLEMENTED:
1506                                 seqnr = packet_get_int();
1507                                 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1508                                     seqnr);
1509                                 break;
1510                         default:
1511                                 return type;
1512                         }
1513                 } else {
1514                         type = packet_read_poll1();
1515                         switch (type) {
1516                         case SSH_MSG_NONE:
1517                                 return SSH_MSG_NONE;
1518                         case SSH_MSG_IGNORE:
1519                                 break;
1520                         case SSH_MSG_DEBUG:
1521                                 msg = packet_get_string(NULL);
1522                                 debug("Remote: %.900s", msg);
1523                                 free(msg);
1524                                 break;
1525                         case SSH_MSG_DISCONNECT:
1526                                 msg = packet_get_string(NULL);
1527                                 error("Received disconnect from %s: %.400s",
1528                                     get_remote_ipaddr(), msg);
1529                                 cleanup_exit(255);
1530                                 break;
1531                         default:
1532                                 DBG(debug("received packet type %d", type));
1533                                 return type;
1534                         }
1535                 }
1536         }
1537 }
1538
1539 /*
1540  * Buffers the given amount of input characters.  This is intended to be used
1541  * together with packet_read_poll.
1542  */
1543
1544 void
1545 packet_process_incoming(const char *buf, u_int len)
1546 {
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;
1552                 return;
1553         }
1554         buffer_append(&active_state->input, buf, len);
1555 }
1556
1557 /* Returns a character from the packet. */
1558
1559 u_int
1560 packet_get_char(void)
1561 {
1562         char ch;
1563
1564         buffer_get(&active_state->incoming_packet, &ch, 1);
1565         return (u_char) ch;
1566 }
1567
1568 /* Returns an integer from the packet data. */
1569
1570 u_int
1571 packet_get_int(void)
1572 {
1573         return buffer_get_int(&active_state->incoming_packet);
1574 }
1575
1576 /* Returns an 64 bit integer from the packet data. */
1577
1578 u_int64_t
1579 packet_get_int64(void)
1580 {
1581         return buffer_get_int64(&active_state->incoming_packet);
1582 }
1583
1584 /*
1585  * Returns an arbitrary precision integer from the packet data.  The integer
1586  * must have been initialized before this call.
1587  */
1588
1589 #ifdef WITH_OPENSSL
1590 void
1591 packet_get_bignum(BIGNUM * value)
1592 {
1593         buffer_get_bignum(&active_state->incoming_packet, value);
1594 }
1595
1596 void
1597 packet_get_bignum2(BIGNUM * value)
1598 {
1599         buffer_get_bignum2(&active_state->incoming_packet, value);
1600 }
1601
1602 #ifdef OPENSSL_HAS_ECC
1603 void
1604 packet_get_ecpoint(const EC_GROUP *curve, EC_POINT *point)
1605 {
1606         buffer_get_ecpoint(&active_state->incoming_packet, curve, point);
1607 }
1608 #endif
1609
1610 void *
1611 packet_get_raw(u_int *length_ptr)
1612 {
1613         u_int bytes = buffer_len(&active_state->incoming_packet);
1614
1615         if (length_ptr != NULL)
1616                 *length_ptr = bytes;
1617         return buffer_ptr(&active_state->incoming_packet);
1618 }
1619 #endif
1620
1621 int
1622 packet_remaining(void)
1623 {
1624         return buffer_len(&active_state->incoming_packet);
1625 }
1626
1627 /*
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.
1632  */
1633
1634 void *
1635 packet_get_string(u_int *length_ptr)
1636 {
1637         return buffer_get_string(&active_state->incoming_packet, length_ptr);
1638 }
1639
1640 const void *
1641 packet_get_string_ptr(u_int *length_ptr)
1642 {
1643         return buffer_get_string_ptr(&active_state->incoming_packet, length_ptr);
1644 }
1645
1646 /* Ensures the returned string has no embedded \0 characters in it. */
1647 char *
1648 packet_get_cstring(u_int *length_ptr)
1649 {
1650         return buffer_get_cstring(&active_state->incoming_packet, length_ptr);
1651 }
1652
1653 /*
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.
1660  */
1661
1662 void
1663 packet_send_debug(const char *fmt,...)
1664 {
1665         char buf[1024];
1666         va_list args;
1667
1668         if (compat20 && (datafellows & SSH_BUG_DEBUG))
1669                 return;
1670
1671         va_start(args, fmt);
1672         vsnprintf(buf, sizeof(buf), fmt, args);
1673         va_end(args);
1674
1675         if (compat20) {
1676                 packet_start(SSH2_MSG_DEBUG);
1677                 packet_put_char(0);     /* bool: always display */
1678                 packet_put_cstring(buf);
1679                 packet_put_cstring("");
1680         } else {
1681                 packet_start(SSH_MSG_DEBUG);
1682                 packet_put_cstring(buf);
1683         }
1684         packet_send();
1685         packet_write_wait();
1686 }
1687
1688 /*
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.
1693  */
1694
1695 void
1696 packet_disconnect(const char *fmt,...)
1697 {
1698         char buf[1024];
1699         va_list args;
1700         static int disconnecting = 0;
1701
1702         if (disconnecting)      /* Guard against recursive invocations. */
1703                 fatal("packet_disconnect called recursively.");
1704         disconnecting = 1;
1705
1706         /*
1707          * Format the message.  Note that the caller must make sure the
1708          * message is of limited size.
1709          */
1710         va_start(args, fmt);
1711         vsnprintf(buf, sizeof(buf), fmt, args);
1712         va_end(args);
1713
1714         /* Display the error locally */
1715         logit("Disconnecting: %.100s", buf);
1716
1717         /* Send the disconnect message to the other side, and wait for it to get sent. */
1718         if (compat20) {
1719                 packet_start(SSH2_MSG_DISCONNECT);
1720                 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1721                 packet_put_cstring(buf);
1722                 packet_put_cstring("");
1723         } else {
1724                 packet_start(SSH_MSG_DISCONNECT);
1725                 packet_put_cstring(buf);
1726         }
1727         packet_send();
1728         packet_write_wait();
1729
1730         /* Stop listening for connections. */
1731         channel_close_all();
1732
1733         /* Close the connection. */
1734         packet_close();
1735         cleanup_exit(255);
1736 }
1737
1738 /* Checks if there is any buffered output, and tries to write some of the output. */
1739
1740 int
1741 packet_write_poll(void)
1742 {
1743         int len = buffer_len(&active_state->output);
1744         int cont;
1745
1746         if (len > 0) {
1747                 cont = 0;
1748                 len = roaming_write(active_state->connection_out,
1749                     buffer_ptr(&active_state->output), len, &cont);
1750                 if (len == -1) {
1751                         if (errno == EINTR || errno == EAGAIN ||
1752                             errno == EWOULDBLOCK)
1753                                 return(0);
1754                         fatal("Write failed: %.100s", strerror(errno));
1755                 }
1756                 if (len == 0 && !cont)
1757                         fatal("Write connection closed");
1758                 buffer_consume(&active_state->output, len);
1759         }
1760         return(len);
1761 }
1762
1763 /*
1764  * Calls packet_write_poll repeatedly until all pending output data has been
1765  * written.
1766  */
1767
1768 void
1769 packet_write_wait(void)
1770 {
1771         fd_set *setp;
1772         int ret, ms_remain = 0;
1773         struct timeval start, timeout, *timeoutp = NULL;
1774
1775         setp = (fd_set *)xcalloc(howmany(active_state->connection_out + 1,
1776             NFDBITS), sizeof(fd_mask));
1777         packet_write_poll();
1778         while (packet_have_data_to_write()) {
1779                 memset(setp, 0, howmany(active_state->connection_out + 1,
1780                     NFDBITS) * sizeof(fd_mask));
1781                 FD_SET(active_state->connection_out, setp);
1782
1783                 if (active_state->packet_timeout_ms > 0) {
1784                         ms_remain = active_state->packet_timeout_ms;
1785                         timeoutp = &timeout;
1786                 }
1787                 for (;;) {
1788                         if (active_state->packet_timeout_ms != -1) {
1789                                 ms_to_timeval(&timeout, ms_remain);
1790                                 gettimeofday(&start, NULL);
1791                         }
1792                         if ((ret = select(active_state->connection_out + 1,
1793                             NULL, setp, NULL, timeoutp)) >= 0)
1794                                 break;
1795                         if (errno != EAGAIN && errno != EINTR &&
1796                             errno != EWOULDBLOCK)
1797                                 break;
1798                         if (active_state->packet_timeout_ms == -1)
1799                                 continue;
1800                         ms_subtract_diff(&start, &ms_remain);
1801                         if (ms_remain <= 0) {
1802                                 ret = 0;
1803                                 break;
1804                         }
1805                 }
1806                 if (ret == 0) {
1807                         logit("Connection to %.200s timed out while "
1808                             "waiting to write", get_remote_ipaddr());
1809                         cleanup_exit(255);
1810                 }
1811                 packet_write_poll();
1812         }
1813         free(setp);
1814 }
1815
1816 /* Returns true if there is buffered data to write to the connection. */
1817
1818 int
1819 packet_have_data_to_write(void)
1820 {
1821         return buffer_len(&active_state->output) != 0;
1822 }
1823
1824 /* Returns true if there is not too much data to write to the connection. */
1825
1826 int
1827 packet_not_very_much_data_to_write(void)
1828 {
1829         if (active_state->interactive_mode)
1830                 return buffer_len(&active_state->output) < 16384;
1831         else
1832                 return buffer_len(&active_state->output) < 128 * 1024;
1833 }
1834
1835 static void
1836 packet_set_tos(int tos)
1837 {
1838 #ifndef IP_TOS_IS_BROKEN
1839         if (!packet_connection_is_on_socket())
1840                 return;
1841         switch (packet_connection_af()) {
1842 # ifdef IP_TOS
1843         case AF_INET:
1844                 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
1845                 if (setsockopt(active_state->connection_in,
1846                     IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
1847                         error("setsockopt IP_TOS %d: %.100s:",
1848                             tos, strerror(errno));
1849                 break;
1850 # endif /* IP_TOS */
1851 # ifdef IPV6_TCLASS
1852         case AF_INET6:
1853                 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
1854                 if (setsockopt(active_state->connection_in,
1855                     IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
1856                         error("setsockopt IPV6_TCLASS %d: %.100s:",
1857                             tos, strerror(errno));
1858                 break;
1859 # endif /* IPV6_TCLASS */
1860         }
1861 #endif /* IP_TOS_IS_BROKEN */
1862 }
1863
1864 /* Informs that the current session is interactive.  Sets IP flags for that. */
1865
1866 void
1867 packet_set_interactive(int interactive, int qos_interactive, int qos_bulk)
1868 {
1869         if (active_state->set_interactive_called)
1870                 return;
1871         active_state->set_interactive_called = 1;
1872
1873         /* Record that we are in interactive mode. */
1874         active_state->interactive_mode = interactive;
1875
1876         /* Only set socket options if using a socket.  */
1877         if (!packet_connection_is_on_socket())
1878                 return;
1879         set_nodelay(active_state->connection_in);
1880         packet_set_tos(interactive ? qos_interactive : qos_bulk);
1881 }
1882
1883 /* Returns true if the current connection is interactive. */
1884
1885 int
1886 packet_is_interactive(void)
1887 {
1888         return active_state->interactive_mode;
1889 }
1890
1891 int
1892 packet_set_maxsize(u_int s)
1893 {
1894         if (active_state->set_maxsize_called) {
1895                 logit("packet_set_maxsize: called twice: old %d new %d",
1896                     active_state->max_packet_size, s);
1897                 return -1;
1898         }
1899         if (s < 4 * 1024 || s > 1024 * 1024) {
1900                 logit("packet_set_maxsize: bad size %d", s);
1901                 return -1;
1902         }
1903         active_state->set_maxsize_called = 1;
1904         debug("packet_set_maxsize: setting to %d", s);
1905         active_state->max_packet_size = s;
1906         return s;
1907 }
1908
1909 int
1910 packet_inc_alive_timeouts(void)
1911 {
1912         return ++active_state->keep_alive_timeouts;
1913 }
1914
1915 void
1916 packet_set_alive_timeouts(int ka)
1917 {
1918         active_state->keep_alive_timeouts = ka;
1919 }
1920
1921 u_int
1922 packet_get_maxsize(void)
1923 {
1924         return active_state->max_packet_size;
1925 }
1926
1927 /* roundup current message to pad bytes */
1928 void
1929 packet_add_padding(u_char pad)
1930 {
1931         active_state->extra_pad = pad;
1932 }
1933
1934 /*
1935  * 9.2.  Ignored Data Message
1936  *
1937  *   byte      SSH_MSG_IGNORE
1938  *   string    data
1939  *
1940  * All implementations MUST understand (and ignore) this message at any
1941  * time (after receiving the protocol version). No implementation is
1942  * required to send them. This message can be used as an additional
1943  * protection measure against advanced traffic analysis techniques.
1944  */
1945 void
1946 packet_send_ignore(int nbytes)
1947 {
1948         u_int32_t rnd = 0;
1949         int i;
1950
1951         packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
1952         packet_put_int(nbytes);
1953         for (i = 0; i < nbytes; i++) {
1954                 if (i % 4 == 0)
1955                         rnd = arc4random();
1956                 packet_put_char((u_char)rnd & 0xff);
1957                 rnd >>= 8;
1958         }
1959 }
1960
1961 int rekey_requested = 0;
1962 void
1963 packet_request_rekeying(void)
1964 {
1965         rekey_requested = 1;
1966 }
1967
1968 #define MAX_PACKETS     (1U<<31)
1969 int
1970 packet_need_rekeying(void)
1971 {
1972         if (datafellows & SSH_BUG_NOREKEY)
1973                 return 0;
1974         if (rekey_requested == 1)
1975         {
1976                 rekey_requested = 0;
1977                 return 1;
1978         }
1979         return
1980             (active_state->p_send.packets > MAX_PACKETS) ||
1981             (active_state->p_read.packets > MAX_PACKETS) ||
1982             (active_state->max_blocks_out &&
1983                 (active_state->p_send.blocks > active_state->max_blocks_out)) ||
1984             (active_state->max_blocks_in &&
1985                 (active_state->p_read.blocks > active_state->max_blocks_in)) ||
1986             (active_state->rekey_interval != 0 && active_state->rekey_time +
1987                  active_state->rekey_interval <= monotime());
1988 }
1989
1990 int
1991 packet_authentication_state(void)
1992 {
1993         return(active_state->after_authentication);
1994 }
1995
1996 void
1997 packet_set_rekey_limits(u_int32_t bytes, time_t seconds)
1998 {
1999         debug3("rekey after %lld bytes, %d seconds", (long long)bytes,
2000             (int)seconds);
2001         active_state->rekey_limit = bytes;
2002         active_state->rekey_interval = seconds;
2003         /*
2004          * We set the time here so that in post-auth privsep slave we count
2005          * from the completion of the authentication.
2006          */
2007         active_state->rekey_time = monotime();
2008 }
2009
2010 time_t
2011 packet_get_rekey_timeout(void)
2012 {
2013         time_t seconds;
2014
2015         seconds = active_state->rekey_time + active_state->rekey_interval -
2016             monotime();
2017         return (seconds <= 0 ? 1 : seconds);
2018 }
2019
2020 void
2021 packet_set_server(void)
2022 {
2023         active_state->server_side = 1;
2024 }
2025
2026 void
2027 packet_set_authenticated(void)
2028 {
2029         active_state->after_authentication = 1;
2030 }
2031
2032 void *
2033 packet_get_input(void)
2034 {
2035         return (void *)&active_state->input;
2036 }
2037
2038 void *
2039 packet_get_output(void)
2040 {
2041         return (void *)&active_state->output;
2042 }
2043
2044 void *
2045 packet_get_newkeys(int mode)
2046 {
2047         return (void *)active_state->newkeys[mode];
2048 }
2049
2050 /*
2051  * Save the state for the real connection, and use a separate state when
2052  * resuming a suspended connection.
2053  */
2054 void
2055 packet_backup_state(void)
2056 {
2057         struct session_state *tmp;
2058
2059         close(active_state->connection_in);
2060         active_state->connection_in = -1;
2061         close(active_state->connection_out);
2062         active_state->connection_out = -1;
2063         if (backup_state)
2064                 tmp = backup_state;
2065         else
2066                 tmp = alloc_session_state();
2067         backup_state = active_state;
2068         active_state = tmp;
2069 }
2070
2071 /*
2072  * Swap in the old state when resuming a connecion.
2073  */
2074 void
2075 packet_restore_state(void)
2076 {
2077         struct session_state *tmp;
2078         void *buf;
2079         u_int len;
2080
2081         tmp = backup_state;
2082         backup_state = active_state;
2083         active_state = tmp;
2084         active_state->connection_in = backup_state->connection_in;
2085         backup_state->connection_in = -1;
2086         active_state->connection_out = backup_state->connection_out;
2087         backup_state->connection_out = -1;
2088         len = buffer_len(&backup_state->input);
2089         if (len > 0) {
2090                 buf = buffer_ptr(&backup_state->input);
2091                 buffer_append(&active_state->input, buf, len);
2092                 buffer_clear(&backup_state->input);
2093                 add_recv_bytes(len);
2094         }
2095 }
2096
2097 /* Reset after_authentication and reset compression in post-auth privsep */
2098 void
2099 packet_set_postauth(void)
2100 {
2101         Comp *comp;
2102         int mode;
2103
2104         debug("%s: called", __func__);
2105         /* This was set in net child, but is not visible in user child */
2106         active_state->after_authentication = 1;
2107         active_state->rekeying = 0;
2108         for (mode = 0; mode < MODE_MAX; mode++) {
2109                 if (active_state->newkeys[mode] == NULL)
2110                         continue;
2111                 comp = &active_state->newkeys[mode]->comp;
2112                 if (comp && comp->enabled)
2113                         packet_init_compression();
2114         }
2115 }