xref: /openbsd/usr.bin/ssh/packet.c (revision 905646f0)
1 /* $OpenBSD: packet.c,v 1.296 2020/07/05 23:59:45 djm 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 <sys/types.h>
41 #include <sys/queue.h>
42 #include <sys/socket.h>
43 #include <sys/time.h>
44 #include <netinet/in.h>
45 #include <netinet/ip.h>
46 
47 #include <errno.h>
48 #include <netdb.h>
49 #include <stdarg.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <string.h>
53 #include <unistd.h>
54 #include <limits.h>
55 #include <poll.h>
56 #include <signal.h>
57 #include <time.h>
58 
59 #ifdef WITH_ZLIB
60 #include <zlib.h>
61 #endif
62 
63 #include "xmalloc.h"
64 #include "compat.h"
65 #include "ssh2.h"
66 #include "cipher.h"
67 #include "sshkey.h"
68 #include "kex.h"
69 #include "digest.h"
70 #include "mac.h"
71 #include "log.h"
72 #include "canohost.h"
73 #include "misc.h"
74 #include "channels.h"
75 #include "ssh.h"
76 #include "packet.h"
77 #include "ssherr.h"
78 #include "sshbuf.h"
79 
80 #ifdef PACKET_DEBUG
81 #define DBG(x) x
82 #else
83 #define DBG(x)
84 #endif
85 
86 #define PACKET_MAX_SIZE (256 * 1024)
87 
88 struct packet_state {
89 	u_int32_t seqnr;
90 	u_int32_t packets;
91 	u_int64_t blocks;
92 	u_int64_t bytes;
93 };
94 
95 struct packet {
96 	TAILQ_ENTRY(packet) next;
97 	u_char type;
98 	struct sshbuf *payload;
99 };
100 
101 struct session_state {
102 	/*
103 	 * This variable contains the file descriptors used for
104 	 * communicating with the other side.  connection_in is used for
105 	 * reading; connection_out for writing.  These can be the same
106 	 * descriptor, in which case it is assumed to be a socket.
107 	 */
108 	int connection_in;
109 	int connection_out;
110 
111 	/* Protocol flags for the remote side. */
112 	u_int remote_protocol_flags;
113 
114 	/* Encryption context for receiving data.  Only used for decryption. */
115 	struct sshcipher_ctx *receive_context;
116 
117 	/* Encryption context for sending data.  Only used for encryption. */
118 	struct sshcipher_ctx *send_context;
119 
120 	/* Buffer for raw input data from the socket. */
121 	struct sshbuf *input;
122 
123 	/* Buffer for raw output data going to the socket. */
124 	struct sshbuf *output;
125 
126 	/* Buffer for the partial outgoing packet being constructed. */
127 	struct sshbuf *outgoing_packet;
128 
129 	/* Buffer for the incoming packet currently being processed. */
130 	struct sshbuf *incoming_packet;
131 
132 	/* Scratch buffer for packet compression/decompression. */
133 	struct sshbuf *compression_buffer;
134 
135 #ifdef WITH_ZLIB
136 	/* Incoming/outgoing compression dictionaries */
137 	z_stream compression_in_stream;
138 	z_stream compression_out_stream;
139 #endif
140 	int compression_in_started;
141 	int compression_out_started;
142 	int compression_in_failures;
143 	int compression_out_failures;
144 
145 	/* default maximum packet size */
146 	u_int max_packet_size;
147 
148 	/* Flag indicating whether this module has been initialized. */
149 	int initialized;
150 
151 	/* Set to true if the connection is interactive. */
152 	int interactive_mode;
153 
154 	/* Set to true if we are the server side. */
155 	int server_side;
156 
157 	/* Set to true if we are authenticated. */
158 	int after_authentication;
159 
160 	int keep_alive_timeouts;
161 
162 	/* The maximum time that we will wait to send or receive a packet */
163 	int packet_timeout_ms;
164 
165 	/* Session key information for Encryption and MAC */
166 	struct newkeys *newkeys[MODE_MAX];
167 	struct packet_state p_read, p_send;
168 
169 	/* Volume-based rekeying */
170 	u_int64_t max_blocks_in, max_blocks_out, rekey_limit;
171 
172 	/* Time-based rekeying */
173 	u_int32_t rekey_interval;	/* how often in seconds */
174 	time_t rekey_time;	/* time of last rekeying */
175 
176 	/* roundup current message to extra_pad bytes */
177 	u_char extra_pad;
178 
179 	/* XXX discard incoming data after MAC error */
180 	u_int packet_discard;
181 	size_t packet_discard_mac_already;
182 	struct sshmac *packet_discard_mac;
183 
184 	/* Used in packet_read_poll2() */
185 	u_int packlen;
186 
187 	/* Used in packet_send2 */
188 	int rekeying;
189 
190 	/* Used in ssh_packet_send_mux() */
191 	int mux;
192 
193 	/* Used in packet_set_interactive */
194 	int set_interactive_called;
195 
196 	/* Used in packet_set_maxsize */
197 	int set_maxsize_called;
198 
199 	/* One-off warning about weak ciphers */
200 	int cipher_warning_done;
201 
202 	/* Hook for fuzzing inbound packets */
203 	ssh_packet_hook_fn *hook_in;
204 	void *hook_in_ctx;
205 
206 	TAILQ_HEAD(, packet) outgoing;
207 };
208 
209 struct ssh *
210 ssh_alloc_session_state(void)
211 {
212 	struct ssh *ssh = NULL;
213 	struct session_state *state = NULL;
214 
215 	if ((ssh = calloc(1, sizeof(*ssh))) == NULL ||
216 	    (state = calloc(1, sizeof(*state))) == NULL ||
217 	    (ssh->kex = kex_new()) == NULL ||
218 	    (state->input = sshbuf_new()) == NULL ||
219 	    (state->output = sshbuf_new()) == NULL ||
220 	    (state->outgoing_packet = sshbuf_new()) == NULL ||
221 	    (state->incoming_packet = sshbuf_new()) == NULL)
222 		goto fail;
223 	TAILQ_INIT(&state->outgoing);
224 	TAILQ_INIT(&ssh->private_keys);
225 	TAILQ_INIT(&ssh->public_keys);
226 	state->connection_in = -1;
227 	state->connection_out = -1;
228 	state->max_packet_size = 32768;
229 	state->packet_timeout_ms = -1;
230 	state->p_send.packets = state->p_read.packets = 0;
231 	state->initialized = 1;
232 	/*
233 	 * ssh_packet_send2() needs to queue packets until
234 	 * we've done the initial key exchange.
235 	 */
236 	state->rekeying = 1;
237 	ssh->state = state;
238 	return ssh;
239  fail:
240 	if (ssh) {
241 		kex_free(ssh->kex);
242 		free(ssh);
243 	}
244 	if (state) {
245 		sshbuf_free(state->input);
246 		sshbuf_free(state->output);
247 		sshbuf_free(state->incoming_packet);
248 		sshbuf_free(state->outgoing_packet);
249 		free(state);
250 	}
251 	return NULL;
252 }
253 
254 void
255 ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
256 {
257 	ssh->state->hook_in = hook;
258 	ssh->state->hook_in_ctx = ctx;
259 }
260 
261 /* Returns nonzero if rekeying is in progress */
262 int
263 ssh_packet_is_rekeying(struct ssh *ssh)
264 {
265 	return ssh->state->rekeying ||
266 	    (ssh->kex != NULL && ssh->kex->done == 0);
267 }
268 
269 /*
270  * Sets the descriptors used for communication.
271  */
272 struct ssh *
273 ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
274 {
275 	struct session_state *state;
276 	const struct sshcipher *none = cipher_by_name("none");
277 	int r;
278 
279 	if (none == NULL) {
280 		error("%s: cannot load cipher 'none'", __func__);
281 		return NULL;
282 	}
283 	if (ssh == NULL)
284 		ssh = ssh_alloc_session_state();
285 	if (ssh == NULL) {
286 		error("%s: could not allocate state", __func__);
287 		return NULL;
288 	}
289 	state = ssh->state;
290 	state->connection_in = fd_in;
291 	state->connection_out = fd_out;
292 	if ((r = cipher_init(&state->send_context, none,
293 	    (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
294 	    (r = cipher_init(&state->receive_context, none,
295 	    (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
296 		error("%s: cipher_init failed: %s", __func__, ssh_err(r));
297 		free(ssh); /* XXX need ssh_free_session_state? */
298 		return NULL;
299 	}
300 	state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
301 	/*
302 	 * Cache the IP address of the remote connection for use in error
303 	 * messages that might be generated after the connection has closed.
304 	 */
305 	(void)ssh_remote_ipaddr(ssh);
306 	return ssh;
307 }
308 
309 void
310 ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
311 {
312 	struct session_state *state = ssh->state;
313 
314 	if (timeout <= 0 || count <= 0) {
315 		state->packet_timeout_ms = -1;
316 		return;
317 	}
318 	if ((INT_MAX / 1000) / count < timeout)
319 		state->packet_timeout_ms = INT_MAX;
320 	else
321 		state->packet_timeout_ms = timeout * count * 1000;
322 }
323 
324 void
325 ssh_packet_set_mux(struct ssh *ssh)
326 {
327 	ssh->state->mux = 1;
328 	ssh->state->rekeying = 0;
329 	kex_free(ssh->kex);
330 	ssh->kex = NULL;
331 }
332 
333 int
334 ssh_packet_get_mux(struct ssh *ssh)
335 {
336 	return ssh->state->mux;
337 }
338 
339 int
340 ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
341 {
342 	va_list args;
343 	int r;
344 
345 	free(ssh->log_preamble);
346 	if (fmt == NULL)
347 		ssh->log_preamble = NULL;
348 	else {
349 		va_start(args, fmt);
350 		r = vasprintf(&ssh->log_preamble, fmt, args);
351 		va_end(args);
352 		if (r < 0 || ssh->log_preamble == NULL)
353 			return SSH_ERR_ALLOC_FAIL;
354 	}
355 	return 0;
356 }
357 
358 int
359 ssh_packet_stop_discard(struct ssh *ssh)
360 {
361 	struct session_state *state = ssh->state;
362 	int r;
363 
364 	if (state->packet_discard_mac) {
365 		char buf[1024];
366 		size_t dlen = PACKET_MAX_SIZE;
367 
368 		if (dlen > state->packet_discard_mac_already)
369 			dlen -= state->packet_discard_mac_already;
370 		memset(buf, 'a', sizeof(buf));
371 		while (sshbuf_len(state->incoming_packet) < dlen)
372 			if ((r = sshbuf_put(state->incoming_packet, buf,
373 			    sizeof(buf))) != 0)
374 				return r;
375 		(void) mac_compute(state->packet_discard_mac,
376 		    state->p_read.seqnr,
377 		    sshbuf_ptr(state->incoming_packet), dlen,
378 		    NULL, 0);
379 	}
380 	logit("Finished discarding for %.200s port %d",
381 	    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
382 	return SSH_ERR_MAC_INVALID;
383 }
384 
385 static int
386 ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
387     struct sshmac *mac, size_t mac_already, u_int discard)
388 {
389 	struct session_state *state = ssh->state;
390 	int r;
391 
392 	if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
393 		if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
394 			return r;
395 		return SSH_ERR_MAC_INVALID;
396 	}
397 	/*
398 	 * Record number of bytes over which the mac has already
399 	 * been computed in order to minimize timing attacks.
400 	 */
401 	if (mac && mac->enabled) {
402 		state->packet_discard_mac = mac;
403 		state->packet_discard_mac_already = mac_already;
404 	}
405 	if (sshbuf_len(state->input) >= discard)
406 		return ssh_packet_stop_discard(ssh);
407 	state->packet_discard = discard - sshbuf_len(state->input);
408 	return 0;
409 }
410 
411 /* Returns 1 if remote host is connected via socket, 0 if not. */
412 
413 int
414 ssh_packet_connection_is_on_socket(struct ssh *ssh)
415 {
416 	struct session_state *state;
417 	struct sockaddr_storage from, to;
418 	socklen_t fromlen, tolen;
419 
420 	if (ssh == NULL || ssh->state == NULL)
421 		return 0;
422 
423 	state = ssh->state;
424 	if (state->connection_in == -1 || state->connection_out == -1)
425 		return 0;
426 	/* filedescriptors in and out are the same, so it's a socket */
427 	if (state->connection_in == state->connection_out)
428 		return 1;
429 	fromlen = sizeof(from);
430 	memset(&from, 0, sizeof(from));
431 	if (getpeername(state->connection_in, (struct sockaddr *)&from,
432 	    &fromlen) == -1)
433 		return 0;
434 	tolen = sizeof(to);
435 	memset(&to, 0, sizeof(to));
436 	if (getpeername(state->connection_out, (struct sockaddr *)&to,
437 	    &tolen) == -1)
438 		return 0;
439 	if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
440 		return 0;
441 	if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
442 		return 0;
443 	return 1;
444 }
445 
446 void
447 ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
448 {
449 	if (ibytes)
450 		*ibytes = ssh->state->p_read.bytes;
451 	if (obytes)
452 		*obytes = ssh->state->p_send.bytes;
453 }
454 
455 int
456 ssh_packet_connection_af(struct ssh *ssh)
457 {
458 	struct sockaddr_storage to;
459 	socklen_t tolen = sizeof(to);
460 
461 	memset(&to, 0, sizeof(to));
462 	if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
463 	    &tolen) == -1)
464 		return 0;
465 	return to.ss_family;
466 }
467 
468 /* Sets the connection into non-blocking mode. */
469 
470 void
471 ssh_packet_set_nonblocking(struct ssh *ssh)
472 {
473 	/* Set the socket into non-blocking mode. */
474 	set_nonblock(ssh->state->connection_in);
475 
476 	if (ssh->state->connection_out != ssh->state->connection_in)
477 		set_nonblock(ssh->state->connection_out);
478 }
479 
480 /* Returns the socket used for reading. */
481 
482 int
483 ssh_packet_get_connection_in(struct ssh *ssh)
484 {
485 	return ssh->state->connection_in;
486 }
487 
488 /* Returns the descriptor used for writing. */
489 
490 int
491 ssh_packet_get_connection_out(struct ssh *ssh)
492 {
493 	return ssh->state->connection_out;
494 }
495 
496 /*
497  * Returns the IP-address of the remote host as a string.  The returned
498  * string must not be freed.
499  */
500 
501 const char *
502 ssh_remote_ipaddr(struct ssh *ssh)
503 {
504 	int sock;
505 
506 	/* Check whether we have cached the ipaddr. */
507 	if (ssh->remote_ipaddr == NULL) {
508 		if (ssh_packet_connection_is_on_socket(ssh)) {
509 			sock = ssh->state->connection_in;
510 			ssh->remote_ipaddr = get_peer_ipaddr(sock);
511 			ssh->remote_port = get_peer_port(sock);
512 			ssh->local_ipaddr = get_local_ipaddr(sock);
513 			ssh->local_port = get_local_port(sock);
514 		} else {
515 			ssh->remote_ipaddr = xstrdup("UNKNOWN");
516 			ssh->remote_port = 65535;
517 			ssh->local_ipaddr = xstrdup("UNKNOWN");
518 			ssh->local_port = 65535;
519 		}
520 	}
521 	return ssh->remote_ipaddr;
522 }
523 
524 /* Returns the port number of the remote host. */
525 
526 int
527 ssh_remote_port(struct ssh *ssh)
528 {
529 	(void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
530 	return ssh->remote_port;
531 }
532 
533 /*
534  * Returns the IP-address of the local host as a string.  The returned
535  * string must not be freed.
536  */
537 
538 const char *
539 ssh_local_ipaddr(struct ssh *ssh)
540 {
541 	(void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
542 	return ssh->local_ipaddr;
543 }
544 
545 /* Returns the port number of the local host. */
546 
547 int
548 ssh_local_port(struct ssh *ssh)
549 {
550 	(void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
551 	return ssh->local_port;
552 }
553 
554 /* Returns the routing domain of the input socket, or NULL if unavailable */
555 const char *
556 ssh_packet_rdomain_in(struct ssh *ssh)
557 {
558 	if (ssh->rdomain_in != NULL)
559 		return ssh->rdomain_in;
560 	if (!ssh_packet_connection_is_on_socket(ssh))
561 		return NULL;
562 	ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
563 	return ssh->rdomain_in;
564 }
565 
566 /* Closes the connection and clears and frees internal data structures. */
567 
568 static void
569 ssh_packet_close_internal(struct ssh *ssh, int do_close)
570 {
571 	struct session_state *state = ssh->state;
572 	u_int mode;
573 
574 	if (!state->initialized)
575 		return;
576 	state->initialized = 0;
577 	if (do_close) {
578 		if (state->connection_in == state->connection_out) {
579 			close(state->connection_out);
580 		} else {
581 			close(state->connection_in);
582 			close(state->connection_out);
583 		}
584 	}
585 	sshbuf_free(state->input);
586 	sshbuf_free(state->output);
587 	sshbuf_free(state->outgoing_packet);
588 	sshbuf_free(state->incoming_packet);
589 	for (mode = 0; mode < MODE_MAX; mode++) {
590 		kex_free_newkeys(state->newkeys[mode]);	/* current keys */
591 		state->newkeys[mode] = NULL;
592 		ssh_clear_newkeys(ssh, mode);		/* next keys */
593 	}
594 #ifdef WITH_ZLIB
595 	/* compression state is in shared mem, so we can only release it once */
596 	if (do_close && state->compression_buffer) {
597 		sshbuf_free(state->compression_buffer);
598 		if (state->compression_out_started) {
599 			z_streamp stream = &state->compression_out_stream;
600 			debug("compress outgoing: "
601 			    "raw data %llu, compressed %llu, factor %.2f",
602 				(unsigned long long)stream->total_in,
603 				(unsigned long long)stream->total_out,
604 				stream->total_in == 0 ? 0.0 :
605 				(double) stream->total_out / stream->total_in);
606 			if (state->compression_out_failures == 0)
607 				deflateEnd(stream);
608 		}
609 		if (state->compression_in_started) {
610 			z_streamp stream = &state->compression_in_stream;
611 			debug("compress incoming: "
612 			    "raw data %llu, compressed %llu, factor %.2f",
613 			    (unsigned long long)stream->total_out,
614 			    (unsigned long long)stream->total_in,
615 			    stream->total_out == 0 ? 0.0 :
616 			    (double) stream->total_in / stream->total_out);
617 			if (state->compression_in_failures == 0)
618 				inflateEnd(stream);
619 		}
620 	}
621 #endif	/* WITH_ZLIB */
622 	cipher_free(state->send_context);
623 	cipher_free(state->receive_context);
624 	state->send_context = state->receive_context = NULL;
625 	if (do_close) {
626 		free(ssh->local_ipaddr);
627 		ssh->local_ipaddr = NULL;
628 		free(ssh->remote_ipaddr);
629 		ssh->remote_ipaddr = NULL;
630 		free(ssh->state);
631 		ssh->state = NULL;
632 		kex_free(ssh->kex);
633 		ssh->kex = NULL;
634 	}
635 }
636 
637 void
638 ssh_packet_close(struct ssh *ssh)
639 {
640 	ssh_packet_close_internal(ssh, 1);
641 }
642 
643 void
644 ssh_packet_clear_keys(struct ssh *ssh)
645 {
646 	ssh_packet_close_internal(ssh, 0);
647 }
648 
649 /* Sets remote side protocol flags. */
650 
651 void
652 ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
653 {
654 	ssh->state->remote_protocol_flags = protocol_flags;
655 }
656 
657 /* Returns the remote protocol flags set earlier by the above function. */
658 
659 u_int
660 ssh_packet_get_protocol_flags(struct ssh *ssh)
661 {
662 	return ssh->state->remote_protocol_flags;
663 }
664 
665 /*
666  * Starts packet compression from the next packet on in both directions.
667  * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
668  */
669 
670 static int
671 ssh_packet_init_compression(struct ssh *ssh)
672 {
673 	if (!ssh->state->compression_buffer &&
674 	   ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
675 		return SSH_ERR_ALLOC_FAIL;
676 	return 0;
677 }
678 
679 #ifdef WITH_ZLIB
680 static int
681 start_compression_out(struct ssh *ssh, int level)
682 {
683 	if (level < 1 || level > 9)
684 		return SSH_ERR_INVALID_ARGUMENT;
685 	debug("Enabling compression at level %d.", level);
686 	if (ssh->state->compression_out_started == 1)
687 		deflateEnd(&ssh->state->compression_out_stream);
688 	switch (deflateInit(&ssh->state->compression_out_stream, level)) {
689 	case Z_OK:
690 		ssh->state->compression_out_started = 1;
691 		break;
692 	case Z_MEM_ERROR:
693 		return SSH_ERR_ALLOC_FAIL;
694 	default:
695 		return SSH_ERR_INTERNAL_ERROR;
696 	}
697 	return 0;
698 }
699 
700 static int
701 start_compression_in(struct ssh *ssh)
702 {
703 	if (ssh->state->compression_in_started == 1)
704 		inflateEnd(&ssh->state->compression_in_stream);
705 	switch (inflateInit(&ssh->state->compression_in_stream)) {
706 	case Z_OK:
707 		ssh->state->compression_in_started = 1;
708 		break;
709 	case Z_MEM_ERROR:
710 		return SSH_ERR_ALLOC_FAIL;
711 	default:
712 		return SSH_ERR_INTERNAL_ERROR;
713 	}
714 	return 0;
715 }
716 
717 /* XXX remove need for separate compression buffer */
718 static int
719 compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
720 {
721 	u_char buf[4096];
722 	int r, status;
723 
724 	if (ssh->state->compression_out_started != 1)
725 		return SSH_ERR_INTERNAL_ERROR;
726 
727 	/* This case is not handled below. */
728 	if (sshbuf_len(in) == 0)
729 		return 0;
730 
731 	/* Input is the contents of the input buffer. */
732 	if ((ssh->state->compression_out_stream.next_in =
733 	    sshbuf_mutable_ptr(in)) == NULL)
734 		return SSH_ERR_INTERNAL_ERROR;
735 	ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
736 
737 	/* Loop compressing until deflate() returns with avail_out != 0. */
738 	do {
739 		/* Set up fixed-size output buffer. */
740 		ssh->state->compression_out_stream.next_out = buf;
741 		ssh->state->compression_out_stream.avail_out = sizeof(buf);
742 
743 		/* Compress as much data into the buffer as possible. */
744 		status = deflate(&ssh->state->compression_out_stream,
745 		    Z_PARTIAL_FLUSH);
746 		switch (status) {
747 		case Z_MEM_ERROR:
748 			return SSH_ERR_ALLOC_FAIL;
749 		case Z_OK:
750 			/* Append compressed data to output_buffer. */
751 			if ((r = sshbuf_put(out, buf, sizeof(buf) -
752 			    ssh->state->compression_out_stream.avail_out)) != 0)
753 				return r;
754 			break;
755 		case Z_STREAM_ERROR:
756 		default:
757 			ssh->state->compression_out_failures++;
758 			return SSH_ERR_INVALID_FORMAT;
759 		}
760 	} while (ssh->state->compression_out_stream.avail_out == 0);
761 	return 0;
762 }
763 
764 static int
765 uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
766 {
767 	u_char buf[4096];
768 	int r, status;
769 
770 	if (ssh->state->compression_in_started != 1)
771 		return SSH_ERR_INTERNAL_ERROR;
772 
773 	if ((ssh->state->compression_in_stream.next_in =
774 	    sshbuf_mutable_ptr(in)) == NULL)
775 		return SSH_ERR_INTERNAL_ERROR;
776 	ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
777 
778 	for (;;) {
779 		/* Set up fixed-size output buffer. */
780 		ssh->state->compression_in_stream.next_out = buf;
781 		ssh->state->compression_in_stream.avail_out = sizeof(buf);
782 
783 		status = inflate(&ssh->state->compression_in_stream,
784 		    Z_PARTIAL_FLUSH);
785 		switch (status) {
786 		case Z_OK:
787 			if ((r = sshbuf_put(out, buf, sizeof(buf) -
788 			    ssh->state->compression_in_stream.avail_out)) != 0)
789 				return r;
790 			break;
791 		case Z_BUF_ERROR:
792 			/*
793 			 * Comments in zlib.h say that we should keep calling
794 			 * inflate() until we get an error.  This appears to
795 			 * be the error that we get.
796 			 */
797 			return 0;
798 		case Z_DATA_ERROR:
799 			return SSH_ERR_INVALID_FORMAT;
800 		case Z_MEM_ERROR:
801 			return SSH_ERR_ALLOC_FAIL;
802 		case Z_STREAM_ERROR:
803 		default:
804 			ssh->state->compression_in_failures++;
805 			return SSH_ERR_INTERNAL_ERROR;
806 		}
807 	}
808 	/* NOTREACHED */
809 }
810 
811 #else	/* WITH_ZLIB */
812 
813 static int
814 start_compression_out(struct ssh *ssh, int level)
815 {
816 	return SSH_ERR_INTERNAL_ERROR;
817 }
818 
819 static int
820 start_compression_in(struct ssh *ssh)
821 {
822 	return SSH_ERR_INTERNAL_ERROR;
823 }
824 
825 static int
826 compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
827 {
828 	return SSH_ERR_INTERNAL_ERROR;
829 }
830 
831 static int
832 uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
833 {
834 	return SSH_ERR_INTERNAL_ERROR;
835 }
836 #endif	/* WITH_ZLIB */
837 
838 void
839 ssh_clear_newkeys(struct ssh *ssh, int mode)
840 {
841 	if (ssh->kex && ssh->kex->newkeys[mode]) {
842 		kex_free_newkeys(ssh->kex->newkeys[mode]);
843 		ssh->kex->newkeys[mode] = NULL;
844 	}
845 }
846 
847 int
848 ssh_set_newkeys(struct ssh *ssh, int mode)
849 {
850 	struct session_state *state = ssh->state;
851 	struct sshenc *enc;
852 	struct sshmac *mac;
853 	struct sshcomp *comp;
854 	struct sshcipher_ctx **ccp;
855 	struct packet_state *ps;
856 	u_int64_t *max_blocks;
857 	const char *wmsg;
858 	int r, crypt_type;
859 	const char *dir = mode == MODE_OUT ? "out" : "in";
860 
861 	debug2("set_newkeys: mode %d", mode);
862 
863 	if (mode == MODE_OUT) {
864 		ccp = &state->send_context;
865 		crypt_type = CIPHER_ENCRYPT;
866 		ps = &state->p_send;
867 		max_blocks = &state->max_blocks_out;
868 	} else {
869 		ccp = &state->receive_context;
870 		crypt_type = CIPHER_DECRYPT;
871 		ps = &state->p_read;
872 		max_blocks = &state->max_blocks_in;
873 	}
874 	if (state->newkeys[mode] != NULL) {
875 		debug("%s: rekeying %s, input %llu bytes %llu blocks, "
876 		   "output %llu bytes %llu blocks", __func__, dir,
877 		   (unsigned long long)state->p_read.bytes,
878 		   (unsigned long long)state->p_read.blocks,
879 		   (unsigned long long)state->p_send.bytes,
880 		   (unsigned long long)state->p_send.blocks);
881 		kex_free_newkeys(state->newkeys[mode]);
882 		state->newkeys[mode] = NULL;
883 	}
884 	/* note that both bytes and the seqnr are not reset */
885 	ps->packets = ps->blocks = 0;
886 	/* move newkeys from kex to state */
887 	if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
888 		return SSH_ERR_INTERNAL_ERROR;
889 	ssh->kex->newkeys[mode] = NULL;
890 	enc  = &state->newkeys[mode]->enc;
891 	mac  = &state->newkeys[mode]->mac;
892 	comp = &state->newkeys[mode]->comp;
893 	if (cipher_authlen(enc->cipher) == 0) {
894 		if ((r = mac_init(mac)) != 0)
895 			return r;
896 	}
897 	mac->enabled = 1;
898 	DBG(debug("%s: cipher_init_context: %s", __func__, dir));
899 	cipher_free(*ccp);
900 	*ccp = NULL;
901 	if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
902 	    enc->iv, enc->iv_len, crypt_type)) != 0)
903 		return r;
904 	if (!state->cipher_warning_done &&
905 	    (wmsg = cipher_warning_message(*ccp)) != NULL) {
906 		error("Warning: %s", wmsg);
907 		state->cipher_warning_done = 1;
908 	}
909 	/* Deleting the keys does not gain extra security */
910 	/* explicit_bzero(enc->iv,  enc->block_size);
911 	   explicit_bzero(enc->key, enc->key_len);
912 	   explicit_bzero(mac->key, mac->key_len); */
913 	if ((comp->type == COMP_ZLIB ||
914 	    (comp->type == COMP_DELAYED &&
915 	     state->after_authentication)) && comp->enabled == 0) {
916 		if ((r = ssh_packet_init_compression(ssh)) < 0)
917 			return r;
918 		if (mode == MODE_OUT) {
919 			if ((r = start_compression_out(ssh, 6)) != 0)
920 				return r;
921 		} else {
922 			if ((r = start_compression_in(ssh)) != 0)
923 				return r;
924 		}
925 		comp->enabled = 1;
926 	}
927 	/*
928 	 * The 2^(blocksize*2) limit is too expensive for 3DES,
929 	 * so enforce a 1GB limit for small blocksizes.
930 	 * See RFC4344 section 3.2.
931 	 */
932 	if (enc->block_size >= 16)
933 		*max_blocks = (u_int64_t)1 << (enc->block_size*2);
934 	else
935 		*max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
936 	if (state->rekey_limit)
937 		*max_blocks = MINIMUM(*max_blocks,
938 		    state->rekey_limit / enc->block_size);
939 	debug("rekey %s after %llu blocks", dir,
940 	    (unsigned long long)*max_blocks);
941 	return 0;
942 }
943 
944 #define MAX_PACKETS	(1U<<31)
945 static int
946 ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
947 {
948 	struct session_state *state = ssh->state;
949 	u_int32_t out_blocks;
950 
951 	/* XXX client can't cope with rekeying pre-auth */
952 	if (!state->after_authentication)
953 		return 0;
954 
955 	/* Haven't keyed yet or KEX in progress. */
956 	if (ssh_packet_is_rekeying(ssh))
957 		return 0;
958 
959 	/* Peer can't rekey */
960 	if (ssh->compat & SSH_BUG_NOREKEY)
961 		return 0;
962 
963 	/*
964 	 * Permit one packet in or out per rekey - this allows us to
965 	 * make progress when rekey limits are very small.
966 	 */
967 	if (state->p_send.packets == 0 && state->p_read.packets == 0)
968 		return 0;
969 
970 	/* Time-based rekeying */
971 	if (state->rekey_interval != 0 &&
972 	    (int64_t)state->rekey_time + state->rekey_interval <= monotime())
973 		return 1;
974 
975 	/*
976 	 * Always rekey when MAX_PACKETS sent in either direction
977 	 * As per RFC4344 section 3.1 we do this after 2^31 packets.
978 	 */
979 	if (state->p_send.packets > MAX_PACKETS ||
980 	    state->p_read.packets > MAX_PACKETS)
981 		return 1;
982 
983 	/* Rekey after (cipher-specific) maxiumum blocks */
984 	out_blocks = ROUNDUP(outbound_packet_len,
985 	    state->newkeys[MODE_OUT]->enc.block_size);
986 	return (state->max_blocks_out &&
987 	    (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
988 	    (state->max_blocks_in &&
989 	    (state->p_read.blocks > state->max_blocks_in));
990 }
991 
992 /*
993  * Delayed compression for SSH2 is enabled after authentication:
994  * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
995  * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
996  */
997 static int
998 ssh_packet_enable_delayed_compress(struct ssh *ssh)
999 {
1000 	struct session_state *state = ssh->state;
1001 	struct sshcomp *comp = NULL;
1002 	int r, mode;
1003 
1004 	/*
1005 	 * Remember that we are past the authentication step, so rekeying
1006 	 * with COMP_DELAYED will turn on compression immediately.
1007 	 */
1008 	state->after_authentication = 1;
1009 	for (mode = 0; mode < MODE_MAX; mode++) {
1010 		/* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
1011 		if (state->newkeys[mode] == NULL)
1012 			continue;
1013 		comp = &state->newkeys[mode]->comp;
1014 		if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
1015 			if ((r = ssh_packet_init_compression(ssh)) != 0)
1016 				return r;
1017 			if (mode == MODE_OUT) {
1018 				if ((r = start_compression_out(ssh, 6)) != 0)
1019 					return r;
1020 			} else {
1021 				if ((r = start_compression_in(ssh)) != 0)
1022 					return r;
1023 			}
1024 			comp->enabled = 1;
1025 		}
1026 	}
1027 	return 0;
1028 }
1029 
1030 /* Used to mute debug logging for noisy packet types */
1031 int
1032 ssh_packet_log_type(u_char type)
1033 {
1034 	switch (type) {
1035 	case SSH2_MSG_CHANNEL_DATA:
1036 	case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1037 	case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1038 		return 0;
1039 	default:
1040 		return 1;
1041 	}
1042 }
1043 
1044 /*
1045  * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1046  */
1047 int
1048 ssh_packet_send2_wrapped(struct ssh *ssh)
1049 {
1050 	struct session_state *state = ssh->state;
1051 	u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
1052 	u_char tmp, padlen, pad = 0;
1053 	u_int authlen = 0, aadlen = 0;
1054 	u_int len;
1055 	struct sshenc *enc   = NULL;
1056 	struct sshmac *mac   = NULL;
1057 	struct sshcomp *comp = NULL;
1058 	int r, block_size;
1059 
1060 	if (state->newkeys[MODE_OUT] != NULL) {
1061 		enc  = &state->newkeys[MODE_OUT]->enc;
1062 		mac  = &state->newkeys[MODE_OUT]->mac;
1063 		comp = &state->newkeys[MODE_OUT]->comp;
1064 		/* disable mac for authenticated encryption */
1065 		if ((authlen = cipher_authlen(enc->cipher)) != 0)
1066 			mac = NULL;
1067 	}
1068 	block_size = enc ? enc->block_size : 8;
1069 	aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
1070 
1071 	type = (sshbuf_ptr(state->outgoing_packet))[5];
1072 	if (ssh_packet_log_type(type))
1073 		debug3("send packet: type %u", type);
1074 #ifdef PACKET_DEBUG
1075 	fprintf(stderr, "plain:     ");
1076 	sshbuf_dump(state->outgoing_packet, stderr);
1077 #endif
1078 
1079 	if (comp && comp->enabled) {
1080 		len = sshbuf_len(state->outgoing_packet);
1081 		/* skip header, compress only payload */
1082 		if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1083 			goto out;
1084 		sshbuf_reset(state->compression_buffer);
1085 		if ((r = compress_buffer(ssh, state->outgoing_packet,
1086 		    state->compression_buffer)) != 0)
1087 			goto out;
1088 		sshbuf_reset(state->outgoing_packet);
1089 		if ((r = sshbuf_put(state->outgoing_packet,
1090 		    "\0\0\0\0\0", 5)) != 0 ||
1091 		    (r = sshbuf_putb(state->outgoing_packet,
1092 		    state->compression_buffer)) != 0)
1093 			goto out;
1094 		DBG(debug("compression: raw %d compressed %zd", len,
1095 		    sshbuf_len(state->outgoing_packet)));
1096 	}
1097 
1098 	/* sizeof (packet_len + pad_len + payload) */
1099 	len = sshbuf_len(state->outgoing_packet);
1100 
1101 	/*
1102 	 * calc size of padding, alloc space, get random data,
1103 	 * minimum padding is 4 bytes
1104 	 */
1105 	len -= aadlen; /* packet length is not encrypted for EtM modes */
1106 	padlen = block_size - (len % block_size);
1107 	if (padlen < 4)
1108 		padlen += block_size;
1109 	if (state->extra_pad) {
1110 		tmp = state->extra_pad;
1111 		state->extra_pad =
1112 		    ROUNDUP(state->extra_pad, block_size);
1113 		/* check if roundup overflowed */
1114 		if (state->extra_pad < tmp)
1115 			return SSH_ERR_INVALID_ARGUMENT;
1116 		tmp = (len + padlen) % state->extra_pad;
1117 		/* Check whether pad calculation below will underflow */
1118 		if (tmp > state->extra_pad)
1119 			return SSH_ERR_INVALID_ARGUMENT;
1120 		pad = state->extra_pad - tmp;
1121 		DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
1122 		    __func__, pad, len, padlen, state->extra_pad));
1123 		tmp = padlen;
1124 		padlen += pad;
1125 		/* Check whether padlen calculation overflowed */
1126 		if (padlen < tmp)
1127 			return SSH_ERR_INVALID_ARGUMENT; /* overflow */
1128 		state->extra_pad = 0;
1129 	}
1130 	if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1131 		goto out;
1132 	if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
1133 		/* random padding */
1134 		arc4random_buf(cp, padlen);
1135 	} else {
1136 		/* clear padding */
1137 		explicit_bzero(cp, padlen);
1138 	}
1139 	/* sizeof (packet_len + pad_len + payload + padding) */
1140 	len = sshbuf_len(state->outgoing_packet);
1141 	cp = sshbuf_mutable_ptr(state->outgoing_packet);
1142 	if (cp == NULL) {
1143 		r = SSH_ERR_INTERNAL_ERROR;
1144 		goto out;
1145 	}
1146 	/* packet_length includes payload, padding and padding length field */
1147 	POKE_U32(cp, len - 4);
1148 	cp[4] = padlen;
1149 	DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1150 	    len, padlen, aadlen));
1151 
1152 	/* compute MAC over seqnr and packet(length fields, payload, padding) */
1153 	if (mac && mac->enabled && !mac->etm) {
1154 		if ((r = mac_compute(mac, state->p_send.seqnr,
1155 		    sshbuf_ptr(state->outgoing_packet), len,
1156 		    macbuf, sizeof(macbuf))) != 0)
1157 			goto out;
1158 		DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
1159 	}
1160 	/* encrypt packet and append to output buffer. */
1161 	if ((r = sshbuf_reserve(state->output,
1162 	    sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1163 		goto out;
1164 	if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
1165 	    sshbuf_ptr(state->outgoing_packet),
1166 	    len - aadlen, aadlen, authlen)) != 0)
1167 		goto out;
1168 	/* append unencrypted MAC */
1169 	if (mac && mac->enabled) {
1170 		if (mac->etm) {
1171 			/* EtM: compute mac over aadlen + cipher text */
1172 			if ((r = mac_compute(mac, state->p_send.seqnr,
1173 			    cp, len, macbuf, sizeof(macbuf))) != 0)
1174 				goto out;
1175 			DBG(debug("done calc MAC(EtM) out #%d",
1176 			    state->p_send.seqnr));
1177 		}
1178 		if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1179 			goto out;
1180 	}
1181 #ifdef PACKET_DEBUG
1182 	fprintf(stderr, "encrypted: ");
1183 	sshbuf_dump(state->output, stderr);
1184 #endif
1185 	/* increment sequence number for outgoing packets */
1186 	if (++state->p_send.seqnr == 0)
1187 		logit("outgoing seqnr wraps around");
1188 	if (++state->p_send.packets == 0)
1189 		if (!(ssh->compat & SSH_BUG_NOREKEY))
1190 			return SSH_ERR_NEED_REKEY;
1191 	state->p_send.blocks += len / block_size;
1192 	state->p_send.bytes += len;
1193 	sshbuf_reset(state->outgoing_packet);
1194 
1195 	if (type == SSH2_MSG_NEWKEYS)
1196 		r = ssh_set_newkeys(ssh, MODE_OUT);
1197 	else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1198 		r = ssh_packet_enable_delayed_compress(ssh);
1199 	else
1200 		r = 0;
1201  out:
1202 	return r;
1203 }
1204 
1205 /* returns non-zero if the specified packet type is usec by KEX */
1206 static int
1207 ssh_packet_type_is_kex(u_char type)
1208 {
1209 	return
1210 	    type >= SSH2_MSG_TRANSPORT_MIN &&
1211 	    type <= SSH2_MSG_TRANSPORT_MAX &&
1212 	    type != SSH2_MSG_SERVICE_REQUEST &&
1213 	    type != SSH2_MSG_SERVICE_ACCEPT &&
1214 	    type != SSH2_MSG_EXT_INFO;
1215 }
1216 
1217 int
1218 ssh_packet_send2(struct ssh *ssh)
1219 {
1220 	struct session_state *state = ssh->state;
1221 	struct packet *p;
1222 	u_char type;
1223 	int r, need_rekey;
1224 
1225 	if (sshbuf_len(state->outgoing_packet) < 6)
1226 		return SSH_ERR_INTERNAL_ERROR;
1227 	type = sshbuf_ptr(state->outgoing_packet)[5];
1228 	need_rekey = !ssh_packet_type_is_kex(type) &&
1229 	    ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
1230 
1231 	/*
1232 	 * During rekeying we can only send key exchange messages.
1233 	 * Queue everything else.
1234 	 */
1235 	if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1236 		if (need_rekey)
1237 			debug3("%s: rekex triggered", __func__);
1238 		debug("enqueue packet: %u", type);
1239 		p = calloc(1, sizeof(*p));
1240 		if (p == NULL)
1241 			return SSH_ERR_ALLOC_FAIL;
1242 		p->type = type;
1243 		p->payload = state->outgoing_packet;
1244 		TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1245 		state->outgoing_packet = sshbuf_new();
1246 		if (state->outgoing_packet == NULL)
1247 			return SSH_ERR_ALLOC_FAIL;
1248 		if (need_rekey) {
1249 			/*
1250 			 * This packet triggered a rekey, so send the
1251 			 * KEXINIT now.
1252 			 * NB. reenters this function via kex_start_rekex().
1253 			 */
1254 			return kex_start_rekex(ssh);
1255 		}
1256 		return 0;
1257 	}
1258 
1259 	/* rekeying starts with sending KEXINIT */
1260 	if (type == SSH2_MSG_KEXINIT)
1261 		state->rekeying = 1;
1262 
1263 	if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1264 		return r;
1265 
1266 	/* after a NEWKEYS message we can send the complete queue */
1267 	if (type == SSH2_MSG_NEWKEYS) {
1268 		state->rekeying = 0;
1269 		state->rekey_time = monotime();
1270 		while ((p = TAILQ_FIRST(&state->outgoing))) {
1271 			type = p->type;
1272 			/*
1273 			 * If this packet triggers a rekex, then skip the
1274 			 * remaining packets in the queue for now.
1275 			 * NB. re-enters this function via kex_start_rekex.
1276 			 */
1277 			if (ssh_packet_need_rekeying(ssh,
1278 			    sshbuf_len(p->payload))) {
1279 				debug3("%s: queued packet triggered rekex",
1280 				    __func__);
1281 				return kex_start_rekex(ssh);
1282 			}
1283 			debug("dequeue packet: %u", type);
1284 			sshbuf_free(state->outgoing_packet);
1285 			state->outgoing_packet = p->payload;
1286 			TAILQ_REMOVE(&state->outgoing, p, next);
1287 			memset(p, 0, sizeof(*p));
1288 			free(p);
1289 			if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1290 				return r;
1291 		}
1292 	}
1293 	return 0;
1294 }
1295 
1296 /*
1297  * Waits until a packet has been received, and returns its type.  Note that
1298  * no other data is processed until this returns, so this function should not
1299  * be used during the interactive session.
1300  */
1301 
1302 int
1303 ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1304 {
1305 	struct session_state *state = ssh->state;
1306 	int len, r, ms_remain;
1307 	fd_set *setp;
1308 	char buf[8192];
1309 	struct timeval timeout, start, *timeoutp = NULL;
1310 
1311 	DBG(debug("packet_read()"));
1312 
1313 	setp = calloc(howmany(state->connection_in + 1,
1314 	    NFDBITS), sizeof(fd_mask));
1315 	if (setp == NULL)
1316 		return SSH_ERR_ALLOC_FAIL;
1317 
1318 	/*
1319 	 * Since we are blocking, ensure that all written packets have
1320 	 * been sent.
1321 	 */
1322 	if ((r = ssh_packet_write_wait(ssh)) != 0)
1323 		goto out;
1324 
1325 	/* Stay in the loop until we have received a complete packet. */
1326 	for (;;) {
1327 		/* Try to read a packet from the buffer. */
1328 		r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1329 		if (r != 0)
1330 			break;
1331 		/* If we got a packet, return it. */
1332 		if (*typep != SSH_MSG_NONE)
1333 			break;
1334 		/*
1335 		 * Otherwise, wait for some data to arrive, add it to the
1336 		 * buffer, and try again.
1337 		 */
1338 		memset(setp, 0, howmany(state->connection_in + 1,
1339 		    NFDBITS) * sizeof(fd_mask));
1340 		FD_SET(state->connection_in, setp);
1341 
1342 		if (state->packet_timeout_ms > 0) {
1343 			ms_remain = state->packet_timeout_ms;
1344 			timeoutp = &timeout;
1345 		}
1346 		/* Wait for some data to arrive. */
1347 		for (;;) {
1348 			if (state->packet_timeout_ms > 0) {
1349 				ms_to_timeval(&timeout, ms_remain);
1350 				monotime_tv(&start);
1351 			}
1352 			if ((r = select(state->connection_in + 1, setp,
1353 			    NULL, NULL, timeoutp)) >= 0)
1354 				break;
1355 			if (errno != EAGAIN && errno != EINTR) {
1356 				r = SSH_ERR_SYSTEM_ERROR;
1357 				goto out;
1358 			}
1359 			if (state->packet_timeout_ms <= 0)
1360 				continue;
1361 			ms_subtract_diff(&start, &ms_remain);
1362 			if (ms_remain <= 0) {
1363 				r = 0;
1364 				break;
1365 			}
1366 		}
1367 		if (r == 0) {
1368 			r = SSH_ERR_CONN_TIMEOUT;
1369 			goto out;
1370 		}
1371 		/* Read data from the socket. */
1372 		len = read(state->connection_in, buf, sizeof(buf));
1373 		if (len == 0) {
1374 			r = SSH_ERR_CONN_CLOSED;
1375 			goto out;
1376 		}
1377 		if (len == -1) {
1378 			r = SSH_ERR_SYSTEM_ERROR;
1379 			goto out;
1380 		}
1381 
1382 		/* Append it to the buffer. */
1383 		if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
1384 			goto out;
1385 	}
1386  out:
1387 	free(setp);
1388 	return r;
1389 }
1390 
1391 int
1392 ssh_packet_read(struct ssh *ssh)
1393 {
1394 	u_char type;
1395 	int r;
1396 
1397 	if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1398 		fatal("%s: %s", __func__, ssh_err(r));
1399 	return type;
1400 }
1401 
1402 /*
1403  * Waits until a packet has been received, verifies that its type matches
1404  * that given, and gives a fatal error and exits if there is a mismatch.
1405  */
1406 
1407 int
1408 ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
1409 {
1410 	int r;
1411 	u_char type;
1412 
1413 	if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1414 		return r;
1415 	if (type != expected_type) {
1416 		if ((r = sshpkt_disconnect(ssh,
1417 		    "Protocol error: expected packet type %d, got %d",
1418 		    expected_type, type)) != 0)
1419 			return r;
1420 		return SSH_ERR_PROTOCOL_ERROR;
1421 	}
1422 	return 0;
1423 }
1424 
1425 static int
1426 ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1427 {
1428 	struct session_state *state = ssh->state;
1429 	const u_char *cp;
1430 	size_t need;
1431 	int r;
1432 
1433 	if (ssh->kex)
1434 		return SSH_ERR_INTERNAL_ERROR;
1435 	*typep = SSH_MSG_NONE;
1436 	cp = sshbuf_ptr(state->input);
1437 	if (state->packlen == 0) {
1438 		if (sshbuf_len(state->input) < 4 + 1)
1439 			return 0; /* packet is incomplete */
1440 		state->packlen = PEEK_U32(cp);
1441 		if (state->packlen < 4 + 1 ||
1442 		    state->packlen > PACKET_MAX_SIZE)
1443 			return SSH_ERR_MESSAGE_INCOMPLETE;
1444 	}
1445 	need = state->packlen + 4;
1446 	if (sshbuf_len(state->input) < need)
1447 		return 0; /* packet is incomplete */
1448 	sshbuf_reset(state->incoming_packet);
1449 	if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1450 	    state->packlen)) != 0 ||
1451 	    (r = sshbuf_consume(state->input, need)) != 0 ||
1452 	    (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1453 	    (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1454 		return r;
1455 	if (ssh_packet_log_type(*typep))
1456 		debug3("%s: type %u", __func__, *typep);
1457 	/* sshbuf_dump(state->incoming_packet, stderr); */
1458 	/* reset for next packet */
1459 	state->packlen = 0;
1460 	return r;
1461 }
1462 
1463 int
1464 ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1465 {
1466 	struct session_state *state = ssh->state;
1467 	u_int padlen, need;
1468 	u_char *cp;
1469 	u_int maclen, aadlen = 0, authlen = 0, block_size;
1470 	struct sshenc *enc   = NULL;
1471 	struct sshmac *mac   = NULL;
1472 	struct sshcomp *comp = NULL;
1473 	int r;
1474 
1475 	if (state->mux)
1476 		return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1477 
1478 	*typep = SSH_MSG_NONE;
1479 
1480 	if (state->packet_discard)
1481 		return 0;
1482 
1483 	if (state->newkeys[MODE_IN] != NULL) {
1484 		enc  = &state->newkeys[MODE_IN]->enc;
1485 		mac  = &state->newkeys[MODE_IN]->mac;
1486 		comp = &state->newkeys[MODE_IN]->comp;
1487 		/* disable mac for authenticated encryption */
1488 		if ((authlen = cipher_authlen(enc->cipher)) != 0)
1489 			mac = NULL;
1490 	}
1491 	maclen = mac && mac->enabled ? mac->mac_len : 0;
1492 	block_size = enc ? enc->block_size : 8;
1493 	aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
1494 
1495 	if (aadlen && state->packlen == 0) {
1496 		if (cipher_get_length(state->receive_context,
1497 		    &state->packlen, state->p_read.seqnr,
1498 		    sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1499 			return 0;
1500 		if (state->packlen < 1 + 4 ||
1501 		    state->packlen > PACKET_MAX_SIZE) {
1502 #ifdef PACKET_DEBUG
1503 			sshbuf_dump(state->input, stderr);
1504 #endif
1505 			logit("Bad packet length %u.", state->packlen);
1506 			if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1507 				return r;
1508 			return SSH_ERR_CONN_CORRUPT;
1509 		}
1510 		sshbuf_reset(state->incoming_packet);
1511 	} else if (state->packlen == 0) {
1512 		/*
1513 		 * check if input size is less than the cipher block size,
1514 		 * decrypt first block and extract length of incoming packet
1515 		 */
1516 		if (sshbuf_len(state->input) < block_size)
1517 			return 0;
1518 		sshbuf_reset(state->incoming_packet);
1519 		if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1520 		    &cp)) != 0)
1521 			goto out;
1522 		if ((r = cipher_crypt(state->receive_context,
1523 		    state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1524 		    block_size, 0, 0)) != 0)
1525 			goto out;
1526 		state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1527 		if (state->packlen < 1 + 4 ||
1528 		    state->packlen > PACKET_MAX_SIZE) {
1529 #ifdef PACKET_DEBUG
1530 			fprintf(stderr, "input: \n");
1531 			sshbuf_dump(state->input, stderr);
1532 			fprintf(stderr, "incoming_packet: \n");
1533 			sshbuf_dump(state->incoming_packet, stderr);
1534 #endif
1535 			logit("Bad packet length %u.", state->packlen);
1536 			return ssh_packet_start_discard(ssh, enc, mac, 0,
1537 			    PACKET_MAX_SIZE);
1538 		}
1539 		if ((r = sshbuf_consume(state->input, block_size)) != 0)
1540 			goto out;
1541 	}
1542 	DBG(debug("input: packet len %u", state->packlen+4));
1543 
1544 	if (aadlen) {
1545 		/* only the payload is encrypted */
1546 		need = state->packlen;
1547 	} else {
1548 		/*
1549 		 * the payload size and the payload are encrypted, but we
1550 		 * have a partial packet of block_size bytes
1551 		 */
1552 		need = 4 + state->packlen - block_size;
1553 	}
1554 	DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1555 	    " aadlen %d", block_size, need, maclen, authlen, aadlen));
1556 	if (need % block_size != 0) {
1557 		logit("padding error: need %d block %d mod %d",
1558 		    need, block_size, need % block_size);
1559 		return ssh_packet_start_discard(ssh, enc, mac, 0,
1560 		    PACKET_MAX_SIZE - block_size);
1561 	}
1562 	/*
1563 	 * check if the entire packet has been received and
1564 	 * decrypt into incoming_packet:
1565 	 * 'aadlen' bytes are unencrypted, but authenticated.
1566 	 * 'need' bytes are encrypted, followed by either
1567 	 * 'authlen' bytes of authentication tag or
1568 	 * 'maclen' bytes of message authentication code.
1569 	 */
1570 	if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
1571 		return 0; /* packet is incomplete */
1572 #ifdef PACKET_DEBUG
1573 	fprintf(stderr, "read_poll enc/full: ");
1574 	sshbuf_dump(state->input, stderr);
1575 #endif
1576 	/* EtM: check mac over encrypted input */
1577 	if (mac && mac->enabled && mac->etm) {
1578 		if ((r = mac_check(mac, state->p_read.seqnr,
1579 		    sshbuf_ptr(state->input), aadlen + need,
1580 		    sshbuf_ptr(state->input) + aadlen + need + authlen,
1581 		    maclen)) != 0) {
1582 			if (r == SSH_ERR_MAC_INVALID)
1583 				logit("Corrupted MAC on input.");
1584 			goto out;
1585 		}
1586 	}
1587 	if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1588 	    &cp)) != 0)
1589 		goto out;
1590 	if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
1591 	    sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1592 		goto out;
1593 	if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1594 		goto out;
1595 	if (mac && mac->enabled) {
1596 		/* Not EtM: check MAC over cleartext */
1597 		if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1598 		    sshbuf_ptr(state->incoming_packet),
1599 		    sshbuf_len(state->incoming_packet),
1600 		    sshbuf_ptr(state->input), maclen)) != 0) {
1601 			if (r != SSH_ERR_MAC_INVALID)
1602 				goto out;
1603 			logit("Corrupted MAC on input.");
1604 			if (need + block_size > PACKET_MAX_SIZE)
1605 				return SSH_ERR_INTERNAL_ERROR;
1606 			return ssh_packet_start_discard(ssh, enc, mac,
1607 			    sshbuf_len(state->incoming_packet),
1608 			    PACKET_MAX_SIZE - need - block_size);
1609 		}
1610 		/* Remove MAC from input buffer */
1611 		DBG(debug("MAC #%d ok", state->p_read.seqnr));
1612 		if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1613 			goto out;
1614 	}
1615 	if (seqnr_p != NULL)
1616 		*seqnr_p = state->p_read.seqnr;
1617 	if (++state->p_read.seqnr == 0)
1618 		logit("incoming seqnr wraps around");
1619 	if (++state->p_read.packets == 0)
1620 		if (!(ssh->compat & SSH_BUG_NOREKEY))
1621 			return SSH_ERR_NEED_REKEY;
1622 	state->p_read.blocks += (state->packlen + 4) / block_size;
1623 	state->p_read.bytes += state->packlen + 4;
1624 
1625 	/* get padlen */
1626 	padlen = sshbuf_ptr(state->incoming_packet)[4];
1627 	DBG(debug("input: padlen %d", padlen));
1628 	if (padlen < 4)	{
1629 		if ((r = sshpkt_disconnect(ssh,
1630 		    "Corrupted padlen %d on input.", padlen)) != 0 ||
1631 		    (r = ssh_packet_write_wait(ssh)) != 0)
1632 			return r;
1633 		return SSH_ERR_CONN_CORRUPT;
1634 	}
1635 
1636 	/* skip packet size + padlen, discard padding */
1637 	if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1638 	    ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1639 		goto out;
1640 
1641 	DBG(debug("input: len before de-compress %zd",
1642 	    sshbuf_len(state->incoming_packet)));
1643 	if (comp && comp->enabled) {
1644 		sshbuf_reset(state->compression_buffer);
1645 		if ((r = uncompress_buffer(ssh, state->incoming_packet,
1646 		    state->compression_buffer)) != 0)
1647 			goto out;
1648 		sshbuf_reset(state->incoming_packet);
1649 		if ((r = sshbuf_putb(state->incoming_packet,
1650 		    state->compression_buffer)) != 0)
1651 			goto out;
1652 		DBG(debug("input: len after de-compress %zd",
1653 		    sshbuf_len(state->incoming_packet)));
1654 	}
1655 	/*
1656 	 * get packet type, implies consume.
1657 	 * return length of payload (without type field)
1658 	 */
1659 	if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1660 		goto out;
1661 	if (ssh_packet_log_type(*typep))
1662 		debug3("receive packet: type %u", *typep);
1663 	if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1664 		if ((r = sshpkt_disconnect(ssh,
1665 		    "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1666 		    (r = ssh_packet_write_wait(ssh)) != 0)
1667 			return r;
1668 		return SSH_ERR_PROTOCOL_ERROR;
1669 	}
1670 	if (state->hook_in != NULL &&
1671 	    (r = state->hook_in(ssh, state->incoming_packet, typep,
1672 	    state->hook_in_ctx)) != 0)
1673 		return r;
1674 	if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
1675 		r = ssh_packet_enable_delayed_compress(ssh);
1676 	else
1677 		r = 0;
1678 #ifdef PACKET_DEBUG
1679 	fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1680 	sshbuf_dump(state->incoming_packet, stderr);
1681 #endif
1682 	/* reset for next packet */
1683 	state->packlen = 0;
1684 
1685 	/* do we need to rekey? */
1686 	if (ssh_packet_need_rekeying(ssh, 0)) {
1687 		debug3("%s: rekex triggered", __func__);
1688 		if ((r = kex_start_rekex(ssh)) != 0)
1689 			return r;
1690 	}
1691  out:
1692 	return r;
1693 }
1694 
1695 int
1696 ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1697 {
1698 	struct session_state *state = ssh->state;
1699 	u_int reason, seqnr;
1700 	int r;
1701 	u_char *msg;
1702 
1703 	for (;;) {
1704 		msg = NULL;
1705 		r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1706 		if (r != 0)
1707 			return r;
1708 		if (*typep) {
1709 			state->keep_alive_timeouts = 0;
1710 			DBG(debug("received packet type %d", *typep));
1711 		}
1712 		switch (*typep) {
1713 		case SSH2_MSG_IGNORE:
1714 			debug3("Received SSH2_MSG_IGNORE");
1715 			break;
1716 		case SSH2_MSG_DEBUG:
1717 			if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1718 			    (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1719 			    (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1720 				free(msg);
1721 				return r;
1722 			}
1723 			debug("Remote: %.900s", msg);
1724 			free(msg);
1725 			break;
1726 		case SSH2_MSG_DISCONNECT:
1727 			if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1728 			    (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1729 				return r;
1730 			/* Ignore normal client exit notifications */
1731 			do_log2(ssh->state->server_side &&
1732 			    reason == SSH2_DISCONNECT_BY_APPLICATION ?
1733 			    SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1734 			    "Received disconnect from %s port %d:"
1735 			    "%u: %.400s", ssh_remote_ipaddr(ssh),
1736 			    ssh_remote_port(ssh), reason, msg);
1737 			free(msg);
1738 			return SSH_ERR_DISCONNECTED;
1739 		case SSH2_MSG_UNIMPLEMENTED:
1740 			if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1741 				return r;
1742 			debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1743 			    seqnr);
1744 			break;
1745 		default:
1746 			return 0;
1747 		}
1748 	}
1749 }
1750 
1751 /*
1752  * Buffers the given amount of input characters.  This is intended to be used
1753  * together with packet_read_poll.
1754  */
1755 
1756 int
1757 ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
1758 {
1759 	struct session_state *state = ssh->state;
1760 	int r;
1761 
1762 	if (state->packet_discard) {
1763 		state->keep_alive_timeouts = 0; /* ?? */
1764 		if (len >= state->packet_discard) {
1765 			if ((r = ssh_packet_stop_discard(ssh)) != 0)
1766 				return r;
1767 		}
1768 		state->packet_discard -= len;
1769 		return 0;
1770 	}
1771 	if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
1772 		return r;
1773 
1774 	return 0;
1775 }
1776 
1777 int
1778 ssh_packet_remaining(struct ssh *ssh)
1779 {
1780 	return sshbuf_len(ssh->state->incoming_packet);
1781 }
1782 
1783 /*
1784  * Sends a diagnostic message from the server to the client.  This message
1785  * can be sent at any time (but not while constructing another message). The
1786  * message is printed immediately, but only if the client is being executed
1787  * in verbose mode.  These messages are primarily intended to ease debugging
1788  * authentication problems.   The length of the formatted message must not
1789  * exceed 1024 bytes.  This will automatically call ssh_packet_write_wait.
1790  */
1791 void
1792 ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
1793 {
1794 	char buf[1024];
1795 	va_list args;
1796 	int r;
1797 
1798 	if ((ssh->compat & SSH_BUG_DEBUG))
1799 		return;
1800 
1801 	va_start(args, fmt);
1802 	vsnprintf(buf, sizeof(buf), fmt, args);
1803 	va_end(args);
1804 
1805 	debug3("sending debug message: %s", buf);
1806 
1807 	if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1808 	    (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1809 	    (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1810 	    (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1811 	    (r = sshpkt_send(ssh)) != 0 ||
1812 	    (r = ssh_packet_write_wait(ssh)) != 0)
1813 		fatal("%s: %s", __func__, ssh_err(r));
1814 }
1815 
1816 void
1817 sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l)
1818 {
1819 	snprintf(s, l, "%.200s%s%s port %d",
1820 	    ssh->log_preamble ? ssh->log_preamble : "",
1821 	    ssh->log_preamble ? " " : "",
1822 	    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1823 }
1824 
1825 /*
1826  * Pretty-print connection-terminating errors and exit.
1827  */
1828 static void
1829 sshpkt_vfatal(struct ssh *ssh, int r, const char *fmt, va_list ap)
1830 {
1831 	char *tag = NULL, remote_id[512];
1832 	int oerrno = errno;
1833 
1834 	sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
1835 
1836 	switch (r) {
1837 	case SSH_ERR_CONN_CLOSED:
1838 		ssh_packet_clear_keys(ssh);
1839 		logdie("Connection closed by %s", remote_id);
1840 	case SSH_ERR_CONN_TIMEOUT:
1841 		ssh_packet_clear_keys(ssh);
1842 		logdie("Connection %s %s timed out",
1843 		    ssh->state->server_side ? "from" : "to", remote_id);
1844 	case SSH_ERR_DISCONNECTED:
1845 		ssh_packet_clear_keys(ssh);
1846 		logdie("Disconnected from %s", remote_id);
1847 	case SSH_ERR_SYSTEM_ERROR:
1848 		if (errno == ECONNRESET) {
1849 			ssh_packet_clear_keys(ssh);
1850 			logdie("Connection reset by %s", remote_id);
1851 		}
1852 		/* FALLTHROUGH */
1853 	case SSH_ERR_NO_CIPHER_ALG_MATCH:
1854 	case SSH_ERR_NO_MAC_ALG_MATCH:
1855 	case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1856 	case SSH_ERR_NO_KEX_ALG_MATCH:
1857 	case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1858 		if (ssh && ssh->kex && ssh->kex->failed_choice) {
1859 			ssh_packet_clear_keys(ssh);
1860 			errno = oerrno;
1861 			logdie("Unable to negotiate with %s: %s. "
1862 			    "Their offer: %s", remote_id, ssh_err(r),
1863 			    ssh->kex->failed_choice);
1864 		}
1865 		/* FALLTHROUGH */
1866 	default:
1867 		if (vasprintf(&tag, fmt, ap) == -1) {
1868 			ssh_packet_clear_keys(ssh);
1869 			logdie("%s: could not allocate failure message",
1870 			    __func__);
1871 		}
1872 		ssh_packet_clear_keys(ssh);
1873 		errno = oerrno;
1874 		logdie("%s%sConnection %s %s: %s",
1875 		    tag != NULL ? tag : "", tag != NULL ? ": " : "",
1876 		    ssh->state->server_side ? "from" : "to",
1877 		    remote_id, ssh_err(r));
1878 	}
1879 }
1880 
1881 void
1882 sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...)
1883 {
1884 	va_list ap;
1885 
1886 	va_start(ap, fmt);
1887 	sshpkt_vfatal(ssh, r, fmt, ap);
1888 	/* NOTREACHED */
1889 	va_end(ap);
1890 	logdie("%s: should have exited", __func__);
1891 }
1892 
1893 /*
1894  * Logs the error plus constructs and sends a disconnect packet, closes the
1895  * connection, and exits.  This function never returns. The error message
1896  * should not contain a newline.  The length of the formatted message must
1897  * not exceed 1024 bytes.
1898  */
1899 void
1900 ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
1901 {
1902 	char buf[1024], remote_id[512];
1903 	va_list args;
1904 	static int disconnecting = 0;
1905 	int r;
1906 
1907 	if (disconnecting)	/* Guard against recursive invocations. */
1908 		fatal("packet_disconnect called recursively.");
1909 	disconnecting = 1;
1910 
1911 	/*
1912 	 * Format the message.  Note that the caller must make sure the
1913 	 * message is of limited size.
1914 	 */
1915 	sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
1916 	va_start(args, fmt);
1917 	vsnprintf(buf, sizeof(buf), fmt, args);
1918 	va_end(args);
1919 
1920 	/* Display the error locally */
1921 	logit("Disconnecting %s: %.100s", remote_id, buf);
1922 
1923 	/*
1924 	 * Send the disconnect message to the other side, and wait
1925 	 * for it to get sent.
1926 	 */
1927 	if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
1928 		sshpkt_fatal(ssh, r, "%s", __func__);
1929 
1930 	if ((r = ssh_packet_write_wait(ssh)) != 0)
1931 		sshpkt_fatal(ssh, r, "%s", __func__);
1932 
1933 	/* Close the connection. */
1934 	ssh_packet_close(ssh);
1935 	cleanup_exit(255);
1936 }
1937 
1938 /*
1939  * Checks if there is any buffered output, and tries to write some of
1940  * the output.
1941  */
1942 int
1943 ssh_packet_write_poll(struct ssh *ssh)
1944 {
1945 	struct session_state *state = ssh->state;
1946 	int len = sshbuf_len(state->output);
1947 	int r;
1948 
1949 	if (len > 0) {
1950 		len = write(state->connection_out,
1951 		    sshbuf_ptr(state->output), len);
1952 		if (len == -1) {
1953 			if (errno == EINTR || errno == EAGAIN)
1954 				return 0;
1955 			return SSH_ERR_SYSTEM_ERROR;
1956 		}
1957 		if (len == 0)
1958 			return SSH_ERR_CONN_CLOSED;
1959 		if ((r = sshbuf_consume(state->output, len)) != 0)
1960 			return r;
1961 	}
1962 	return 0;
1963 }
1964 
1965 /*
1966  * Calls packet_write_poll repeatedly until all pending output data has been
1967  * written.
1968  */
1969 int
1970 ssh_packet_write_wait(struct ssh *ssh)
1971 {
1972 	fd_set *setp;
1973 	int ret, r, ms_remain = 0;
1974 	struct timeval start, timeout, *timeoutp = NULL;
1975 	struct session_state *state = ssh->state;
1976 
1977 	setp = calloc(howmany(state->connection_out + 1,
1978 	    NFDBITS), sizeof(fd_mask));
1979 	if (setp == NULL)
1980 		return SSH_ERR_ALLOC_FAIL;
1981 	if ((r = ssh_packet_write_poll(ssh)) != 0) {
1982 		free(setp);
1983 		return r;
1984 	}
1985 	while (ssh_packet_have_data_to_write(ssh)) {
1986 		memset(setp, 0, howmany(state->connection_out + 1,
1987 		    NFDBITS) * sizeof(fd_mask));
1988 		FD_SET(state->connection_out, setp);
1989 
1990 		if (state->packet_timeout_ms > 0) {
1991 			ms_remain = state->packet_timeout_ms;
1992 			timeoutp = &timeout;
1993 		}
1994 		for (;;) {
1995 			if (state->packet_timeout_ms > 0) {
1996 				ms_to_timeval(&timeout, ms_remain);
1997 				monotime_tv(&start);
1998 			}
1999 			if ((ret = select(state->connection_out + 1,
2000 			    NULL, setp, NULL, timeoutp)) >= 0)
2001 				break;
2002 			if (errno != EAGAIN && errno != EINTR)
2003 				break;
2004 			if (state->packet_timeout_ms <= 0)
2005 				continue;
2006 			ms_subtract_diff(&start, &ms_remain);
2007 			if (ms_remain <= 0) {
2008 				ret = 0;
2009 				break;
2010 			}
2011 		}
2012 		if (ret == 0) {
2013 			free(setp);
2014 			return SSH_ERR_CONN_TIMEOUT;
2015 		}
2016 		if ((r = ssh_packet_write_poll(ssh)) != 0) {
2017 			free(setp);
2018 			return r;
2019 		}
2020 	}
2021 	free(setp);
2022 	return 0;
2023 }
2024 
2025 /* Returns true if there is buffered data to write to the connection. */
2026 
2027 int
2028 ssh_packet_have_data_to_write(struct ssh *ssh)
2029 {
2030 	return sshbuf_len(ssh->state->output) != 0;
2031 }
2032 
2033 /* Returns true if there is not too much data to write to the connection. */
2034 
2035 int
2036 ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
2037 {
2038 	if (ssh->state->interactive_mode)
2039 		return sshbuf_len(ssh->state->output) < 16384;
2040 	else
2041 		return sshbuf_len(ssh->state->output) < 128 * 1024;
2042 }
2043 
2044 void
2045 ssh_packet_set_tos(struct ssh *ssh, int tos)
2046 {
2047 	if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
2048 		return;
2049 	switch (ssh_packet_connection_af(ssh)) {
2050 	case AF_INET:
2051 		debug3("%s: set IP_TOS 0x%02x", __func__, tos);
2052 		if (setsockopt(ssh->state->connection_in,
2053 		    IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) == -1)
2054 			error("setsockopt IP_TOS %d: %.100s:",
2055 			    tos, strerror(errno));
2056 		break;
2057 	case AF_INET6:
2058 		debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
2059 		if (setsockopt(ssh->state->connection_in,
2060 		    IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) == -1)
2061 			error("setsockopt IPV6_TCLASS %d: %.100s:",
2062 			    tos, strerror(errno));
2063 		break;
2064 	}
2065 }
2066 
2067 /* Informs that the current session is interactive.  Sets IP flags for that. */
2068 
2069 void
2070 ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
2071 {
2072 	struct session_state *state = ssh->state;
2073 
2074 	if (state->set_interactive_called)
2075 		return;
2076 	state->set_interactive_called = 1;
2077 
2078 	/* Record that we are in interactive mode. */
2079 	state->interactive_mode = interactive;
2080 
2081 	/* Only set socket options if using a socket.  */
2082 	if (!ssh_packet_connection_is_on_socket(ssh))
2083 		return;
2084 	set_nodelay(state->connection_in);
2085 	ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2086 	    qos_bulk);
2087 }
2088 
2089 /* Returns true if the current connection is interactive. */
2090 
2091 int
2092 ssh_packet_is_interactive(struct ssh *ssh)
2093 {
2094 	return ssh->state->interactive_mode;
2095 }
2096 
2097 int
2098 ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
2099 {
2100 	struct session_state *state = ssh->state;
2101 
2102 	if (state->set_maxsize_called) {
2103 		logit("packet_set_maxsize: called twice: old %d new %d",
2104 		    state->max_packet_size, s);
2105 		return -1;
2106 	}
2107 	if (s < 4 * 1024 || s > 1024 * 1024) {
2108 		logit("packet_set_maxsize: bad size %d", s);
2109 		return -1;
2110 	}
2111 	state->set_maxsize_called = 1;
2112 	debug("packet_set_maxsize: setting to %d", s);
2113 	state->max_packet_size = s;
2114 	return s;
2115 }
2116 
2117 int
2118 ssh_packet_inc_alive_timeouts(struct ssh *ssh)
2119 {
2120 	return ++ssh->state->keep_alive_timeouts;
2121 }
2122 
2123 void
2124 ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
2125 {
2126 	ssh->state->keep_alive_timeouts = ka;
2127 }
2128 
2129 u_int
2130 ssh_packet_get_maxsize(struct ssh *ssh)
2131 {
2132 	return ssh->state->max_packet_size;
2133 }
2134 
2135 void
2136 ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
2137 {
2138 	debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2139 	    (unsigned int)seconds);
2140 	ssh->state->rekey_limit = bytes;
2141 	ssh->state->rekey_interval = seconds;
2142 }
2143 
2144 time_t
2145 ssh_packet_get_rekey_timeout(struct ssh *ssh)
2146 {
2147 	time_t seconds;
2148 
2149 	seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
2150 	    monotime();
2151 	return (seconds <= 0 ? 1 : seconds);
2152 }
2153 
2154 void
2155 ssh_packet_set_server(struct ssh *ssh)
2156 {
2157 	ssh->state->server_side = 1;
2158 	ssh->kex->server = 1; /* XXX unify? */
2159 }
2160 
2161 void
2162 ssh_packet_set_authenticated(struct ssh *ssh)
2163 {
2164 	ssh->state->after_authentication = 1;
2165 }
2166 
2167 void *
2168 ssh_packet_get_input(struct ssh *ssh)
2169 {
2170 	return (void *)ssh->state->input;
2171 }
2172 
2173 void *
2174 ssh_packet_get_output(struct ssh *ssh)
2175 {
2176 	return (void *)ssh->state->output;
2177 }
2178 
2179 /* Reset after_authentication and reset compression in post-auth privsep */
2180 static int
2181 ssh_packet_set_postauth(struct ssh *ssh)
2182 {
2183 	int r;
2184 
2185 	debug("%s: called", __func__);
2186 	/* This was set in net child, but is not visible in user child */
2187 	ssh->state->after_authentication = 1;
2188 	ssh->state->rekeying = 0;
2189 	if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2190 		return r;
2191 	return 0;
2192 }
2193 
2194 /* Packet state (de-)serialization for privsep */
2195 
2196 /* turn kex into a blob for packet state serialization */
2197 static int
2198 kex_to_blob(struct sshbuf *m, struct kex *kex)
2199 {
2200 	int r;
2201 
2202 	if ((r = sshbuf_put_string(m, kex->session_id,
2203 	    kex->session_id_len)) != 0 ||
2204 	    (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
2205 	    (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 ||
2206 	    (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
2207 	    (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 ||
2208 	    (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2209 	    (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2210 	    (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
2211 	    (r = sshbuf_put_stringb(m, kex->client_version)) != 0 ||
2212 	    (r = sshbuf_put_stringb(m, kex->server_version)) != 0 ||
2213 	    (r = sshbuf_put_u32(m, kex->flags)) != 0)
2214 		return r;
2215 	return 0;
2216 }
2217 
2218 /* turn key exchange results into a blob for packet state serialization */
2219 static int
2220 newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2221 {
2222 	struct sshbuf *b;
2223 	struct sshcipher_ctx *cc;
2224 	struct sshcomp *comp;
2225 	struct sshenc *enc;
2226 	struct sshmac *mac;
2227 	struct newkeys *newkey;
2228 	int r;
2229 
2230 	if ((newkey = ssh->state->newkeys[mode]) == NULL)
2231 		return SSH_ERR_INTERNAL_ERROR;
2232 	enc = &newkey->enc;
2233 	mac = &newkey->mac;
2234 	comp = &newkey->comp;
2235 	cc = (mode == MODE_OUT) ? ssh->state->send_context :
2236 	    ssh->state->receive_context;
2237 	if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2238 		return r;
2239 	if ((b = sshbuf_new()) == NULL)
2240 		return SSH_ERR_ALLOC_FAIL;
2241 	if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
2242 	    (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2243 	    (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2244 	    (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2245 	    (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2246 		goto out;
2247 	if (cipher_authlen(enc->cipher) == 0) {
2248 		if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2249 		    (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2250 		    (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2251 			goto out;
2252 	}
2253 	if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
2254 	    (r = sshbuf_put_cstring(b, comp->name)) != 0)
2255 		goto out;
2256 	r = sshbuf_put_stringb(m, b);
2257  out:
2258 	sshbuf_free(b);
2259 	return r;
2260 }
2261 
2262 /* serialize packet state into a blob */
2263 int
2264 ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2265 {
2266 	struct session_state *state = ssh->state;
2267 	int r;
2268 
2269 	if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2270 	    (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2271 	    (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2272 	    (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2273 	    (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2274 	    (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2275 	    (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2276 	    (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2277 	    (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2278 	    (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2279 	    (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2280 	    (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
2281 	    (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2282 	    (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2283 	    (r = sshbuf_put_stringb(m, state->output)) != 0)
2284 		return r;
2285 
2286 	return 0;
2287 }
2288 
2289 /* restore key exchange results from blob for packet state de-serialization */
2290 static int
2291 newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2292 {
2293 	struct sshbuf *b = NULL;
2294 	struct sshcomp *comp;
2295 	struct sshenc *enc;
2296 	struct sshmac *mac;
2297 	struct newkeys *newkey = NULL;
2298 	size_t keylen, ivlen, maclen;
2299 	int r;
2300 
2301 	if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2302 		r = SSH_ERR_ALLOC_FAIL;
2303 		goto out;
2304 	}
2305 	if ((r = sshbuf_froms(m, &b)) != 0)
2306 		goto out;
2307 #ifdef DEBUG_PK
2308 	sshbuf_dump(b, stderr);
2309 #endif
2310 	enc = &newkey->enc;
2311 	mac = &newkey->mac;
2312 	comp = &newkey->comp;
2313 
2314 	if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
2315 	    (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2316 	    (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2317 	    (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2318 	    (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2319 		goto out;
2320 	if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2321 		r = SSH_ERR_INVALID_FORMAT;
2322 		goto out;
2323 	}
2324 	if (cipher_authlen(enc->cipher) == 0) {
2325 		if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2326 			goto out;
2327 		if ((r = mac_setup(mac, mac->name)) != 0)
2328 			goto out;
2329 		if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2330 		    (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2331 			goto out;
2332 		if (maclen > mac->key_len) {
2333 			r = SSH_ERR_INVALID_FORMAT;
2334 			goto out;
2335 		}
2336 		mac->key_len = maclen;
2337 	}
2338 	if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
2339 	    (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2340 		goto out;
2341 	if (sshbuf_len(b) != 0) {
2342 		r = SSH_ERR_INVALID_FORMAT;
2343 		goto out;
2344 	}
2345 	enc->key_len = keylen;
2346 	enc->iv_len = ivlen;
2347 	ssh->kex->newkeys[mode] = newkey;
2348 	newkey = NULL;
2349 	r = 0;
2350  out:
2351 	free(newkey);
2352 	sshbuf_free(b);
2353 	return r;
2354 }
2355 
2356 /* restore kex from blob for packet state de-serialization */
2357 static int
2358 kex_from_blob(struct sshbuf *m, struct kex **kexp)
2359 {
2360 	struct kex *kex;
2361 	int r;
2362 
2363 	if ((kex = kex_new()) == NULL)
2364 		return SSH_ERR_ALLOC_FAIL;
2365 	if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2366 	    (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
2367 	    (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 ||
2368 	    (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
2369 	    (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 ||
2370 	    (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2371 	    (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2372 	    (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
2373 	    (r = sshbuf_get_stringb(m, kex->client_version)) != 0 ||
2374 	    (r = sshbuf_get_stringb(m, kex->server_version)) != 0 ||
2375 	    (r = sshbuf_get_u32(m, &kex->flags)) != 0)
2376 		goto out;
2377 	kex->server = 1;
2378 	kex->done = 1;
2379 	r = 0;
2380  out:
2381 	if (r != 0 || kexp == NULL) {
2382 		kex_free(kex);
2383 		if (kexp != NULL)
2384 			*kexp = NULL;
2385 	} else {
2386 		kex_free(*kexp);
2387 		*kexp = kex;
2388 	}
2389 	return r;
2390 }
2391 
2392 /*
2393  * Restore packet state from content of blob 'm' (de-serialization).
2394  * Note that 'm' will be partially consumed on parsing or any other errors.
2395  */
2396 int
2397 ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2398 {
2399 	struct session_state *state = ssh->state;
2400 	const u_char *input, *output;
2401 	size_t ilen, olen;
2402 	int r;
2403 
2404 	if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2405 	    (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2406 	    (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2407 	    (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2408 	    (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2409 	    (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2410 	    (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2411 	    (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2412 	    (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2413 	    (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2414 	    (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2415 	    (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2416 	    (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2417 		return r;
2418 	/*
2419 	 * We set the time here so that in post-auth privsep child we
2420 	 * count from the completion of the authentication.
2421 	 */
2422 	state->rekey_time = monotime();
2423 	/* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2424 	if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2425 	    (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2426 		return r;
2427 
2428 	if ((r = ssh_packet_set_postauth(ssh)) != 0)
2429 		return r;
2430 
2431 	sshbuf_reset(state->input);
2432 	sshbuf_reset(state->output);
2433 	if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2434 	    (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2435 	    (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2436 	    (r = sshbuf_put(state->output, output, olen)) != 0)
2437 		return r;
2438 
2439 	if (sshbuf_len(m))
2440 		return SSH_ERR_INVALID_FORMAT;
2441 	debug3("%s: done", __func__);
2442 	return 0;
2443 }
2444 
2445 /* NEW API */
2446 
2447 /* put data to the outgoing packet */
2448 
2449 int
2450 sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2451 {
2452 	return sshbuf_put(ssh->state->outgoing_packet, v, len);
2453 }
2454 
2455 int
2456 sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2457 {
2458 	return sshbuf_putb(ssh->state->outgoing_packet, b);
2459 }
2460 
2461 int
2462 sshpkt_put_u8(struct ssh *ssh, u_char val)
2463 {
2464 	return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2465 }
2466 
2467 int
2468 sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2469 {
2470 	return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2471 }
2472 
2473 int
2474 sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2475 {
2476 	return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2477 }
2478 
2479 int
2480 sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2481 {
2482 	return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2483 }
2484 
2485 int
2486 sshpkt_put_cstring(struct ssh *ssh, const void *v)
2487 {
2488 	return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2489 }
2490 
2491 int
2492 sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2493 {
2494 	return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2495 }
2496 
2497 #ifdef WITH_OPENSSL
2498 int
2499 sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2500 {
2501 	return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2502 }
2503 
2504 
2505 int
2506 sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2507 {
2508 	return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2509 }
2510 #endif /* WITH_OPENSSL */
2511 
2512 /* fetch data from the incoming packet */
2513 
2514 int
2515 sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2516 {
2517 	return sshbuf_get(ssh->state->incoming_packet, valp, len);
2518 }
2519 
2520 int
2521 sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2522 {
2523 	return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2524 }
2525 
2526 int
2527 sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2528 {
2529 	return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2530 }
2531 
2532 int
2533 sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2534 {
2535 	return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2536 }
2537 
2538 int
2539 sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2540 {
2541 	return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2542 }
2543 
2544 int
2545 sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2546 {
2547 	return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2548 }
2549 
2550 int
2551 sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2552 {
2553 	return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp);
2554 }
2555 
2556 int
2557 sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2558 {
2559 	return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2560 }
2561 
2562 int
2563 sshpkt_getb_froms(struct ssh *ssh, struct sshbuf **valp)
2564 {
2565 	return sshbuf_froms(ssh->state->incoming_packet, valp);
2566 }
2567 
2568 #ifdef WITH_OPENSSL
2569 int
2570 sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2571 {
2572 	return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2573 }
2574 
2575 int
2576 sshpkt_get_bignum2(struct ssh *ssh, BIGNUM **valp)
2577 {
2578 	return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
2579 }
2580 #endif /* WITH_OPENSSL */
2581 
2582 int
2583 sshpkt_get_end(struct ssh *ssh)
2584 {
2585 	if (sshbuf_len(ssh->state->incoming_packet) > 0)
2586 		return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2587 	return 0;
2588 }
2589 
2590 const u_char *
2591 sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2592 {
2593 	if (lenp != NULL)
2594 		*lenp = sshbuf_len(ssh->state->incoming_packet);
2595 	return sshbuf_ptr(ssh->state->incoming_packet);
2596 }
2597 
2598 /* start a new packet */
2599 
2600 int
2601 sshpkt_start(struct ssh *ssh, u_char type)
2602 {
2603 	u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
2604 
2605 	DBG(debug("packet_start[%d]", type));
2606 	memset(buf, 0, sizeof(buf));
2607 	buf[sizeof(buf) - 1] = type;
2608 	sshbuf_reset(ssh->state->outgoing_packet);
2609 	return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
2610 }
2611 
2612 static int
2613 ssh_packet_send_mux(struct ssh *ssh)
2614 {
2615 	struct session_state *state = ssh->state;
2616 	u_char type, *cp;
2617 	size_t len;
2618 	int r;
2619 
2620 	if (ssh->kex)
2621 		return SSH_ERR_INTERNAL_ERROR;
2622 	len = sshbuf_len(state->outgoing_packet);
2623 	if (len < 6)
2624 		return SSH_ERR_INTERNAL_ERROR;
2625 	cp = sshbuf_mutable_ptr(state->outgoing_packet);
2626 	type = cp[5];
2627 	if (ssh_packet_log_type(type))
2628 		debug3("%s: type %u", __func__, type);
2629 	/* drop everything, but the connection protocol */
2630 	if (type >= SSH2_MSG_CONNECTION_MIN &&
2631 	    type <= SSH2_MSG_CONNECTION_MAX) {
2632 		POKE_U32(cp, len - 4);
2633 		if ((r = sshbuf_putb(state->output,
2634 		    state->outgoing_packet)) != 0)
2635 			return r;
2636 		/* sshbuf_dump(state->output, stderr); */
2637 	}
2638 	sshbuf_reset(state->outgoing_packet);
2639 	return 0;
2640 }
2641 
2642 /*
2643  * 9.2.  Ignored Data Message
2644  *
2645  *   byte      SSH_MSG_IGNORE
2646  *   string    data
2647  *
2648  * All implementations MUST understand (and ignore) this message at any
2649  * time (after receiving the protocol version). No implementation is
2650  * required to send them. This message can be used as an additional
2651  * protection measure against advanced traffic analysis techniques.
2652  */
2653 int
2654 sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes)
2655 {
2656 	u_int32_t rnd = 0;
2657 	int r;
2658 	u_int i;
2659 
2660 	if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
2661 	    (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2662 		return r;
2663 	for (i = 0; i < nbytes; i++) {
2664 		if (i % 4 == 0)
2665 			rnd = arc4random();
2666 		if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2667 			return r;
2668 		rnd >>= 8;
2669 	}
2670 	return 0;
2671 }
2672 
2673 /* send it */
2674 
2675 int
2676 sshpkt_send(struct ssh *ssh)
2677 {
2678 	if (ssh->state && ssh->state->mux)
2679 		return ssh_packet_send_mux(ssh);
2680 	return ssh_packet_send2(ssh);
2681 }
2682 
2683 int
2684 sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2685 {
2686 	char buf[1024];
2687 	va_list args;
2688 	int r;
2689 
2690 	va_start(args, fmt);
2691 	vsnprintf(buf, sizeof(buf), fmt, args);
2692 	va_end(args);
2693 
2694 	if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2695 	    (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2696 	    (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2697 	    (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2698 	    (r = sshpkt_send(ssh)) != 0)
2699 		return r;
2700 	return 0;
2701 }
2702 
2703 /* roundup current message to pad bytes */
2704 int
2705 sshpkt_add_padding(struct ssh *ssh, u_char pad)
2706 {
2707 	ssh->state->extra_pad = pad;
2708 	return 0;
2709 }
2710