Import OpenSSH-6.1p1.
[dragonfly.git] / crypto / openssh / packet.c
1 /* $OpenBSD: packet.c,v 1.176 2012/01/25 19:40:09 markus 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
62 #include "xmalloc.h"
63 #include "buffer.h"
64 #include "packet.h"
65 #include "crc32.h"
66 #include "compress.h"
67 #include "deattack.h"
68 #include "channels.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 "ssh.h"
80 #include "roaming.h"
81
82 #ifdef PACKET_DEBUG
83 #define DBG(x) x
84 #else
85 #define DBG(x)
86 #endif
87
88 #define PACKET_MAX_SIZE (256 * 1024)
89
90 struct packet_state {
91         u_int32_t seqnr;
92         u_int32_t packets;
93         u_int64_t blocks;
94         u_int64_t bytes;
95 };
96
97 struct packet {
98         TAILQ_ENTRY(packet) next;
99         u_char type;
100         Buffer payload;
101 };
102
103 struct session_state {
104         /*
105          * This variable contains the file descriptors used for
106          * communicating with the other side.  connection_in is used for
107          * reading; connection_out for writing.  These can be the same
108          * descriptor, in which case it is assumed to be a socket.
109          */
110         int connection_in;
111         int connection_out;
112
113         /* Protocol flags for the remote side. */
114         u_int remote_protocol_flags;
115
116         /* Encryption context for receiving data.  Only used for decryption. */
117         CipherContext receive_context;
118
119         /* Encryption context for sending data.  Only used for encryption. */
120         CipherContext send_context;
121
122         /* Buffer for raw input data from the socket. */
123         Buffer input;
124
125         /* Buffer for raw output data going to the socket. */
126         Buffer output;
127
128         /* Buffer for the partial outgoing packet being constructed. */
129         Buffer outgoing_packet;
130
131         /* Buffer for the incoming packet currently being processed. */
132         Buffer incoming_packet;
133
134         /* Scratch buffer for packet compression/decompression. */
135         Buffer compression_buffer;
136         int compression_buffer_ready;
137
138         /*
139          * Flag indicating whether packet compression/decompression is
140          * enabled.
141          */
142         int packet_compression;
143
144         /* default maximum packet size */
145         u_int max_packet_size;
146
147         /* Flag indicating whether this module has been initialized. */
148         int initialized;
149
150         /* Set to true if the connection is interactive. */
151         int interactive_mode;
152
153         /* Set to true if we are the server side. */
154         int server_side;
155
156         /* Set to true if we are authenticated. */
157         int after_authentication;
158
159         int keep_alive_timeouts;
160
161         /* The maximum time that we will wait to send or receive a packet */
162         int packet_timeout_ms;
163
164         /* Session key information for Encryption and MAC */
165         Newkeys *newkeys[MODE_MAX];
166         struct packet_state p_read, p_send;
167
168         u_int64_t max_blocks_in, max_blocks_out;
169         u_int32_t rekey_limit;
170
171         /* Session key for protocol v1 */
172         u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
173         u_int ssh1_keylen;
174
175         /* roundup current message to extra_pad bytes */
176         u_char extra_pad;
177
178         /* XXX discard incoming data after MAC error */
179         u_int packet_discard;
180         Mac *packet_discard_mac;
181
182         /* Used in packet_read_poll2() */
183         u_int packlen;
184
185         /* Used in packet_send2 */
186         int rekeying;
187
188         /* Used in packet_set_interactive */
189         int set_interactive_called;
190
191         /* Used in packet_set_maxsize */
192         int set_maxsize_called;
193
194         TAILQ_HEAD(, packet) outgoing;
195 };
196
197 static struct session_state *active_state, *backup_state;
198
199 static struct session_state *
200 alloc_session_state(void)
201 {
202         struct session_state *s = xcalloc(1, sizeof(*s));
203
204         s->connection_in = -1;
205         s->connection_out = -1;
206         s->max_packet_size = 32768;
207         s->packet_timeout_ms = -1;
208         return s;
209 }
210
211 /*
212  * Sets the descriptors used for communication.  Disables encryption until
213  * packet_set_encryption_key is called.
214  */
215 void
216 packet_set_connection(int fd_in, int fd_out)
217 {
218         Cipher *none = cipher_by_name("none");
219
220         if (none == NULL)
221                 fatal("packet_set_connection: cannot load cipher 'none'");
222         if (active_state == NULL)
223                 active_state = alloc_session_state();
224         active_state->connection_in = fd_in;
225         active_state->connection_out = fd_out;
226         cipher_init(&active_state->send_context, none, (const u_char *)"",
227             0, NULL, 0, CIPHER_ENCRYPT);
228         cipher_init(&active_state->receive_context, none, (const u_char *)"",
229             0, NULL, 0, CIPHER_DECRYPT);
230         active_state->newkeys[MODE_IN] = active_state->newkeys[MODE_OUT] = NULL;
231         if (!active_state->initialized) {
232                 active_state->initialized = 1;
233                 buffer_init(&active_state->input);
234                 buffer_init(&active_state->output);
235                 buffer_init(&active_state->outgoing_packet);
236                 buffer_init(&active_state->incoming_packet);
237                 TAILQ_INIT(&active_state->outgoing);
238                 active_state->p_send.packets = active_state->p_read.packets = 0;
239         }
240 }
241
242 void
243 packet_set_timeout(int timeout, int count)
244 {
245         if (timeout <= 0 || count <= 0) {
246                 active_state->packet_timeout_ms = -1;
247                 return;
248         }
249         if ((INT_MAX / 1000) / count < timeout)
250                 active_state->packet_timeout_ms = INT_MAX;
251         else
252                 active_state->packet_timeout_ms = timeout * count * 1000;
253 }
254
255 static void
256 packet_stop_discard(void)
257 {
258         if (active_state->packet_discard_mac) {
259                 char buf[1024];
260                 
261                 memset(buf, 'a', sizeof(buf));
262                 while (buffer_len(&active_state->incoming_packet) <
263                     PACKET_MAX_SIZE)
264                         buffer_append(&active_state->incoming_packet, buf,
265                             sizeof(buf));
266                 (void) mac_compute(active_state->packet_discard_mac,
267                     active_state->p_read.seqnr,
268                     buffer_ptr(&active_state->incoming_packet),
269                     PACKET_MAX_SIZE);
270         }
271         logit("Finished discarding for %.200s", get_remote_ipaddr());
272         cleanup_exit(255);
273 }
274
275 static void
276 packet_start_discard(Enc *enc, Mac *mac, u_int packet_length, u_int discard)
277 {
278         if (enc == NULL || !cipher_is_cbc(enc->cipher))
279                 packet_disconnect("Packet corrupt");
280         if (packet_length != PACKET_MAX_SIZE && mac && mac->enabled)
281                 active_state->packet_discard_mac = mac;
282         if (buffer_len(&active_state->input) >= discard)
283                 packet_stop_discard();
284         active_state->packet_discard = discard -
285             buffer_len(&active_state->input);
286 }
287
288 /* Returns 1 if remote host is connected via socket, 0 if not. */
289
290 int
291 packet_connection_is_on_socket(void)
292 {
293         struct sockaddr_storage from, to;
294         socklen_t fromlen, tolen;
295
296         /* filedescriptors in and out are the same, so it's a socket */
297         if (active_state->connection_in == active_state->connection_out)
298                 return 1;
299         fromlen = sizeof(from);
300         memset(&from, 0, sizeof(from));
301         if (getpeername(active_state->connection_in, (struct sockaddr *)&from,
302             &fromlen) < 0)
303                 return 0;
304         tolen = sizeof(to);
305         memset(&to, 0, sizeof(to));
306         if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
307             &tolen) < 0)
308                 return 0;
309         if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
310                 return 0;
311         if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
312                 return 0;
313         return 1;
314 }
315
316 /*
317  * Exports an IV from the CipherContext required to export the key
318  * state back from the unprivileged child to the privileged parent
319  * process.
320  */
321
322 void
323 packet_get_keyiv(int mode, u_char *iv, u_int len)
324 {
325         CipherContext *cc;
326
327         if (mode == MODE_OUT)
328                 cc = &active_state->send_context;
329         else
330                 cc = &active_state->receive_context;
331
332         cipher_get_keyiv(cc, iv, len);
333 }
334
335 int
336 packet_get_keycontext(int mode, u_char *dat)
337 {
338         CipherContext *cc;
339
340         if (mode == MODE_OUT)
341                 cc = &active_state->send_context;
342         else
343                 cc = &active_state->receive_context;
344
345         return (cipher_get_keycontext(cc, dat));
346 }
347
348 void
349 packet_set_keycontext(int mode, u_char *dat)
350 {
351         CipherContext *cc;
352
353         if (mode == MODE_OUT)
354                 cc = &active_state->send_context;
355         else
356                 cc = &active_state->receive_context;
357
358         cipher_set_keycontext(cc, dat);
359 }
360
361 int
362 packet_get_keyiv_len(int mode)
363 {
364         CipherContext *cc;
365
366         if (mode == MODE_OUT)
367                 cc = &active_state->send_context;
368         else
369                 cc = &active_state->receive_context;
370
371         return (cipher_get_keyiv_len(cc));
372 }
373
374 void
375 packet_set_iv(int mode, u_char *dat)
376 {
377         CipherContext *cc;
378
379         if (mode == MODE_OUT)
380                 cc = &active_state->send_context;
381         else
382                 cc = &active_state->receive_context;
383
384         cipher_set_keyiv(cc, dat);
385 }
386
387 int
388 packet_get_ssh1_cipher(void)
389 {
390         return (cipher_get_number(active_state->receive_context.cipher));
391 }
392
393 void
394 packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks,
395     u_int32_t *packets, u_int64_t *bytes)
396 {
397         struct packet_state *state;
398
399         state = (mode == MODE_IN) ?
400             &active_state->p_read : &active_state->p_send;
401         if (seqnr)
402                 *seqnr = state->seqnr;
403         if (blocks)
404                 *blocks = state->blocks;
405         if (packets)
406                 *packets = state->packets;
407         if (bytes)
408                 *bytes = state->bytes;
409 }
410
411 void
412 packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
413     u_int64_t bytes)
414 {
415         struct packet_state *state;
416
417         state = (mode == MODE_IN) ?
418             &active_state->p_read : &active_state->p_send;
419         state->seqnr = seqnr;
420         state->blocks = blocks;
421         state->packets = packets;
422         state->bytes = bytes;
423 }
424
425 static int
426 packet_connection_af(void)
427 {
428         struct sockaddr_storage to;
429         socklen_t tolen = sizeof(to);
430
431         memset(&to, 0, sizeof(to));
432         if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
433             &tolen) < 0)
434                 return 0;
435 #ifdef IPV4_IN_IPV6
436         if (to.ss_family == AF_INET6 &&
437             IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
438                 return AF_INET;
439 #endif
440         return to.ss_family;
441 }
442
443 /* Sets the connection into non-blocking mode. */
444
445 void
446 packet_set_nonblocking(void)
447 {
448         /* Set the socket into non-blocking mode. */
449         set_nonblock(active_state->connection_in);
450
451         if (active_state->connection_out != active_state->connection_in)
452                 set_nonblock(active_state->connection_out);
453 }
454
455 /* Returns the socket used for reading. */
456
457 int
458 packet_get_connection_in(void)
459 {
460         return active_state->connection_in;
461 }
462
463 /* Returns the descriptor used for writing. */
464
465 int
466 packet_get_connection_out(void)
467 {
468         return active_state->connection_out;
469 }
470
471 /* Closes the connection and clears and frees internal data structures. */
472
473 void
474 packet_close(void)
475 {
476         if (!active_state->initialized)
477                 return;
478         active_state->initialized = 0;
479         if (active_state->connection_in == active_state->connection_out) {
480                 shutdown(active_state->connection_out, SHUT_RDWR);
481                 close(active_state->connection_out);
482         } else {
483                 close(active_state->connection_in);
484                 close(active_state->connection_out);
485         }
486         buffer_free(&active_state->input);
487         buffer_free(&active_state->output);
488         buffer_free(&active_state->outgoing_packet);
489         buffer_free(&active_state->incoming_packet);
490         if (active_state->compression_buffer_ready) {
491                 buffer_free(&active_state->compression_buffer);
492                 buffer_compress_uninit();
493         }
494         cipher_cleanup(&active_state->send_context);
495         cipher_cleanup(&active_state->receive_context);
496 }
497
498 /* Sets remote side protocol flags. */
499
500 void
501 packet_set_protocol_flags(u_int protocol_flags)
502 {
503         active_state->remote_protocol_flags = protocol_flags;
504 }
505
506 /* Returns the remote protocol flags set earlier by the above function. */
507
508 u_int
509 packet_get_protocol_flags(void)
510 {
511         return active_state->remote_protocol_flags;
512 }
513
514 /*
515  * Starts packet compression from the next packet on in both directions.
516  * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
517  */
518
519 static void
520 packet_init_compression(void)
521 {
522         if (active_state->compression_buffer_ready == 1)
523                 return;
524         active_state->compression_buffer_ready = 1;
525         buffer_init(&active_state->compression_buffer);
526 }
527
528 void
529 packet_start_compression(int level)
530 {
531         if (active_state->packet_compression && !compat20)
532                 fatal("Compression already enabled.");
533         active_state->packet_compression = 1;
534         packet_init_compression();
535         buffer_compress_init_send(level);
536         buffer_compress_init_recv();
537 }
538
539 /*
540  * Causes any further packets to be encrypted using the given key.  The same
541  * key is used for both sending and reception.  However, both directions are
542  * encrypted independently of each other.
543  */
544
545 void
546 packet_set_encryption_key(const u_char *key, u_int keylen, int number)
547 {
548         Cipher *cipher = cipher_by_number(number);
549
550         if (cipher == NULL)
551                 fatal("packet_set_encryption_key: unknown cipher number %d", number);
552         if (keylen < 20)
553                 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
554         if (keylen > SSH_SESSION_KEY_LENGTH)
555                 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
556         memcpy(active_state->ssh1_key, key, keylen);
557         active_state->ssh1_keylen = keylen;
558         cipher_init(&active_state->send_context, cipher, key, keylen, NULL,
559             0, CIPHER_ENCRYPT);
560         cipher_init(&active_state->receive_context, cipher, key, keylen, NULL,
561             0, CIPHER_DECRYPT);
562 }
563
564 u_int
565 packet_get_encryption_key(u_char *key)
566 {
567         if (key == NULL)
568                 return (active_state->ssh1_keylen);
569         memcpy(key, active_state->ssh1_key, active_state->ssh1_keylen);
570         return (active_state->ssh1_keylen);
571 }
572
573 /* Start constructing a packet to send. */
574 void
575 packet_start(u_char type)
576 {
577         u_char buf[9];
578         int len;
579
580         DBG(debug("packet_start[%d]", type));
581         len = compat20 ? 6 : 9;
582         memset(buf, 0, len - 1);
583         buf[len - 1] = type;
584         buffer_clear(&active_state->outgoing_packet);
585         buffer_append(&active_state->outgoing_packet, buf, len);
586 }
587
588 /* Append payload. */
589 void
590 packet_put_char(int value)
591 {
592         char ch = value;
593
594         buffer_append(&active_state->outgoing_packet, &ch, 1);
595 }
596
597 void
598 packet_put_int(u_int value)
599 {
600         buffer_put_int(&active_state->outgoing_packet, value);
601 }
602
603 void
604 packet_put_int64(u_int64_t value)
605 {
606         buffer_put_int64(&active_state->outgoing_packet, value);
607 }
608
609 void
610 packet_put_string(const void *buf, u_int len)
611 {
612         buffer_put_string(&active_state->outgoing_packet, buf, len);
613 }
614
615 void
616 packet_put_cstring(const char *str)
617 {
618         buffer_put_cstring(&active_state->outgoing_packet, str);
619 }
620
621 void
622 packet_put_raw(const void *buf, u_int len)
623 {
624         buffer_append(&active_state->outgoing_packet, buf, len);
625 }
626
627 void
628 packet_put_bignum(BIGNUM * value)
629 {
630         buffer_put_bignum(&active_state->outgoing_packet, value);
631 }
632
633 void
634 packet_put_bignum2(BIGNUM * value)
635 {
636         buffer_put_bignum2(&active_state->outgoing_packet, value);
637 }
638
639 #ifdef OPENSSL_HAS_ECC
640 void
641 packet_put_ecpoint(const EC_GROUP *curve, const EC_POINT *point)
642 {
643         buffer_put_ecpoint(&active_state->outgoing_packet, curve, point);
644 }
645 #endif
646
647 /*
648  * Finalizes and sends the packet.  If the encryption key has been set,
649  * encrypts the packet before sending.
650  */
651
652 static void
653 packet_send1(void)
654 {
655         u_char buf[8], *cp;
656         int i, padding, len;
657         u_int checksum;
658         u_int32_t rnd = 0;
659
660         /*
661          * If using packet compression, compress the payload of the outgoing
662          * packet.
663          */
664         if (active_state->packet_compression) {
665                 buffer_clear(&active_state->compression_buffer);
666                 /* Skip padding. */
667                 buffer_consume(&active_state->outgoing_packet, 8);
668                 /* padding */
669                 buffer_append(&active_state->compression_buffer,
670                     "\0\0\0\0\0\0\0\0", 8);
671                 buffer_compress(&active_state->outgoing_packet,
672                     &active_state->compression_buffer);
673                 buffer_clear(&active_state->outgoing_packet);
674                 buffer_append(&active_state->outgoing_packet,
675                     buffer_ptr(&active_state->compression_buffer),
676                     buffer_len(&active_state->compression_buffer));
677         }
678         /* Compute packet length without padding (add checksum, remove padding). */
679         len = buffer_len(&active_state->outgoing_packet) + 4 - 8;
680
681         /* Insert padding. Initialized to zero in packet_start1() */
682         padding = 8 - len % 8;
683         if (!active_state->send_context.plaintext) {
684                 cp = buffer_ptr(&active_state->outgoing_packet);
685                 for (i = 0; i < padding; i++) {
686                         if (i % 4 == 0)
687                                 rnd = arc4random();
688                         cp[7 - i] = rnd & 0xff;
689                         rnd >>= 8;
690                 }
691         }
692         buffer_consume(&active_state->outgoing_packet, 8 - padding);
693
694         /* Add check bytes. */
695         checksum = ssh_crc32(buffer_ptr(&active_state->outgoing_packet),
696             buffer_len(&active_state->outgoing_packet));
697         put_u32(buf, checksum);
698         buffer_append(&active_state->outgoing_packet, buf, 4);
699
700 #ifdef PACKET_DEBUG
701         fprintf(stderr, "packet_send plain: ");
702         buffer_dump(&active_state->outgoing_packet);
703 #endif
704
705         /* Append to output. */
706         put_u32(buf, len);
707         buffer_append(&active_state->output, buf, 4);
708         cp = buffer_append_space(&active_state->output,
709             buffer_len(&active_state->outgoing_packet));
710         cipher_crypt(&active_state->send_context, cp,
711             buffer_ptr(&active_state->outgoing_packet),
712             buffer_len(&active_state->outgoing_packet));
713
714 #ifdef PACKET_DEBUG
715         fprintf(stderr, "encrypted: ");
716         buffer_dump(&active_state->output);
717 #endif
718         active_state->p_send.packets++;
719         active_state->p_send.bytes += len +
720             buffer_len(&active_state->outgoing_packet);
721         buffer_clear(&active_state->outgoing_packet);
722
723         /*
724          * Note that the packet is now only buffered in output.  It won't be
725          * actually sent until packet_write_wait or packet_write_poll is
726          * called.
727          */
728 }
729
730 void
731 set_newkeys(int mode)
732 {
733         Enc *enc;
734         Mac *mac;
735         Comp *comp;
736         CipherContext *cc;
737         u_int64_t *max_blocks;
738         int crypt_type;
739
740         debug2("set_newkeys: mode %d", mode);
741
742         if (mode == MODE_OUT) {
743                 cc = &active_state->send_context;
744                 crypt_type = CIPHER_ENCRYPT;
745                 active_state->p_send.packets = active_state->p_send.blocks = 0;
746                 max_blocks = &active_state->max_blocks_out;
747         } else {
748                 cc = &active_state->receive_context;
749                 crypt_type = CIPHER_DECRYPT;
750                 active_state->p_read.packets = active_state->p_read.blocks = 0;
751                 max_blocks = &active_state->max_blocks_in;
752         }
753         if (active_state->newkeys[mode] != NULL) {
754                 debug("set_newkeys: rekeying");
755                 cipher_cleanup(cc);
756                 enc  = &active_state->newkeys[mode]->enc;
757                 mac  = &active_state->newkeys[mode]->mac;
758                 comp = &active_state->newkeys[mode]->comp;
759                 mac_clear(mac);
760                 xfree(enc->name);
761                 xfree(enc->iv);
762                 xfree(enc->key);
763                 xfree(mac->name);
764                 xfree(mac->key);
765                 xfree(comp->name);
766                 xfree(active_state->newkeys[mode]);
767         }
768         active_state->newkeys[mode] = kex_get_newkeys(mode);
769         if (active_state->newkeys[mode] == NULL)
770                 fatal("newkeys: no keys for mode %d", mode);
771         enc  = &active_state->newkeys[mode]->enc;
772         mac  = &active_state->newkeys[mode]->mac;
773         comp = &active_state->newkeys[mode]->comp;
774         if (mac_init(mac) == 0)
775                 mac->enabled = 1;
776         DBG(debug("cipher_init_context: %d", mode));
777         cipher_init(cc, enc->cipher, enc->key, enc->key_len,
778             enc->iv, enc->block_size, crypt_type);
779         /* Deleting the keys does not gain extra security */
780         /* memset(enc->iv,  0, enc->block_size);
781            memset(enc->key, 0, enc->key_len);
782            memset(mac->key, 0, mac->key_len); */
783         if ((comp->type == COMP_ZLIB ||
784             (comp->type == COMP_DELAYED &&
785              active_state->after_authentication)) && comp->enabled == 0) {
786                 packet_init_compression();
787                 if (mode == MODE_OUT)
788                         buffer_compress_init_send(6);
789                 else
790                         buffer_compress_init_recv();
791                 comp->enabled = 1;
792         }
793         /*
794          * The 2^(blocksize*2) limit is too expensive for 3DES,
795          * blowfish, etc, so enforce a 1GB limit for small blocksizes.
796          */
797         if (enc->block_size >= 16)
798                 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
799         else
800                 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
801         if (active_state->rekey_limit)
802                 *max_blocks = MIN(*max_blocks,
803                     active_state->rekey_limit / enc->block_size);
804 }
805
806 /*
807  * Delayed compression for SSH2 is enabled after authentication:
808  * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
809  * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
810  */
811 static void
812 packet_enable_delayed_compress(void)
813 {
814         Comp *comp = NULL;
815         int mode;
816
817         /*
818          * Remember that we are past the authentication step, so rekeying
819          * with COMP_DELAYED will turn on compression immediately.
820          */
821         active_state->after_authentication = 1;
822         for (mode = 0; mode < MODE_MAX; mode++) {
823                 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
824                 if (active_state->newkeys[mode] == NULL)
825                         continue;
826                 comp = &active_state->newkeys[mode]->comp;
827                 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
828                         packet_init_compression();
829                         if (mode == MODE_OUT)
830                                 buffer_compress_init_send(6);
831                         else
832                                 buffer_compress_init_recv();
833                         comp->enabled = 1;
834                 }
835         }
836 }
837
838 /*
839  * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
840  */
841 static void
842 packet_send2_wrapped(void)
843 {
844         u_char type, *cp, *macbuf = NULL;
845         u_char padlen, pad;
846         u_int packet_length = 0;
847         u_int i, len;
848         u_int32_t rnd = 0;
849         Enc *enc   = NULL;
850         Mac *mac   = NULL;
851         Comp *comp = NULL;
852         int block_size;
853
854         if (active_state->newkeys[MODE_OUT] != NULL) {
855                 enc  = &active_state->newkeys[MODE_OUT]->enc;
856                 mac  = &active_state->newkeys[MODE_OUT]->mac;
857                 comp = &active_state->newkeys[MODE_OUT]->comp;
858         }
859         block_size = enc ? enc->block_size : 8;
860
861         cp = buffer_ptr(&active_state->outgoing_packet);
862         type = cp[5];
863
864 #ifdef PACKET_DEBUG
865         fprintf(stderr, "plain:     ");
866         buffer_dump(&active_state->outgoing_packet);
867 #endif
868
869         if (comp && comp->enabled) {
870                 len = buffer_len(&active_state->outgoing_packet);
871                 /* skip header, compress only payload */
872                 buffer_consume(&active_state->outgoing_packet, 5);
873                 buffer_clear(&active_state->compression_buffer);
874                 buffer_compress(&active_state->outgoing_packet,
875                     &active_state->compression_buffer);
876                 buffer_clear(&active_state->outgoing_packet);
877                 buffer_append(&active_state->outgoing_packet, "\0\0\0\0\0", 5);
878                 buffer_append(&active_state->outgoing_packet,
879                     buffer_ptr(&active_state->compression_buffer),
880                     buffer_len(&active_state->compression_buffer));
881                 DBG(debug("compression: raw %d compressed %d", len,
882                     buffer_len(&active_state->outgoing_packet)));
883         }
884
885         /* sizeof (packet_len + pad_len + payload) */
886         len = buffer_len(&active_state->outgoing_packet);
887
888         /*
889          * calc size of padding, alloc space, get random data,
890          * minimum padding is 4 bytes
891          */
892         padlen = block_size - (len % block_size);
893         if (padlen < 4)
894                 padlen += block_size;
895         if (active_state->extra_pad) {
896                 /* will wrap if extra_pad+padlen > 255 */
897                 active_state->extra_pad =
898                     roundup(active_state->extra_pad, block_size);
899                 pad = active_state->extra_pad -
900                     ((len + padlen) % active_state->extra_pad);
901                 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
902                     pad, len, padlen, active_state->extra_pad);
903                 padlen += pad;
904                 active_state->extra_pad = 0;
905         }
906         cp = buffer_append_space(&active_state->outgoing_packet, padlen);
907         if (enc && !active_state->send_context.plaintext) {
908                 /* random padding */
909                 for (i = 0; i < padlen; i++) {
910                         if (i % 4 == 0)
911                                 rnd = arc4random();
912                         cp[i] = rnd & 0xff;
913                         rnd >>= 8;
914                 }
915         } else {
916                 /* clear padding */
917                 memset(cp, 0, padlen);
918         }
919         /* packet_length includes payload, padding and padding length field */
920         packet_length = buffer_len(&active_state->outgoing_packet) - 4;
921         cp = buffer_ptr(&active_state->outgoing_packet);
922         put_u32(cp, packet_length);
923         cp[4] = padlen;
924         DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
925
926         /* compute MAC over seqnr and packet(length fields, payload, padding) */
927         if (mac && mac->enabled) {
928                 macbuf = mac_compute(mac, active_state->p_send.seqnr,
929                     buffer_ptr(&active_state->outgoing_packet),
930                     buffer_len(&active_state->outgoing_packet));
931                 DBG(debug("done calc MAC out #%d", active_state->p_send.seqnr));
932         }
933         /* encrypt packet and append to output buffer. */
934         cp = buffer_append_space(&active_state->output,
935             buffer_len(&active_state->outgoing_packet));
936         cipher_crypt(&active_state->send_context, cp,
937             buffer_ptr(&active_state->outgoing_packet),
938             buffer_len(&active_state->outgoing_packet));
939         /* append unencrypted MAC */
940         if (mac && mac->enabled)
941                 buffer_append(&active_state->output, macbuf, mac->mac_len);
942 #ifdef PACKET_DEBUG
943         fprintf(stderr, "encrypted: ");
944         buffer_dump(&active_state->output);
945 #endif
946         /* increment sequence number for outgoing packets */
947         if (++active_state->p_send.seqnr == 0)
948                 logit("outgoing seqnr wraps around");
949         if (++active_state->p_send.packets == 0)
950                 if (!(datafellows & SSH_BUG_NOREKEY))
951                         fatal("XXX too many packets with same key");
952         active_state->p_send.blocks += (packet_length + 4) / block_size;
953         active_state->p_send.bytes += packet_length + 4;
954         buffer_clear(&active_state->outgoing_packet);
955
956         if (type == SSH2_MSG_NEWKEYS)
957                 set_newkeys(MODE_OUT);
958         else if (type == SSH2_MSG_USERAUTH_SUCCESS && active_state->server_side)
959                 packet_enable_delayed_compress();
960 }
961
962 static void
963 packet_send2(void)
964 {
965         struct packet *p;
966         u_char type, *cp;
967
968         cp = buffer_ptr(&active_state->outgoing_packet);
969         type = cp[5];
970
971         /* during rekeying we can only send key exchange messages */
972         if (active_state->rekeying) {
973                 if ((type < SSH2_MSG_TRANSPORT_MIN) ||
974                     (type > SSH2_MSG_TRANSPORT_MAX) ||
975                     (type == SSH2_MSG_SERVICE_REQUEST) ||
976                     (type == SSH2_MSG_SERVICE_ACCEPT)) {
977                         debug("enqueue packet: %u", type);
978                         p = xmalloc(sizeof(*p));
979                         p->type = type;
980                         memcpy(&p->payload, &active_state->outgoing_packet,
981                             sizeof(Buffer));
982                         buffer_init(&active_state->outgoing_packet);
983                         TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
984                         return;
985                 }
986         }
987
988         /* rekeying starts with sending KEXINIT */
989         if (type == SSH2_MSG_KEXINIT)
990                 active_state->rekeying = 1;
991
992         packet_send2_wrapped();
993
994         /* after a NEWKEYS message we can send the complete queue */
995         if (type == SSH2_MSG_NEWKEYS) {
996                 active_state->rekeying = 0;
997                 while ((p = TAILQ_FIRST(&active_state->outgoing))) {
998                         type = p->type;
999                         debug("dequeue packet: %u", type);
1000                         buffer_free(&active_state->outgoing_packet);
1001                         memcpy(&active_state->outgoing_packet, &p->payload,
1002                             sizeof(Buffer));
1003                         TAILQ_REMOVE(&active_state->outgoing, p, next);
1004                         xfree(p);
1005                         packet_send2_wrapped();
1006                 }
1007         }
1008 }
1009
1010 void
1011 packet_send(void)
1012 {
1013         if (compat20)
1014                 packet_send2();
1015         else
1016                 packet_send1();
1017         DBG(debug("packet_send done"));
1018 }
1019
1020 /*
1021  * Waits until a packet has been received, and returns its type.  Note that
1022  * no other data is processed until this returns, so this function should not
1023  * be used during the interactive session.
1024  */
1025
1026 int
1027 packet_read_seqnr(u_int32_t *seqnr_p)
1028 {
1029         int type, len, ret, ms_remain, cont;
1030         fd_set *setp;
1031         char buf[8192];
1032         struct timeval timeout, start, *timeoutp = NULL;
1033
1034         DBG(debug("packet_read()"));
1035
1036         setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1,
1037             NFDBITS), sizeof(fd_mask));
1038
1039         /* Since we are blocking, ensure that all written packets have been sent. */
1040         packet_write_wait();
1041
1042         /* Stay in the loop until we have received a complete packet. */
1043         for (;;) {
1044                 /* Try to read a packet from the buffer. */
1045                 type = packet_read_poll_seqnr(seqnr_p);
1046                 if (!compat20 && (
1047                     type == SSH_SMSG_SUCCESS
1048                     || type == SSH_SMSG_FAILURE
1049                     || type == SSH_CMSG_EOF
1050                     || type == SSH_CMSG_EXIT_CONFIRMATION))
1051                         packet_check_eom();
1052                 /* If we got a packet, return it. */
1053                 if (type != SSH_MSG_NONE) {
1054                         xfree(setp);
1055                         return type;
1056                 }
1057                 /*
1058                  * Otherwise, wait for some data to arrive, add it to the
1059                  * buffer, and try again.
1060                  */
1061                 memset(setp, 0, howmany(active_state->connection_in + 1,
1062                     NFDBITS) * sizeof(fd_mask));
1063                 FD_SET(active_state->connection_in, setp);
1064
1065                 if (active_state->packet_timeout_ms > 0) {
1066                         ms_remain = active_state->packet_timeout_ms;
1067                         timeoutp = &timeout;
1068                 }
1069                 /* Wait for some data to arrive. */
1070                 for (;;) {
1071                         if (active_state->packet_timeout_ms != -1) {
1072                                 ms_to_timeval(&timeout, ms_remain);
1073                                 gettimeofday(&start, NULL);
1074                         }
1075                         if ((ret = select(active_state->connection_in + 1, setp,
1076                             NULL, NULL, timeoutp)) >= 0)
1077                                 break;
1078                         if (errno != EAGAIN && errno != EINTR &&
1079                             errno != EWOULDBLOCK)
1080                                 break;
1081                         if (active_state->packet_timeout_ms == -1)
1082                                 continue;
1083                         ms_subtract_diff(&start, &ms_remain);
1084                         if (ms_remain <= 0) {
1085                                 ret = 0;
1086                                 break;
1087                         }
1088                 }
1089                 if (ret == 0) {
1090                         logit("Connection to %.200s timed out while "
1091                             "waiting to read", get_remote_ipaddr());
1092                         cleanup_exit(255);
1093                 }
1094                 /* Read data from the socket. */
1095                 do {
1096                         cont = 0;
1097                         len = roaming_read(active_state->connection_in, buf,
1098                             sizeof(buf), &cont);
1099                 } while (len == 0 && cont);
1100                 if (len == 0) {
1101                         logit("Connection closed by %.200s", get_remote_ipaddr());
1102                         cleanup_exit(255);
1103                 }
1104                 if (len < 0)
1105                         fatal("Read from socket failed: %.100s", strerror(errno));
1106                 /* Append it to the buffer. */
1107                 packet_process_incoming(buf, len);
1108         }
1109         /* NOTREACHED */
1110 }
1111
1112 int
1113 packet_read(void)
1114 {
1115         return packet_read_seqnr(NULL);
1116 }
1117
1118 /*
1119  * Waits until a packet has been received, verifies that its type matches
1120  * that given, and gives a fatal error and exits if there is a mismatch.
1121  */
1122
1123 void
1124 packet_read_expect(int expected_type)
1125 {
1126         int type;
1127
1128         type = packet_read();
1129         if (type != expected_type)
1130                 packet_disconnect("Protocol error: expected packet type %d, got %d",
1131                     expected_type, type);
1132 }
1133
1134 /* Checks if a full packet is available in the data received so far via
1135  * packet_process_incoming.  If so, reads the packet; otherwise returns
1136  * SSH_MSG_NONE.  This does not wait for data from the connection.
1137  *
1138  * SSH_MSG_DISCONNECT is handled specially here.  Also,
1139  * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1140  * to higher levels.
1141  */
1142
1143 static int
1144 packet_read_poll1(void)
1145 {
1146         u_int len, padded_len;
1147         u_char *cp, type;
1148         u_int checksum, stored_checksum;
1149
1150         /* Check if input size is less than minimum packet size. */
1151         if (buffer_len(&active_state->input) < 4 + 8)
1152                 return SSH_MSG_NONE;
1153         /* Get length of incoming packet. */
1154         cp = buffer_ptr(&active_state->input);
1155         len = get_u32(cp);
1156         if (len < 1 + 2 + 2 || len > 256 * 1024)
1157                 packet_disconnect("Bad packet length %u.", len);
1158         padded_len = (len + 8) & ~7;
1159
1160         /* Check if the packet has been entirely received. */
1161         if (buffer_len(&active_state->input) < 4 + padded_len)
1162                 return SSH_MSG_NONE;
1163
1164         /* The entire packet is in buffer. */
1165
1166         /* Consume packet length. */
1167         buffer_consume(&active_state->input, 4);
1168
1169         /*
1170          * Cryptographic attack detector for ssh
1171          * (C)1998 CORE-SDI, Buenos Aires Argentina
1172          * Ariel Futoransky(futo@core-sdi.com)
1173          */
1174         if (!active_state->receive_context.plaintext) {
1175                 switch (detect_attack(buffer_ptr(&active_state->input),
1176                     padded_len)) {
1177                 case DEATTACK_DETECTED:
1178                         packet_disconnect("crc32 compensation attack: "
1179                             "network attack detected");
1180                 case DEATTACK_DOS_DETECTED:
1181                         packet_disconnect("deattack denial of "
1182                             "service detected");
1183                 }
1184         }
1185
1186         /* Decrypt data to incoming_packet. */
1187         buffer_clear(&active_state->incoming_packet);
1188         cp = buffer_append_space(&active_state->incoming_packet, padded_len);
1189         cipher_crypt(&active_state->receive_context, cp,
1190             buffer_ptr(&active_state->input), padded_len);
1191
1192         buffer_consume(&active_state->input, padded_len);
1193
1194 #ifdef PACKET_DEBUG
1195         fprintf(stderr, "read_poll plain: ");
1196         buffer_dump(&active_state->incoming_packet);
1197 #endif
1198
1199         /* Compute packet checksum. */
1200         checksum = ssh_crc32(buffer_ptr(&active_state->incoming_packet),
1201             buffer_len(&active_state->incoming_packet) - 4);
1202
1203         /* Skip padding. */
1204         buffer_consume(&active_state->incoming_packet, 8 - len % 8);
1205
1206         /* Test check bytes. */
1207         if (len != buffer_len(&active_state->incoming_packet))
1208                 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
1209                     len, buffer_len(&active_state->incoming_packet));
1210
1211         cp = (u_char *)buffer_ptr(&active_state->incoming_packet) + len - 4;
1212         stored_checksum = get_u32(cp);
1213         if (checksum != stored_checksum)
1214                 packet_disconnect("Corrupted check bytes on input.");
1215         buffer_consume_end(&active_state->incoming_packet, 4);
1216
1217         if (active_state->packet_compression) {
1218                 buffer_clear(&active_state->compression_buffer);
1219                 buffer_uncompress(&active_state->incoming_packet,
1220                     &active_state->compression_buffer);
1221                 buffer_clear(&active_state->incoming_packet);
1222                 buffer_append(&active_state->incoming_packet,
1223                     buffer_ptr(&active_state->compression_buffer),
1224                     buffer_len(&active_state->compression_buffer));
1225         }
1226         active_state->p_read.packets++;
1227         active_state->p_read.bytes += padded_len + 4;
1228         type = buffer_get_char(&active_state->incoming_packet);
1229         if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1230                 packet_disconnect("Invalid ssh1 packet type: %d", type);
1231         return type;
1232 }
1233
1234 static int
1235 packet_read_poll2(u_int32_t *seqnr_p)
1236 {
1237         u_int padlen, need;
1238         u_char *macbuf, *cp, type;
1239         u_int maclen, block_size;
1240         Enc *enc   = NULL;
1241         Mac *mac   = NULL;
1242         Comp *comp = NULL;
1243
1244         if (active_state->packet_discard)
1245                 return SSH_MSG_NONE;
1246
1247         if (active_state->newkeys[MODE_IN] != NULL) {
1248                 enc  = &active_state->newkeys[MODE_IN]->enc;
1249                 mac  = &active_state->newkeys[MODE_IN]->mac;
1250                 comp = &active_state->newkeys[MODE_IN]->comp;
1251         }
1252         maclen = mac && mac->enabled ? mac->mac_len : 0;
1253         block_size = enc ? enc->block_size : 8;
1254
1255         if (active_state->packlen == 0) {
1256                 /*
1257                  * check if input size is less than the cipher block size,
1258                  * decrypt first block and extract length of incoming packet
1259                  */
1260                 if (buffer_len(&active_state->input) < block_size)
1261                         return SSH_MSG_NONE;
1262                 buffer_clear(&active_state->incoming_packet);
1263                 cp = buffer_append_space(&active_state->incoming_packet,
1264                     block_size);
1265                 cipher_crypt(&active_state->receive_context, cp,
1266                     buffer_ptr(&active_state->input), block_size);
1267                 cp = buffer_ptr(&active_state->incoming_packet);
1268                 active_state->packlen = get_u32(cp);
1269                 if (active_state->packlen < 1 + 4 ||
1270                     active_state->packlen > PACKET_MAX_SIZE) {
1271 #ifdef PACKET_DEBUG
1272                         buffer_dump(&active_state->incoming_packet);
1273 #endif
1274                         logit("Bad packet length %u.", active_state->packlen);
1275                         packet_start_discard(enc, mac, active_state->packlen,
1276                             PACKET_MAX_SIZE);
1277                         return SSH_MSG_NONE;
1278                 }
1279                 DBG(debug("input: packet len %u", active_state->packlen+4));
1280                 buffer_consume(&active_state->input, block_size);
1281         }
1282         /* we have a partial packet of block_size bytes */
1283         need = 4 + active_state->packlen - block_size;
1284         DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1285             need, maclen));
1286         if (need % block_size != 0) {
1287                 logit("padding error: need %d block %d mod %d",
1288                     need, block_size, need % block_size);
1289                 packet_start_discard(enc, mac, active_state->packlen,
1290                     PACKET_MAX_SIZE - block_size);
1291                 return SSH_MSG_NONE;
1292         }
1293         /*
1294          * check if the entire packet has been received and
1295          * decrypt into incoming_packet
1296          */
1297         if (buffer_len(&active_state->input) < need + maclen)
1298                 return SSH_MSG_NONE;
1299 #ifdef PACKET_DEBUG
1300         fprintf(stderr, "read_poll enc/full: ");
1301         buffer_dump(&active_state->input);
1302 #endif
1303         cp = buffer_append_space(&active_state->incoming_packet, need);
1304         cipher_crypt(&active_state->receive_context, cp,
1305             buffer_ptr(&active_state->input), need);
1306         buffer_consume(&active_state->input, need);
1307         /*
1308          * compute MAC over seqnr and packet,
1309          * increment sequence number for incoming packet
1310          */
1311         if (mac && mac->enabled) {
1312                 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1313                     buffer_ptr(&active_state->incoming_packet),
1314                     buffer_len(&active_state->incoming_packet));
1315                 if (timingsafe_bcmp(macbuf, buffer_ptr(&active_state->input),
1316                     mac->mac_len) != 0) {
1317                         logit("Corrupted MAC on input.");
1318                         if (need > PACKET_MAX_SIZE)
1319                                 fatal("internal error need %d", need);
1320                         packet_start_discard(enc, mac, active_state->packlen,
1321                             PACKET_MAX_SIZE - need);
1322                         return SSH_MSG_NONE;
1323                 }
1324                                 
1325                 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1326                 buffer_consume(&active_state->input, mac->mac_len);
1327         }
1328         /* XXX now it's safe to use fatal/packet_disconnect */
1329         if (seqnr_p != NULL)
1330                 *seqnr_p = active_state->p_read.seqnr;
1331         if (++active_state->p_read.seqnr == 0)
1332                 logit("incoming seqnr wraps around");
1333         if (++active_state->p_read.packets == 0)
1334                 if (!(datafellows & SSH_BUG_NOREKEY))
1335                         fatal("XXX too many packets with same key");
1336         active_state->p_read.blocks += (active_state->packlen + 4) / block_size;
1337         active_state->p_read.bytes += active_state->packlen + 4;
1338
1339         /* get padlen */
1340         cp = buffer_ptr(&active_state->incoming_packet);
1341         padlen = cp[4];
1342         DBG(debug("input: padlen %d", padlen));
1343         if (padlen < 4)
1344                 packet_disconnect("Corrupted padlen %d on input.", padlen);
1345
1346         /* skip packet size + padlen, discard padding */
1347         buffer_consume(&active_state->incoming_packet, 4 + 1);
1348         buffer_consume_end(&active_state->incoming_packet, padlen);
1349
1350         DBG(debug("input: len before de-compress %d",
1351             buffer_len(&active_state->incoming_packet)));
1352         if (comp && comp->enabled) {
1353                 buffer_clear(&active_state->compression_buffer);
1354                 buffer_uncompress(&active_state->incoming_packet,
1355                     &active_state->compression_buffer);
1356                 buffer_clear(&active_state->incoming_packet);
1357                 buffer_append(&active_state->incoming_packet,
1358                     buffer_ptr(&active_state->compression_buffer),
1359                     buffer_len(&active_state->compression_buffer));
1360                 DBG(debug("input: len after de-compress %d",
1361                     buffer_len(&active_state->incoming_packet)));
1362         }
1363         /*
1364          * get packet type, implies consume.
1365          * return length of payload (without type field)
1366          */
1367         type = buffer_get_char(&active_state->incoming_packet);
1368         if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1369                 packet_disconnect("Invalid ssh2 packet type: %d", type);
1370         if (type == SSH2_MSG_NEWKEYS)
1371                 set_newkeys(MODE_IN);
1372         else if (type == SSH2_MSG_USERAUTH_SUCCESS &&
1373             !active_state->server_side)
1374                 packet_enable_delayed_compress();
1375 #ifdef PACKET_DEBUG
1376         fprintf(stderr, "read/plain[%d]:\r\n", type);
1377         buffer_dump(&active_state->incoming_packet);
1378 #endif
1379         /* reset for next packet */
1380         active_state->packlen = 0;
1381         return type;
1382 }
1383
1384 int
1385 packet_read_poll_seqnr(u_int32_t *seqnr_p)
1386 {
1387         u_int reason, seqnr;
1388         u_char type;
1389         char *msg;
1390
1391         for (;;) {
1392                 if (compat20) {
1393                         type = packet_read_poll2(seqnr_p);
1394                         if (type) {
1395                                 active_state->keep_alive_timeouts = 0;
1396                                 DBG(debug("received packet type %d", type));
1397                         }
1398                         switch (type) {
1399                         case SSH2_MSG_IGNORE:
1400                                 debug3("Received SSH2_MSG_IGNORE");
1401                                 break;
1402                         case SSH2_MSG_DEBUG:
1403                                 packet_get_char();
1404                                 msg = packet_get_string(NULL);
1405                                 debug("Remote: %.900s", msg);
1406                                 xfree(msg);
1407                                 msg = packet_get_string(NULL);
1408                                 xfree(msg);
1409                                 break;
1410                         case SSH2_MSG_DISCONNECT:
1411                                 reason = packet_get_int();
1412                                 msg = packet_get_string(NULL);
1413                                 logit("Received disconnect from %s: %u: %.400s",
1414                                     get_remote_ipaddr(), reason, msg);
1415                                 xfree(msg);
1416                                 cleanup_exit(255);
1417                                 break;
1418                         case SSH2_MSG_UNIMPLEMENTED:
1419                                 seqnr = packet_get_int();
1420                                 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1421                                     seqnr);
1422                                 break;
1423                         default:
1424                                 return type;
1425                         }
1426                 } else {
1427                         type = packet_read_poll1();
1428                         switch (type) {
1429                         case SSH_MSG_IGNORE:
1430                                 break;
1431                         case SSH_MSG_DEBUG:
1432                                 msg = packet_get_string(NULL);
1433                                 debug("Remote: %.900s", msg);
1434                                 xfree(msg);
1435                                 break;
1436                         case SSH_MSG_DISCONNECT:
1437                                 msg = packet_get_string(NULL);
1438                                 logit("Received disconnect from %s: %.400s",
1439                                     get_remote_ipaddr(), msg);
1440                                 cleanup_exit(255);
1441                                 break;
1442                         default:
1443                                 if (type)
1444                                         DBG(debug("received packet type %d", type));
1445                                 return type;
1446                         }
1447                 }
1448         }
1449 }
1450
1451 /*
1452  * Buffers the given amount of input characters.  This is intended to be used
1453  * together with packet_read_poll.
1454  */
1455
1456 void
1457 packet_process_incoming(const char *buf, u_int len)
1458 {
1459         if (active_state->packet_discard) {
1460                 active_state->keep_alive_timeouts = 0; /* ?? */
1461                 if (len >= active_state->packet_discard)
1462                         packet_stop_discard();
1463                 active_state->packet_discard -= len;
1464                 return;
1465         }
1466         buffer_append(&active_state->input, buf, len);
1467 }
1468
1469 /* Returns a character from the packet. */
1470
1471 u_int
1472 packet_get_char(void)
1473 {
1474         char ch;
1475
1476         buffer_get(&active_state->incoming_packet, &ch, 1);
1477         return (u_char) ch;
1478 }
1479
1480 /* Returns an integer from the packet data. */
1481
1482 u_int
1483 packet_get_int(void)
1484 {
1485         return buffer_get_int(&active_state->incoming_packet);
1486 }
1487
1488 /* Returns an 64 bit integer from the packet data. */
1489
1490 u_int64_t
1491 packet_get_int64(void)
1492 {
1493         return buffer_get_int64(&active_state->incoming_packet);
1494 }
1495
1496 /*
1497  * Returns an arbitrary precision integer from the packet data.  The integer
1498  * must have been initialized before this call.
1499  */
1500
1501 void
1502 packet_get_bignum(BIGNUM * value)
1503 {
1504         buffer_get_bignum(&active_state->incoming_packet, value);
1505 }
1506
1507 void
1508 packet_get_bignum2(BIGNUM * value)
1509 {
1510         buffer_get_bignum2(&active_state->incoming_packet, value);
1511 }
1512
1513 #ifdef OPENSSL_HAS_ECC
1514 void
1515 packet_get_ecpoint(const EC_GROUP *curve, EC_POINT *point)
1516 {
1517         buffer_get_ecpoint(&active_state->incoming_packet, curve, point);
1518 }
1519 #endif
1520
1521 void *
1522 packet_get_raw(u_int *length_ptr)
1523 {
1524         u_int bytes = buffer_len(&active_state->incoming_packet);
1525
1526         if (length_ptr != NULL)
1527                 *length_ptr = bytes;
1528         return buffer_ptr(&active_state->incoming_packet);
1529 }
1530
1531 int
1532 packet_remaining(void)
1533 {
1534         return buffer_len(&active_state->incoming_packet);
1535 }
1536
1537 /*
1538  * Returns a string from the packet data.  The string is allocated using
1539  * xmalloc; it is the responsibility of the calling program to free it when
1540  * no longer needed.  The length_ptr argument may be NULL, or point to an
1541  * integer into which the length of the string is stored.
1542  */
1543
1544 void *
1545 packet_get_string(u_int *length_ptr)
1546 {
1547         return buffer_get_string(&active_state->incoming_packet, length_ptr);
1548 }
1549
1550 void *
1551 packet_get_string_ptr(u_int *length_ptr)
1552 {
1553         return buffer_get_string_ptr(&active_state->incoming_packet, length_ptr);
1554 }
1555
1556 /* Ensures the returned string has no embedded \0 characters in it. */
1557 char *
1558 packet_get_cstring(u_int *length_ptr)
1559 {
1560         return buffer_get_cstring(&active_state->incoming_packet, length_ptr);
1561 }
1562
1563 /*
1564  * Sends a diagnostic message from the server to the client.  This message
1565  * can be sent at any time (but not while constructing another message). The
1566  * message is printed immediately, but only if the client is being executed
1567  * in verbose mode.  These messages are primarily intended to ease debugging
1568  * authentication problems.   The length of the formatted message must not
1569  * exceed 1024 bytes.  This will automatically call packet_write_wait.
1570  */
1571
1572 void
1573 packet_send_debug(const char *fmt,...)
1574 {
1575         char buf[1024];
1576         va_list args;
1577
1578         if (compat20 && (datafellows & SSH_BUG_DEBUG))
1579                 return;
1580
1581         va_start(args, fmt);
1582         vsnprintf(buf, sizeof(buf), fmt, args);
1583         va_end(args);
1584
1585         if (compat20) {
1586                 packet_start(SSH2_MSG_DEBUG);
1587                 packet_put_char(0);     /* bool: always display */
1588                 packet_put_cstring(buf);
1589                 packet_put_cstring("");
1590         } else {
1591                 packet_start(SSH_MSG_DEBUG);
1592                 packet_put_cstring(buf);
1593         }
1594         packet_send();
1595         packet_write_wait();
1596 }
1597
1598 /*
1599  * Logs the error plus constructs and sends a disconnect packet, closes the
1600  * connection, and exits.  This function never returns. The error message
1601  * should not contain a newline.  The length of the formatted message must
1602  * not exceed 1024 bytes.
1603  */
1604
1605 void
1606 packet_disconnect(const char *fmt,...)
1607 {
1608         char buf[1024];
1609         va_list args;
1610         static int disconnecting = 0;
1611
1612         if (disconnecting)      /* Guard against recursive invocations. */
1613                 fatal("packet_disconnect called recursively.");
1614         disconnecting = 1;
1615
1616         /*
1617          * Format the message.  Note that the caller must make sure the
1618          * message is of limited size.
1619          */
1620         va_start(args, fmt);
1621         vsnprintf(buf, sizeof(buf), fmt, args);
1622         va_end(args);
1623
1624         /* Display the error locally */
1625         logit("Disconnecting: %.100s", buf);
1626
1627         /* Send the disconnect message to the other side, and wait for it to get sent. */
1628         if (compat20) {
1629                 packet_start(SSH2_MSG_DISCONNECT);
1630                 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1631                 packet_put_cstring(buf);
1632                 packet_put_cstring("");
1633         } else {
1634                 packet_start(SSH_MSG_DISCONNECT);
1635                 packet_put_cstring(buf);
1636         }
1637         packet_send();
1638         packet_write_wait();
1639
1640         /* Stop listening for connections. */
1641         channel_close_all();
1642
1643         /* Close the connection. */
1644         packet_close();
1645         cleanup_exit(255);
1646 }
1647
1648 /* Checks if there is any buffered output, and tries to write some of the output. */
1649
1650 void
1651 packet_write_poll(void)
1652 {
1653         int len = buffer_len(&active_state->output);
1654         int cont;
1655
1656         if (len > 0) {
1657                 cont = 0;
1658                 len = roaming_write(active_state->connection_out,
1659                     buffer_ptr(&active_state->output), len, &cont);
1660                 if (len == -1) {
1661                         if (errno == EINTR || errno == EAGAIN ||
1662                             errno == EWOULDBLOCK)
1663                                 return;
1664                         fatal("Write failed: %.100s", strerror(errno));
1665                 }
1666                 if (len == 0 && !cont)
1667                         fatal("Write connection closed");
1668                 buffer_consume(&active_state->output, len);
1669         }
1670 }
1671
1672 /*
1673  * Calls packet_write_poll repeatedly until all pending output data has been
1674  * written.
1675  */
1676
1677 void
1678 packet_write_wait(void)
1679 {
1680         fd_set *setp;
1681         int ret, ms_remain;
1682         struct timeval start, timeout, *timeoutp = NULL;
1683
1684         setp = (fd_set *)xcalloc(howmany(active_state->connection_out + 1,
1685             NFDBITS), sizeof(fd_mask));
1686         packet_write_poll();
1687         while (packet_have_data_to_write()) {
1688                 memset(setp, 0, howmany(active_state->connection_out + 1,
1689                     NFDBITS) * sizeof(fd_mask));
1690                 FD_SET(active_state->connection_out, setp);
1691
1692                 if (active_state->packet_timeout_ms > 0) {
1693                         ms_remain = active_state->packet_timeout_ms;
1694                         timeoutp = &timeout;
1695                 }
1696                 for (;;) {
1697                         if (active_state->packet_timeout_ms != -1) {
1698                                 ms_to_timeval(&timeout, ms_remain);
1699                                 gettimeofday(&start, NULL);
1700                         }
1701                         if ((ret = select(active_state->connection_out + 1,
1702                             NULL, setp, NULL, timeoutp)) >= 0)
1703                                 break;
1704                         if (errno != EAGAIN && errno != EINTR &&
1705                             errno != EWOULDBLOCK)
1706                                 break;
1707                         if (active_state->packet_timeout_ms == -1)
1708                                 continue;
1709                         ms_subtract_diff(&start, &ms_remain);
1710                         if (ms_remain <= 0) {
1711                                 ret = 0;
1712                                 break;
1713                         }
1714                 }
1715                 if (ret == 0) {
1716                         logit("Connection to %.200s timed out while "
1717                             "waiting to write", get_remote_ipaddr());
1718                         cleanup_exit(255);
1719                 }
1720                 packet_write_poll();
1721         }
1722         xfree(setp);
1723 }
1724
1725 /* Returns true if there is buffered data to write to the connection. */
1726
1727 int
1728 packet_have_data_to_write(void)
1729 {
1730         return buffer_len(&active_state->output) != 0;
1731 }
1732
1733 /* Returns true if there is not too much data to write to the connection. */
1734
1735 int
1736 packet_not_very_much_data_to_write(void)
1737 {
1738         if (active_state->interactive_mode)
1739                 return buffer_len(&active_state->output) < 16384;
1740         else
1741                 return buffer_len(&active_state->output) < 128 * 1024;
1742 }
1743
1744 static void
1745 packet_set_tos(int tos)
1746 {
1747 #ifndef IP_TOS_IS_BROKEN
1748         if (!packet_connection_is_on_socket())
1749                 return;
1750         switch (packet_connection_af()) {
1751 # ifdef IP_TOS
1752         case AF_INET:
1753                 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
1754                 if (setsockopt(active_state->connection_in,
1755                     IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
1756                         error("setsockopt IP_TOS %d: %.100s:",
1757                             tos, strerror(errno));
1758                 break;
1759 # endif /* IP_TOS */
1760 # ifdef IPV6_TCLASS
1761         case AF_INET6:
1762                 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
1763                 if (setsockopt(active_state->connection_in,
1764                     IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
1765                         error("setsockopt IPV6_TCLASS %d: %.100s:",
1766                             tos, strerror(errno));
1767                 break;
1768 # endif /* IPV6_TCLASS */
1769         }
1770 #endif /* IP_TOS_IS_BROKEN */
1771 }
1772
1773 /* Informs that the current session is interactive.  Sets IP flags for that. */
1774
1775 void
1776 packet_set_interactive(int interactive, int qos_interactive, int qos_bulk)
1777 {
1778         if (active_state->set_interactive_called)
1779                 return;
1780         active_state->set_interactive_called = 1;
1781
1782         /* Record that we are in interactive mode. */
1783         active_state->interactive_mode = interactive;
1784
1785         /* Only set socket options if using a socket.  */
1786         if (!packet_connection_is_on_socket())
1787                 return;
1788         set_nodelay(active_state->connection_in);
1789         packet_set_tos(interactive ? qos_interactive : qos_bulk);
1790 }
1791
1792 /* Returns true if the current connection is interactive. */
1793
1794 int
1795 packet_is_interactive(void)
1796 {
1797         return active_state->interactive_mode;
1798 }
1799
1800 int
1801 packet_set_maxsize(u_int s)
1802 {
1803         if (active_state->set_maxsize_called) {
1804                 logit("packet_set_maxsize: called twice: old %d new %d",
1805                     active_state->max_packet_size, s);
1806                 return -1;
1807         }
1808         if (s < 4 * 1024 || s > 1024 * 1024) {
1809                 logit("packet_set_maxsize: bad size %d", s);
1810                 return -1;
1811         }
1812         active_state->set_maxsize_called = 1;
1813         debug("packet_set_maxsize: setting to %d", s);
1814         active_state->max_packet_size = s;
1815         return s;
1816 }
1817
1818 int
1819 packet_inc_alive_timeouts(void)
1820 {
1821         return ++active_state->keep_alive_timeouts;
1822 }
1823
1824 void
1825 packet_set_alive_timeouts(int ka)
1826 {
1827         active_state->keep_alive_timeouts = ka;
1828 }
1829
1830 u_int
1831 packet_get_maxsize(void)
1832 {
1833         return active_state->max_packet_size;
1834 }
1835
1836 /* roundup current message to pad bytes */
1837 void
1838 packet_add_padding(u_char pad)
1839 {
1840         active_state->extra_pad = pad;
1841 }
1842
1843 /*
1844  * 9.2.  Ignored Data Message
1845  *
1846  *   byte      SSH_MSG_IGNORE
1847  *   string    data
1848  *
1849  * All implementations MUST understand (and ignore) this message at any
1850  * time (after receiving the protocol version). No implementation is
1851  * required to send them. This message can be used as an additional
1852  * protection measure against advanced traffic analysis techniques.
1853  */
1854 void
1855 packet_send_ignore(int nbytes)
1856 {
1857         u_int32_t rnd = 0;
1858         int i;
1859
1860         packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
1861         packet_put_int(nbytes);
1862         for (i = 0; i < nbytes; i++) {
1863                 if (i % 4 == 0)
1864                         rnd = arc4random();
1865                 packet_put_char((u_char)rnd & 0xff);
1866                 rnd >>= 8;
1867         }
1868 }
1869
1870 #define MAX_PACKETS     (1U<<31)
1871 int
1872 packet_need_rekeying(void)
1873 {
1874         if (datafellows & SSH_BUG_NOREKEY)
1875                 return 0;
1876         return
1877             (active_state->p_send.packets > MAX_PACKETS) ||
1878             (active_state->p_read.packets > MAX_PACKETS) ||
1879             (active_state->max_blocks_out &&
1880                 (active_state->p_send.blocks > active_state->max_blocks_out)) ||
1881             (active_state->max_blocks_in &&
1882                 (active_state->p_read.blocks > active_state->max_blocks_in));
1883 }
1884
1885 void
1886 packet_set_rekey_limit(u_int32_t bytes)
1887 {
1888         active_state->rekey_limit = bytes;
1889 }
1890
1891 void
1892 packet_set_server(void)
1893 {
1894         active_state->server_side = 1;
1895 }
1896
1897 void
1898 packet_set_authenticated(void)
1899 {
1900         active_state->after_authentication = 1;
1901 }
1902
1903 void *
1904 packet_get_input(void)
1905 {
1906         return (void *)&active_state->input;
1907 }
1908
1909 void *
1910 packet_get_output(void)
1911 {
1912         return (void *)&active_state->output;
1913 }
1914
1915 void *
1916 packet_get_newkeys(int mode)
1917 {
1918         return (void *)active_state->newkeys[mode];
1919 }
1920
1921 /*
1922  * Save the state for the real connection, and use a separate state when
1923  * resuming a suspended connection.
1924  */
1925 void
1926 packet_backup_state(void)
1927 {
1928         struct session_state *tmp;
1929
1930         close(active_state->connection_in);
1931         active_state->connection_in = -1;
1932         close(active_state->connection_out);
1933         active_state->connection_out = -1;
1934         if (backup_state)
1935                 tmp = backup_state;
1936         else
1937                 tmp = alloc_session_state();
1938         backup_state = active_state;
1939         active_state = tmp;
1940 }
1941
1942 /*
1943  * Swap in the old state when resuming a connecion.
1944  */
1945 void
1946 packet_restore_state(void)
1947 {
1948         struct session_state *tmp;
1949         void *buf;
1950         u_int len;
1951
1952         tmp = backup_state;
1953         backup_state = active_state;
1954         active_state = tmp;
1955         active_state->connection_in = backup_state->connection_in;
1956         backup_state->connection_in = -1;
1957         active_state->connection_out = backup_state->connection_out;
1958         backup_state->connection_out = -1;
1959         len = buffer_len(&backup_state->input);
1960         if (len > 0) {
1961                 buf = buffer_ptr(&backup_state->input);
1962                 buffer_append(&active_state->input, buf, len);
1963                 buffer_clear(&backup_state->input);
1964                 add_recv_bytes(len);
1965         }
1966 }