blob: 7a703d695acf4e18e3c6b709e33ea5152f0811c1 [file] [log] [blame]
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001/* $OpenBSD: packet.c,v 1.286 2019/06/28 13:35:04 deraadt 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>
Darren Tucker6fc7e1c2019-10-28 15:53:25 +110061#ifdef HAVE_POLL_H
djm@openbsd.org0a843d92018-12-27 03:25:24 +000062#include <poll.h>
Darren Tucker6fc7e1c2019-10-28 15:53:25 +110063#endif
Damien Millerd7834352006-08-05 12:39:39 +100064#include <signal.h>
Darren Tuckerc53c2af2013-05-16 20:28:16 +100065#include <time.h>
Darren Tucker5d196262006-07-12 22:15:16 +100066
Darren Tuckerc77bc732018-07-20 13:48:51 +100067/*
68 * Explicitly include OpenSSL before zlib as some versions of OpenSSL have
69 * "free_func" in their headers, which zlib typedefs.
70 */
71#ifdef WITH_OPENSSL
72# include <openssl/bn.h>
73# include <openssl/evp.h>
74# ifdef OPENSSL_HAS_ECC
75# include <openssl/ec.h>
76# endif
77#endif
78
markus@openbsd.org091c3022015-01-19 19:52:16 +000079#include <zlib.h>
80
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081#include "xmalloc.h"
Damien Miller33b13562000-04-04 14:38:59 +100082#include "compat.h"
83#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110084#include "cipher.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000085#include "sshkey.h"
Damien Miller33b13562000-04-04 14:38:59 +100086#include "kex.h"
markus@openbsd.org128343b2015-01-13 19:31:40 +000087#include "digest.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000088#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "log.h"
90#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110091#include "misc.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100092#include "channels.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000093#include "ssh.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000094#include "packet.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000095#include "ssherr.h"
96#include "sshbuf.h"
Damien Miller33b13562000-04-04 14:38:59 +100097
98#ifdef PACKET_DEBUG
99#define DBG(x) x
100#else
101#define DBG(x)
102#endif
103
Damien Miller13ae44c2009-01-28 16:38:41 +1100104#define PACKET_MAX_SIZE (256 * 1024)
105
Darren Tuckerf7288d72009-06-21 18:12:20 +1000106struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +1000107 u_int32_t seqnr;
108 u_int32_t packets;
109 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000110 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000111};
Damien Miller13ae44c2009-01-28 16:38:41 +1100112
Damien Millera5539d22003-04-09 20:50:06 +1000113struct packet {
114 TAILQ_ENTRY(packet) next;
115 u_char type;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000116 struct sshbuf *payload;
Damien Millera5539d22003-04-09 20:50:06 +1000117};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000118
119struct session_state {
120 /*
121 * This variable contains the file descriptors used for
122 * communicating with the other side. connection_in is used for
123 * reading; connection_out for writing. These can be the same
124 * descriptor, in which case it is assumed to be a socket.
125 */
126 int connection_in;
127 int connection_out;
128
129 /* Protocol flags for the remote side. */
130 u_int remote_protocol_flags;
131
132 /* Encryption context for receiving data. Only used for decryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000133 struct sshcipher_ctx *receive_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000134
135 /* Encryption context for sending data. Only used for encryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000136 struct sshcipher_ctx *send_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000137
138 /* Buffer for raw input data from the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000139 struct sshbuf *input;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000140
141 /* Buffer for raw output data going to the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000142 struct sshbuf *output;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000143
144 /* Buffer for the partial outgoing packet being constructed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000145 struct sshbuf *outgoing_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000146
147 /* Buffer for the incoming packet currently being processed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000148 struct sshbuf *incoming_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000149
150 /* Scratch buffer for packet compression/decompression. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000151 struct sshbuf *compression_buffer;
152
153 /* Incoming/outgoing compression dictionaries */
154 z_stream compression_in_stream;
155 z_stream compression_out_stream;
156 int compression_in_started;
157 int compression_out_started;
158 int compression_in_failures;
159 int compression_out_failures;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000160
Darren Tuckerf7288d72009-06-21 18:12:20 +1000161 /* default maximum packet size */
162 u_int max_packet_size;
163
164 /* Flag indicating whether this module has been initialized. */
165 int initialized;
166
167 /* Set to true if the connection is interactive. */
168 int interactive_mode;
169
170 /* Set to true if we are the server side. */
171 int server_side;
172
173 /* Set to true if we are authenticated. */
174 int after_authentication;
175
176 int keep_alive_timeouts;
177
178 /* The maximum time that we will wait to send or receive a packet */
179 int packet_timeout_ms;
180
181 /* Session key information for Encryption and MAC */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000182 struct newkeys *newkeys[MODE_MAX];
Darren Tuckerf7288d72009-06-21 18:12:20 +1000183 struct packet_state p_read, p_send;
184
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000185 /* Volume-based rekeying */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +0000186 u_int64_t max_blocks_in, max_blocks_out, rekey_limit;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000187
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000188 /* Time-based rekeying */
markus@openbsd.org02db4682015-02-13 18:57:00 +0000189 u_int32_t rekey_interval; /* how often in seconds */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000190 time_t rekey_time; /* time of last rekeying */
191
Darren Tuckerf7288d72009-06-21 18:12:20 +1000192 /* roundup current message to extra_pad bytes */
193 u_char extra_pad;
194
195 /* XXX discard incoming data after MAC error */
196 u_int packet_discard;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000197 size_t packet_discard_mac_already;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000198 struct sshmac *packet_discard_mac;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000199
200 /* Used in packet_read_poll2() */
201 u_int packlen;
202
Darren Tucker7b935c72009-06-21 18:59:36 +1000203 /* Used in packet_send2 */
204 int rekeying;
205
markus@openbsd.org8d057842016-09-30 09:19:13 +0000206 /* Used in ssh_packet_send_mux() */
207 int mux;
208
Darren Tucker7b935c72009-06-21 18:59:36 +1000209 /* Used in packet_set_interactive */
210 int set_interactive_called;
211
212 /* Used in packet_set_maxsize */
213 int set_maxsize_called;
214
markus@openbsd.org091c3022015-01-19 19:52:16 +0000215 /* One-off warning about weak ciphers */
216 int cipher_warning_done;
217
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000218 /* Hook for fuzzing inbound packets */
219 ssh_packet_hook_fn *hook_in;
220 void *hook_in_ctx;
221
Darren Tuckerf7288d72009-06-21 18:12:20 +1000222 TAILQ_HEAD(, packet) outgoing;
223};
224
markus@openbsd.org091c3022015-01-19 19:52:16 +0000225struct ssh *
226ssh_alloc_session_state(void)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000227{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000228 struct ssh *ssh = NULL;
229 struct session_state *state = NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000230
markus@openbsd.org091c3022015-01-19 19:52:16 +0000231 if ((ssh = calloc(1, sizeof(*ssh))) == NULL ||
232 (state = calloc(1, sizeof(*state))) == NULL ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000233 (ssh->kex = kex_new()) == NULL ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000234 (state->input = sshbuf_new()) == NULL ||
235 (state->output = sshbuf_new()) == NULL ||
236 (state->outgoing_packet = sshbuf_new()) == NULL ||
237 (state->incoming_packet = sshbuf_new()) == NULL)
238 goto fail;
239 TAILQ_INIT(&state->outgoing);
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +0000240 TAILQ_INIT(&ssh->private_keys);
241 TAILQ_INIT(&ssh->public_keys);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000242 state->connection_in = -1;
243 state->connection_out = -1;
244 state->max_packet_size = 32768;
245 state->packet_timeout_ms = -1;
246 state->p_send.packets = state->p_read.packets = 0;
247 state->initialized = 1;
248 /*
249 * ssh_packet_send2() needs to queue packets until
250 * we've done the initial key exchange.
251 */
252 state->rekeying = 1;
253 ssh->state = state;
254 return ssh;
255 fail:
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000256 if (ssh) {
257 kex_free(ssh->kex);
258 free(ssh);
259 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000260 if (state) {
261 sshbuf_free(state->input);
262 sshbuf_free(state->output);
263 sshbuf_free(state->incoming_packet);
264 sshbuf_free(state->outgoing_packet);
265 free(state);
266 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000267 return NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000268}
Damien Millera5539d22003-04-09 20:50:06 +1000269
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000270void
271ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
272{
273 ssh->state->hook_in = hook;
274 ssh->state->hook_in_ctx = ctx;
275}
276
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000277/* Returns nonzero if rekeying is in progress */
278int
279ssh_packet_is_rekeying(struct ssh *ssh)
280{
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000281 return ssh->state->rekeying || ssh->kex->done == 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000282}
283
Damien Miller5428f641999-11-25 11:54:57 +1100284/*
naddy@openbsd.org768405f2017-05-03 21:08:09 +0000285 * Sets the descriptors used for communication.
Damien Miller5428f641999-11-25 11:54:57 +1100286 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000287struct ssh *
288ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000290 struct session_state *state;
291 const struct sshcipher *none = cipher_by_name("none");
Damien Miller86687062014-07-02 15:28:02 +1000292 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000293
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000294 if (none == NULL) {
295 error("%s: cannot load cipher 'none'", __func__);
296 return NULL;
297 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000298 if (ssh == NULL)
299 ssh = ssh_alloc_session_state();
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000300 if (ssh == NULL) {
dtucker@openbsd.org4b7dd222019-06-07 14:18:48 +0000301 error("%s: could not allocate state", __func__);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000302 return NULL;
303 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000304 state = ssh->state;
305 state->connection_in = fd_in;
306 state->connection_out = fd_out;
307 if ((r = cipher_init(&state->send_context, none,
Damien Miller86687062014-07-02 15:28:02 +1000308 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000309 (r = cipher_init(&state->receive_context, none,
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000310 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
311 error("%s: cipher_init failed: %s", __func__, ssh_err(r));
djm@openbsd.org95767262016-03-07 19:02:43 +0000312 free(ssh); /* XXX need ssh_free_session_state? */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000313 return NULL;
314 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000315 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
djm@openbsd.orgd4c02952015-02-11 01:20:38 +0000316 /*
317 * Cache the IP address of the remote connection for use in error
318 * messages that might be generated after the connection has closed.
319 */
320 (void)ssh_remote_ipaddr(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000321 return ssh;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322}
323
Darren Tucker3fc464e2008-06-13 06:42:45 +1000324void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000325ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000326{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000327 struct session_state *state = ssh->state;
328
Damien Miller8ed4de82011-12-19 10:52:50 +1100329 if (timeout <= 0 || count <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000330 state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000331 return;
332 }
333 if ((INT_MAX / 1000) / count < timeout)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000334 state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000335 else
markus@openbsd.org091c3022015-01-19 19:52:16 +0000336 state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000337}
338
markus@openbsd.org8d057842016-09-30 09:19:13 +0000339void
340ssh_packet_set_mux(struct ssh *ssh)
341{
342 ssh->state->mux = 1;
343 ssh->state->rekeying = 0;
344}
345
346int
347ssh_packet_get_mux(struct ssh *ssh)
348{
349 return ssh->state->mux;
350}
351
markus@openbsd.org091c3022015-01-19 19:52:16 +0000352int
djm@openbsd.org07edd7e2017-02-03 23:03:33 +0000353ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
354{
355 va_list args;
356 int r;
357
358 free(ssh->log_preamble);
359 if (fmt == NULL)
360 ssh->log_preamble = NULL;
361 else {
362 va_start(args, fmt);
363 r = vasprintf(&ssh->log_preamble, fmt, args);
364 va_end(args);
365 if (r < 0 || ssh->log_preamble == NULL)
366 return SSH_ERR_ALLOC_FAIL;
367 }
368 return 0;
369}
370
371int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000372ssh_packet_stop_discard(struct ssh *ssh)
Damien Miller13ae44c2009-01-28 16:38:41 +1100373{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000374 struct session_state *state = ssh->state;
375 int r;
376
377 if (state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100378 char buf[1024];
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000379 size_t dlen = PACKET_MAX_SIZE;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000380
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000381 if (dlen > state->packet_discard_mac_already)
382 dlen -= state->packet_discard_mac_already;
Damien Miller13ae44c2009-01-28 16:38:41 +1100383 memset(buf, 'a', sizeof(buf));
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000384 while (sshbuf_len(state->incoming_packet) < dlen)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000385 if ((r = sshbuf_put(state->incoming_packet, buf,
386 sizeof(buf))) != 0)
387 return r;
388 (void) mac_compute(state->packet_discard_mac,
389 state->p_read.seqnr,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000390 sshbuf_ptr(state->incoming_packet), dlen,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000391 NULL, 0);
Damien Miller13ae44c2009-01-28 16:38:41 +1100392 }
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000393 logit("Finished discarding for %.200s port %d",
394 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000395 return SSH_ERR_MAC_INVALID;
Damien Miller13ae44c2009-01-28 16:38:41 +1100396}
397
markus@openbsd.org091c3022015-01-19 19:52:16 +0000398static int
399ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000400 struct sshmac *mac, size_t mac_already, u_int discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100401{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000402 struct session_state *state = ssh->state;
403 int r;
404
405 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
406 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
407 return r;
408 return SSH_ERR_MAC_INVALID;
409 }
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000410 /*
411 * Record number of bytes over which the mac has already
412 * been computed in order to minimize timing attacks.
413 */
414 if (mac && mac->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000415 state->packet_discard_mac = mac;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000416 state->packet_discard_mac_already = mac_already;
417 }
418 if (sshbuf_len(state->input) >= discard)
419 return ssh_packet_stop_discard(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000420 state->packet_discard = discard - sshbuf_len(state->input);
421 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +1100422}
423
Damien Miller34132e52000-01-14 15:45:46 +1100424/* Returns 1 if remote host is connected via socket, 0 if not. */
425
426int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000427ssh_packet_connection_is_on_socket(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100428{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000429 struct session_state *state;
Damien Miller34132e52000-01-14 15:45:46 +1100430 struct sockaddr_storage from, to;
431 socklen_t fromlen, tolen;
432
djm@openbsd.org854ae202018-06-01 04:05:29 +0000433 if (ssh == NULL || ssh->state == NULL)
djm@openbsd.org95767262016-03-07 19:02:43 +0000434 return 0;
435
djm@openbsd.org854ae202018-06-01 04:05:29 +0000436 state = ssh->state;
437 if (state->connection_in == -1 || state->connection_out == -1)
438 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100439 /* filedescriptors in and out are the same, so it's a socket */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000440 if (state->connection_in == state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100441 return 1;
442 fromlen = sizeof(from);
443 memset(&from, 0, sizeof(from));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000444 if (getpeername(state->connection_in, (struct sockaddr *)&from,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000445 &fromlen) == -1)
Damien Miller34132e52000-01-14 15:45:46 +1100446 return 0;
447 tolen = sizeof(to);
448 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000449 if (getpeername(state->connection_out, (struct sockaddr *)&to,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000450 &tolen) == -1)
Damien Miller34132e52000-01-14 15:45:46 +1100451 return 0;
452 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
453 return 0;
454 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
455 return 0;
456 return 1;
457}
458
Ben Lindstromf6027d32002-03-22 01:42:04 +0000459void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000460ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000461{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000462 if (ibytes)
463 *ibytes = ssh->state->p_read.bytes;
464 if (obytes)
465 *obytes = ssh->state->p_send.bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000466}
467
468int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000469ssh_packet_connection_af(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100470{
471 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100472 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100473
474 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000475 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000476 &tolen) == -1)
Damien Miller34132e52000-01-14 15:45:46 +1100477 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000478#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100479 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000480 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000481 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000482#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000483 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100484}
485
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486/* Sets the connection into non-blocking mode. */
487
488void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000489ssh_packet_set_nonblocking(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490{
Damien Miller95def091999-11-25 00:26:21 +1100491 /* Set the socket into non-blocking mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000492 set_nonblock(ssh->state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493
markus@openbsd.org091c3022015-01-19 19:52:16 +0000494 if (ssh->state->connection_out != ssh->state->connection_in)
495 set_nonblock(ssh->state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496}
497
498/* Returns the socket used for reading. */
499
500int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000501ssh_packet_get_connection_in(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000503 return ssh->state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504}
505
506/* Returns the descriptor used for writing. */
507
508int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000509ssh_packet_get_connection_out(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000511 return ssh->state->connection_out;
512}
513
514/*
515 * Returns the IP-address of the remote host as a string. The returned
516 * string must not be freed.
517 */
518
519const char *
520ssh_remote_ipaddr(struct ssh *ssh)
521{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000522 int sock;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000523
markus@openbsd.org091c3022015-01-19 19:52:16 +0000524 /* Check whether we have cached the ipaddr. */
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000525 if (ssh->remote_ipaddr == NULL) {
526 if (ssh_packet_connection_is_on_socket(ssh)) {
djm@openbsd.org854ae202018-06-01 04:05:29 +0000527 sock = ssh->state->connection_in;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000528 ssh->remote_ipaddr = get_peer_ipaddr(sock);
djm@openbsd.org95767262016-03-07 19:02:43 +0000529 ssh->remote_port = get_peer_port(sock);
530 ssh->local_ipaddr = get_local_ipaddr(sock);
531 ssh->local_port = get_local_port(sock);
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000532 } else {
533 ssh->remote_ipaddr = strdup("UNKNOWN");
djm@openbsd.org95767262016-03-07 19:02:43 +0000534 ssh->remote_port = 65535;
535 ssh->local_ipaddr = strdup("UNKNOWN");
536 ssh->local_port = 65535;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000537 }
538 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000539 return ssh->remote_ipaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000540}
541
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000542/* Returns the port number of the remote host. */
543
544int
545ssh_remote_port(struct ssh *ssh)
546{
547 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
548 return ssh->remote_port;
549}
550
djm@openbsd.org95767262016-03-07 19:02:43 +0000551/*
552 * Returns the IP-address of the local host as a string. The returned
553 * string must not be freed.
554 */
555
556const char *
557ssh_local_ipaddr(struct ssh *ssh)
558{
559 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
560 return ssh->local_ipaddr;
561}
562
563/* Returns the port number of the local host. */
564
565int
566ssh_local_port(struct ssh *ssh)
567{
568 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
569 return ssh->local_port;
570}
571
djm@openbsd.org35eb33f2017-10-25 00:17:08 +0000572/* Returns the routing domain of the input socket, or NULL if unavailable */
573const char *
574ssh_packet_rdomain_in(struct ssh *ssh)
575{
576 if (ssh->rdomain_in != NULL)
577 return ssh->rdomain_in;
578 if (!ssh_packet_connection_is_on_socket(ssh))
579 return NULL;
580 ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
581 return ssh->rdomain_in;
582}
583
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584/* Closes the connection and clears and frees internal data structures. */
585
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000586static void
587ssh_packet_close_internal(struct ssh *ssh, int do_close)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000589 struct session_state *state = ssh->state;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000590 u_int mode;
591
592 if (!state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100593 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000594 state->initialized = 0;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000595 if (do_close) {
596 if (state->connection_in == state->connection_out) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000597 close(state->connection_out);
598 } else {
599 close(state->connection_in);
600 close(state->connection_out);
601 }
Damien Miller95def091999-11-25 00:26:21 +1100602 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000603 sshbuf_free(state->input);
604 sshbuf_free(state->output);
605 sshbuf_free(state->outgoing_packet);
606 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000607 for (mode = 0; mode < MODE_MAX; mode++) {
608 kex_free_newkeys(state->newkeys[mode]); /* current keys */
609 state->newkeys[mode] = NULL;
610 ssh_clear_newkeys(ssh, mode); /* next keys */
611 }
Damien Miller10479cc2018-04-10 10:19:02 +1000612 /* compression state is in shared mem, so we can only release it once */
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000613 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000614 sshbuf_free(state->compression_buffer);
615 if (state->compression_out_started) {
616 z_streamp stream = &state->compression_out_stream;
617 debug("compress outgoing: "
618 "raw data %llu, compressed %llu, factor %.2f",
619 (unsigned long long)stream->total_in,
620 (unsigned long long)stream->total_out,
621 stream->total_in == 0 ? 0.0 :
622 (double) stream->total_out / stream->total_in);
623 if (state->compression_out_failures == 0)
624 deflateEnd(stream);
625 }
626 if (state->compression_in_started) {
dtucker@openbsd.org550c0532017-06-06 09:12:17 +0000627 z_streamp stream = &state->compression_in_stream;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000628 debug("compress incoming: "
629 "raw data %llu, compressed %llu, factor %.2f",
630 (unsigned long long)stream->total_out,
631 (unsigned long long)stream->total_in,
632 stream->total_out == 0 ? 0.0 :
633 (double) stream->total_in / stream->total_out);
634 if (state->compression_in_failures == 0)
635 inflateEnd(stream);
636 }
Damien Miller95def091999-11-25 00:26:21 +1100637 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000638 cipher_free(state->send_context);
639 cipher_free(state->receive_context);
640 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000641 if (do_close) {
djm@openbsd.orgde2997a2018-07-16 03:09:13 +0000642 free(ssh->local_ipaddr);
643 ssh->local_ipaddr = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000644 free(ssh->remote_ipaddr);
645 ssh->remote_ipaddr = NULL;
646 free(ssh->state);
647 ssh->state = NULL;
648 }
649}
650
651void
652ssh_packet_close(struct ssh *ssh)
653{
654 ssh_packet_close_internal(ssh, 1);
655}
656
657void
658ssh_packet_clear_keys(struct ssh *ssh)
659{
660 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000661}
662
663/* Sets remote side protocol flags. */
664
665void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000666ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000668 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669}
670
671/* Returns the remote protocol flags set earlier by the above function. */
672
Ben Lindstrom46c16222000-12-22 01:43:59 +0000673u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000674ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000676 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677}
678
Damien Miller5428f641999-11-25 11:54:57 +1100679/*
680 * Starts packet compression from the next packet on in both directions.
681 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
682 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
markus@openbsd.org091c3022015-01-19 19:52:16 +0000684static int
685ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000686{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000687 if (!ssh->state->compression_buffer &&
688 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
689 return SSH_ERR_ALLOC_FAIL;
690 return 0;
691}
692
693static int
694start_compression_out(struct ssh *ssh, int level)
695{
696 if (level < 1 || level > 9)
697 return SSH_ERR_INVALID_ARGUMENT;
698 debug("Enabling compression at level %d.", level);
699 if (ssh->state->compression_out_started == 1)
700 deflateEnd(&ssh->state->compression_out_stream);
701 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
702 case Z_OK:
703 ssh->state->compression_out_started = 1;
704 break;
705 case Z_MEM_ERROR:
706 return SSH_ERR_ALLOC_FAIL;
707 default:
708 return SSH_ERR_INTERNAL_ERROR;
709 }
710 return 0;
711}
712
713static int
714start_compression_in(struct ssh *ssh)
715{
716 if (ssh->state->compression_in_started == 1)
717 inflateEnd(&ssh->state->compression_in_stream);
718 switch (inflateInit(&ssh->state->compression_in_stream)) {
719 case Z_OK:
720 ssh->state->compression_in_started = 1;
721 break;
722 case Z_MEM_ERROR:
723 return SSH_ERR_ALLOC_FAIL;
724 default:
725 return SSH_ERR_INTERNAL_ERROR;
726 }
727 return 0;
728}
729
markus@openbsd.org091c3022015-01-19 19:52:16 +0000730/* XXX remove need for separate compression buffer */
731static int
732compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
733{
734 u_char buf[4096];
735 int r, status;
736
737 if (ssh->state->compression_out_started != 1)
738 return SSH_ERR_INTERNAL_ERROR;
739
740 /* This case is not handled below. */
741 if (sshbuf_len(in) == 0)
742 return 0;
743
744 /* Input is the contents of the input buffer. */
745 if ((ssh->state->compression_out_stream.next_in =
746 sshbuf_mutable_ptr(in)) == NULL)
747 return SSH_ERR_INTERNAL_ERROR;
748 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
749
750 /* Loop compressing until deflate() returns with avail_out != 0. */
751 do {
752 /* Set up fixed-size output buffer. */
753 ssh->state->compression_out_stream.next_out = buf;
754 ssh->state->compression_out_stream.avail_out = sizeof(buf);
755
756 /* Compress as much data into the buffer as possible. */
757 status = deflate(&ssh->state->compression_out_stream,
758 Z_PARTIAL_FLUSH);
759 switch (status) {
760 case Z_MEM_ERROR:
761 return SSH_ERR_ALLOC_FAIL;
762 case Z_OK:
763 /* Append compressed data to output_buffer. */
764 if ((r = sshbuf_put(out, buf, sizeof(buf) -
765 ssh->state->compression_out_stream.avail_out)) != 0)
766 return r;
767 break;
768 case Z_STREAM_ERROR:
769 default:
770 ssh->state->compression_out_failures++;
771 return SSH_ERR_INVALID_FORMAT;
772 }
773 } while (ssh->state->compression_out_stream.avail_out == 0);
774 return 0;
775}
776
777static int
778uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
779{
780 u_char buf[4096];
781 int r, status;
782
783 if (ssh->state->compression_in_started != 1)
784 return SSH_ERR_INTERNAL_ERROR;
785
786 if ((ssh->state->compression_in_stream.next_in =
787 sshbuf_mutable_ptr(in)) == NULL)
788 return SSH_ERR_INTERNAL_ERROR;
789 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
790
791 for (;;) {
792 /* Set up fixed-size output buffer. */
793 ssh->state->compression_in_stream.next_out = buf;
794 ssh->state->compression_in_stream.avail_out = sizeof(buf);
795
796 status = inflate(&ssh->state->compression_in_stream,
797 Z_PARTIAL_FLUSH);
798 switch (status) {
799 case Z_OK:
800 if ((r = sshbuf_put(out, buf, sizeof(buf) -
801 ssh->state->compression_in_stream.avail_out)) != 0)
802 return r;
803 break;
804 case Z_BUF_ERROR:
805 /*
806 * Comments in zlib.h say that we should keep calling
807 * inflate() until we get an error. This appears to
808 * be the error that we get.
809 */
810 return 0;
811 case Z_DATA_ERROR:
812 return SSH_ERR_INVALID_FORMAT;
813 case Z_MEM_ERROR:
814 return SSH_ERR_ALLOC_FAIL;
815 case Z_STREAM_ERROR:
816 default:
817 ssh->state->compression_in_failures++;
818 return SSH_ERR_INTERNAL_ERROR;
819 }
820 }
821 /* NOTREACHED */
822}
823
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000824void
825ssh_clear_newkeys(struct ssh *ssh, int mode)
826{
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000827 if (ssh->kex && ssh->kex->newkeys[mode]) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000828 kex_free_newkeys(ssh->kex->newkeys[mode]);
829 ssh->kex->newkeys[mode] = NULL;
830 }
831}
832
markus@openbsd.org091c3022015-01-19 19:52:16 +0000833int
834ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000835{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000836 struct session_state *state = ssh->state;
837 struct sshenc *enc;
838 struct sshmac *mac;
839 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000840 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000841 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000842 u_int64_t *max_blocks;
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000843 const char *wmsg;
Damien Miller86687062014-07-02 15:28:02 +1000844 int r, crypt_type;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000845 const char *dir = mode == MODE_OUT ? "out" : "in";
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000846
Ben Lindstrom064496f2002-12-23 02:04:22 +0000847 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000848
Damien Miller963f6b22002-02-19 15:21:23 +1100849 if (mode == MODE_OUT) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000850 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000851 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000852 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000853 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100854 } else {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000855 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000856 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000857 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000858 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100859 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000860 if (state->newkeys[mode] != NULL) {
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000861 debug("%s: rekeying %s, input %llu bytes %llu blocks, "
862 "output %llu bytes %llu blocks", __func__, dir,
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000863 (unsigned long long)state->p_read.bytes,
864 (unsigned long long)state->p_read.blocks,
865 (unsigned long long)state->p_send.bytes,
866 (unsigned long long)state->p_send.blocks);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000867 kex_free_newkeys(state->newkeys[mode]);
868 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000869 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000870 /* note that both bytes and the seqnr are not reset */
871 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000872 /* move newkeys from kex to state */
873 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
874 return SSH_ERR_INTERNAL_ERROR;
875 ssh->kex->newkeys[mode] = NULL;
876 enc = &state->newkeys[mode]->enc;
877 mac = &state->newkeys[mode]->mac;
878 comp = &state->newkeys[mode]->comp;
879 if (cipher_authlen(enc->cipher) == 0) {
880 if ((r = mac_init(mac)) != 0)
881 return r;
882 }
883 mac->enabled = 1;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000884 DBG(debug("%s: cipher_init_context: %s", __func__, dir));
djm@openbsd.org8a818342019-01-04 03:23:00 +0000885 cipher_free(*ccp);
886 *ccp = NULL;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000887 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000888 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000889 return r;
890 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000891 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000892 error("Warning: %s", wmsg);
893 state->cipher_warning_done = 1;
894 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000895 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100896 /* explicit_bzero(enc->iv, enc->block_size);
897 explicit_bzero(enc->key, enc->key_len);
898 explicit_bzero(mac->key, mac->key_len); */
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000899 if ((comp->type == COMP_ZLIB ||
900 (comp->type == COMP_DELAYED &&
901 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000902 if ((r = ssh_packet_init_compression(ssh)) < 0)
903 return r;
904 if (mode == MODE_OUT) {
905 if ((r = start_compression_out(ssh, 6)) != 0)
906 return r;
907 } else {
908 if ((r = start_compression_in(ssh)) != 0)
909 return r;
910 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000911 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000912 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000913 /*
914 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000915 * so enforce a 1GB limit for small blocksizes.
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000916 * See RFC4344 section 3.2.
Darren Tucker81a0b372003-07-14 17:31:06 +1000917 */
918 if (enc->block_size >= 16)
919 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
920 else
921 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000922 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000923 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000924 state->rekey_limit / enc->block_size);
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000925 debug("rekey %s after %llu blocks", dir,
926 (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000927 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000928}
929
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000930#define MAX_PACKETS (1U<<31)
931static int
932ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
933{
934 struct session_state *state = ssh->state;
935 u_int32_t out_blocks;
936
937 /* XXX client can't cope with rekeying pre-auth */
938 if (!state->after_authentication)
939 return 0;
940
941 /* Haven't keyed yet or KEX in progress. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000942 if (ssh_packet_is_rekeying(ssh))
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000943 return 0;
944
945 /* Peer can't rekey */
946 if (ssh->compat & SSH_BUG_NOREKEY)
947 return 0;
948
949 /*
950 * Permit one packet in or out per rekey - this allows us to
951 * make progress when rekey limits are very small.
952 */
953 if (state->p_send.packets == 0 && state->p_read.packets == 0)
954 return 0;
955
956 /* Time-based rekeying */
957 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000958 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000959 return 1;
960
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000961 /*
962 * Always rekey when MAX_PACKETS sent in either direction
963 * As per RFC4344 section 3.1 we do this after 2^31 packets.
964 */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000965 if (state->p_send.packets > MAX_PACKETS ||
966 state->p_read.packets > MAX_PACKETS)
967 return 1;
968
Damien Miller10479cc2018-04-10 10:19:02 +1000969 /* Rekey after (cipher-specific) maximum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000970 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000971 state->newkeys[MODE_OUT]->enc.block_size);
972 return (state->max_blocks_out &&
973 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
974 (state->max_blocks_in &&
975 (state->p_read.blocks > state->max_blocks_in));
976}
977
Damien Miller5428f641999-11-25 11:54:57 +1100978/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000979 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000980 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000981 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
982 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000983static int
984ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000985{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000986 struct session_state *state = ssh->state;
987 struct sshcomp *comp = NULL;
988 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000989
990 /*
991 * Remember that we are past the authentication step, so rekeying
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000992 * with COMP_DELAYED will turn on compression immediately.
Damien Miller9786e6e2005-07-26 21:54:56 +1000993 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000994 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000995 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000996 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000997 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000998 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000999 comp = &state->newkeys[mode]->comp;
sf@openbsd.org168b46f2018-07-09 13:37:10 +00001000 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001001 if ((r = ssh_packet_init_compression(ssh)) != 0)
1002 return r;
1003 if (mode == MODE_OUT) {
1004 if ((r = start_compression_out(ssh, 6)) != 0)
1005 return r;
1006 } else {
1007 if ((r = start_compression_in(ssh)) != 0)
1008 return r;
1009 }
Damien Miller9786e6e2005-07-26 21:54:56 +10001010 comp->enabled = 1;
1011 }
1012 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001013 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001014}
1015
djm@openbsd.org28136472016-01-29 05:46:01 +00001016/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001017int
djm@openbsd.org28136472016-01-29 05:46:01 +00001018ssh_packet_log_type(u_char type)
1019{
1020 switch (type) {
1021 case SSH2_MSG_CHANNEL_DATA:
1022 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1023 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1024 return 0;
1025 default:
1026 return 1;
1027 }
1028}
1029
Damien Miller9786e6e2005-07-26 21:54:56 +10001030/*
Damien Miller33b13562000-04-04 14:38:59 +10001031 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1032 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001033int
1034ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001035{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001036 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001037 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001038 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001039 u_int authlen = 0, aadlen = 0;
1040 u_int len;
1041 struct sshenc *enc = NULL;
1042 struct sshmac *mac = NULL;
1043 struct sshcomp *comp = NULL;
1044 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001045
markus@openbsd.org091c3022015-01-19 19:52:16 +00001046 if (state->newkeys[MODE_OUT] != NULL) {
1047 enc = &state->newkeys[MODE_OUT]->enc;
1048 mac = &state->newkeys[MODE_OUT]->mac;
1049 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001050 /* disable mac for authenticated encryption */
1051 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1052 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001053 }
Damien Miller963f6b22002-02-19 15:21:23 +11001054 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001055 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001056
markus@openbsd.org091c3022015-01-19 19:52:16 +00001057 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001058 if (ssh_packet_log_type(type))
1059 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001060#ifdef PACKET_DEBUG
1061 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001062 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001063#endif
1064
1065 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001066 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001067 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001068 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1069 goto out;
1070 sshbuf_reset(state->compression_buffer);
1071 if ((r = compress_buffer(ssh, state->outgoing_packet,
1072 state->compression_buffer)) != 0)
1073 goto out;
1074 sshbuf_reset(state->outgoing_packet);
1075 if ((r = sshbuf_put(state->outgoing_packet,
1076 "\0\0\0\0\0", 5)) != 0 ||
1077 (r = sshbuf_putb(state->outgoing_packet,
1078 state->compression_buffer)) != 0)
1079 goto out;
1080 DBG(debug("compression: raw %d compressed %zd", len,
1081 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001082 }
1083
1084 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001085 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001086
1087 /*
1088 * calc size of padding, alloc space, get random data,
1089 * minimum padding is 4 bytes
1090 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001091 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001092 padlen = block_size - (len % block_size);
1093 if (padlen < 4)
1094 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001095 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001096 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001097 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001098 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001099 /* check if roundup overflowed */
1100 if (state->extra_pad < tmp)
1101 return SSH_ERR_INVALID_ARGUMENT;
1102 tmp = (len + padlen) % state->extra_pad;
1103 /* Check whether pad calculation below will underflow */
1104 if (tmp > state->extra_pad)
1105 return SSH_ERR_INVALID_ARGUMENT;
1106 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001107 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001108 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001109 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001110 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001111 /* Check whether padlen calculation overflowed */
1112 if (padlen < tmp)
1113 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001114 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001115 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001116 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1117 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001118 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001119 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001120 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001121 } else {
1122 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001123 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001124 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001125 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001126 len = sshbuf_len(state->outgoing_packet);
1127 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1128 if (cp == NULL) {
1129 r = SSH_ERR_INTERNAL_ERROR;
1130 goto out;
1131 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001132 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001133 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001134 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001135 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1136 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001137
1138 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001139 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001140 if ((r = mac_compute(mac, state->p_send.seqnr,
1141 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001142 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001143 goto out;
1144 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001145 }
1146 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001147 if ((r = sshbuf_reserve(state->output,
1148 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1149 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001150 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001151 sshbuf_ptr(state->outgoing_packet),
1152 len - aadlen, aadlen, authlen)) != 0)
1153 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001154 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001155 if (mac && mac->enabled) {
1156 if (mac->etm) {
1157 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001158 if ((r = mac_compute(mac, state->p_send.seqnr,
1159 cp, len, macbuf, sizeof(macbuf))) != 0)
1160 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001161 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001162 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001163 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001164 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1165 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001166 }
Damien Miller33b13562000-04-04 14:38:59 +10001167#ifdef PACKET_DEBUG
1168 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001169 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001170#endif
Damien Miller4af51302000-04-16 11:18:38 +10001171 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001172 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001173 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001174 if (++state->p_send.packets == 0)
1175 if (!(ssh->compat & SSH_BUG_NOREKEY))
1176 return SSH_ERR_NEED_REKEY;
1177 state->p_send.blocks += len / block_size;
1178 state->p_send.bytes += len;
1179 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001180
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001181 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001182 r = ssh_set_newkeys(ssh, MODE_OUT);
1183 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1184 r = ssh_packet_enable_delayed_compress(ssh);
1185 else
1186 r = 0;
1187 out:
1188 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001189}
1190
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001191/* returns non-zero if the specified packet type is usec by KEX */
1192static int
1193ssh_packet_type_is_kex(u_char type)
1194{
1195 return
1196 type >= SSH2_MSG_TRANSPORT_MIN &&
1197 type <= SSH2_MSG_TRANSPORT_MAX &&
1198 type != SSH2_MSG_SERVICE_REQUEST &&
1199 type != SSH2_MSG_SERVICE_ACCEPT &&
1200 type != SSH2_MSG_EXT_INFO;
1201}
1202
markus@openbsd.org091c3022015-01-19 19:52:16 +00001203int
1204ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001205{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001206 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001207 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001208 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001209 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001210
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001211 if (sshbuf_len(state->outgoing_packet) < 6)
1212 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001213 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001214 need_rekey = !ssh_packet_type_is_kex(type) &&
1215 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001216
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001217 /*
1218 * During rekeying we can only send key exchange messages.
1219 * Queue everything else.
1220 */
1221 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1222 if (need_rekey)
1223 debug3("%s: rekex triggered", __func__);
1224 debug("enqueue packet: %u", type);
1225 p = calloc(1, sizeof(*p));
1226 if (p == NULL)
1227 return SSH_ERR_ALLOC_FAIL;
1228 p->type = type;
1229 p->payload = state->outgoing_packet;
1230 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1231 state->outgoing_packet = sshbuf_new();
1232 if (state->outgoing_packet == NULL)
1233 return SSH_ERR_ALLOC_FAIL;
1234 if (need_rekey) {
1235 /*
1236 * This packet triggered a rekey, so send the
1237 * KEXINIT now.
1238 * NB. reenters this function via kex_start_rekex().
1239 */
1240 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001241 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001242 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001243 }
1244
1245 /* rekeying starts with sending KEXINIT */
1246 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001247 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001248
markus@openbsd.org091c3022015-01-19 19:52:16 +00001249 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1250 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001251
1252 /* after a NEWKEYS message we can send the complete queue */
1253 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001254 state->rekeying = 0;
1255 state->rekey_time = monotime();
1256 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001257 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001258 /*
1259 * If this packet triggers a rekex, then skip the
1260 * remaining packets in the queue for now.
1261 * NB. re-enters this function via kex_start_rekex.
1262 */
1263 if (ssh_packet_need_rekeying(ssh,
1264 sshbuf_len(p->payload))) {
1265 debug3("%s: queued packet triggered rekex",
1266 __func__);
1267 return kex_start_rekex(ssh);
1268 }
Damien Millera5539d22003-04-09 20:50:06 +10001269 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001270 sshbuf_free(state->outgoing_packet);
1271 state->outgoing_packet = p->payload;
1272 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001273 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001274 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001275 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1276 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001277 }
1278 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001279 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001280}
1281
Damien Miller33b13562000-04-04 14:38:59 +10001282/*
Damien Miller5428f641999-11-25 11:54:57 +11001283 * Waits until a packet has been received, and returns its type. Note that
1284 * no other data is processed until this returns, so this function should not
1285 * be used during the interactive session.
1286 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001287
1288int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001289ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001290{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001291 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001292 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001293 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001294 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001295 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Darren Tucker99bb7612008-06-13 22:02:50 +10001297 DBG(debug("packet_read()"));
1298
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001299 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001300 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001301 if (setp == NULL)
1302 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001303
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001304 /*
1305 * Since we are blocking, ensure that all written packets have
1306 * been sent.
1307 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001308 if ((r = ssh_packet_write_wait(ssh)) != 0)
1309 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310
Damien Miller95def091999-11-25 00:26:21 +11001311 /* Stay in the loop until we have received a complete packet. */
1312 for (;;) {
1313 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001314 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1315 if (r != 0)
1316 break;
Damien Miller95def091999-11-25 00:26:21 +11001317 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001318 if (*typep != SSH_MSG_NONE)
1319 break;
Damien Miller5428f641999-11-25 11:54:57 +11001320 /*
1321 * Otherwise, wait for some data to arrive, add it to the
1322 * buffer, and try again.
1323 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001324 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001325 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001326 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001327
markus@openbsd.org091c3022015-01-19 19:52:16 +00001328 if (state->packet_timeout_ms > 0) {
1329 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001330 timeoutp = &timeout;
1331 }
Damien Miller95def091999-11-25 00:26:21 +11001332 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001333 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001334 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001335 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001336 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001337 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001338 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001339 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001340 break;
Damien Millerea437422009-10-02 11:49:03 +10001341 if (errno != EAGAIN && errno != EINTR &&
dtucker@openbsd.org1da59342018-05-25 03:20:59 +00001342 errno != EWOULDBLOCK) {
1343 r = SSH_ERR_SYSTEM_ERROR;
1344 goto out;
1345 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001346 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001347 continue;
1348 ms_subtract_diff(&start, &ms_remain);
1349 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001350 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001351 break;
1352 }
1353 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001354 if (r == 0) {
1355 r = SSH_ERR_CONN_TIMEOUT;
1356 goto out;
1357 }
Damien Miller95def091999-11-25 00:26:21 +11001358 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001359 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001360 if (len == 0) {
1361 r = SSH_ERR_CONN_CLOSED;
1362 goto out;
1363 }
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001364 if (len == -1) {
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001365 r = SSH_ERR_SYSTEM_ERROR;
1366 goto out;
1367 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001368
Damien Miller95def091999-11-25 00:26:21 +11001369 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001370 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001371 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001372 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001373 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001374 free(setp);
1375 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001376}
1377
Damien Miller278f9072001-12-21 15:00:19 +11001378int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001379ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001380{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001381 u_char type;
1382 int r;
1383
1384 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1385 fatal("%s: %s", __func__, ssh_err(r));
1386 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001387}
1388
Damien Miller5428f641999-11-25 11:54:57 +11001389/*
1390 * Waits until a packet has been received, verifies that its type matches
1391 * that given, and gives a fatal error and exits if there is a mismatch.
1392 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001394int
1395ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001397 int r;
1398 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001399
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001400 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1401 return r;
1402 if (type != expected_type) {
1403 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001404 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001405 expected_type, type)) != 0)
1406 return r;
1407 return SSH_ERR_PROTOCOL_ERROR;
1408 }
1409 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001410}
1411
markus@openbsd.org8d057842016-09-30 09:19:13 +00001412static int
1413ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1414{
1415 struct session_state *state = ssh->state;
1416 const u_char *cp;
1417 size_t need;
1418 int r;
1419
1420 if (ssh->kex)
1421 return SSH_ERR_INTERNAL_ERROR;
1422 *typep = SSH_MSG_NONE;
1423 cp = sshbuf_ptr(state->input);
1424 if (state->packlen == 0) {
1425 if (sshbuf_len(state->input) < 4 + 1)
1426 return 0; /* packet is incomplete */
1427 state->packlen = PEEK_U32(cp);
1428 if (state->packlen < 4 + 1 ||
1429 state->packlen > PACKET_MAX_SIZE)
1430 return SSH_ERR_MESSAGE_INCOMPLETE;
1431 }
1432 need = state->packlen + 4;
1433 if (sshbuf_len(state->input) < need)
1434 return 0; /* packet is incomplete */
1435 sshbuf_reset(state->incoming_packet);
1436 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1437 state->packlen)) != 0 ||
1438 (r = sshbuf_consume(state->input, need)) != 0 ||
1439 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1440 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1441 return r;
1442 if (ssh_packet_log_type(*typep))
1443 debug3("%s: type %u", __func__, *typep);
1444 /* sshbuf_dump(state->incoming_packet, stderr); */
1445 /* reset for next packet */
1446 state->packlen = 0;
1447 return r;
1448}
1449
markus@openbsd.org091c3022015-01-19 19:52:16 +00001450int
1451ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001452{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001453 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001454 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001455 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001456 u_int maclen, aadlen = 0, authlen = 0, block_size;
1457 struct sshenc *enc = NULL;
1458 struct sshmac *mac = NULL;
1459 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001460 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001461
markus@openbsd.org8d057842016-09-30 09:19:13 +00001462 if (state->mux)
1463 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1464
markus@openbsd.org091c3022015-01-19 19:52:16 +00001465 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001466
markus@openbsd.org091c3022015-01-19 19:52:16 +00001467 if (state->packet_discard)
1468 return 0;
1469
1470 if (state->newkeys[MODE_IN] != NULL) {
1471 enc = &state->newkeys[MODE_IN]->enc;
1472 mac = &state->newkeys[MODE_IN]->mac;
1473 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001474 /* disable mac for authenticated encryption */
1475 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1476 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001477 }
1478 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001479 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001480 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001481
markus@openbsd.org091c3022015-01-19 19:52:16 +00001482 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001483 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001484 &state->packlen, state->p_read.seqnr,
1485 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1486 return 0;
1487 if (state->packlen < 1 + 4 ||
1488 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001489#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001490 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001491#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001492 logit("Bad packet length %u.", state->packlen);
1493 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1494 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001495 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001496 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001497 sshbuf_reset(state->incoming_packet);
1498 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001499 /*
1500 * check if input size is less than the cipher block size,
1501 * decrypt first block and extract length of incoming packet
1502 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001503 if (sshbuf_len(state->input) < block_size)
1504 return 0;
1505 sshbuf_reset(state->incoming_packet);
1506 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1507 &cp)) != 0)
1508 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001509 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001510 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1511 block_size, 0, 0)) != 0)
1512 goto out;
1513 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1514 if (state->packlen < 1 + 4 ||
1515 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001516#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001517 fprintf(stderr, "input: \n");
1518 sshbuf_dump(state->input, stderr);
1519 fprintf(stderr, "incoming_packet: \n");
1520 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001521#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001522 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001523 return ssh_packet_start_discard(ssh, enc, mac, 0,
1524 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001525 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001526 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1527 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001528 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001529 DBG(debug("input: packet len %u", state->packlen+4));
1530
Damien Milleraf43a7a2012-12-12 10:46:31 +11001531 if (aadlen) {
1532 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001533 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001534 } else {
1535 /*
1536 * the payload size and the payload are encrypted, but we
1537 * have a partial packet of block_size bytes
1538 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001539 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001540 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001541 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1542 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001543 if (need % block_size != 0) {
1544 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001545 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001546 return ssh_packet_start_discard(ssh, enc, mac, 0,
1547 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001548 }
Damien Miller33b13562000-04-04 14:38:59 +10001549 /*
1550 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001551 * decrypt into incoming_packet:
1552 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001553 * 'need' bytes are encrypted, followed by either
1554 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001555 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001556 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001557 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001558 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001559#ifdef PACKET_DEBUG
1560 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001561 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001562#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001563 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001564 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001565 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001566 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001567 sshbuf_ptr(state->input) + aadlen + need + authlen,
1568 maclen)) != 0) {
1569 if (r == SSH_ERR_MAC_INVALID)
1570 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001571 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001572 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001573 }
1574 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1575 &cp)) != 0)
1576 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001577 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001578 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1579 goto out;
1580 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1581 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001582 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001583 /* Not EtM: check MAC over cleartext */
1584 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1585 sshbuf_ptr(state->incoming_packet),
1586 sshbuf_len(state->incoming_packet),
1587 sshbuf_ptr(state->input), maclen)) != 0) {
1588 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001589 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001590 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001591 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001592 return SSH_ERR_INTERNAL_ERROR;
1593 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001594 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001595 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001596 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001597 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001598 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1599 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1600 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001601 }
Damien Miller278f9072001-12-21 15:00:19 +11001602 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001603 *seqnr_p = state->p_read.seqnr;
1604 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001605 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001606 if (++state->p_read.packets == 0)
1607 if (!(ssh->compat & SSH_BUG_NOREKEY))
1608 return SSH_ERR_NEED_REKEY;
1609 state->p_read.blocks += (state->packlen + 4) / block_size;
1610 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001611
1612 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001613 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001614 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001615 if (padlen < 4) {
1616 if ((r = sshpkt_disconnect(ssh,
1617 "Corrupted padlen %d on input.", padlen)) != 0 ||
1618 (r = ssh_packet_write_wait(ssh)) != 0)
1619 return r;
1620 return SSH_ERR_CONN_CORRUPT;
1621 }
Damien Miller33b13562000-04-04 14:38:59 +10001622
1623 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001624 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1625 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1626 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001627
markus@openbsd.org091c3022015-01-19 19:52:16 +00001628 DBG(debug("input: len before de-compress %zd",
1629 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001630 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001631 sshbuf_reset(state->compression_buffer);
1632 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1633 state->compression_buffer)) != 0)
1634 goto out;
1635 sshbuf_reset(state->incoming_packet);
1636 if ((r = sshbuf_putb(state->incoming_packet,
1637 state->compression_buffer)) != 0)
1638 goto out;
1639 DBG(debug("input: len after de-compress %zd",
1640 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001641 }
1642 /*
1643 * get packet type, implies consume.
1644 * return length of payload (without type field)
1645 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001646 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1647 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001648 if (ssh_packet_log_type(*typep))
1649 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001650 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1651 if ((r = sshpkt_disconnect(ssh,
1652 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1653 (r = ssh_packet_write_wait(ssh)) != 0)
1654 return r;
1655 return SSH_ERR_PROTOCOL_ERROR;
1656 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001657 if (state->hook_in != NULL &&
1658 (r = state->hook_in(ssh, state->incoming_packet, typep,
1659 state->hook_in_ctx)) != 0)
1660 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001661 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001662 r = ssh_packet_enable_delayed_compress(ssh);
1663 else
1664 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001665#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001666 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1667 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001668#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001669 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001670 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001671
1672 /* do we need to rekey? */
1673 if (ssh_packet_need_rekeying(ssh, 0)) {
1674 debug3("%s: rekex triggered", __func__);
1675 if ((r = kex_start_rekex(ssh)) != 0)
1676 return r;
1677 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001678 out:
1679 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001680}
1681
1682int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001683ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001684{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001685 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001686 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001687 int r;
1688 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001689
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001690 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001691 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001692 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1693 if (r != 0)
1694 return r;
1695 if (*typep) {
1696 state->keep_alive_timeouts = 0;
1697 DBG(debug("received packet type %d", *typep));
1698 }
1699 switch (*typep) {
1700 case SSH2_MSG_IGNORE:
1701 debug3("Received SSH2_MSG_IGNORE");
1702 break;
1703 case SSH2_MSG_DEBUG:
1704 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1705 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1706 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1707 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001708 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001709 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001710 debug("Remote: %.900s", msg);
1711 free(msg);
1712 break;
1713 case SSH2_MSG_DISCONNECT:
1714 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1715 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1716 return r;
1717 /* Ignore normal client exit notifications */
1718 do_log2(ssh->state->server_side &&
1719 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1720 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1721 "Received disconnect from %s port %d:"
1722 "%u: %.400s", ssh_remote_ipaddr(ssh),
1723 ssh_remote_port(ssh), reason, msg);
1724 free(msg);
1725 return SSH_ERR_DISCONNECTED;
1726 case SSH2_MSG_UNIMPLEMENTED:
1727 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1728 return r;
1729 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1730 seqnr);
1731 break;
1732 default:
1733 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001734 }
1735 }
1736}
1737
Damien Miller5428f641999-11-25 11:54:57 +11001738/*
1739 * Buffers the given amount of input characters. This is intended to be used
1740 * together with packet_read_poll.
1741 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001742
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001743int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001744ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001745{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001746 struct session_state *state = ssh->state;
1747 int r;
1748
1749 if (state->packet_discard) {
1750 state->keep_alive_timeouts = 0; /* ?? */
1751 if (len >= state->packet_discard) {
1752 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001753 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001754 }
1755 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001756 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001757 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001758 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001759 return r;
1760
1761 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001762}
1763
Damien Miller4af51302000-04-16 11:18:38 +10001764int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001765ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001766{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001767 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001768}
1769
Damien Miller5428f641999-11-25 11:54:57 +11001770/*
1771 * Sends a diagnostic message from the server to the client. This message
1772 * can be sent at any time (but not while constructing another message). The
1773 * message is printed immediately, but only if the client is being executed
1774 * in verbose mode. These messages are primarily intended to ease debugging
1775 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001776 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001777 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001778void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001779ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001780{
Damien Miller95def091999-11-25 00:26:21 +11001781 char buf[1024];
1782 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001783 int r;
Damien Miller95def091999-11-25 00:26:21 +11001784
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001785 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001786 return;
1787
Damien Miller95def091999-11-25 00:26:21 +11001788 va_start(args, fmt);
1789 vsnprintf(buf, sizeof(buf), fmt, args);
1790 va_end(args);
1791
djm@openbsd.orgeb80e262017-10-13 21:13:54 +00001792 debug3("sending debug message: %s", buf);
1793
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001794 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1795 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1796 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1797 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1798 (r = sshpkt_send(ssh)) != 0 ||
1799 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001800 fatal("%s: %s", __func__, ssh_err(r));
1801}
1802
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001803void
1804sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l)
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001805{
1806 snprintf(s, l, "%.200s%s%s port %d",
1807 ssh->log_preamble ? ssh->log_preamble : "",
1808 ssh->log_preamble ? " " : "",
1809 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1810}
1811
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001812/*
1813 * Pretty-print connection-terminating errors and exit.
1814 */
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001815static void
1816sshpkt_vfatal(struct ssh *ssh, int r, const char *fmt, va_list ap)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001817{
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001818 char *tag = NULL, remote_id[512];
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001819
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001820 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001821
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001822 switch (r) {
1823 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001824 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001825 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001826 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001827 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001828 logdie("Connection %s %s timed out",
1829 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001830 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001831 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001832 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001833 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001834 if (errno == ECONNRESET) {
1835 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001836 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001837 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001838 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001839 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1840 case SSH_ERR_NO_MAC_ALG_MATCH:
1841 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1842 case SSH_ERR_NO_KEX_ALG_MATCH:
1843 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1844 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001845 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001846 logdie("Unable to negotiate with %s: %s. "
1847 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001848 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001849 }
1850 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001851 default:
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001852 if (vasprintf(&tag, fmt, ap) == -1) {
1853 ssh_packet_clear_keys(ssh);
1854 logdie("%s: could not allocate failure message",
1855 __func__);
1856 }
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001857 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001858 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001859 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001860 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001861 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001862 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863}
1864
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001865void
1866sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...)
1867{
1868 va_list ap;
1869
1870 va_start(ap, fmt);
1871 sshpkt_vfatal(ssh, r, fmt, ap);
1872 /* NOTREACHED */
1873 va_end(ap);
1874 logdie("%s: should have exited", __func__);
1875}
1876
Damien Miller5428f641999-11-25 11:54:57 +11001877/*
1878 * Logs the error plus constructs and sends a disconnect packet, closes the
1879 * connection, and exits. This function never returns. The error message
1880 * should not contain a newline. The length of the formatted message must
1881 * not exceed 1024 bytes.
1882 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001883void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001884ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001885{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001886 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001887 va_list args;
1888 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001889 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001890
Damien Miller95def091999-11-25 00:26:21 +11001891 if (disconnecting) /* Guard against recursive invocations. */
1892 fatal("packet_disconnect called recursively.");
1893 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001894
Damien Miller5428f641999-11-25 11:54:57 +11001895 /*
1896 * Format the message. Note that the caller must make sure the
1897 * message is of limited size.
1898 */
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001899 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001900 va_start(args, fmt);
1901 vsnprintf(buf, sizeof(buf), fmt, args);
1902 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001903
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001904 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001905 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001906
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001907 /*
1908 * Send the disconnect message to the other side, and wait
1909 * for it to get sent.
1910 */
1911 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001912 sshpkt_fatal(ssh, r, "%s", __func__);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001913
1914 if ((r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001915 sshpkt_fatal(ssh, r, "%s", __func__);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001916
Damien Miller95def091999-11-25 00:26:21 +11001917 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001918 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001919 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001920}
1921
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001922/*
1923 * Checks if there is any buffered output, and tries to write some of
1924 * the output.
1925 */
1926int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001927ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001928{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001929 struct session_state *state = ssh->state;
1930 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001931 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001932
Damien Miller95def091999-11-25 00:26:21 +11001933 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001934 len = write(state->connection_out,
1935 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001936 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001937 if (errno == EINTR || errno == EAGAIN ||
1938 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001939 return 0;
1940 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001941 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001942 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001943 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001944 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001945 return r;
Damien Miller95def091999-11-25 00:26:21 +11001946 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001947 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001948}
1949
Damien Miller5428f641999-11-25 11:54:57 +11001950/*
1951 * Calls packet_write_poll repeatedly until all pending output data has been
1952 * written.
1953 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001954int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001955ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001956{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001957 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001958 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001959 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001960 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001961
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001962 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001963 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001964 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001965 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001966 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1967 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001968 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001969 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001970 while (ssh_packet_have_data_to_write(ssh)) {
1971 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001972 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001973 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001974
markus@openbsd.org091c3022015-01-19 19:52:16 +00001975 if (state->packet_timeout_ms > 0) {
1976 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001977 timeoutp = &timeout;
1978 }
1979 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001980 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001981 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001982 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001983 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001984 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001985 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001986 break;
Damien Millerea437422009-10-02 11:49:03 +10001987 if (errno != EAGAIN && errno != EINTR &&
1988 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001989 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001990 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001991 continue;
1992 ms_subtract_diff(&start, &ms_remain);
1993 if (ms_remain <= 0) {
1994 ret = 0;
1995 break;
1996 }
1997 }
1998 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001999 free(setp);
2000 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10002001 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002002 if ((r = ssh_packet_write_poll(ssh)) != 0) {
2003 free(setp);
2004 return r;
2005 }
Damien Miller95def091999-11-25 00:26:21 +11002006 }
Darren Tuckera627d422013-06-02 07:31:17 +10002007 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002008 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002009}
2010
2011/* Returns true if there is buffered data to write to the connection. */
2012
2013int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002014ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002015{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002016 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002017}
2018
2019/* Returns true if there is not too much data to write to the connection. */
2020
2021int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002022ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002023{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002024 if (ssh->state->interactive_mode)
2025 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11002026 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00002027 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002028}
2029
markus@openbsd.org091c3022015-01-19 19:52:16 +00002030void
2031ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00002032{
Damien Millerd2ac5d72011-05-15 08:43:13 +10002033#ifndef IP_TOS_IS_BROKEN
djm@openbsd.org51676ec2017-07-23 23:37:02 +00002034 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
Ben Lindstroma7433982002-12-23 02:41:41 +00002035 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002036 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002037# ifdef IP_TOS
2038 case AF_INET:
2039 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002040 if (setsockopt(ssh->state->connection_in,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002041 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) == -1)
Damien Millerd2ac5d72011-05-15 08:43:13 +10002042 error("setsockopt IP_TOS %d: %.100s:",
2043 tos, strerror(errno));
2044 break;
2045# endif /* IP_TOS */
2046# ifdef IPV6_TCLASS
2047 case AF_INET6:
2048 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002049 if (setsockopt(ssh->state->connection_in,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002050 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) == -1)
Damien Millerd2ac5d72011-05-15 08:43:13 +10002051 error("setsockopt IPV6_TCLASS %d: %.100s:",
2052 tos, strerror(errno));
2053 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002054# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002055 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002056#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002057}
Ben Lindstroma7433982002-12-23 02:41:41 +00002058
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002059/* Informs that the current session is interactive. Sets IP flags for that. */
2060
2061void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002062ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002063{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002064 struct session_state *state = ssh->state;
2065
2066 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002067 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002068 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002069
Damien Miller95def091999-11-25 00:26:21 +11002070 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002071 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002072
Damien Miller34132e52000-01-14 15:45:46 +11002073 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002074 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002075 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002076 set_nodelay(state->connection_in);
2077 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2078 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002079}
2080
2081/* Returns true if the current connection is interactive. */
2082
2083int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002084ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002085{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002086 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002087}
Damien Miller6162d121999-11-21 13:23:52 +11002088
Darren Tucker1f8311c2004-05-13 16:39:33 +10002089int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002090ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002091{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002092 struct session_state *state = ssh->state;
2093
2094 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002095 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002096 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002097 return -1;
2098 }
2099 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002100 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002101 return -1;
2102 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002103 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002104 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002105 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002106 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002107}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002108
Darren Tuckerf7288d72009-06-21 18:12:20 +10002109int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002110ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002111{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002112 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002113}
2114
2115void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002116ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002117{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002118 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002119}
2120
2121u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002122ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002123{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002124 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002125}
2126
Damien Millera5539d22003-04-09 20:50:06 +10002127void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002128ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002129{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002130 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2131 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002132 ssh->state->rekey_limit = bytes;
2133 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002134}
2135
2136time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002137ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002138{
2139 time_t seconds;
2140
markus@openbsd.org091c3022015-01-19 19:52:16 +00002141 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002142 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002143 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002144}
Damien Miller9786e6e2005-07-26 21:54:56 +10002145
2146void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002147ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002148{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002149 ssh->state->server_side = 1;
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002150 ssh->kex->server = 1; /* XXX unify? */
Damien Miller9786e6e2005-07-26 21:54:56 +10002151}
2152
2153void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002154ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002155{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002156 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002157}
2158
2159void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002160ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002161{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002162 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002163}
2164
2165void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002166ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002167{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002168 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002169}
2170
Damien Millerc31a0cd2014-05-15 14:37:39 +10002171/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002172static int
2173ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002174{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002175 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002176
2177 debug("%s: called", __func__);
2178 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002179 ssh->state->after_authentication = 1;
2180 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002181 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2182 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002183 return 0;
2184}
2185
2186/* Packet state (de-)serialization for privsep */
2187
2188/* turn kex into a blob for packet state serialization */
2189static int
2190kex_to_blob(struct sshbuf *m, struct kex *kex)
2191{
2192 int r;
2193
2194 if ((r = sshbuf_put_string(m, kex->session_id,
2195 kex->session_id_len)) != 0 ||
2196 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002197 (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002198 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002199 (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002200 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2201 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2202 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002203 (r = sshbuf_put_stringb(m, kex->client_version)) != 0 ||
2204 (r = sshbuf_put_stringb(m, kex->server_version)) != 0 ||
2205 (r = sshbuf_put_u32(m, kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002206 return r;
2207 return 0;
2208}
2209
2210/* turn key exchange results into a blob for packet state serialization */
2211static int
2212newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2213{
2214 struct sshbuf *b;
2215 struct sshcipher_ctx *cc;
2216 struct sshcomp *comp;
2217 struct sshenc *enc;
2218 struct sshmac *mac;
2219 struct newkeys *newkey;
2220 int r;
2221
2222 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2223 return SSH_ERR_INTERNAL_ERROR;
2224 enc = &newkey->enc;
2225 mac = &newkey->mac;
2226 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002227 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2228 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002229 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2230 return r;
2231 if ((b = sshbuf_new()) == NULL)
2232 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002233 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002234 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2235 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2236 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2237 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2238 goto out;
2239 if (cipher_authlen(enc->cipher) == 0) {
2240 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2241 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2242 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2243 goto out;
2244 }
2245 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002246 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2247 goto out;
2248 r = sshbuf_put_stringb(m, b);
2249 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002250 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002251 return r;
2252}
2253
2254/* serialize packet state into a blob */
2255int
2256ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2257{
2258 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002259 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002260
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002261 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2262 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2263 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2264 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2265 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2266 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2267 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2268 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2269 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2270 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2271 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2272 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002273 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2274 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2275 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002276 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002277
markus@openbsd.org091c3022015-01-19 19:52:16 +00002278 return 0;
2279}
2280
2281/* restore key exchange results from blob for packet state de-serialization */
2282static int
2283newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2284{
2285 struct sshbuf *b = NULL;
2286 struct sshcomp *comp;
2287 struct sshenc *enc;
2288 struct sshmac *mac;
2289 struct newkeys *newkey = NULL;
2290 size_t keylen, ivlen, maclen;
2291 int r;
2292
2293 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2294 r = SSH_ERR_ALLOC_FAIL;
2295 goto out;
2296 }
2297 if ((r = sshbuf_froms(m, &b)) != 0)
2298 goto out;
2299#ifdef DEBUG_PK
2300 sshbuf_dump(b, stderr);
2301#endif
2302 enc = &newkey->enc;
2303 mac = &newkey->mac;
2304 comp = &newkey->comp;
2305
2306 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002307 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2308 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2309 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2310 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2311 goto out;
djm@openbsd.org33f86262017-06-24 06:38:11 +00002312 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2313 r = SSH_ERR_INVALID_FORMAT;
2314 goto out;
2315 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002316 if (cipher_authlen(enc->cipher) == 0) {
2317 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2318 goto out;
2319 if ((r = mac_setup(mac, mac->name)) != 0)
2320 goto out;
2321 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2322 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2323 goto out;
2324 if (maclen > mac->key_len) {
2325 r = SSH_ERR_INVALID_FORMAT;
2326 goto out;
2327 }
2328 mac->key_len = maclen;
2329 }
2330 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002331 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2332 goto out;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002333 if (sshbuf_len(b) != 0) {
2334 r = SSH_ERR_INVALID_FORMAT;
2335 goto out;
2336 }
2337 enc->key_len = keylen;
2338 enc->iv_len = ivlen;
2339 ssh->kex->newkeys[mode] = newkey;
2340 newkey = NULL;
2341 r = 0;
2342 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002343 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002344 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002345 return r;
2346}
2347
2348/* restore kex from blob for packet state de-serialization */
2349static int
2350kex_from_blob(struct sshbuf *m, struct kex **kexp)
2351{
2352 struct kex *kex;
2353 int r;
2354
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002355 if ((kex = kex_new()) == NULL)
2356 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002357 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2358 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002359 (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002360 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002361 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002362 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2363 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2364 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002365 (r = sshbuf_get_stringb(m, kex->client_version)) != 0 ||
2366 (r = sshbuf_get_stringb(m, kex->server_version)) != 0 ||
2367 (r = sshbuf_get_u32(m, &kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002368 goto out;
2369 kex->server = 1;
2370 kex->done = 1;
2371 r = 0;
2372 out:
2373 if (r != 0 || kexp == NULL) {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002374 kex_free(kex);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002375 if (kexp != NULL)
2376 *kexp = NULL;
2377 } else {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002378 kex_free(*kexp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002379 *kexp = kex;
2380 }
2381 return r;
2382}
2383
2384/*
2385 * Restore packet state from content of blob 'm' (de-serialization).
2386 * Note that 'm' will be partially consumed on parsing or any other errors.
2387 */
2388int
2389ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2390{
2391 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002392 const u_char *input, *output;
2393 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002394 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002395
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002396 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2397 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2398 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2399 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2400 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2401 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2402 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2403 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2404 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2405 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2406 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2407 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2408 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2409 return r;
2410 /*
2411 * We set the time here so that in post-auth privsep slave we
2412 * count from the completion of the authentication.
2413 */
2414 state->rekey_time = monotime();
2415 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2416 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2417 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2418 return r;
2419
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002420 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002421 return r;
2422
2423 sshbuf_reset(state->input);
2424 sshbuf_reset(state->output);
2425 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2426 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2427 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2428 (r = sshbuf_put(state->output, output, olen)) != 0)
2429 return r;
2430
markus@openbsd.org091c3022015-01-19 19:52:16 +00002431 if (sshbuf_len(m))
2432 return SSH_ERR_INVALID_FORMAT;
2433 debug3("%s: done", __func__);
2434 return 0;
2435}
2436
2437/* NEW API */
2438
2439/* put data to the outgoing packet */
2440
2441int
2442sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2443{
2444 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2445}
2446
2447int
2448sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2449{
2450 return sshbuf_putb(ssh->state->outgoing_packet, b);
2451}
2452
2453int
2454sshpkt_put_u8(struct ssh *ssh, u_char val)
2455{
2456 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2457}
2458
2459int
2460sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2461{
2462 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2463}
2464
2465int
2466sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2467{
2468 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2469}
2470
2471int
2472sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2473{
2474 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2475}
2476
2477int
2478sshpkt_put_cstring(struct ssh *ssh, const void *v)
2479{
2480 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2481}
2482
2483int
2484sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2485{
2486 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2487}
2488
djm@openbsd.org71e67ff2019-01-21 10:35:09 +00002489int
2490sshpkt_getb_froms(struct ssh *ssh, struct sshbuf **valp)
2491{
2492 return sshbuf_froms(ssh->state->incoming_packet, valp);
2493}
2494
djm@openbsd.org734226b2015-04-27 01:52:30 +00002495#ifdef WITH_OPENSSL
2496#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002497int
2498sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2499{
2500 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2501}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002502#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002503
markus@openbsd.org091c3022015-01-19 19:52:16 +00002504
2505int
2506sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2507{
2508 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2509}
Damien Miller773dda22015-01-30 23:10:17 +11002510#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002511
2512/* fetch data from the incoming packet */
2513
2514int
2515sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2516{
2517 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2518}
2519
2520int
2521sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2522{
2523 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2524}
2525
2526int
2527sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2528{
2529 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2530}
2531
2532int
2533sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2534{
2535 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2536}
2537
2538int
2539sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2540{
2541 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2542}
2543
2544int
2545sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2546{
2547 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2548}
2549
2550int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002551sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2552{
2553 return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp);
2554}
2555
2556int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002557sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2558{
2559 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2560}
2561
djm@openbsd.org734226b2015-04-27 01:52:30 +00002562#ifdef WITH_OPENSSL
2563#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002564int
2565sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2566{
2567 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2568}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002569#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002570
markus@openbsd.org091c3022015-01-19 19:52:16 +00002571int
djm@openbsd.org7be85722019-01-21 09:54:11 +00002572sshpkt_get_bignum2(struct ssh *ssh, BIGNUM **valp)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002573{
djm@openbsd.org7be85722019-01-21 09:54:11 +00002574 return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002575}
Damien Miller773dda22015-01-30 23:10:17 +11002576#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002577
2578int
2579sshpkt_get_end(struct ssh *ssh)
2580{
2581 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2582 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2583 return 0;
2584}
2585
2586const u_char *
2587sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2588{
2589 if (lenp != NULL)
2590 *lenp = sshbuf_len(ssh->state->incoming_packet);
2591 return sshbuf_ptr(ssh->state->incoming_packet);
2592}
2593
2594/* start a new packet */
2595
2596int
2597sshpkt_start(struct ssh *ssh, u_char type)
2598{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002599 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002600
2601 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002602 memset(buf, 0, sizeof(buf));
2603 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002604 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002605 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002606}
2607
markus@openbsd.org8d057842016-09-30 09:19:13 +00002608static int
2609ssh_packet_send_mux(struct ssh *ssh)
2610{
2611 struct session_state *state = ssh->state;
2612 u_char type, *cp;
2613 size_t len;
2614 int r;
2615
2616 if (ssh->kex)
2617 return SSH_ERR_INTERNAL_ERROR;
2618 len = sshbuf_len(state->outgoing_packet);
2619 if (len < 6)
2620 return SSH_ERR_INTERNAL_ERROR;
2621 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2622 type = cp[5];
2623 if (ssh_packet_log_type(type))
2624 debug3("%s: type %u", __func__, type);
2625 /* drop everything, but the connection protocol */
2626 if (type >= SSH2_MSG_CONNECTION_MIN &&
2627 type <= SSH2_MSG_CONNECTION_MAX) {
2628 POKE_U32(cp, len - 4);
2629 if ((r = sshbuf_putb(state->output,
2630 state->outgoing_packet)) != 0)
2631 return r;
2632 /* sshbuf_dump(state->output, stderr); */
2633 }
2634 sshbuf_reset(state->outgoing_packet);
2635 return 0;
2636}
2637
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002638/*
2639 * 9.2. Ignored Data Message
2640 *
2641 * byte SSH_MSG_IGNORE
2642 * string data
2643 *
2644 * All implementations MUST understand (and ignore) this message at any
2645 * time (after receiving the protocol version). No implementation is
2646 * required to send them. This message can be used as an additional
2647 * protection measure against advanced traffic analysis techniques.
2648 */
2649int
2650sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes)
2651{
2652 u_int32_t rnd = 0;
2653 int r;
2654 u_int i;
2655
2656 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
2657 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2658 return r;
2659 for (i = 0; i < nbytes; i++) {
2660 if (i % 4 == 0)
2661 rnd = arc4random();
2662 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2663 return r;
2664 rnd >>= 8;
2665 }
2666 return 0;
2667}
2668
markus@openbsd.org091c3022015-01-19 19:52:16 +00002669/* send it */
2670
2671int
2672sshpkt_send(struct ssh *ssh)
2673{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002674 if (ssh->state && ssh->state->mux)
2675 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002676 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002677}
2678
2679int
2680sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2681{
2682 char buf[1024];
2683 va_list args;
2684 int r;
2685
2686 va_start(args, fmt);
2687 vsnprintf(buf, sizeof(buf), fmt, args);
2688 va_end(args);
2689
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002690 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2691 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2692 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2693 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2694 (r = sshpkt_send(ssh)) != 0)
2695 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002696 return 0;
2697}
2698
2699/* roundup current message to pad bytes */
2700int
2701sshpkt_add_padding(struct ssh *ssh, u_char pad)
2702{
2703 ssh->state->extra_pad = pad;
2704 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002705}