blob: 36e352b4466dbb512ffbeeb2e57666d150b84107 [file] [log] [blame]
djm@openbsd.orge9552d62019-03-01 03:29:32 +00001/* $OpenBSD: packet.c,v 1.283 2019/03/01 03:29:32 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * 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.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
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.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +000041
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/types.h>
Damien Millera0898b82003-04-09 21:05:52 +100043#include "openbsd-compat/sys-queue.h"
Damien Miller8ec8c3e2006-07-10 20:35:38 +100044#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100045#ifdef HAVE_SYS_TIME_H
46# include <sys/time.h>
47#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100048
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110050#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100051#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Darren Tucker39972492006-07-12 22:22:46 +100053#include <errno.h>
djm@openbsd.org95767262016-03-07 19:02:43 +000054#include <netdb.h>
Darren Tucker5d196262006-07-12 22:15:16 +100055#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100056#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100059#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000060#include <limits.h>
djm@openbsd.org0a843d92018-12-27 03:25:24 +000061#include <poll.h>
Damien Millerd7834352006-08-05 12:39:39 +100062#include <signal.h>
Darren Tuckerc53c2af2013-05-16 20:28:16 +100063#include <time.h>
Darren Tucker5d196262006-07-12 22:15:16 +100064
Darren Tuckerc77bc732018-07-20 13:48:51 +100065/*
66 * Explicitly include OpenSSL before zlib as some versions of OpenSSL have
67 * "free_func" in their headers, which zlib typedefs.
68 */
69#ifdef WITH_OPENSSL
70# include <openssl/bn.h>
71# include <openssl/evp.h>
72# ifdef OPENSSL_HAS_ECC
73# include <openssl/ec.h>
74# endif
75#endif
76
markus@openbsd.org091c3022015-01-19 19:52:16 +000077#include <zlib.h>
78
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "crc32.h"
Damien Miller33b13562000-04-04 14:38:59 +100081#include "compat.h"
82#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110083#include "cipher.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000084#include "sshkey.h"
Damien Miller33b13562000-04-04 14:38:59 +100085#include "kex.h"
markus@openbsd.org128343b2015-01-13 19:31:40 +000086#include "digest.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000087#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "log.h"
89#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110090#include "misc.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100091#include "channels.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000092#include "ssh.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000093#include "packet.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000094#include "ssherr.h"
95#include "sshbuf.h"
Damien Miller33b13562000-04-04 14:38:59 +100096
97#ifdef PACKET_DEBUG
98#define DBG(x) x
99#else
100#define DBG(x)
101#endif
102
Damien Miller13ae44c2009-01-28 16:38:41 +1100103#define PACKET_MAX_SIZE (256 * 1024)
104
Darren Tuckerf7288d72009-06-21 18:12:20 +1000105struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +1000106 u_int32_t seqnr;
107 u_int32_t packets;
108 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000109 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000110};
Damien Miller13ae44c2009-01-28 16:38:41 +1100111
Damien Millera5539d22003-04-09 20:50:06 +1000112struct packet {
113 TAILQ_ENTRY(packet) next;
114 u_char type;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000115 struct sshbuf *payload;
Damien Millera5539d22003-04-09 20:50:06 +1000116};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000117
118struct session_state {
119 /*
120 * This variable contains the file descriptors used for
121 * communicating with the other side. connection_in is used for
122 * reading; connection_out for writing. These can be the same
123 * descriptor, in which case it is assumed to be a socket.
124 */
125 int connection_in;
126 int connection_out;
127
128 /* Protocol flags for the remote side. */
129 u_int remote_protocol_flags;
130
131 /* Encryption context for receiving data. Only used for decryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000132 struct sshcipher_ctx *receive_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000133
134 /* Encryption context for sending data. Only used for encryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000135 struct sshcipher_ctx *send_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000136
137 /* Buffer for raw input data from the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000138 struct sshbuf *input;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000139
140 /* Buffer for raw output data going to the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000141 struct sshbuf *output;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000142
143 /* Buffer for the partial outgoing packet being constructed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000144 struct sshbuf *outgoing_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000145
146 /* Buffer for the incoming packet currently being processed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000147 struct sshbuf *incoming_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000148
149 /* Scratch buffer for packet compression/decompression. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000150 struct sshbuf *compression_buffer;
151
152 /* Incoming/outgoing compression dictionaries */
153 z_stream compression_in_stream;
154 z_stream compression_out_stream;
155 int compression_in_started;
156 int compression_out_started;
157 int compression_in_failures;
158 int compression_out_failures;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000159
Darren Tuckerf7288d72009-06-21 18:12:20 +1000160 /* default maximum packet size */
161 u_int max_packet_size;
162
163 /* Flag indicating whether this module has been initialized. */
164 int initialized;
165
166 /* Set to true if the connection is interactive. */
167 int interactive_mode;
168
169 /* Set to true if we are the server side. */
170 int server_side;
171
172 /* Set to true if we are authenticated. */
173 int after_authentication;
174
175 int keep_alive_timeouts;
176
177 /* The maximum time that we will wait to send or receive a packet */
178 int packet_timeout_ms;
179
180 /* Session key information for Encryption and MAC */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000181 struct newkeys *newkeys[MODE_MAX];
Darren Tuckerf7288d72009-06-21 18:12:20 +1000182 struct packet_state p_read, p_send;
183
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000184 /* Volume-based rekeying */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +0000185 u_int64_t max_blocks_in, max_blocks_out, rekey_limit;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000186
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000187 /* Time-based rekeying */
markus@openbsd.org02db4682015-02-13 18:57:00 +0000188 u_int32_t rekey_interval; /* how often in seconds */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000189 time_t rekey_time; /* time of last rekeying */
190
Darren Tuckerf7288d72009-06-21 18:12:20 +1000191 /* roundup current message to extra_pad bytes */
192 u_char extra_pad;
193
194 /* XXX discard incoming data after MAC error */
195 u_int packet_discard;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000196 size_t packet_discard_mac_already;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000197 struct sshmac *packet_discard_mac;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000198
199 /* Used in packet_read_poll2() */
200 u_int packlen;
201
Darren Tucker7b935c72009-06-21 18:59:36 +1000202 /* Used in packet_send2 */
203 int rekeying;
204
markus@openbsd.org8d057842016-09-30 09:19:13 +0000205 /* Used in ssh_packet_send_mux() */
206 int mux;
207
Darren Tucker7b935c72009-06-21 18:59:36 +1000208 /* Used in packet_set_interactive */
209 int set_interactive_called;
210
211 /* Used in packet_set_maxsize */
212 int set_maxsize_called;
213
markus@openbsd.org091c3022015-01-19 19:52:16 +0000214 /* One-off warning about weak ciphers */
215 int cipher_warning_done;
216
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000217 /* Hook for fuzzing inbound packets */
218 ssh_packet_hook_fn *hook_in;
219 void *hook_in_ctx;
220
Darren Tuckerf7288d72009-06-21 18:12:20 +1000221 TAILQ_HEAD(, packet) outgoing;
222};
223
markus@openbsd.org091c3022015-01-19 19:52:16 +0000224struct ssh *
225ssh_alloc_session_state(void)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000226{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000227 struct ssh *ssh = NULL;
228 struct session_state *state = NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000229
markus@openbsd.org091c3022015-01-19 19:52:16 +0000230 if ((ssh = calloc(1, sizeof(*ssh))) == NULL ||
231 (state = calloc(1, sizeof(*state))) == NULL ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000232 (ssh->kex = kex_new()) == NULL ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000233 (state->input = sshbuf_new()) == NULL ||
234 (state->output = sshbuf_new()) == NULL ||
235 (state->outgoing_packet = sshbuf_new()) == NULL ||
236 (state->incoming_packet = sshbuf_new()) == NULL)
237 goto fail;
238 TAILQ_INIT(&state->outgoing);
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +0000239 TAILQ_INIT(&ssh->private_keys);
240 TAILQ_INIT(&ssh->public_keys);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000241 state->connection_in = -1;
242 state->connection_out = -1;
243 state->max_packet_size = 32768;
244 state->packet_timeout_ms = -1;
245 state->p_send.packets = state->p_read.packets = 0;
246 state->initialized = 1;
247 /*
248 * ssh_packet_send2() needs to queue packets until
249 * we've done the initial key exchange.
250 */
251 state->rekeying = 1;
252 ssh->state = state;
253 return ssh;
254 fail:
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000255 if (ssh) {
256 kex_free(ssh->kex);
257 free(ssh);
258 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000259 if (state) {
260 sshbuf_free(state->input);
261 sshbuf_free(state->output);
262 sshbuf_free(state->incoming_packet);
263 sshbuf_free(state->outgoing_packet);
264 free(state);
265 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000266 return NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000267}
Damien Millera5539d22003-04-09 20:50:06 +1000268
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000269void
270ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
271{
272 ssh->state->hook_in = hook;
273 ssh->state->hook_in_ctx = ctx;
274}
275
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000276/* Returns nonzero if rekeying is in progress */
277int
278ssh_packet_is_rekeying(struct ssh *ssh)
279{
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000280 return ssh->state->rekeying || ssh->kex->done == 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000281}
282
Damien Miller5428f641999-11-25 11:54:57 +1100283/*
naddy@openbsd.org768405f2017-05-03 21:08:09 +0000284 * Sets the descriptors used for communication.
Damien Miller5428f641999-11-25 11:54:57 +1100285 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000286struct ssh *
287ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000289 struct session_state *state;
290 const struct sshcipher *none = cipher_by_name("none");
Damien Miller86687062014-07-02 15:28:02 +1000291 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000292
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000293 if (none == NULL) {
294 error("%s: cannot load cipher 'none'", __func__);
295 return NULL;
296 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000297 if (ssh == NULL)
298 ssh = ssh_alloc_session_state();
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000299 if (ssh == NULL) {
300 error("%s: cound not allocate state", __func__);
301 return NULL;
302 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000303 state = ssh->state;
304 state->connection_in = fd_in;
305 state->connection_out = fd_out;
306 if ((r = cipher_init(&state->send_context, none,
Damien Miller86687062014-07-02 15:28:02 +1000307 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000308 (r = cipher_init(&state->receive_context, none,
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000309 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
310 error("%s: cipher_init failed: %s", __func__, ssh_err(r));
djm@openbsd.org95767262016-03-07 19:02:43 +0000311 free(ssh); /* XXX need ssh_free_session_state? */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000312 return NULL;
313 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000314 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
djm@openbsd.orgd4c02952015-02-11 01:20:38 +0000315 /*
316 * Cache the IP address of the remote connection for use in error
317 * messages that might be generated after the connection has closed.
318 */
319 (void)ssh_remote_ipaddr(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000320 return ssh;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321}
322
Darren Tucker3fc464e2008-06-13 06:42:45 +1000323void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000324ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000325{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000326 struct session_state *state = ssh->state;
327
Damien Miller8ed4de82011-12-19 10:52:50 +1100328 if (timeout <= 0 || count <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000329 state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000330 return;
331 }
332 if ((INT_MAX / 1000) / count < timeout)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000333 state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000334 else
markus@openbsd.org091c3022015-01-19 19:52:16 +0000335 state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000336}
337
markus@openbsd.org8d057842016-09-30 09:19:13 +0000338void
339ssh_packet_set_mux(struct ssh *ssh)
340{
341 ssh->state->mux = 1;
342 ssh->state->rekeying = 0;
343}
344
345int
346ssh_packet_get_mux(struct ssh *ssh)
347{
348 return ssh->state->mux;
349}
350
markus@openbsd.org091c3022015-01-19 19:52:16 +0000351int
djm@openbsd.org07edd7e2017-02-03 23:03:33 +0000352ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
353{
354 va_list args;
355 int r;
356
357 free(ssh->log_preamble);
358 if (fmt == NULL)
359 ssh->log_preamble = NULL;
360 else {
361 va_start(args, fmt);
362 r = vasprintf(&ssh->log_preamble, fmt, args);
363 va_end(args);
364 if (r < 0 || ssh->log_preamble == NULL)
365 return SSH_ERR_ALLOC_FAIL;
366 }
367 return 0;
368}
369
370int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000371ssh_packet_stop_discard(struct ssh *ssh)
Damien Miller13ae44c2009-01-28 16:38:41 +1100372{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000373 struct session_state *state = ssh->state;
374 int r;
375
376 if (state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100377 char buf[1024];
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000378 size_t dlen = PACKET_MAX_SIZE;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000379
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000380 if (dlen > state->packet_discard_mac_already)
381 dlen -= state->packet_discard_mac_already;
Damien Miller13ae44c2009-01-28 16:38:41 +1100382 memset(buf, 'a', sizeof(buf));
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000383 while (sshbuf_len(state->incoming_packet) < dlen)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000384 if ((r = sshbuf_put(state->incoming_packet, buf,
385 sizeof(buf))) != 0)
386 return r;
387 (void) mac_compute(state->packet_discard_mac,
388 state->p_read.seqnr,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000389 sshbuf_ptr(state->incoming_packet), dlen,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000390 NULL, 0);
Damien Miller13ae44c2009-01-28 16:38:41 +1100391 }
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000392 logit("Finished discarding for %.200s port %d",
393 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000394 return SSH_ERR_MAC_INVALID;
Damien Miller13ae44c2009-01-28 16:38:41 +1100395}
396
markus@openbsd.org091c3022015-01-19 19:52:16 +0000397static int
398ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000399 struct sshmac *mac, size_t mac_already, u_int discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100400{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000401 struct session_state *state = ssh->state;
402 int r;
403
404 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
405 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
406 return r;
407 return SSH_ERR_MAC_INVALID;
408 }
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000409 /*
410 * Record number of bytes over which the mac has already
411 * been computed in order to minimize timing attacks.
412 */
413 if (mac && mac->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000414 state->packet_discard_mac = mac;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000415 state->packet_discard_mac_already = mac_already;
416 }
417 if (sshbuf_len(state->input) >= discard)
418 return ssh_packet_stop_discard(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000419 state->packet_discard = discard - sshbuf_len(state->input);
420 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +1100421}
422
Damien Miller34132e52000-01-14 15:45:46 +1100423/* Returns 1 if remote host is connected via socket, 0 if not. */
424
425int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000426ssh_packet_connection_is_on_socket(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100427{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000428 struct session_state *state;
Damien Miller34132e52000-01-14 15:45:46 +1100429 struct sockaddr_storage from, to;
430 socklen_t fromlen, tolen;
431
djm@openbsd.org854ae202018-06-01 04:05:29 +0000432 if (ssh == NULL || ssh->state == NULL)
djm@openbsd.org95767262016-03-07 19:02:43 +0000433 return 0;
434
djm@openbsd.org854ae202018-06-01 04:05:29 +0000435 state = ssh->state;
436 if (state->connection_in == -1 || state->connection_out == -1)
437 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100438 /* filedescriptors in and out are the same, so it's a socket */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000439 if (state->connection_in == state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100440 return 1;
441 fromlen = sizeof(from);
442 memset(&from, 0, sizeof(from));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000443 if (getpeername(state->connection_in, (struct sockaddr *)&from,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000444 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100445 return 0;
446 tolen = sizeof(to);
447 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000448 if (getpeername(state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000449 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100450 return 0;
451 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
452 return 0;
453 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
454 return 0;
455 return 1;
456}
457
Ben Lindstromf6027d32002-03-22 01:42:04 +0000458void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000459ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000460{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000461 if (ibytes)
462 *ibytes = ssh->state->p_read.bytes;
463 if (obytes)
464 *obytes = ssh->state->p_send.bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000465}
466
467int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000468ssh_packet_connection_af(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100469{
470 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100471 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100472
473 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000474 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000475 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100476 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000477#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100478 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000479 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000480 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000481#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000482 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100483}
484
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485/* Sets the connection into non-blocking mode. */
486
487void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000488ssh_packet_set_nonblocking(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489{
Damien Miller95def091999-11-25 00:26:21 +1100490 /* Set the socket into non-blocking mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000491 set_nonblock(ssh->state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
markus@openbsd.org091c3022015-01-19 19:52:16 +0000493 if (ssh->state->connection_out != ssh->state->connection_in)
494 set_nonblock(ssh->state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495}
496
497/* Returns the socket used for reading. */
498
499int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000500ssh_packet_get_connection_in(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000502 return ssh->state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503}
504
505/* Returns the descriptor used for writing. */
506
507int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000508ssh_packet_get_connection_out(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000510 return ssh->state->connection_out;
511}
512
513/*
514 * Returns the IP-address of the remote host as a string. The returned
515 * string must not be freed.
516 */
517
518const char *
519ssh_remote_ipaddr(struct ssh *ssh)
520{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000521 int sock;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000522
markus@openbsd.org091c3022015-01-19 19:52:16 +0000523 /* Check whether we have cached the ipaddr. */
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000524 if (ssh->remote_ipaddr == NULL) {
525 if (ssh_packet_connection_is_on_socket(ssh)) {
djm@openbsd.org854ae202018-06-01 04:05:29 +0000526 sock = ssh->state->connection_in;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000527 ssh->remote_ipaddr = get_peer_ipaddr(sock);
djm@openbsd.org95767262016-03-07 19:02:43 +0000528 ssh->remote_port = get_peer_port(sock);
529 ssh->local_ipaddr = get_local_ipaddr(sock);
530 ssh->local_port = get_local_port(sock);
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000531 } else {
532 ssh->remote_ipaddr = strdup("UNKNOWN");
djm@openbsd.org95767262016-03-07 19:02:43 +0000533 ssh->remote_port = 65535;
534 ssh->local_ipaddr = strdup("UNKNOWN");
535 ssh->local_port = 65535;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000536 }
537 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000538 return ssh->remote_ipaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539}
540
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000541/* Returns the port number of the remote host. */
542
543int
544ssh_remote_port(struct ssh *ssh)
545{
546 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
547 return ssh->remote_port;
548}
549
djm@openbsd.org95767262016-03-07 19:02:43 +0000550/*
551 * Returns the IP-address of the local host as a string. The returned
552 * string must not be freed.
553 */
554
555const char *
556ssh_local_ipaddr(struct ssh *ssh)
557{
558 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
559 return ssh->local_ipaddr;
560}
561
562/* Returns the port number of the local host. */
563
564int
565ssh_local_port(struct ssh *ssh)
566{
567 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
568 return ssh->local_port;
569}
570
djm@openbsd.org35eb33f2017-10-25 00:17:08 +0000571/* Returns the routing domain of the input socket, or NULL if unavailable */
572const char *
573ssh_packet_rdomain_in(struct ssh *ssh)
574{
575 if (ssh->rdomain_in != NULL)
576 return ssh->rdomain_in;
577 if (!ssh_packet_connection_is_on_socket(ssh))
578 return NULL;
579 ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
580 return ssh->rdomain_in;
581}
582
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583/* Closes the connection and clears and frees internal data structures. */
584
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000585static void
586ssh_packet_close_internal(struct ssh *ssh, int do_close)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000588 struct session_state *state = ssh->state;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000589 u_int mode;
590
591 if (!state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100592 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000593 state->initialized = 0;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000594 if (do_close) {
595 if (state->connection_in == state->connection_out) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000596 close(state->connection_out);
597 } else {
598 close(state->connection_in);
599 close(state->connection_out);
600 }
Damien Miller95def091999-11-25 00:26:21 +1100601 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000602 sshbuf_free(state->input);
603 sshbuf_free(state->output);
604 sshbuf_free(state->outgoing_packet);
605 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000606 for (mode = 0; mode < MODE_MAX; mode++) {
607 kex_free_newkeys(state->newkeys[mode]); /* current keys */
608 state->newkeys[mode] = NULL;
609 ssh_clear_newkeys(ssh, mode); /* next keys */
610 }
Damien Miller10479cc2018-04-10 10:19:02 +1000611 /* compression state is in shared mem, so we can only release it once */
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000612 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000613 sshbuf_free(state->compression_buffer);
614 if (state->compression_out_started) {
615 z_streamp stream = &state->compression_out_stream;
616 debug("compress outgoing: "
617 "raw data %llu, compressed %llu, factor %.2f",
618 (unsigned long long)stream->total_in,
619 (unsigned long long)stream->total_out,
620 stream->total_in == 0 ? 0.0 :
621 (double) stream->total_out / stream->total_in);
622 if (state->compression_out_failures == 0)
623 deflateEnd(stream);
624 }
625 if (state->compression_in_started) {
dtucker@openbsd.org550c0532017-06-06 09:12:17 +0000626 z_streamp stream = &state->compression_in_stream;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000627 debug("compress incoming: "
628 "raw data %llu, compressed %llu, factor %.2f",
629 (unsigned long long)stream->total_out,
630 (unsigned long long)stream->total_in,
631 stream->total_out == 0 ? 0.0 :
632 (double) stream->total_in / stream->total_out);
633 if (state->compression_in_failures == 0)
634 inflateEnd(stream);
635 }
Damien Miller95def091999-11-25 00:26:21 +1100636 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000637 cipher_free(state->send_context);
638 cipher_free(state->receive_context);
639 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000640 if (do_close) {
djm@openbsd.orgde2997a2018-07-16 03:09:13 +0000641 free(ssh->local_ipaddr);
642 ssh->local_ipaddr = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000643 free(ssh->remote_ipaddr);
644 ssh->remote_ipaddr = NULL;
645 free(ssh->state);
646 ssh->state = NULL;
647 }
648}
649
650void
651ssh_packet_close(struct ssh *ssh)
652{
653 ssh_packet_close_internal(ssh, 1);
654}
655
656void
657ssh_packet_clear_keys(struct ssh *ssh)
658{
659 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660}
661
662/* Sets remote side protocol flags. */
663
664void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000665ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000667 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668}
669
670/* Returns the remote protocol flags set earlier by the above function. */
671
Ben Lindstrom46c16222000-12-22 01:43:59 +0000672u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000673ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000675 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676}
677
Damien Miller5428f641999-11-25 11:54:57 +1100678/*
679 * Starts packet compression from the next packet on in both directions.
680 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
681 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000682
markus@openbsd.org091c3022015-01-19 19:52:16 +0000683static int
684ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000685{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000686 if (!ssh->state->compression_buffer &&
687 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
688 return SSH_ERR_ALLOC_FAIL;
689 return 0;
690}
691
692static int
693start_compression_out(struct ssh *ssh, int level)
694{
695 if (level < 1 || level > 9)
696 return SSH_ERR_INVALID_ARGUMENT;
697 debug("Enabling compression at level %d.", level);
698 if (ssh->state->compression_out_started == 1)
699 deflateEnd(&ssh->state->compression_out_stream);
700 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
701 case Z_OK:
702 ssh->state->compression_out_started = 1;
703 break;
704 case Z_MEM_ERROR:
705 return SSH_ERR_ALLOC_FAIL;
706 default:
707 return SSH_ERR_INTERNAL_ERROR;
708 }
709 return 0;
710}
711
712static int
713start_compression_in(struct ssh *ssh)
714{
715 if (ssh->state->compression_in_started == 1)
716 inflateEnd(&ssh->state->compression_in_stream);
717 switch (inflateInit(&ssh->state->compression_in_stream)) {
718 case Z_OK:
719 ssh->state->compression_in_started = 1;
720 break;
721 case Z_MEM_ERROR:
722 return SSH_ERR_ALLOC_FAIL;
723 default:
724 return SSH_ERR_INTERNAL_ERROR;
725 }
726 return 0;
727}
728
markus@openbsd.org091c3022015-01-19 19:52:16 +0000729/* XXX remove need for separate compression buffer */
730static int
731compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
732{
733 u_char buf[4096];
734 int r, status;
735
736 if (ssh->state->compression_out_started != 1)
737 return SSH_ERR_INTERNAL_ERROR;
738
739 /* This case is not handled below. */
740 if (sshbuf_len(in) == 0)
741 return 0;
742
743 /* Input is the contents of the input buffer. */
744 if ((ssh->state->compression_out_stream.next_in =
745 sshbuf_mutable_ptr(in)) == NULL)
746 return SSH_ERR_INTERNAL_ERROR;
747 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
748
749 /* Loop compressing until deflate() returns with avail_out != 0. */
750 do {
751 /* Set up fixed-size output buffer. */
752 ssh->state->compression_out_stream.next_out = buf;
753 ssh->state->compression_out_stream.avail_out = sizeof(buf);
754
755 /* Compress as much data into the buffer as possible. */
756 status = deflate(&ssh->state->compression_out_stream,
757 Z_PARTIAL_FLUSH);
758 switch (status) {
759 case Z_MEM_ERROR:
760 return SSH_ERR_ALLOC_FAIL;
761 case Z_OK:
762 /* Append compressed data to output_buffer. */
763 if ((r = sshbuf_put(out, buf, sizeof(buf) -
764 ssh->state->compression_out_stream.avail_out)) != 0)
765 return r;
766 break;
767 case Z_STREAM_ERROR:
768 default:
769 ssh->state->compression_out_failures++;
770 return SSH_ERR_INVALID_FORMAT;
771 }
772 } while (ssh->state->compression_out_stream.avail_out == 0);
773 return 0;
774}
775
776static int
777uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
778{
779 u_char buf[4096];
780 int r, status;
781
782 if (ssh->state->compression_in_started != 1)
783 return SSH_ERR_INTERNAL_ERROR;
784
785 if ((ssh->state->compression_in_stream.next_in =
786 sshbuf_mutable_ptr(in)) == NULL)
787 return SSH_ERR_INTERNAL_ERROR;
788 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
789
790 for (;;) {
791 /* Set up fixed-size output buffer. */
792 ssh->state->compression_in_stream.next_out = buf;
793 ssh->state->compression_in_stream.avail_out = sizeof(buf);
794
795 status = inflate(&ssh->state->compression_in_stream,
796 Z_PARTIAL_FLUSH);
797 switch (status) {
798 case Z_OK:
799 if ((r = sshbuf_put(out, buf, sizeof(buf) -
800 ssh->state->compression_in_stream.avail_out)) != 0)
801 return r;
802 break;
803 case Z_BUF_ERROR:
804 /*
805 * Comments in zlib.h say that we should keep calling
806 * inflate() until we get an error. This appears to
807 * be the error that we get.
808 */
809 return 0;
810 case Z_DATA_ERROR:
811 return SSH_ERR_INVALID_FORMAT;
812 case Z_MEM_ERROR:
813 return SSH_ERR_ALLOC_FAIL;
814 case Z_STREAM_ERROR:
815 default:
816 ssh->state->compression_in_failures++;
817 return SSH_ERR_INTERNAL_ERROR;
818 }
819 }
820 /* NOTREACHED */
821}
822
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000823void
824ssh_clear_newkeys(struct ssh *ssh, int mode)
825{
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000826 if (ssh->kex && ssh->kex->newkeys[mode]) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000827 kex_free_newkeys(ssh->kex->newkeys[mode]);
828 ssh->kex->newkeys[mode] = NULL;
829 }
830}
831
markus@openbsd.org091c3022015-01-19 19:52:16 +0000832int
833ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000834{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000835 struct session_state *state = ssh->state;
836 struct sshenc *enc;
837 struct sshmac *mac;
838 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000839 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000840 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000841 u_int64_t *max_blocks;
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000842 const char *wmsg;
Damien Miller86687062014-07-02 15:28:02 +1000843 int r, crypt_type;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000844 const char *dir = mode == MODE_OUT ? "out" : "in";
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000845
Ben Lindstrom064496f2002-12-23 02:04:22 +0000846 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000847
Damien Miller963f6b22002-02-19 15:21:23 +1100848 if (mode == MODE_OUT) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000849 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000850 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000851 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000852 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100853 } else {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000854 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000855 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000856 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000857 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100858 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000859 if (state->newkeys[mode] != NULL) {
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000860 debug("%s: rekeying %s, input %llu bytes %llu blocks, "
861 "output %llu bytes %llu blocks", __func__, dir,
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000862 (unsigned long long)state->p_read.bytes,
863 (unsigned long long)state->p_read.blocks,
864 (unsigned long long)state->p_send.bytes,
865 (unsigned long long)state->p_send.blocks);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000866 kex_free_newkeys(state->newkeys[mode]);
867 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000868 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000869 /* note that both bytes and the seqnr are not reset */
870 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000871 /* move newkeys from kex to state */
872 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
873 return SSH_ERR_INTERNAL_ERROR;
874 ssh->kex->newkeys[mode] = NULL;
875 enc = &state->newkeys[mode]->enc;
876 mac = &state->newkeys[mode]->mac;
877 comp = &state->newkeys[mode]->comp;
878 if (cipher_authlen(enc->cipher) == 0) {
879 if ((r = mac_init(mac)) != 0)
880 return r;
881 }
882 mac->enabled = 1;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000883 DBG(debug("%s: cipher_init_context: %s", __func__, dir));
djm@openbsd.org8a818342019-01-04 03:23:00 +0000884 cipher_free(*ccp);
885 *ccp = NULL;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000886 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000887 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000888 return r;
889 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000890 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000891 error("Warning: %s", wmsg);
892 state->cipher_warning_done = 1;
893 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000894 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100895 /* explicit_bzero(enc->iv, enc->block_size);
896 explicit_bzero(enc->key, enc->key_len);
897 explicit_bzero(mac->key, mac->key_len); */
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000898 if ((comp->type == COMP_ZLIB ||
899 (comp->type == COMP_DELAYED &&
900 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000901 if ((r = ssh_packet_init_compression(ssh)) < 0)
902 return r;
903 if (mode == MODE_OUT) {
904 if ((r = start_compression_out(ssh, 6)) != 0)
905 return r;
906 } else {
907 if ((r = start_compression_in(ssh)) != 0)
908 return r;
909 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000910 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000911 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000912 /*
913 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000914 * so enforce a 1GB limit for small blocksizes.
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000915 * See RFC4344 section 3.2.
Darren Tucker81a0b372003-07-14 17:31:06 +1000916 */
917 if (enc->block_size >= 16)
918 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
919 else
920 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000921 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000922 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000923 state->rekey_limit / enc->block_size);
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000924 debug("rekey %s after %llu blocks", dir,
925 (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000926 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000927}
928
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000929#define MAX_PACKETS (1U<<31)
930static int
931ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
932{
933 struct session_state *state = ssh->state;
934 u_int32_t out_blocks;
935
936 /* XXX client can't cope with rekeying pre-auth */
937 if (!state->after_authentication)
938 return 0;
939
940 /* Haven't keyed yet or KEX in progress. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000941 if (ssh_packet_is_rekeying(ssh))
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000942 return 0;
943
944 /* Peer can't rekey */
945 if (ssh->compat & SSH_BUG_NOREKEY)
946 return 0;
947
948 /*
949 * Permit one packet in or out per rekey - this allows us to
950 * make progress when rekey limits are very small.
951 */
952 if (state->p_send.packets == 0 && state->p_read.packets == 0)
953 return 0;
954
955 /* Time-based rekeying */
956 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000957 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000958 return 1;
959
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000960 /*
961 * Always rekey when MAX_PACKETS sent in either direction
962 * As per RFC4344 section 3.1 we do this after 2^31 packets.
963 */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000964 if (state->p_send.packets > MAX_PACKETS ||
965 state->p_read.packets > MAX_PACKETS)
966 return 1;
967
Damien Miller10479cc2018-04-10 10:19:02 +1000968 /* Rekey after (cipher-specific) maximum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000969 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000970 state->newkeys[MODE_OUT]->enc.block_size);
971 return (state->max_blocks_out &&
972 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
973 (state->max_blocks_in &&
974 (state->p_read.blocks > state->max_blocks_in));
975}
976
Damien Miller5428f641999-11-25 11:54:57 +1100977/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000978 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000979 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000980 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
981 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000982static int
983ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000984{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000985 struct session_state *state = ssh->state;
986 struct sshcomp *comp = NULL;
987 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000988
989 /*
990 * Remember that we are past the authentication step, so rekeying
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000991 * with COMP_DELAYED will turn on compression immediately.
Damien Miller9786e6e2005-07-26 21:54:56 +1000992 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000993 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000994 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000995 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000996 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000997 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000998 comp = &state->newkeys[mode]->comp;
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000999 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001000 if ((r = ssh_packet_init_compression(ssh)) != 0)
1001 return r;
1002 if (mode == MODE_OUT) {
1003 if ((r = start_compression_out(ssh, 6)) != 0)
1004 return r;
1005 } else {
1006 if ((r = start_compression_in(ssh)) != 0)
1007 return r;
1008 }
Damien Miller9786e6e2005-07-26 21:54:56 +10001009 comp->enabled = 1;
1010 }
1011 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001012 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001013}
1014
djm@openbsd.org28136472016-01-29 05:46:01 +00001015/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001016int
djm@openbsd.org28136472016-01-29 05:46:01 +00001017ssh_packet_log_type(u_char type)
1018{
1019 switch (type) {
1020 case SSH2_MSG_CHANNEL_DATA:
1021 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1022 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1023 return 0;
1024 default:
1025 return 1;
1026 }
1027}
1028
Damien Miller9786e6e2005-07-26 21:54:56 +10001029/*
Damien Miller33b13562000-04-04 14:38:59 +10001030 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1031 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001032int
1033ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001034{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001035 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001036 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001037 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001038 u_int authlen = 0, aadlen = 0;
1039 u_int len;
1040 struct sshenc *enc = NULL;
1041 struct sshmac *mac = NULL;
1042 struct sshcomp *comp = NULL;
1043 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001044
markus@openbsd.org091c3022015-01-19 19:52:16 +00001045 if (state->newkeys[MODE_OUT] != NULL) {
1046 enc = &state->newkeys[MODE_OUT]->enc;
1047 mac = &state->newkeys[MODE_OUT]->mac;
1048 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001049 /* disable mac for authenticated encryption */
1050 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1051 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001052 }
Damien Miller963f6b22002-02-19 15:21:23 +11001053 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001054 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001055
markus@openbsd.org091c3022015-01-19 19:52:16 +00001056 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001057 if (ssh_packet_log_type(type))
1058 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001059#ifdef PACKET_DEBUG
1060 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001061 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001062#endif
1063
1064 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001065 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001066 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001067 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1068 goto out;
1069 sshbuf_reset(state->compression_buffer);
1070 if ((r = compress_buffer(ssh, state->outgoing_packet,
1071 state->compression_buffer)) != 0)
1072 goto out;
1073 sshbuf_reset(state->outgoing_packet);
1074 if ((r = sshbuf_put(state->outgoing_packet,
1075 "\0\0\0\0\0", 5)) != 0 ||
1076 (r = sshbuf_putb(state->outgoing_packet,
1077 state->compression_buffer)) != 0)
1078 goto out;
1079 DBG(debug("compression: raw %d compressed %zd", len,
1080 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001081 }
1082
1083 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001084 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001085
1086 /*
1087 * calc size of padding, alloc space, get random data,
1088 * minimum padding is 4 bytes
1089 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001090 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001091 padlen = block_size - (len % block_size);
1092 if (padlen < 4)
1093 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001094 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001095 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001096 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001097 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001098 /* check if roundup overflowed */
1099 if (state->extra_pad < tmp)
1100 return SSH_ERR_INVALID_ARGUMENT;
1101 tmp = (len + padlen) % state->extra_pad;
1102 /* Check whether pad calculation below will underflow */
1103 if (tmp > state->extra_pad)
1104 return SSH_ERR_INVALID_ARGUMENT;
1105 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001106 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001107 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001108 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001109 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001110 /* Check whether padlen calculation overflowed */
1111 if (padlen < tmp)
1112 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001113 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001114 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001115 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1116 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001117 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001118 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001119 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001120 } else {
1121 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001122 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001123 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001124 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001125 len = sshbuf_len(state->outgoing_packet);
1126 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1127 if (cp == NULL) {
1128 r = SSH_ERR_INTERNAL_ERROR;
1129 goto out;
1130 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001131 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001132 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001133 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001134 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1135 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001136
1137 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001138 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001139 if ((r = mac_compute(mac, state->p_send.seqnr,
1140 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001141 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001142 goto out;
1143 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001144 }
1145 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001146 if ((r = sshbuf_reserve(state->output,
1147 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1148 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001149 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001150 sshbuf_ptr(state->outgoing_packet),
1151 len - aadlen, aadlen, authlen)) != 0)
1152 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001153 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001154 if (mac && mac->enabled) {
1155 if (mac->etm) {
1156 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001157 if ((r = mac_compute(mac, state->p_send.seqnr,
1158 cp, len, macbuf, sizeof(macbuf))) != 0)
1159 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001160 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001161 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001162 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001163 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1164 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001165 }
Damien Miller33b13562000-04-04 14:38:59 +10001166#ifdef PACKET_DEBUG
1167 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001168 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001169#endif
Damien Miller4af51302000-04-16 11:18:38 +10001170 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001171 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001172 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001173 if (++state->p_send.packets == 0)
1174 if (!(ssh->compat & SSH_BUG_NOREKEY))
1175 return SSH_ERR_NEED_REKEY;
1176 state->p_send.blocks += len / block_size;
1177 state->p_send.bytes += len;
1178 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001179
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001180 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001181 r = ssh_set_newkeys(ssh, MODE_OUT);
1182 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1183 r = ssh_packet_enable_delayed_compress(ssh);
1184 else
1185 r = 0;
1186 out:
1187 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001188}
1189
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001190/* returns non-zero if the specified packet type is usec by KEX */
1191static int
1192ssh_packet_type_is_kex(u_char type)
1193{
1194 return
1195 type >= SSH2_MSG_TRANSPORT_MIN &&
1196 type <= SSH2_MSG_TRANSPORT_MAX &&
1197 type != SSH2_MSG_SERVICE_REQUEST &&
1198 type != SSH2_MSG_SERVICE_ACCEPT &&
1199 type != SSH2_MSG_EXT_INFO;
1200}
1201
markus@openbsd.org091c3022015-01-19 19:52:16 +00001202int
1203ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001204{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001205 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001206 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001207 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001208 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001209
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001210 if (sshbuf_len(state->outgoing_packet) < 6)
1211 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001212 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001213 need_rekey = !ssh_packet_type_is_kex(type) &&
1214 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001215
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001216 /*
1217 * During rekeying we can only send key exchange messages.
1218 * Queue everything else.
1219 */
1220 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1221 if (need_rekey)
1222 debug3("%s: rekex triggered", __func__);
1223 debug("enqueue packet: %u", type);
1224 p = calloc(1, sizeof(*p));
1225 if (p == NULL)
1226 return SSH_ERR_ALLOC_FAIL;
1227 p->type = type;
1228 p->payload = state->outgoing_packet;
1229 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1230 state->outgoing_packet = sshbuf_new();
1231 if (state->outgoing_packet == NULL)
1232 return SSH_ERR_ALLOC_FAIL;
1233 if (need_rekey) {
1234 /*
1235 * This packet triggered a rekey, so send the
1236 * KEXINIT now.
1237 * NB. reenters this function via kex_start_rekex().
1238 */
1239 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001240 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001241 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001242 }
1243
1244 /* rekeying starts with sending KEXINIT */
1245 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001246 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001247
markus@openbsd.org091c3022015-01-19 19:52:16 +00001248 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1249 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001250
1251 /* after a NEWKEYS message we can send the complete queue */
1252 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001253 state->rekeying = 0;
1254 state->rekey_time = monotime();
1255 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001256 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001257 /*
1258 * If this packet triggers a rekex, then skip the
1259 * remaining packets in the queue for now.
1260 * NB. re-enters this function via kex_start_rekex.
1261 */
1262 if (ssh_packet_need_rekeying(ssh,
1263 sshbuf_len(p->payload))) {
1264 debug3("%s: queued packet triggered rekex",
1265 __func__);
1266 return kex_start_rekex(ssh);
1267 }
Damien Millera5539d22003-04-09 20:50:06 +10001268 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001269 sshbuf_free(state->outgoing_packet);
1270 state->outgoing_packet = p->payload;
1271 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001272 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001273 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001274 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1275 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001276 }
1277 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001278 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001279}
1280
Damien Miller33b13562000-04-04 14:38:59 +10001281/*
Damien Miller5428f641999-11-25 11:54:57 +11001282 * Waits until a packet has been received, and returns its type. Note that
1283 * no other data is processed until this returns, so this function should not
1284 * be used during the interactive session.
1285 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286
1287int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001288ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001290 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001291 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001292 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001293 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001294 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295
Darren Tucker99bb7612008-06-13 22:02:50 +10001296 DBG(debug("packet_read()"));
1297
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001298 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001299 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001300 if (setp == NULL)
1301 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001302
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001303 /*
1304 * Since we are blocking, ensure that all written packets have
1305 * been sent.
1306 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001307 if ((r = ssh_packet_write_wait(ssh)) != 0)
1308 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001309
Damien Miller95def091999-11-25 00:26:21 +11001310 /* Stay in the loop until we have received a complete packet. */
1311 for (;;) {
1312 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001313 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1314 if (r != 0)
1315 break;
Damien Miller95def091999-11-25 00:26:21 +11001316 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001317 if (*typep != SSH_MSG_NONE)
1318 break;
Damien Miller5428f641999-11-25 11:54:57 +11001319 /*
1320 * Otherwise, wait for some data to arrive, add it to the
1321 * buffer, and try again.
1322 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001323 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001324 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001325 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001326
markus@openbsd.org091c3022015-01-19 19:52:16 +00001327 if (state->packet_timeout_ms > 0) {
1328 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001329 timeoutp = &timeout;
1330 }
Damien Miller95def091999-11-25 00:26:21 +11001331 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001332 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001333 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001334 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001335 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001336 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001337 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001338 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001339 break;
Damien Millerea437422009-10-02 11:49:03 +10001340 if (errno != EAGAIN && errno != EINTR &&
dtucker@openbsd.org1da59342018-05-25 03:20:59 +00001341 errno != EWOULDBLOCK) {
1342 r = SSH_ERR_SYSTEM_ERROR;
1343 goto out;
1344 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001345 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001346 continue;
1347 ms_subtract_diff(&start, &ms_remain);
1348 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001349 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001350 break;
1351 }
1352 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001353 if (r == 0) {
1354 r = SSH_ERR_CONN_TIMEOUT;
1355 goto out;
1356 }
Damien Miller95def091999-11-25 00:26:21 +11001357 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001358 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001359 if (len == 0) {
1360 r = SSH_ERR_CONN_CLOSED;
1361 goto out;
1362 }
1363 if (len < 0) {
1364 r = SSH_ERR_SYSTEM_ERROR;
1365 goto out;
1366 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001367
Damien Miller95def091999-11-25 00:26:21 +11001368 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001369 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001370 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001371 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001372 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001373 free(setp);
1374 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001375}
1376
Damien Miller278f9072001-12-21 15:00:19 +11001377int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001378ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001379{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001380 u_char type;
1381 int r;
1382
1383 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1384 fatal("%s: %s", __func__, ssh_err(r));
1385 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001386}
1387
Damien Miller5428f641999-11-25 11:54:57 +11001388/*
1389 * Waits until a packet has been received, verifies that its type matches
1390 * that given, and gives a fatal error and exits if there is a mismatch.
1391 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001393int
1394ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001396 int r;
1397 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001399 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1400 return r;
1401 if (type != expected_type) {
1402 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001403 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001404 expected_type, type)) != 0)
1405 return r;
1406 return SSH_ERR_PROTOCOL_ERROR;
1407 }
1408 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409}
1410
markus@openbsd.org8d057842016-09-30 09:19:13 +00001411static int
1412ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1413{
1414 struct session_state *state = ssh->state;
1415 const u_char *cp;
1416 size_t need;
1417 int r;
1418
1419 if (ssh->kex)
1420 return SSH_ERR_INTERNAL_ERROR;
1421 *typep = SSH_MSG_NONE;
1422 cp = sshbuf_ptr(state->input);
1423 if (state->packlen == 0) {
1424 if (sshbuf_len(state->input) < 4 + 1)
1425 return 0; /* packet is incomplete */
1426 state->packlen = PEEK_U32(cp);
1427 if (state->packlen < 4 + 1 ||
1428 state->packlen > PACKET_MAX_SIZE)
1429 return SSH_ERR_MESSAGE_INCOMPLETE;
1430 }
1431 need = state->packlen + 4;
1432 if (sshbuf_len(state->input) < need)
1433 return 0; /* packet is incomplete */
1434 sshbuf_reset(state->incoming_packet);
1435 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1436 state->packlen)) != 0 ||
1437 (r = sshbuf_consume(state->input, need)) != 0 ||
1438 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1439 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1440 return r;
1441 if (ssh_packet_log_type(*typep))
1442 debug3("%s: type %u", __func__, *typep);
1443 /* sshbuf_dump(state->incoming_packet, stderr); */
1444 /* reset for next packet */
1445 state->packlen = 0;
1446 return r;
1447}
1448
markus@openbsd.org091c3022015-01-19 19:52:16 +00001449int
1450ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001451{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001452 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001453 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001454 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001455 u_int maclen, aadlen = 0, authlen = 0, block_size;
1456 struct sshenc *enc = NULL;
1457 struct sshmac *mac = NULL;
1458 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001459 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001460
markus@openbsd.org8d057842016-09-30 09:19:13 +00001461 if (state->mux)
1462 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1463
markus@openbsd.org091c3022015-01-19 19:52:16 +00001464 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001465
markus@openbsd.org091c3022015-01-19 19:52:16 +00001466 if (state->packet_discard)
1467 return 0;
1468
1469 if (state->newkeys[MODE_IN] != NULL) {
1470 enc = &state->newkeys[MODE_IN]->enc;
1471 mac = &state->newkeys[MODE_IN]->mac;
1472 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001473 /* disable mac for authenticated encryption */
1474 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1475 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001476 }
1477 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001478 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001479 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001480
markus@openbsd.org091c3022015-01-19 19:52:16 +00001481 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001482 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001483 &state->packlen, state->p_read.seqnr,
1484 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1485 return 0;
1486 if (state->packlen < 1 + 4 ||
1487 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001488#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001489 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001490#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001491 logit("Bad packet length %u.", state->packlen);
1492 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1493 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001494 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001495 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001496 sshbuf_reset(state->incoming_packet);
1497 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001498 /*
1499 * check if input size is less than the cipher block size,
1500 * decrypt first block and extract length of incoming packet
1501 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001502 if (sshbuf_len(state->input) < block_size)
1503 return 0;
1504 sshbuf_reset(state->incoming_packet);
1505 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1506 &cp)) != 0)
1507 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001508 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001509 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1510 block_size, 0, 0)) != 0)
1511 goto out;
1512 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1513 if (state->packlen < 1 + 4 ||
1514 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001515#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001516 fprintf(stderr, "input: \n");
1517 sshbuf_dump(state->input, stderr);
1518 fprintf(stderr, "incoming_packet: \n");
1519 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001520#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001521 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001522 return ssh_packet_start_discard(ssh, enc, mac, 0,
1523 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001524 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001525 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1526 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001527 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001528 DBG(debug("input: packet len %u", state->packlen+4));
1529
Damien Milleraf43a7a2012-12-12 10:46:31 +11001530 if (aadlen) {
1531 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001532 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001533 } else {
1534 /*
1535 * the payload size and the payload are encrypted, but we
1536 * have a partial packet of block_size bytes
1537 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001538 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001539 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001540 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1541 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001542 if (need % block_size != 0) {
1543 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001544 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001545 return ssh_packet_start_discard(ssh, enc, mac, 0,
1546 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001547 }
Damien Miller33b13562000-04-04 14:38:59 +10001548 /*
1549 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001550 * decrypt into incoming_packet:
1551 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001552 * 'need' bytes are encrypted, followed by either
1553 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001554 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001555 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001556 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001557 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001558#ifdef PACKET_DEBUG
1559 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001560 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001561#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001562 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001563 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001564 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001565 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001566 sshbuf_ptr(state->input) + aadlen + need + authlen,
1567 maclen)) != 0) {
1568 if (r == SSH_ERR_MAC_INVALID)
1569 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001570 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001571 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001572 }
1573 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1574 &cp)) != 0)
1575 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001576 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001577 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1578 goto out;
1579 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1580 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001581 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001582 /* Not EtM: check MAC over cleartext */
1583 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1584 sshbuf_ptr(state->incoming_packet),
1585 sshbuf_len(state->incoming_packet),
1586 sshbuf_ptr(state->input), maclen)) != 0) {
1587 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001588 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001589 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001590 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001591 return SSH_ERR_INTERNAL_ERROR;
1592 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001593 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001594 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001595 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001596 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001597 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1598 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1599 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001600 }
Damien Miller278f9072001-12-21 15:00:19 +11001601 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001602 *seqnr_p = state->p_read.seqnr;
1603 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001604 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001605 if (++state->p_read.packets == 0)
1606 if (!(ssh->compat & SSH_BUG_NOREKEY))
1607 return SSH_ERR_NEED_REKEY;
1608 state->p_read.blocks += (state->packlen + 4) / block_size;
1609 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001610
1611 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001612 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001613 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001614 if (padlen < 4) {
1615 if ((r = sshpkt_disconnect(ssh,
1616 "Corrupted padlen %d on input.", padlen)) != 0 ||
1617 (r = ssh_packet_write_wait(ssh)) != 0)
1618 return r;
1619 return SSH_ERR_CONN_CORRUPT;
1620 }
Damien Miller33b13562000-04-04 14:38:59 +10001621
1622 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001623 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1624 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1625 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001626
markus@openbsd.org091c3022015-01-19 19:52:16 +00001627 DBG(debug("input: len before de-compress %zd",
1628 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001629 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001630 sshbuf_reset(state->compression_buffer);
1631 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1632 state->compression_buffer)) != 0)
1633 goto out;
1634 sshbuf_reset(state->incoming_packet);
1635 if ((r = sshbuf_putb(state->incoming_packet,
1636 state->compression_buffer)) != 0)
1637 goto out;
1638 DBG(debug("input: len after de-compress %zd",
1639 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001640 }
1641 /*
1642 * get packet type, implies consume.
1643 * return length of payload (without type field)
1644 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001645 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1646 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001647 if (ssh_packet_log_type(*typep))
1648 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001649 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1650 if ((r = sshpkt_disconnect(ssh,
1651 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1652 (r = ssh_packet_write_wait(ssh)) != 0)
1653 return r;
1654 return SSH_ERR_PROTOCOL_ERROR;
1655 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001656 if (state->hook_in != NULL &&
1657 (r = state->hook_in(ssh, state->incoming_packet, typep,
1658 state->hook_in_ctx)) != 0)
1659 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001660 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001661 r = ssh_packet_enable_delayed_compress(ssh);
1662 else
1663 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001664#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001665 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1666 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001667#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001668 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001669 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001670
1671 /* do we need to rekey? */
1672 if (ssh_packet_need_rekeying(ssh, 0)) {
1673 debug3("%s: rekex triggered", __func__);
1674 if ((r = kex_start_rekex(ssh)) != 0)
1675 return r;
1676 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001677 out:
1678 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001679}
1680
1681int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001682ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001683{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001684 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001685 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001686 int r;
1687 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001688
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001689 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001690 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001691 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1692 if (r != 0)
1693 return r;
1694 if (*typep) {
1695 state->keep_alive_timeouts = 0;
1696 DBG(debug("received packet type %d", *typep));
1697 }
1698 switch (*typep) {
1699 case SSH2_MSG_IGNORE:
1700 debug3("Received SSH2_MSG_IGNORE");
1701 break;
1702 case SSH2_MSG_DEBUG:
1703 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1704 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1705 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1706 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001707 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001708 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001709 debug("Remote: %.900s", msg);
1710 free(msg);
1711 break;
1712 case SSH2_MSG_DISCONNECT:
1713 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1714 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1715 return r;
1716 /* Ignore normal client exit notifications */
1717 do_log2(ssh->state->server_side &&
1718 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1719 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1720 "Received disconnect from %s port %d:"
1721 "%u: %.400s", ssh_remote_ipaddr(ssh),
1722 ssh_remote_port(ssh), reason, msg);
1723 free(msg);
1724 return SSH_ERR_DISCONNECTED;
1725 case SSH2_MSG_UNIMPLEMENTED:
1726 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1727 return r;
1728 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1729 seqnr);
1730 break;
1731 default:
1732 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001733 }
1734 }
1735}
1736
Damien Miller5428f641999-11-25 11:54:57 +11001737/*
1738 * Buffers the given amount of input characters. This is intended to be used
1739 * together with packet_read_poll.
1740 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001741
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001742int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001743ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001744{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001745 struct session_state *state = ssh->state;
1746 int r;
1747
1748 if (state->packet_discard) {
1749 state->keep_alive_timeouts = 0; /* ?? */
1750 if (len >= state->packet_discard) {
1751 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001752 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001753 }
1754 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001755 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001756 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001757 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001758 return r;
1759
1760 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001761}
1762
Damien Miller4af51302000-04-16 11:18:38 +10001763int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001764ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001765{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001766 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001767}
1768
Damien Miller5428f641999-11-25 11:54:57 +11001769/*
1770 * Sends a diagnostic message from the server to the client. This message
1771 * can be sent at any time (but not while constructing another message). The
1772 * message is printed immediately, but only if the client is being executed
1773 * in verbose mode. These messages are primarily intended to ease debugging
1774 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001775 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001776 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001777void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001778ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001779{
Damien Miller95def091999-11-25 00:26:21 +11001780 char buf[1024];
1781 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001782 int r;
Damien Miller95def091999-11-25 00:26:21 +11001783
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001784 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001785 return;
1786
Damien Miller95def091999-11-25 00:26:21 +11001787 va_start(args, fmt);
1788 vsnprintf(buf, sizeof(buf), fmt, args);
1789 va_end(args);
1790
djm@openbsd.orgeb80e262017-10-13 21:13:54 +00001791 debug3("sending debug message: %s", buf);
1792
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001793 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1794 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1795 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1796 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1797 (r = sshpkt_send(ssh)) != 0 ||
1798 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001799 fatal("%s: %s", __func__, ssh_err(r));
1800}
1801
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001802void
1803sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l)
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001804{
1805 snprintf(s, l, "%.200s%s%s port %d",
1806 ssh->log_preamble ? ssh->log_preamble : "",
1807 ssh->log_preamble ? " " : "",
1808 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1809}
1810
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001811/*
1812 * Pretty-print connection-terminating errors and exit.
1813 */
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001814static void
1815sshpkt_vfatal(struct ssh *ssh, int r, const char *fmt, va_list ap)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001816{
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001817 char *tag = NULL, remote_id[512];
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001818
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001819 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001820
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001821 switch (r) {
1822 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001823 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001824 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001825 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001826 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001827 logdie("Connection %s %s timed out",
1828 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001829 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001830 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001831 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001832 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001833 if (errno == ECONNRESET) {
1834 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001835 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001836 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001837 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001838 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1839 case SSH_ERR_NO_MAC_ALG_MATCH:
1840 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1841 case SSH_ERR_NO_KEX_ALG_MATCH:
1842 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1843 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001844 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001845 logdie("Unable to negotiate with %s: %s. "
1846 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001847 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001848 }
1849 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001850 default:
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001851 if (vasprintf(&tag, fmt, ap) == -1) {
1852 ssh_packet_clear_keys(ssh);
1853 logdie("%s: could not allocate failure message",
1854 __func__);
1855 }
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001856 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001857 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001858 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001859 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001860 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001861 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001862}
1863
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001864void
1865sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...)
1866{
1867 va_list ap;
1868
1869 va_start(ap, fmt);
1870 sshpkt_vfatal(ssh, r, fmt, ap);
1871 /* NOTREACHED */
1872 va_end(ap);
1873 logdie("%s: should have exited", __func__);
1874}
1875
Damien Miller5428f641999-11-25 11:54:57 +11001876/*
1877 * Logs the error plus constructs and sends a disconnect packet, closes the
1878 * connection, and exits. This function never returns. The error message
1879 * should not contain a newline. The length of the formatted message must
1880 * not exceed 1024 bytes.
1881 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001882void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001883ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001884{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001885 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001886 va_list args;
1887 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001888 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001889
Damien Miller95def091999-11-25 00:26:21 +11001890 if (disconnecting) /* Guard against recursive invocations. */
1891 fatal("packet_disconnect called recursively.");
1892 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001893
Damien Miller5428f641999-11-25 11:54:57 +11001894 /*
1895 * Format the message. Note that the caller must make sure the
1896 * message is of limited size.
1897 */
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001898 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001899 va_start(args, fmt);
1900 vsnprintf(buf, sizeof(buf), fmt, args);
1901 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001902
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001903 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001904 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001905
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001906 /*
1907 * Send the disconnect message to the other side, and wait
1908 * for it to get sent.
1909 */
1910 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001911 sshpkt_fatal(ssh, r, "%s", __func__);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001912
1913 if ((r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001914 sshpkt_fatal(ssh, r, "%s", __func__);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001915
Damien Miller95def091999-11-25 00:26:21 +11001916 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001917 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001918 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001919}
1920
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001921/*
1922 * Checks if there is any buffered output, and tries to write some of
1923 * the output.
1924 */
1925int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001926ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001927{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001928 struct session_state *state = ssh->state;
1929 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001930 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001931
Damien Miller95def091999-11-25 00:26:21 +11001932 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001933 len = write(state->connection_out,
1934 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001935 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001936 if (errno == EINTR || errno == EAGAIN ||
1937 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001938 return 0;
1939 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001940 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001941 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001942 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001943 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001944 return r;
Damien Miller95def091999-11-25 00:26:21 +11001945 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001946 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001947}
1948
Damien Miller5428f641999-11-25 11:54:57 +11001949/*
1950 * Calls packet_write_poll repeatedly until all pending output data has been
1951 * written.
1952 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001953int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001954ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001955{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001956 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001957 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001958 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001959 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001960
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001961 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001962 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001963 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001964 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001965 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1966 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001967 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001968 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001969 while (ssh_packet_have_data_to_write(ssh)) {
1970 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001971 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001972 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001973
markus@openbsd.org091c3022015-01-19 19:52:16 +00001974 if (state->packet_timeout_ms > 0) {
1975 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001976 timeoutp = &timeout;
1977 }
1978 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001979 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001980 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001981 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001982 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001983 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001984 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001985 break;
Damien Millerea437422009-10-02 11:49:03 +10001986 if (errno != EAGAIN && errno != EINTR &&
1987 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001988 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001989 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001990 continue;
1991 ms_subtract_diff(&start, &ms_remain);
1992 if (ms_remain <= 0) {
1993 ret = 0;
1994 break;
1995 }
1996 }
1997 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001998 free(setp);
1999 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10002000 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002001 if ((r = ssh_packet_write_poll(ssh)) != 0) {
2002 free(setp);
2003 return r;
2004 }
Damien Miller95def091999-11-25 00:26:21 +11002005 }
Darren Tuckera627d422013-06-02 07:31:17 +10002006 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002007 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002008}
2009
2010/* Returns true if there is buffered data to write to the connection. */
2011
2012int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002013ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002014{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002015 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002016}
2017
2018/* Returns true if there is not too much data to write to the connection. */
2019
2020int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002021ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002022{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002023 if (ssh->state->interactive_mode)
2024 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11002025 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00002026 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002027}
2028
markus@openbsd.org091c3022015-01-19 19:52:16 +00002029void
2030ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00002031{
Damien Millerd2ac5d72011-05-15 08:43:13 +10002032#ifndef IP_TOS_IS_BROKEN
djm@openbsd.org51676ec2017-07-23 23:37:02 +00002033 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
Ben Lindstroma7433982002-12-23 02:41:41 +00002034 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002035 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002036# ifdef IP_TOS
2037 case AF_INET:
2038 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002039 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002040 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
2041 error("setsockopt IP_TOS %d: %.100s:",
2042 tos, strerror(errno));
2043 break;
2044# endif /* IP_TOS */
2045# ifdef IPV6_TCLASS
2046 case AF_INET6:
2047 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002048 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002049 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
2050 error("setsockopt IPV6_TCLASS %d: %.100s:",
2051 tos, strerror(errno));
2052 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002053# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002054 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002055#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002056}
Ben Lindstroma7433982002-12-23 02:41:41 +00002057
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002058/* Informs that the current session is interactive. Sets IP flags for that. */
2059
2060void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002061ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002062{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002063 struct session_state *state = ssh->state;
2064
2065 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002066 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002067 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002068
Damien Miller95def091999-11-25 00:26:21 +11002069 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002070 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002071
Damien Miller34132e52000-01-14 15:45:46 +11002072 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002073 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002074 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002075 set_nodelay(state->connection_in);
2076 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2077 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002078}
2079
2080/* Returns true if the current connection is interactive. */
2081
2082int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002083ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002084{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002085 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002086}
Damien Miller6162d121999-11-21 13:23:52 +11002087
Darren Tucker1f8311c2004-05-13 16:39:33 +10002088int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002089ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002090{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002091 struct session_state *state = ssh->state;
2092
2093 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002094 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002095 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002096 return -1;
2097 }
2098 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002099 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002100 return -1;
2101 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002102 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002103 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002104 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002105 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002106}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002107
Darren Tuckerf7288d72009-06-21 18:12:20 +10002108int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002109ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002110{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002111 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002112}
2113
2114void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002115ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002116{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002117 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002118}
2119
2120u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002121ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002122{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002123 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002124}
2125
Damien Millera5539d22003-04-09 20:50:06 +10002126void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002127ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002128{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002129 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2130 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002131 ssh->state->rekey_limit = bytes;
2132 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002133}
2134
2135time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002136ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002137{
2138 time_t seconds;
2139
markus@openbsd.org091c3022015-01-19 19:52:16 +00002140 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002141 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002142 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002143}
Damien Miller9786e6e2005-07-26 21:54:56 +10002144
2145void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002146ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002147{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002148 ssh->state->server_side = 1;
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002149 ssh->kex->server = 1; /* XXX unify? */
Damien Miller9786e6e2005-07-26 21:54:56 +10002150}
2151
2152void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002153ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002154{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002155 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002156}
2157
2158void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002159ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002160{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002161 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002162}
2163
2164void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002165ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002166{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002167 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002168}
2169
Damien Millerc31a0cd2014-05-15 14:37:39 +10002170/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002171static int
2172ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002173{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002174 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002175
2176 debug("%s: called", __func__);
2177 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002178 ssh->state->after_authentication = 1;
2179 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002180 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2181 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002182 return 0;
2183}
2184
2185/* Packet state (de-)serialization for privsep */
2186
2187/* turn kex into a blob for packet state serialization */
2188static int
2189kex_to_blob(struct sshbuf *m, struct kex *kex)
2190{
2191 int r;
2192
2193 if ((r = sshbuf_put_string(m, kex->session_id,
2194 kex->session_id_len)) != 0 ||
2195 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002196 (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002197 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002198 (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002199 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2200 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2201 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002202 (r = sshbuf_put_stringb(m, kex->client_version)) != 0 ||
2203 (r = sshbuf_put_stringb(m, kex->server_version)) != 0 ||
2204 (r = sshbuf_put_u32(m, kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002205 return r;
2206 return 0;
2207}
2208
2209/* turn key exchange results into a blob for packet state serialization */
2210static int
2211newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2212{
2213 struct sshbuf *b;
2214 struct sshcipher_ctx *cc;
2215 struct sshcomp *comp;
2216 struct sshenc *enc;
2217 struct sshmac *mac;
2218 struct newkeys *newkey;
2219 int r;
2220
2221 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2222 return SSH_ERR_INTERNAL_ERROR;
2223 enc = &newkey->enc;
2224 mac = &newkey->mac;
2225 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002226 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2227 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002228 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2229 return r;
2230 if ((b = sshbuf_new()) == NULL)
2231 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002232 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002233 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2234 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2235 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2236 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2237 goto out;
2238 if (cipher_authlen(enc->cipher) == 0) {
2239 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2240 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2241 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2242 goto out;
2243 }
2244 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002245 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2246 goto out;
2247 r = sshbuf_put_stringb(m, b);
2248 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002249 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002250 return r;
2251}
2252
2253/* serialize packet state into a blob */
2254int
2255ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2256{
2257 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002258 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002259
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002260 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2261 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2262 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2263 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2264 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2265 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2266 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2267 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2268 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2269 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2270 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2271 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002272 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2273 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2274 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002275 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002276
markus@openbsd.org091c3022015-01-19 19:52:16 +00002277 return 0;
2278}
2279
2280/* restore key exchange results from blob for packet state de-serialization */
2281static int
2282newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2283{
2284 struct sshbuf *b = NULL;
2285 struct sshcomp *comp;
2286 struct sshenc *enc;
2287 struct sshmac *mac;
2288 struct newkeys *newkey = NULL;
2289 size_t keylen, ivlen, maclen;
2290 int r;
2291
2292 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2293 r = SSH_ERR_ALLOC_FAIL;
2294 goto out;
2295 }
2296 if ((r = sshbuf_froms(m, &b)) != 0)
2297 goto out;
2298#ifdef DEBUG_PK
2299 sshbuf_dump(b, stderr);
2300#endif
2301 enc = &newkey->enc;
2302 mac = &newkey->mac;
2303 comp = &newkey->comp;
2304
2305 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002306 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2307 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2308 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2309 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2310 goto out;
djm@openbsd.org33f86262017-06-24 06:38:11 +00002311 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2312 r = SSH_ERR_INVALID_FORMAT;
2313 goto out;
2314 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002315 if (cipher_authlen(enc->cipher) == 0) {
2316 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2317 goto out;
2318 if ((r = mac_setup(mac, mac->name)) != 0)
2319 goto out;
2320 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2321 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2322 goto out;
2323 if (maclen > mac->key_len) {
2324 r = SSH_ERR_INVALID_FORMAT;
2325 goto out;
2326 }
2327 mac->key_len = maclen;
2328 }
2329 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002330 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2331 goto out;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002332 if (sshbuf_len(b) != 0) {
2333 r = SSH_ERR_INVALID_FORMAT;
2334 goto out;
2335 }
2336 enc->key_len = keylen;
2337 enc->iv_len = ivlen;
2338 ssh->kex->newkeys[mode] = newkey;
2339 newkey = NULL;
2340 r = 0;
2341 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002342 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002343 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002344 return r;
2345}
2346
2347/* restore kex from blob for packet state de-serialization */
2348static int
2349kex_from_blob(struct sshbuf *m, struct kex **kexp)
2350{
2351 struct kex *kex;
2352 int r;
2353
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002354 if ((kex = kex_new()) == NULL)
2355 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002356 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2357 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002358 (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002359 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002360 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002361 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2362 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2363 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002364 (r = sshbuf_get_stringb(m, kex->client_version)) != 0 ||
2365 (r = sshbuf_get_stringb(m, kex->server_version)) != 0 ||
2366 (r = sshbuf_get_u32(m, &kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002367 goto out;
2368 kex->server = 1;
2369 kex->done = 1;
2370 r = 0;
2371 out:
2372 if (r != 0 || kexp == NULL) {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002373 kex_free(kex);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002374 if (kexp != NULL)
2375 *kexp = NULL;
2376 } else {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002377 kex_free(*kexp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002378 *kexp = kex;
2379 }
2380 return r;
2381}
2382
2383/*
2384 * Restore packet state from content of blob 'm' (de-serialization).
2385 * Note that 'm' will be partially consumed on parsing or any other errors.
2386 */
2387int
2388ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2389{
2390 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002391 const u_char *input, *output;
2392 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002393 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002394
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002395 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2396 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2397 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2398 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2399 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2400 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2401 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2402 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2403 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2404 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2405 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2406 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2407 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2408 return r;
2409 /*
2410 * We set the time here so that in post-auth privsep slave we
2411 * count from the completion of the authentication.
2412 */
2413 state->rekey_time = monotime();
2414 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2415 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2416 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2417 return r;
2418
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002419 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002420 return r;
2421
2422 sshbuf_reset(state->input);
2423 sshbuf_reset(state->output);
2424 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2425 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2426 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2427 (r = sshbuf_put(state->output, output, olen)) != 0)
2428 return r;
2429
markus@openbsd.org091c3022015-01-19 19:52:16 +00002430 if (sshbuf_len(m))
2431 return SSH_ERR_INVALID_FORMAT;
2432 debug3("%s: done", __func__);
2433 return 0;
2434}
2435
2436/* NEW API */
2437
2438/* put data to the outgoing packet */
2439
2440int
2441sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2442{
2443 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2444}
2445
2446int
2447sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2448{
2449 return sshbuf_putb(ssh->state->outgoing_packet, b);
2450}
2451
2452int
2453sshpkt_put_u8(struct ssh *ssh, u_char val)
2454{
2455 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2456}
2457
2458int
2459sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2460{
2461 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2462}
2463
2464int
2465sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2466{
2467 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2468}
2469
2470int
2471sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2472{
2473 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2474}
2475
2476int
2477sshpkt_put_cstring(struct ssh *ssh, const void *v)
2478{
2479 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2480}
2481
2482int
2483sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2484{
2485 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2486}
2487
djm@openbsd.org71e67ff2019-01-21 10:35:09 +00002488int
2489sshpkt_getb_froms(struct ssh *ssh, struct sshbuf **valp)
2490{
2491 return sshbuf_froms(ssh->state->incoming_packet, valp);
2492}
2493
djm@openbsd.org734226b2015-04-27 01:52:30 +00002494#ifdef WITH_OPENSSL
2495#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002496int
2497sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2498{
2499 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2500}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002501#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002502
markus@openbsd.org091c3022015-01-19 19:52:16 +00002503
2504int
2505sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2506{
2507 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2508}
Damien Miller773dda22015-01-30 23:10:17 +11002509#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002510
2511/* fetch data from the incoming packet */
2512
2513int
2514sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2515{
2516 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2517}
2518
2519int
2520sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2521{
2522 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2523}
2524
2525int
2526sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2527{
2528 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2529}
2530
2531int
2532sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2533{
2534 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2535}
2536
2537int
2538sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2539{
2540 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2541}
2542
2543int
2544sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2545{
2546 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2547}
2548
2549int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002550sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2551{
2552 return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp);
2553}
2554
2555int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002556sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2557{
2558 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2559}
2560
djm@openbsd.org734226b2015-04-27 01:52:30 +00002561#ifdef WITH_OPENSSL
2562#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002563int
2564sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2565{
2566 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2567}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002568#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002569
markus@openbsd.org091c3022015-01-19 19:52:16 +00002570int
djm@openbsd.org7be85722019-01-21 09:54:11 +00002571sshpkt_get_bignum2(struct ssh *ssh, BIGNUM **valp)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002572{
djm@openbsd.org7be85722019-01-21 09:54:11 +00002573 return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002574}
Damien Miller773dda22015-01-30 23:10:17 +11002575#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002576
2577int
2578sshpkt_get_end(struct ssh *ssh)
2579{
2580 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2581 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2582 return 0;
2583}
2584
2585const u_char *
2586sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2587{
2588 if (lenp != NULL)
2589 *lenp = sshbuf_len(ssh->state->incoming_packet);
2590 return sshbuf_ptr(ssh->state->incoming_packet);
2591}
2592
2593/* start a new packet */
2594
2595int
2596sshpkt_start(struct ssh *ssh, u_char type)
2597{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002598 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002599
2600 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002601 memset(buf, 0, sizeof(buf));
2602 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002603 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002604 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002605}
2606
markus@openbsd.org8d057842016-09-30 09:19:13 +00002607static int
2608ssh_packet_send_mux(struct ssh *ssh)
2609{
2610 struct session_state *state = ssh->state;
2611 u_char type, *cp;
2612 size_t len;
2613 int r;
2614
2615 if (ssh->kex)
2616 return SSH_ERR_INTERNAL_ERROR;
2617 len = sshbuf_len(state->outgoing_packet);
2618 if (len < 6)
2619 return SSH_ERR_INTERNAL_ERROR;
2620 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2621 type = cp[5];
2622 if (ssh_packet_log_type(type))
2623 debug3("%s: type %u", __func__, type);
2624 /* drop everything, but the connection protocol */
2625 if (type >= SSH2_MSG_CONNECTION_MIN &&
2626 type <= SSH2_MSG_CONNECTION_MAX) {
2627 POKE_U32(cp, len - 4);
2628 if ((r = sshbuf_putb(state->output,
2629 state->outgoing_packet)) != 0)
2630 return r;
2631 /* sshbuf_dump(state->output, stderr); */
2632 }
2633 sshbuf_reset(state->outgoing_packet);
2634 return 0;
2635}
2636
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002637/*
2638 * 9.2. Ignored Data Message
2639 *
2640 * byte SSH_MSG_IGNORE
2641 * string data
2642 *
2643 * All implementations MUST understand (and ignore) this message at any
2644 * time (after receiving the protocol version). No implementation is
2645 * required to send them. This message can be used as an additional
2646 * protection measure against advanced traffic analysis techniques.
2647 */
2648int
2649sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes)
2650{
2651 u_int32_t rnd = 0;
2652 int r;
2653 u_int i;
2654
2655 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
2656 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2657 return r;
2658 for (i = 0; i < nbytes; i++) {
2659 if (i % 4 == 0)
2660 rnd = arc4random();
2661 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2662 return r;
2663 rnd >>= 8;
2664 }
2665 return 0;
2666}
2667
markus@openbsd.org091c3022015-01-19 19:52:16 +00002668/* send it */
2669
2670int
2671sshpkt_send(struct ssh *ssh)
2672{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002673 if (ssh->state && ssh->state->mux)
2674 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002675 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002676}
2677
2678int
2679sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2680{
2681 char buf[1024];
2682 va_list args;
2683 int r;
2684
2685 va_start(args, fmt);
2686 vsnprintf(buf, sizeof(buf), fmt, args);
2687 va_end(args);
2688
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002689 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2690 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2691 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2692 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2693 (r = sshpkt_send(ssh)) != 0)
2694 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002695 return 0;
2696}
2697
2698/* roundup current message to pad bytes */
2699int
2700sshpkt_add_padding(struct ssh *ssh, u_char pad)
2701{
2702 ssh->state->extra_pad = pad;
2703 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002704}